Clang recently improved its DWARF support for C VLA types. The DWARF
now looks like this:
0x00000051: DW_TAG_variable [4]
DW_AT_location( fbreg -32 )
DW_AT_name( "__vla_expr" )
DW_AT_type( {0x000000d3} ( long unsigned int ) )
DW_AT_artificial( true )
...
0x000000da: DW_TAG_array_type [10] *
DW_AT_type( {0x000000cc} ( int ) )
0x000000df: DW_TAG_subrange_type [11]
DW_AT_type( {0x000000e9} ( __ARRAY_SIZE_TYPE__ ) )
DW_AT_count( {0x00000051} )
Without this patch LLDB will naively interpret the DIE offset 0x51 as
the static size of the array, which is clearly wrong. This patch
extends ValueObject::GetNumChildren to query the dynamic properties of
incomplete array types.
See the testcase for an example:
4 int foo(int a) {
5 int vla[a];
6 for (int i = 0; i < a; ++i)
7 vla[i] = i;
8
-> 9 pause(); // break here
10 return vla[a-1];
11 }
(lldb) fr v vla
(int []) vla = ([0] = 0, [1] = 1, [2] = 2, [3] = 3)
(lldb) quit
rdar://problem/21814005
Differential Revision: https://reviews.llvm.org/D53530
llvm-svn: 346165
60 lines
2.0 KiB
C++
60 lines
2.0 KiB
C++
//===-- DWARFASTParser.h ----------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SymbolFileDWARF_DWARFASTParser_h_
|
|
#define SymbolFileDWARF_DWARFASTParser_h_
|
|
|
|
#include "DWARFDefines.h"
|
|
#include "lldb/Core/PluginInterface.h"
|
|
#include "lldb/Symbol/SymbolFile.h"
|
|
#include "lldb/Symbol/CompilerDecl.h"
|
|
#include "lldb/Symbol/CompilerDeclContext.h"
|
|
|
|
class DWARFDIE;
|
|
namespace lldb_private {
|
|
class ExecutionContext;
|
|
}
|
|
class SymbolFileDWARF;
|
|
|
|
class DWARFASTParser {
|
|
public:
|
|
virtual ~DWARFASTParser() {}
|
|
|
|
virtual lldb::TypeSP ParseTypeFromDWARF(const lldb_private::SymbolContext &sc,
|
|
const DWARFDIE &die,
|
|
lldb_private::Log *log,
|
|
bool *type_is_new_ptr) = 0;
|
|
|
|
virtual lldb_private::Function *
|
|
ParseFunctionFromDWARF(const lldb_private::SymbolContext &sc,
|
|
const DWARFDIE &die) = 0;
|
|
|
|
virtual bool
|
|
CompleteTypeFromDWARF(const DWARFDIE &die, lldb_private::Type *type,
|
|
lldb_private::CompilerType &compiler_type) = 0;
|
|
|
|
virtual lldb_private::CompilerDecl
|
|
GetDeclForUIDFromDWARF(const DWARFDIE &die) = 0;
|
|
|
|
virtual lldb_private::CompilerDeclContext
|
|
GetDeclContextForUIDFromDWARF(const DWARFDIE &die) = 0;
|
|
|
|
virtual lldb_private::CompilerDeclContext
|
|
GetDeclContextContainingUIDFromDWARF(const DWARFDIE &die) = 0;
|
|
|
|
virtual std::vector<DWARFDIE>
|
|
GetDIEForDeclContext(lldb_private::CompilerDeclContext decl_context) = 0;
|
|
|
|
static llvm::Optional<lldb_private::SymbolFile::ArrayInfo>
|
|
ParseChildArrayInfo(const DWARFDIE &parent_die,
|
|
const lldb_private::ExecutionContext *exe_ctx = nullptr);
|
|
};
|
|
|
|
#endif // SymbolFileDWARF_DWARFASTParser_h_
|