2010-06-09 00:52:24 +08:00
|
|
|
//===-- SymbolFileDWARF.h --------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_SymbolFileDWARF_h_
|
|
|
|
#define liblldb_SymbolFileDWARF_h_
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
// Other libraries and framework includes
|
2011-06-25 08:44:06 +08:00
|
|
|
#include "clang/AST/ExternalASTSource.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
|
|
|
2010-11-10 07:46:37 +08:00
|
|
|
#include "lldb/Core/ClangForward.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/ConstString.h"
|
2010-07-07 06:38:03 +08:00
|
|
|
#include "lldb/Core/dwarf.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/DataExtractor.h"
|
|
|
|
#include "lldb/Core/Flags.h"
|
|
|
|
#include "lldb/Core/UniqueCStringMap.h"
|
|
|
|
#include "lldb/Symbol/SymbolFile.h"
|
|
|
|
#include "lldb/Symbol/SymbolContext.h"
|
|
|
|
|
|
|
|
// Project includes
|
|
|
|
#include "DWARFDefines.h"
|
2010-09-15 12:15:46 +08:00
|
|
|
#include "NameToDIE.h"
|
2011-02-10 03:06:17 +08:00
|
|
|
#include "UniqueDWARFASTType.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Forward Declarations for this DWARF plugin
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
class DWARFAbbreviationDeclaration;
|
|
|
|
class DWARFAbbreviationDeclarationSet;
|
|
|
|
class DWARFCompileUnit;
|
|
|
|
class DWARFDebugAbbrev;
|
|
|
|
class DWARFDebugAranges;
|
|
|
|
class DWARFDebugInfo;
|
|
|
|
class DWARFDebugInfoEntry;
|
|
|
|
class DWARFDebugLine;
|
|
|
|
class DWARFDebugPubnames;
|
|
|
|
class DWARFDebugRanges;
|
|
|
|
class DWARFDIECollection;
|
|
|
|
class DWARFFormValue;
|
2010-10-12 10:24:53 +08:00
|
|
|
class SymbolFileDWARFDebugMap;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
class SymbolFileDWARF : public lldb_private::SymbolFile
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
friend class SymbolFileDWARFDebugMap;
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// Static Functions
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
static void
|
|
|
|
Initialize();
|
|
|
|
|
|
|
|
static void
|
|
|
|
Terminate();
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
GetPluginNameStatic();
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
GetPluginDescriptionStatic();
|
|
|
|
|
|
|
|
static lldb_private::SymbolFile*
|
|
|
|
CreateInstance (lldb_private::ObjectFile* obj_file);
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// Constructors and Destructors
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
SymbolFileDWARF(lldb_private::ObjectFile* ofile);
|
|
|
|
virtual ~SymbolFileDWARF();
|
|
|
|
|
|
|
|
virtual uint32_t GetAbilities ();
|
A few of the issue I have been trying to track down and fix have been due to
the way LLDB lazily gets complete definitions for types within the debug info.
When we run across a class/struct/union definition in the DWARF, we will only
parse the full definition if we need to. This works fine for top level types
that are assigned directly to variables and arguments, but when we have a
variable with a class, lets say "A" for this example, that has a member:
"B *m_b". Initially we don't need to hunt down a definition for this class
unless we are ever asked to do something with it ("expr m_b->getDecl()" for
example). With my previous approach to lazy type completion, we would be able
to take a "A *a" and get a complete type for it, but we wouldn't be able to
then do an "a->m_b->getDecl()" unless we always expanded all types within a
class prior to handing out the type. Expanding everything is very costly and
it would be great if there were a better way.
A few months ago I worked with the llvm/clang folks to have the
ExternalASTSource class be able to complete classes if there weren't completed
yet:
class ExternalASTSource {
....
virtual void
CompleteType (clang::TagDecl *Tag);
virtual void
CompleteType (clang::ObjCInterfaceDecl *Class);
};
This was great, because we can now have the class that is producing the AST
(SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
and the object that creates the forward declaration types can now also
complete them anywhere within the clang type system.
This patch makes a few major changes:
- lldb_private::Module classes now own the AST context. Previously the TypeList
objects did.
- The DWARF parsers now sign up as an external AST sources so they can complete
types.
- All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
ClangASTType, and more) can now be iterating through children of any type,
and if a class/union/struct type (clang::RecordType or ObjC interface)
is found that is incomplete, we can ask the AST to get the definition.
- The SymbolFileDWARFDebugMap class now will create and use a single AST that
all child SymbolFileDWARF classes will share (much like what happens when
we have a complete linked DWARF for an executable).
We will need to modify some of the ClangUserExpression code to take more
advantage of this completion ability in the near future. Meanwhile we should
be better off now that we can be accessing any children of variables through
pointers and always be able to resolve the clang type if needed.
llvm-svn: 123613
2011-01-17 11:46:26 +08:00
|
|
|
virtual void InitializeObject();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// Compile Unit function calls
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
virtual uint32_t GetNumCompileUnits();
|
|
|
|
virtual lldb::CompUnitSP ParseCompileUnitAtIndex(uint32_t index);
|
|
|
|
|
|
|
|
virtual size_t ParseCompileUnitFunctions (const lldb_private::SymbolContext& sc);
|
|
|
|
virtual bool ParseCompileUnitLineTable (const lldb_private::SymbolContext& sc);
|
|
|
|
virtual bool ParseCompileUnitSupportFiles (const lldb_private::SymbolContext& sc, lldb_private::FileSpecList& support_files);
|
|
|
|
virtual size_t ParseFunctionBlocks (const lldb_private::SymbolContext& sc);
|
|
|
|
virtual size_t ParseTypes (const lldb_private::SymbolContext& sc);
|
|
|
|
virtual size_t ParseVariablesForContext (const lldb_private::SymbolContext& sc);
|
|
|
|
|
2010-09-15 12:15:46 +08:00
|
|
|
virtual lldb_private::Type* ResolveTypeUID(lldb::user_id_t type_uid);
|
2010-09-29 09:12:09 +08:00
|
|
|
virtual lldb::clang_type_t ResolveClangOpaqueTypeDefinition (lldb::clang_type_t clang_opaque_type);
|
|
|
|
|
2010-10-13 11:15:28 +08:00
|
|
|
virtual lldb_private::Type* ResolveType (DWARFCompileUnit* cu, const DWARFDebugInfoEntry* type_die, bool assert_not_being_parsed = true);
|
2011-08-06 07:43:37 +08:00
|
|
|
virtual clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid);
|
|
|
|
virtual clang::DeclContext* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
virtual uint32_t ResolveSymbolContext (const lldb_private::Address& so_addr, uint32_t resolve_scope, lldb_private::SymbolContext& sc);
|
|
|
|
virtual uint32_t ResolveSymbolContext (const lldb_private::FileSpec& file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, lldb_private::SymbolContextList& sc_list);
|
|
|
|
virtual uint32_t FindGlobalVariables(const lldb_private::ConstString &name, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
|
|
|
|
virtual uint32_t FindGlobalVariables(const lldb_private::RegularExpression& regex, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
|
2010-06-29 05:30:43 +08:00
|
|
|
virtual uint32_t FindFunctions(const lldb_private::ConstString &name, uint32_t name_type_mask, bool append, lldb_private::SymbolContextList& sc_list);
|
2010-06-09 00:52:24 +08:00
|
|
|
virtual uint32_t FindFunctions(const lldb_private::RegularExpression& regex, bool append, lldb_private::SymbolContextList& sc_list);
|
2010-08-03 08:35:52 +08:00
|
|
|
virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, bool append, uint32_t max_matches, lldb_private::TypeList& types);
|
A few of the issue I have been trying to track down and fix have been due to
the way LLDB lazily gets complete definitions for types within the debug info.
When we run across a class/struct/union definition in the DWARF, we will only
parse the full definition if we need to. This works fine for top level types
that are assigned directly to variables and arguments, but when we have a
variable with a class, lets say "A" for this example, that has a member:
"B *m_b". Initially we don't need to hunt down a definition for this class
unless we are ever asked to do something with it ("expr m_b->getDecl()" for
example). With my previous approach to lazy type completion, we would be able
to take a "A *a" and get a complete type for it, but we wouldn't be able to
then do an "a->m_b->getDecl()" unless we always expanded all types within a
class prior to handing out the type. Expanding everything is very costly and
it would be great if there were a better way.
A few months ago I worked with the llvm/clang folks to have the
ExternalASTSource class be able to complete classes if there weren't completed
yet:
class ExternalASTSource {
....
virtual void
CompleteType (clang::TagDecl *Tag);
virtual void
CompleteType (clang::ObjCInterfaceDecl *Class);
};
This was great, because we can now have the class that is producing the AST
(SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
and the object that creates the forward declaration types can now also
complete them anywhere within the clang type system.
This patch makes a few major changes:
- lldb_private::Module classes now own the AST context. Previously the TypeList
objects did.
- The DWARF parsers now sign up as an external AST sources so they can complete
types.
- All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
ClangASTType, and more) can now be iterating through children of any type,
and if a class/union/struct type (clang::RecordType or ObjC interface)
is found that is incomplete, we can ask the AST to get the definition.
- The SymbolFileDWARFDebugMap class now will create and use a single AST that
all child SymbolFileDWARF classes will share (much like what happens when
we have a complete linked DWARF for an executable).
We will need to modify some of the ClangUserExpression code to take more
advantage of this completion ability in the near future. Meanwhile we should
be better off now that we can be accessing any children of variables through
pointers and always be able to resolve the clang type if needed.
llvm-svn: 123613
2011-01-17 11:46:26 +08:00
|
|
|
virtual lldb_private::TypeList *
|
|
|
|
GetTypeList ();
|
|
|
|
virtual lldb_private::ClangASTContext &
|
|
|
|
GetClangASTContext ();
|
|
|
|
|
2010-11-13 11:52:47 +08:00
|
|
|
virtual lldb_private::ClangNamespaceDecl
|
2010-11-11 07:42:09 +08:00
|
|
|
FindNamespace (const lldb_private::SymbolContext& sc,
|
|
|
|
const lldb_private::ConstString &name);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
A few of the issue I have been trying to track down and fix have been due to
the way LLDB lazily gets complete definitions for types within the debug info.
When we run across a class/struct/union definition in the DWARF, we will only
parse the full definition if we need to. This works fine for top level types
that are assigned directly to variables and arguments, but when we have a
variable with a class, lets say "A" for this example, that has a member:
"B *m_b". Initially we don't need to hunt down a definition for this class
unless we are ever asked to do something with it ("expr m_b->getDecl()" for
example). With my previous approach to lazy type completion, we would be able
to take a "A *a" and get a complete type for it, but we wouldn't be able to
then do an "a->m_b->getDecl()" unless we always expanded all types within a
class prior to handing out the type. Expanding everything is very costly and
it would be great if there were a better way.
A few months ago I worked with the llvm/clang folks to have the
ExternalASTSource class be able to complete classes if there weren't completed
yet:
class ExternalASTSource {
....
virtual void
CompleteType (clang::TagDecl *Tag);
virtual void
CompleteType (clang::ObjCInterfaceDecl *Class);
};
This was great, because we can now have the class that is producing the AST
(SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
and the object that creates the forward declaration types can now also
complete them anywhere within the clang type system.
This patch makes a few major changes:
- lldb_private::Module classes now own the AST context. Previously the TypeList
objects did.
- The DWARF parsers now sign up as an external AST sources so they can complete
types.
- All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
ClangASTType, and more) can now be iterating through children of any type,
and if a class/union/struct type (clang::RecordType or ObjC interface)
is found that is incomplete, we can ask the AST to get the definition.
- The SymbolFileDWARFDebugMap class now will create and use a single AST that
all child SymbolFileDWARF classes will share (much like what happens when
we have a complete linked DWARF for an executable).
We will need to modify some of the ClangUserExpression code to take more
advantage of this completion ability in the near future. Meanwhile we should
be better off now that we can be accessing any children of variables through
pointers and always be able to resolve the clang type if needed.
llvm-svn: 123613
2011-01-17 11:46:26 +08:00
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// ClangASTContext callbacks for external source lookups.
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
static void
|
|
|
|
CompleteTagDecl (void *baton, clang::TagDecl *);
|
|
|
|
|
|
|
|
static void
|
|
|
|
CompleteObjCInterfaceDecl (void *baton, clang::ObjCInterfaceDecl *);
|
2011-06-25 08:44:06 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
FindExternalVisibleDeclsByName (void *baton,
|
|
|
|
const clang::DeclContext *DC,
|
|
|
|
clang::DeclarationName Name,
|
|
|
|
llvm::SmallVectorImpl <clang::NamedDecl *> *results);
|
A few of the issue I have been trying to track down and fix have been due to
the way LLDB lazily gets complete definitions for types within the debug info.
When we run across a class/struct/union definition in the DWARF, we will only
parse the full definition if we need to. This works fine for top level types
that are assigned directly to variables and arguments, but when we have a
variable with a class, lets say "A" for this example, that has a member:
"B *m_b". Initially we don't need to hunt down a definition for this class
unless we are ever asked to do something with it ("expr m_b->getDecl()" for
example). With my previous approach to lazy type completion, we would be able
to take a "A *a" and get a complete type for it, but we wouldn't be able to
then do an "a->m_b->getDecl()" unless we always expanded all types within a
class prior to handing out the type. Expanding everything is very costly and
it would be great if there were a better way.
A few months ago I worked with the llvm/clang folks to have the
ExternalASTSource class be able to complete classes if there weren't completed
yet:
class ExternalASTSource {
....
virtual void
CompleteType (clang::TagDecl *Tag);
virtual void
CompleteType (clang::ObjCInterfaceDecl *Class);
};
This was great, because we can now have the class that is producing the AST
(SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
and the object that creates the forward declaration types can now also
complete them anywhere within the clang type system.
This patch makes a few major changes:
- lldb_private::Module classes now own the AST context. Previously the TypeList
objects did.
- The DWARF parsers now sign up as an external AST sources so they can complete
types.
- All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
ClangASTType, and more) can now be iterating through children of any type,
and if a class/union/struct type (clang::RecordType or ObjC interface)
is found that is incomplete, we can ask the AST to get the definition.
- The SymbolFileDWARFDebugMap class now will create and use a single AST that
all child SymbolFileDWARF classes will share (much like what happens when
we have a complete linked DWARF for an executable).
We will need to modify some of the ClangUserExpression code to take more
advantage of this completion ability in the near future. Meanwhile we should
be better off now that we can be accessing any children of variables through
pointers and always be able to resolve the clang type if needed.
llvm-svn: 123613
2011-01-17 11:46:26 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
// PluginInterface protocol
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
virtual const char *
|
|
|
|
GetPluginName();
|
|
|
|
|
|
|
|
virtual const char *
|
|
|
|
GetShortPluginName();
|
|
|
|
|
|
|
|
virtual uint32_t
|
|
|
|
GetPluginVersion();
|
|
|
|
|
|
|
|
// Approach 2 - count + accessor
|
|
|
|
// Index compile units would scan the initial compile units and register
|
|
|
|
// them with the module. This would only be done on demand if and only if
|
|
|
|
// the compile units were needed.
|
|
|
|
//virtual size_t GetCompUnitCount() = 0;
|
|
|
|
//virtual CompUnitSP GetCompUnitAtIndex(size_t cu_idx) = 0;
|
|
|
|
|
|
|
|
const lldb_private::DataExtractor& get_debug_abbrev_data();
|
|
|
|
const lldb_private::DataExtractor& get_debug_frame_data();
|
|
|
|
const lldb_private::DataExtractor& get_debug_info_data();
|
|
|
|
const lldb_private::DataExtractor& get_debug_line_data();
|
|
|
|
const lldb_private::DataExtractor& get_debug_loc_data();
|
|
|
|
const lldb_private::DataExtractor& get_debug_ranges_data();
|
|
|
|
const lldb_private::DataExtractor& get_debug_str_data();
|
|
|
|
|
|
|
|
DWARFDebugAbbrev* DebugAbbrev();
|
|
|
|
const DWARFDebugAbbrev* DebugAbbrev() const;
|
|
|
|
|
|
|
|
DWARFDebugAranges* DebugAranges();
|
|
|
|
const DWARFDebugAranges*DebugAranges() const;
|
|
|
|
|
|
|
|
DWARFDebugInfo* DebugInfo();
|
|
|
|
const DWARFDebugInfo* DebugInfo() const;
|
|
|
|
|
|
|
|
DWARFDebugRanges* DebugRanges();
|
|
|
|
const DWARFDebugRanges* DebugRanges() const;
|
|
|
|
|
|
|
|
const lldb_private::DataExtractor&
|
2011-03-31 09:08:07 +08:00
|
|
|
GetCachedSectionData (uint32_t got_flag,
|
|
|
|
lldb::SectionType sect_type,
|
|
|
|
lldb_private::DataExtractor &data);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-07-22 06:54:26 +08:00
|
|
|
static bool
|
|
|
|
SupportedVersion(uint16_t version);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
clang::DeclContext *
|
2011-08-06 07:43:37 +08:00
|
|
|
GetClangDeclContextForDIE (const lldb_private::SymbolContext &sc, DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die);
|
|
|
|
|
|
|
|
clang::DeclContext *
|
|
|
|
GetClangDeclContextForDIEOffset (const lldb_private::SymbolContext &sc, dw_offset_t die_offset);
|
|
|
|
|
|
|
|
clang::DeclContext *
|
|
|
|
GetClangDeclContextContainingDIE (DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
clang::DeclContext *
|
2011-08-06 07:43:37 +08:00
|
|
|
GetClangDeclContextContainingDIEOffset (dw_offset_t die_offset);
|
2011-06-25 08:44:06 +08:00
|
|
|
|
|
|
|
void
|
2011-07-30 10:42:06 +08:00
|
|
|
SearchDeclContext (const clang::DeclContext *decl_context,
|
|
|
|
const char *name,
|
|
|
|
llvm::SmallVectorImpl <clang::NamedDecl *> *results);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
lldb_private::Flags&
|
|
|
|
GetFlags ()
|
|
|
|
{
|
|
|
|
return m_flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
const lldb_private::Flags&
|
|
|
|
GetFlags () const
|
|
|
|
{
|
|
|
|
return m_flags;
|
|
|
|
}
|
|
|
|
|
A few of the issue I have been trying to track down and fix have been due to
the way LLDB lazily gets complete definitions for types within the debug info.
When we run across a class/struct/union definition in the DWARF, we will only
parse the full definition if we need to. This works fine for top level types
that are assigned directly to variables and arguments, but when we have a
variable with a class, lets say "A" for this example, that has a member:
"B *m_b". Initially we don't need to hunt down a definition for this class
unless we are ever asked to do something with it ("expr m_b->getDecl()" for
example). With my previous approach to lazy type completion, we would be able
to take a "A *a" and get a complete type for it, but we wouldn't be able to
then do an "a->m_b->getDecl()" unless we always expanded all types within a
class prior to handing out the type. Expanding everything is very costly and
it would be great if there were a better way.
A few months ago I worked with the llvm/clang folks to have the
ExternalASTSource class be able to complete classes if there weren't completed
yet:
class ExternalASTSource {
....
virtual void
CompleteType (clang::TagDecl *Tag);
virtual void
CompleteType (clang::ObjCInterfaceDecl *Class);
};
This was great, because we can now have the class that is producing the AST
(SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
and the object that creates the forward declaration types can now also
complete them anywhere within the clang type system.
This patch makes a few major changes:
- lldb_private::Module classes now own the AST context. Previously the TypeList
objects did.
- The DWARF parsers now sign up as an external AST sources so they can complete
types.
- All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
ClangASTType, and more) can now be iterating through children of any type,
and if a class/union/struct type (clang::RecordType or ObjC interface)
is found that is incomplete, we can ask the AST to get the definition.
- The SymbolFileDWARFDebugMap class now will create and use a single AST that
all child SymbolFileDWARF classes will share (much like what happens when
we have a complete linked DWARF for an executable).
We will need to modify some of the ClangUserExpression code to take more
advantage of this completion ability in the near future. Meanwhile we should
be better off now that we can be accessing any children of variables through
pointers and always be able to resolve the clang type if needed.
llvm-svn: 123613
2011-01-17 11:46:26 +08:00
|
|
|
bool
|
|
|
|
HasForwardDeclForClangType (lldb::clang_type_t clang_type);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
protected:
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
flagsGotDebugAbbrevData = (1 << 0),
|
|
|
|
flagsGotDebugArangesData = (1 << 1),
|
|
|
|
flagsGotDebugFrameData = (1 << 2),
|
|
|
|
flagsGotDebugInfoData = (1 << 3),
|
|
|
|
flagsGotDebugLineData = (1 << 4),
|
|
|
|
flagsGotDebugLocData = (1 << 5),
|
|
|
|
flagsGotDebugMacInfoData = (1 << 6),
|
|
|
|
flagsGotDebugPubNamesData = (1 << 7),
|
|
|
|
flagsGotDebugPubTypesData = (1 << 8),
|
|
|
|
flagsGotDebugRangesData = (1 << 9),
|
2011-02-05 10:56:16 +08:00
|
|
|
flagsGotDebugStrData = (1 << 10)
|
2010-06-09 00:52:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN (SymbolFileDWARF);
|
2010-09-24 13:15:53 +08:00
|
|
|
bool ParseCompileUnit (DWARFCompileUnit* cu, lldb::CompUnitSP& compile_unit_sp);
|
2010-06-09 00:52:24 +08:00
|
|
|
DWARFCompileUnit* GetDWARFCompileUnitForUID(lldb::user_id_t cu_uid);
|
|
|
|
DWARFCompileUnit* GetNextUnparsedDWARFCompileUnit(DWARFCompileUnit* prev_cu);
|
2010-09-14 10:20:48 +08:00
|
|
|
lldb_private::CompileUnit* GetCompUnitForDWARFCompUnit(DWARFCompileUnit* cu, uint32_t cu_idx = UINT32_MAX);
|
2010-06-09 00:52:24 +08:00
|
|
|
bool GetFunction (DWARFCompileUnit* cu, const DWARFDebugInfoEntry* func_die, lldb_private::SymbolContext& sc);
|
2010-09-24 13:15:53 +08:00
|
|
|
lldb_private::Function * ParseCompileUnitFunction (const lldb_private::SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die);
|
2010-06-09 00:52:24 +08:00
|
|
|
size_t ParseFunctionBlocks (const lldb_private::SymbolContext& sc,
|
2010-08-21 10:22:51 +08:00
|
|
|
lldb_private::Block *parent_block,
|
2010-09-24 13:15:53 +08:00
|
|
|
DWARFCompileUnit* dwarf_cu,
|
2010-06-09 00:52:24 +08:00
|
|
|
const DWARFDebugInfoEntry *die,
|
|
|
|
lldb::addr_t subprogram_low_pc,
|
|
|
|
bool parse_siblings,
|
|
|
|
bool parse_children);
|
2010-09-24 13:15:53 +08:00
|
|
|
size_t ParseTypes (const lldb_private::SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, bool parse_siblings, bool parse_children);
|
2010-09-29 09:12:09 +08:00
|
|
|
lldb::TypeSP ParseType (const lldb_private::SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, bool *type_is_new);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
lldb::VariableSP ParseVariableDIE(
|
|
|
|
const lldb_private::SymbolContext& sc,
|
2010-09-24 13:15:53 +08:00
|
|
|
DWARFCompileUnit* dwarf_cu,
|
2010-09-14 10:20:48 +08:00
|
|
|
const DWARFDebugInfoEntry *die,
|
|
|
|
const lldb::addr_t func_low_pc);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
size_t ParseVariables(
|
|
|
|
const lldb_private::SymbolContext& sc,
|
2010-09-24 13:15:53 +08:00
|
|
|
DWARFCompileUnit* dwarf_cu,
|
2010-09-14 10:20:48 +08:00
|
|
|
const lldb::addr_t func_low_pc,
|
2010-06-09 00:52:24 +08:00
|
|
|
const DWARFDebugInfoEntry *die,
|
|
|
|
bool parse_siblings,
|
|
|
|
bool parse_children,
|
|
|
|
lldb_private::VariableList* cc_variable_list = NULL);
|
|
|
|
|
|
|
|
size_t ParseChildMembers(
|
|
|
|
const lldb_private::SymbolContext& sc,
|
2010-09-24 13:15:53 +08:00
|
|
|
DWARFCompileUnit* dwarf_cu,
|
2010-06-09 00:52:24 +08:00
|
|
|
const DWARFDebugInfoEntry *die,
|
2010-09-29 09:12:09 +08:00
|
|
|
lldb::clang_type_t class_clang_type,
|
2010-07-28 10:04:09 +08:00
|
|
|
const lldb::LanguageType class_language,
|
2010-06-09 00:52:24 +08:00
|
|
|
std::vector<clang::CXXBaseSpecifier *>& base_classes,
|
|
|
|
std::vector<int>& member_accessibilities,
|
2010-10-02 04:48:32 +08:00
|
|
|
DWARFDIECollection& member_function_dies,
|
2010-08-06 08:32:49 +08:00
|
|
|
lldb::AccessType &default_accessibility,
|
2010-06-09 00:52:24 +08:00
|
|
|
bool &is_a_class);
|
|
|
|
|
|
|
|
size_t ParseChildParameters(
|
|
|
|
const lldb_private::SymbolContext& sc,
|
|
|
|
lldb::TypeSP& type_sp,
|
2010-09-24 13:15:53 +08:00
|
|
|
DWARFCompileUnit* dwarf_cu,
|
2010-06-09 00:52:24 +08:00
|
|
|
const DWARFDebugInfoEntry *parent_die,
|
2010-09-23 09:09:21 +08:00
|
|
|
bool skip_artificial,
|
2011-08-03 06:21:50 +08:00
|
|
|
bool &is_static,
|
2010-06-09 00:52:24 +08:00
|
|
|
lldb_private::TypeList* type_list,
|
2010-09-29 09:12:09 +08:00
|
|
|
std::vector<lldb::clang_type_t>& function_args,
|
2010-11-16 10:10:54 +08:00
|
|
|
std::vector<clang::ParmVarDecl*>& function_param_decls,
|
|
|
|
unsigned &type_quals);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
size_t ParseChildEnumerators(
|
|
|
|
const lldb_private::SymbolContext& sc,
|
2010-09-29 09:12:09 +08:00
|
|
|
lldb::clang_type_t enumerator_qual_type,
|
2010-06-09 00:52:24 +08:00
|
|
|
uint32_t enumerator_byte_size,
|
2010-09-24 13:15:53 +08:00
|
|
|
DWARFCompileUnit* dwarf_cu,
|
2010-06-09 00:52:24 +08:00
|
|
|
const DWARFDebugInfoEntry *enum_die);
|
|
|
|
|
|
|
|
void ParseChildArrayInfo(
|
|
|
|
const lldb_private::SymbolContext& sc,
|
2010-09-24 13:15:53 +08:00
|
|
|
DWARFCompileUnit* dwarf_cu,
|
2010-06-09 00:52:24 +08:00
|
|
|
const DWARFDebugInfoEntry *parent_die,
|
|
|
|
int64_t& first_index,
|
|
|
|
std::vector<uint64_t>& element_orders,
|
|
|
|
uint32_t& byte_stride,
|
|
|
|
uint32_t& bit_stride);
|
|
|
|
|
2010-06-29 05:30:43 +08:00
|
|
|
void FindFunctions(
|
|
|
|
const lldb_private::ConstString &name,
|
2010-09-15 12:15:46 +08:00
|
|
|
const NameToDIE &name_to_die,
|
|
|
|
lldb_private::SymbolContextList& sc_list);
|
|
|
|
|
|
|
|
void FindFunctions (
|
|
|
|
const lldb_private::RegularExpression ®ex,
|
|
|
|
const NameToDIE &name_to_die,
|
2010-06-29 05:30:43 +08:00
|
|
|
lldb_private::SymbolContextList& sc_list);
|
|
|
|
|
2010-11-08 05:02:03 +08:00
|
|
|
lldb::TypeSP FindDefinitionTypeForDIE (
|
|
|
|
DWARFCompileUnit* cu,
|
|
|
|
const DWARFDebugInfoEntry *die,
|
|
|
|
const lldb_private::ConstString &type_name);
|
|
|
|
|
2010-09-28 05:07:38 +08:00
|
|
|
lldb::TypeSP GetTypeForDIE (DWARFCompileUnit *cu,
|
2010-09-29 09:12:09 +08:00
|
|
|
const DWARFDebugInfoEntry* die);
|
2010-09-28 05:07:38 +08:00
|
|
|
|
2010-08-03 08:35:52 +08:00
|
|
|
uint32_t FindTypes(std::vector<dw_offset_t> die_offsets, uint32_t max_matches, lldb_private::TypeList& types);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
void Index();
|
2011-07-30 10:42:06 +08:00
|
|
|
|
|
|
|
void DumpIndexes();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-10-12 10:24:53 +08:00
|
|
|
void SetDebugMapSymfile (SymbolFileDWARFDebugMap *debug_map_symfile)
|
|
|
|
{
|
|
|
|
m_debug_map_symfile = debug_map_symfile;
|
|
|
|
}
|
|
|
|
|
2011-06-18 06:10:16 +08:00
|
|
|
const DWARFDebugInfoEntry *
|
|
|
|
FindBlockContainingSpecification (dw_offset_t func_die_offset,
|
|
|
|
dw_offset_t spec_block_die_offset,
|
|
|
|
DWARFCompileUnit **dwarf_cu_handle);
|
|
|
|
|
|
|
|
const DWARFDebugInfoEntry *
|
|
|
|
FindBlockContainingSpecification (DWARFCompileUnit* dwarf_cu,
|
|
|
|
const DWARFDebugInfoEntry *die,
|
|
|
|
dw_offset_t spec_block_die_offset,
|
|
|
|
DWARFCompileUnit **dwarf_cu_handle);
|
|
|
|
|
2010-11-11 07:42:09 +08:00
|
|
|
clang::NamespaceDecl *
|
|
|
|
ResolveNamespaceDIE (DWARFCompileUnit *curr_cu, const DWARFDebugInfoEntry *die);
|
|
|
|
|
2011-02-15 08:19:15 +08:00
|
|
|
UniqueDWARFASTTypeMap &
|
|
|
|
GetUniqueDWARFASTTypeMap ();
|
|
|
|
|
2011-06-25 08:44:06 +08:00
|
|
|
void LinkDeclContextToDIE (clang::DeclContext *decl_ctx,
|
|
|
|
const DWARFDebugInfoEntry *die)
|
|
|
|
{
|
|
|
|
m_die_to_decl_ctx[die] = decl_ctx;
|
|
|
|
m_decl_ctx_to_die[decl_ctx] = die;
|
|
|
|
}
|
|
|
|
|
2011-07-13 01:06:17 +08:00
|
|
|
void
|
|
|
|
ReportError (const char *format, ...);
|
|
|
|
|
2010-11-10 07:46:37 +08:00
|
|
|
SymbolFileDWARFDebugMap * m_debug_map_symfile;
|
|
|
|
clang::TranslationUnitDecl * m_clang_tu_decl;
|
2010-06-09 00:52:24 +08:00
|
|
|
lldb_private::Flags m_flags;
|
|
|
|
lldb_private::DataExtractor m_dwarf_data;
|
|
|
|
lldb_private::DataExtractor m_data_debug_abbrev;
|
|
|
|
lldb_private::DataExtractor m_data_debug_frame;
|
|
|
|
lldb_private::DataExtractor m_data_debug_info;
|
|
|
|
lldb_private::DataExtractor m_data_debug_line;
|
|
|
|
lldb_private::DataExtractor m_data_debug_loc;
|
|
|
|
lldb_private::DataExtractor m_data_debug_ranges;
|
|
|
|
lldb_private::DataExtractor m_data_debug_str;
|
|
|
|
|
|
|
|
// The auto_ptr items below are generated on demand if and when someone accesses
|
|
|
|
// them through a non const version of this class.
|
|
|
|
std::auto_ptr<DWARFDebugAbbrev> m_abbr;
|
|
|
|
std::auto_ptr<DWARFDebugAranges> m_aranges;
|
|
|
|
std::auto_ptr<DWARFDebugInfo> m_info;
|
|
|
|
std::auto_ptr<DWARFDebugLine> m_line;
|
2010-09-15 12:15:46 +08:00
|
|
|
NameToDIE m_function_basename_index; // All concrete functions
|
|
|
|
NameToDIE m_function_fullname_index; // All concrete functions
|
|
|
|
NameToDIE m_function_method_index; // All inlined functions
|
|
|
|
NameToDIE m_function_selector_index; // All method names for functions of classes
|
2010-10-12 10:24:53 +08:00
|
|
|
NameToDIE m_objc_class_selectors_index; // Given a class name, find all selectors for the class
|
2010-10-15 10:03:22 +08:00
|
|
|
NameToDIE m_global_index; // Global and static variables
|
|
|
|
NameToDIE m_type_index; // All type DIE offsets
|
|
|
|
NameToDIE m_namespace_index; // All type DIE offsets
|
A few of the issue I have been trying to track down and fix have been due to
the way LLDB lazily gets complete definitions for types within the debug info.
When we run across a class/struct/union definition in the DWARF, we will only
parse the full definition if we need to. This works fine for top level types
that are assigned directly to variables and arguments, but when we have a
variable with a class, lets say "A" for this example, that has a member:
"B *m_b". Initially we don't need to hunt down a definition for this class
unless we are ever asked to do something with it ("expr m_b->getDecl()" for
example). With my previous approach to lazy type completion, we would be able
to take a "A *a" and get a complete type for it, but we wouldn't be able to
then do an "a->m_b->getDecl()" unless we always expanded all types within a
class prior to handing out the type. Expanding everything is very costly and
it would be great if there were a better way.
A few months ago I worked with the llvm/clang folks to have the
ExternalASTSource class be able to complete classes if there weren't completed
yet:
class ExternalASTSource {
....
virtual void
CompleteType (clang::TagDecl *Tag);
virtual void
CompleteType (clang::ObjCInterfaceDecl *Class);
};
This was great, because we can now have the class that is producing the AST
(SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
and the object that creates the forward declaration types can now also
complete them anywhere within the clang type system.
This patch makes a few major changes:
- lldb_private::Module classes now own the AST context. Previously the TypeList
objects did.
- The DWARF parsers now sign up as an external AST sources so they can complete
types.
- All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
ClangASTType, and more) can now be iterating through children of any type,
and if a class/union/struct type (clang::RecordType or ObjC interface)
is found that is incomplete, we can ask the AST to get the definition.
- The SymbolFileDWARFDebugMap class now will create and use a single AST that
all child SymbolFileDWARF classes will share (much like what happens when
we have a complete linked DWARF for an executable).
We will need to modify some of the ClangUserExpression code to take more
advantage of this completion ability in the near future. Meanwhile we should
be better off now that we can be accessing any children of variables through
pointers and always be able to resolve the clang type if needed.
llvm-svn: 123613
2011-01-17 11:46:26 +08:00
|
|
|
bool m_indexed:1,
|
|
|
|
m_is_external_ast_source:1;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
std::auto_ptr<DWARFDebugRanges> m_ranges;
|
2011-02-10 03:06:17 +08:00
|
|
|
UniqueDWARFASTTypeMap m_unique_ast_type_map;
|
2010-06-09 00:52:24 +08:00
|
|
|
typedef llvm::DenseMap<const DWARFDebugInfoEntry *, clang::DeclContext *> DIEToDeclContextMap;
|
2011-06-25 08:44:06 +08:00
|
|
|
typedef llvm::DenseMap<const clang::DeclContext *, const DWARFDebugInfoEntry *> DeclContextToDIEMap;
|
2010-09-28 05:07:38 +08:00
|
|
|
typedef llvm::DenseMap<const DWARFDebugInfoEntry *, lldb_private::Type *> DIEToTypePtr;
|
|
|
|
typedef llvm::DenseMap<const DWARFDebugInfoEntry *, lldb::VariableSP> DIEToVariableSP;
|
2010-09-29 09:12:09 +08:00
|
|
|
typedef llvm::DenseMap<const DWARFDebugInfoEntry *, lldb::clang_type_t> DIEToClangType;
|
|
|
|
typedef llvm::DenseMap<lldb::clang_type_t, const DWARFDebugInfoEntry *> ClangTypeToDIE;
|
2010-06-09 00:52:24 +08:00
|
|
|
DIEToDeclContextMap m_die_to_decl_ctx;
|
2011-06-25 08:44:06 +08:00
|
|
|
DeclContextToDIEMap m_decl_ctx_to_die;
|
2010-09-28 05:07:38 +08:00
|
|
|
DIEToTypePtr m_die_to_type;
|
|
|
|
DIEToVariableSP m_die_to_variable_sp;
|
2010-09-29 09:12:09 +08:00
|
|
|
DIEToClangType m_forward_decl_die_to_clang_type;
|
|
|
|
ClangTypeToDIE m_forward_decl_clang_type_to_die;
|
2010-06-09 00:52:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // liblldb_SymbolFileDWARF_h_
|