blob: 02d0c6205c8f08b6e96d0da6e63747f7a24a7069 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- SymbolFileDWARFDebugMap.h ------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Greg Claytona76dd622011-09-12 04:20:38 +000010#ifndef SymbolFileDWARF_SymbolFileDWARFDebugMap_h_
11#define SymbolFileDWARF_SymbolFileDWARFDebugMap_h_
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012
13
14#include <vector>
15#include <bitset>
Greg Claytoncaab74e2012-01-28 00:48:57 +000016
17#include "clang/AST/CharUnits.h"
18
Greg Clayton9422dd62013-03-04 21:46:16 +000019#include "lldb/Core/RangeMap.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020#include "lldb/Symbol/SymbolFile.h"
21
Greg Claytone576ab22011-02-15 00:19:15 +000022#include "UniqueDWARFASTType.h"
23
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024class SymbolFileDWARF;
Greg Clayton2ccf8cf2010-11-07 21:02:03 +000025class DWARFCompileUnit;
26class DWARFDebugInfoEntry;
Greg Claytona8022fa2012-04-24 21:22:41 +000027class DWARFDeclContext;
Greg Clayton1f746072012-08-29 21:13:06 +000028class DebugMapModule;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029
30class SymbolFileDWARFDebugMap : public lldb_private::SymbolFile
31{
32public:
Greg Clayton1f746072012-08-29 21:13:06 +000033
Chris Lattner30fdc8d2010-06-08 16:52:24 +000034 //------------------------------------------------------------------
35 // Static Functions
36 //------------------------------------------------------------------
37 static void
38 Initialize();
39
40 static void
41 Terminate();
42
43 static const char *
44 GetPluginNameStatic();
45
46 static const char *
47 GetPluginDescriptionStatic();
48
49 static lldb_private::SymbolFile *
50 CreateInstance (lldb_private::ObjectFile* obj_file);
51
52 //------------------------------------------------------------------
53 // Constructors and Destructors
54 //------------------------------------------------------------------
55 SymbolFileDWARFDebugMap (lldb_private::ObjectFile* ofile);
56 virtual ~ SymbolFileDWARFDebugMap ();
57
Sean Callananbfaf54d2011-12-03 04:38:43 +000058 virtual uint32_t CalculateAbilities ();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000059
Greg Clayton6beaaa62011-01-17 03:46:26 +000060 virtual void InitializeObject();
61
Chris Lattner30fdc8d2010-06-08 16:52:24 +000062 //------------------------------------------------------------------
63 // Compile Unit function calls
64 //------------------------------------------------------------------
65 virtual uint32_t GetNumCompileUnits ();
66 virtual lldb::CompUnitSP ParseCompileUnitAtIndex (uint32_t index);
67
Greg Clayton1f746072012-08-29 21:13:06 +000068 virtual lldb::LanguageType ParseCompileUnitLanguage (const lldb_private::SymbolContext& sc);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000069 virtual size_t ParseCompileUnitFunctions (const lldb_private::SymbolContext& sc);
70 virtual bool ParseCompileUnitLineTable (const lldb_private::SymbolContext& sc);
71 virtual bool ParseCompileUnitSupportFiles (const lldb_private::SymbolContext& sc, lldb_private::FileSpecList &support_files);
72 virtual size_t ParseFunctionBlocks (const lldb_private::SymbolContext& sc);
73 virtual size_t ParseTypes (const lldb_private::SymbolContext& sc);
74 virtual size_t ParseVariablesForContext (const lldb_private::SymbolContext& sc);
75
Greg Clayton1be10fc2010-09-29 01:12:09 +000076 virtual lldb_private::Type* ResolveTypeUID (lldb::user_id_t type_uid);
Greg Clayton81c22f62011-10-19 18:09:39 +000077 virtual clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid);
78 virtual clang::DeclContext* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid);
Greg Clayton1be10fc2010-09-29 01:12:09 +000079 virtual lldb::clang_type_t ResolveClangOpaqueTypeDefinition (lldb::clang_type_t clang_Type);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000080 virtual uint32_t ResolveSymbolContext (const lldb_private::Address& so_addr, uint32_t resolve_scope, lldb_private::SymbolContext& sc);
81 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);
Sean Callanan213fdb82011-10-13 01:49:10 +000082 virtual uint32_t FindGlobalVariables (const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000083 virtual uint32_t FindGlobalVariables (const lldb_private::RegularExpression& regex, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
Sean Callanan9df05fb2012-02-10 22:52:19 +000084 virtual uint32_t FindFunctions (const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
85 virtual uint32_t FindFunctions (const lldb_private::RegularExpression& regex, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
Sean Callanan213fdb82011-10-13 01:49:10 +000086 virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types);
Greg Clayton526e5af2010-11-13 03:52:47 +000087 virtual lldb_private::ClangNamespaceDecl
Greg Clayton96d7d742010-11-10 23:42:09 +000088 FindNamespace (const lldb_private::SymbolContext& sc,
Sean Callanan213fdb82011-10-13 01:49:10 +000089 const lldb_private::ConstString &name,
90 const lldb_private::ClangNamespaceDecl *parent_namespace_decl);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000091
Greg Clayton6beaaa62011-01-17 03:46:26 +000092
93 //------------------------------------------------------------------
94 // ClangASTContext callbacks for external source lookups.
95 //------------------------------------------------------------------
96 static void
97 CompleteTagDecl (void *baton, clang::TagDecl *);
98
99 static void
100 CompleteObjCInterfaceDecl (void *baton, clang::ObjCInterfaceDecl *);
Greg Claytoncaab74e2012-01-28 00:48:57 +0000101
102 static bool
103 LayoutRecordType (void *baton,
104 const clang::RecordDecl *record_decl,
105 uint64_t &size,
106 uint64_t &alignment,
107 llvm::DenseMap <const clang::FieldDecl *, uint64_t> &field_offsets,
108 llvm::DenseMap <const clang::CXXRecordDecl *, clang::CharUnits> &base_offsets,
109 llvm::DenseMap <const clang::CXXRecordDecl *, clang::CharUnits> &vbase_offsets);
110
Greg Clayton6beaaa62011-01-17 03:46:26 +0000111
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000112 //------------------------------------------------------------------
113 // PluginInterface protocol
114 //------------------------------------------------------------------
115 virtual const char *
116 GetPluginName();
117
118 virtual const char *
119 GetShortPluginName();
120
121 virtual uint32_t
122 GetPluginVersion();
123
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000124protected:
125 enum
126 {
127 kHaveInitializedOSOs = (1 << 0),
128 kNumFlags
129 };
130
Greg Clayton450e3f32010-10-12 02:24:53 +0000131 friend class SymbolFileDWARF;
Greg Clayton1f746072012-08-29 21:13:06 +0000132 friend class DebugMapModule;
Greg Clayton906ba472013-02-06 00:38:25 +0000133 struct OSOInfo
134 {
135 lldb::ModuleSP module_sp;
136 bool symbol_file_supported;
137
138 OSOInfo() :
139 module_sp (),
140 symbol_file_supported (true)
141 {
142 }
143 };
144
145 typedef STD_SHARED_PTR(OSOInfo) OSOInfoSP;
146
Greg Clayton9422dd62013-03-04 21:46:16 +0000147 typedef lldb_private::RangeDataVector<lldb::addr_t, lldb::addr_t, lldb::addr_t> FileRangeMap;
148
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000149 //------------------------------------------------------------------
150 // Class specific types
151 //------------------------------------------------------------------
152 struct CompileUnitInfo
153 {
154 lldb_private::FileSpec so_file;
Greg Clayton906ba472013-02-06 00:38:25 +0000155 lldb_private::ConstString oso_path;
156 OSOInfoSP oso_sp;
157 lldb::CompUnitSP compile_unit_sp;
Greg Claytonbcf2cfb2010-09-11 03:13:28 +0000158 uint32_t first_symbol_index;
159 uint32_t last_symbol_index;
Greg Clayton1f746072012-08-29 21:13:06 +0000160 uint32_t first_symbol_id;
161 uint32_t last_symbol_id;
Greg Clayton9422dd62013-03-04 21:46:16 +0000162 FileRangeMap file_range_map;
163 bool file_range_map_valid;
164
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000165
166 CompileUnitInfo() :
Greg Claytonbcf2cfb2010-09-11 03:13:28 +0000167 so_file (),
Greg Clayton906ba472013-02-06 00:38:25 +0000168 oso_path (),
169 oso_sp (),
170 compile_unit_sp (),
Greg Claytonbcf2cfb2010-09-11 03:13:28 +0000171 first_symbol_index (UINT32_MAX),
172 last_symbol_index (UINT32_MAX),
Greg Clayton1f746072012-08-29 21:13:06 +0000173 first_symbol_id (UINT32_MAX),
Greg Clayton9422dd62013-03-04 21:46:16 +0000174 last_symbol_id (UINT32_MAX),
175 file_range_map (),
176 file_range_map_valid (false)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000177 {
178 }
Greg Clayton9422dd62013-03-04 21:46:16 +0000179
180 const FileRangeMap &
181 GetFileRangeMap(SymbolFileDWARFDebugMap *exe_symfile);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000182 };
183
184 //------------------------------------------------------------------
185 // Protected Member Functions
186 //------------------------------------------------------------------
187 void
188 InitOSO ();
189
Greg Clayton81c22f62011-10-19 18:09:39 +0000190 static uint32_t
191 GetOSOIndexFromUserID (lldb::user_id_t uid)
192 {
193 return (uint32_t)((uid >> 32ull) - 1ull);
194 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000195 bool
196 GetFileSpecForSO (uint32_t oso_idx, lldb_private::FileSpec &file_spec);
197
198 CompileUnitInfo *
199 GetCompUnitInfo (const lldb_private::SymbolContext& sc);
200
Greg Clayton906ba472013-02-06 00:38:25 +0000201 size_t
202 GetCompUnitInfosForModule (const lldb_private::Module *oso_module,
203 std::vector<CompileUnitInfo *>& cu_infos);
Greg Clayton1f746072012-08-29 21:13:06 +0000204
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000205 lldb_private::Module *
206 GetModuleByCompUnitInfo (CompileUnitInfo *comp_unit_info);
207
208 lldb_private::Module *
209 GetModuleByOSOIndex (uint32_t oso_idx);
210
211 lldb_private::ObjectFile *
212 GetObjectFileByCompUnitInfo (CompileUnitInfo *comp_unit_info);
213
214 lldb_private::ObjectFile *
215 GetObjectFileByOSOIndex (uint32_t oso_idx);
216
Greg Clayton81c22f62011-10-19 18:09:39 +0000217 uint32_t
218 GetCompUnitInfoIndex (const CompileUnitInfo *comp_unit_info);
219
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000220 SymbolFileDWARF *
221 GetSymbolFile (const lldb_private::SymbolContext& sc);
222
223 SymbolFileDWARF *
224 GetSymbolFileByCompUnitInfo (CompileUnitInfo *comp_unit_info);
225
226 SymbolFileDWARF *
227 GetSymbolFileByOSOIndex (uint32_t oso_idx);
228
Greg Claytonbcf2cfb2010-09-11 03:13:28 +0000229 CompileUnitInfo *
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000230 GetCompileUnitInfoForSymbolWithIndex (uint32_t symbol_idx, uint32_t *oso_idx_ptr);
Greg Claytonbcf2cfb2010-09-11 03:13:28 +0000231
232 CompileUnitInfo *
233 GetCompileUnitInfoForSymbolWithID (lldb::user_id_t symbol_id, uint32_t *oso_idx_ptr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000234
235 static int
Greg Claytonbcf2cfb2010-09-11 03:13:28 +0000236 SymbolContainsSymbolWithIndex (uint32_t *symbol_idx_ptr, const CompileUnitInfo *comp_unit_info);
237
238 static int
239 SymbolContainsSymbolWithID (lldb::user_id_t *symbol_idx_ptr, const CompileUnitInfo *comp_unit_info);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000240
241 uint32_t
242 PrivateFindGlobalVariables (const lldb_private::ConstString &name,
Sean Callanan213fdb82011-10-13 01:49:10 +0000243 const lldb_private::ClangNamespaceDecl *namespace_decl,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000244 const std::vector<uint32_t> &name_symbol_indexes,
245 uint32_t max_matches,
246 lldb_private::VariableList& variables);
247
Greg Clayton450e3f32010-10-12 02:24:53 +0000248
249 void
250 SetCompileUnit (SymbolFileDWARF *oso_dwarf, const lldb::CompUnitSP &cu_sp);
251
Greg Clayton1f746072012-08-29 21:13:06 +0000252 lldb::CompUnitSP
253 GetCompileUnit (SymbolFileDWARF *oso_dwarf);
Greg Clayton9422dd62013-03-04 21:46:16 +0000254
255 CompileUnitInfo *
256 GetCompileUnitInfo (SymbolFileDWARF *oso_dwarf);
Greg Clayton1f746072012-08-29 21:13:06 +0000257
Greg Clayton2ccf8cf2010-11-07 21:02:03 +0000258 lldb::TypeSP
Greg Claytona8022fa2012-04-24 21:22:41 +0000259 FindDefinitionTypeForDWARFDeclContext (const DWARFDeclContext &die_decl_ctx);
Greg Clayton2ccf8cf2010-11-07 21:02:03 +0000260
Greg Claytonc7f03b62012-01-12 04:33:28 +0000261 bool
262 Supports_DW_AT_APPLE_objc_complete_type (SymbolFileDWARF *skip_dwarf_oso);
263
Greg Clayton901c5ca2011-12-03 04:40:03 +0000264 lldb::TypeSP
Greg Claytonc7f03b62012-01-12 04:33:28 +0000265 FindCompleteObjCDefinitionTypeForDIE (const DWARFDebugInfoEntry *die,
266 const lldb_private::ConstString &type_name,
267 bool must_be_implementation);
Greg Clayton901c5ca2011-12-03 04:40:03 +0000268
269
Greg Claytone576ab22011-02-15 00:19:15 +0000270 UniqueDWARFASTTypeMap &
271 GetUniqueDWARFASTTypeMap ()
272 {
273 return m_unique_ast_type_map;
274 }
Greg Clayton9422dd62013-03-04 21:46:16 +0000275
276
277 //------------------------------------------------------------------
278 // OSOEntry
279 //------------------------------------------------------------------
280 class OSOEntry
281 {
282 public:
283
284 OSOEntry () :
285 m_exe_sym_idx (UINT32_MAX),
286 m_oso_file_addr (LLDB_INVALID_ADDRESS)
287 {
288 }
289
290 OSOEntry (uint32_t exe_sym_idx,
291 lldb::addr_t oso_file_addr) :
292 m_exe_sym_idx (exe_sym_idx),
293 m_oso_file_addr (oso_file_addr)
294 {
295 }
296
297 uint32_t
298 GetExeSymbolIndex () const
299 {
300 return m_exe_sym_idx;
301 }
302
303 bool
304 operator < (const OSOEntry &rhs) const
305 {
306 return m_exe_sym_idx < rhs.m_exe_sym_idx;
307 }
308
309 lldb::addr_t
310 GetOSOFileAddress () const
311 {
312 return m_oso_file_addr;
313 }
314
315 void
316 SetOSOFileAddress (lldb::addr_t oso_file_addr)
317 {
318 m_oso_file_addr = oso_file_addr;
319 }
320 protected:
321 uint32_t m_exe_sym_idx;
322 lldb::addr_t m_oso_file_addr;
323 };
324
325 typedef lldb_private::RangeDataVector<lldb::addr_t, lldb::addr_t, OSOEntry> DebugMap;
326
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000327 //------------------------------------------------------------------
328 // Member Variables
329 //------------------------------------------------------------------
330 std::bitset<kNumFlags> m_flags;
331 std::vector<CompileUnitInfo> m_compile_unit_infos;
332 std::vector<uint32_t> m_func_indexes; // Sorted by address
333 std::vector<uint32_t> m_glob_indexes;
Greg Clayton906ba472013-02-06 00:38:25 +0000334 std::map<lldb_private::ConstString, OSOInfoSP> m_oso_map;
Greg Claytone576ab22011-02-15 00:19:15 +0000335 UniqueDWARFASTTypeMap m_unique_ast_type_map;
Greg Claytonc7f03b62012-01-12 04:33:28 +0000336 lldb_private::LazyBool m_supports_DW_AT_APPLE_objc_complete_type;
Greg Clayton9422dd62013-03-04 21:46:16 +0000337 DebugMap m_debug_map;
338
339 //------------------------------------------------------------------
340 // When an object file from the debug map gets parsed in
341 // SymbolFileDWARF, it needs to tell the debug map about the object
342 // files addresses by calling this function once for each N_FUN,
343 // N_GSYM and N_STSYM and after all entries in the debug map have
344 // been matched up, FinalizeOSOFileRanges() should be called.
345 //------------------------------------------------------------------
346 bool
347 AddOSOFileRange (CompileUnitInfo *cu_info,
348 lldb::addr_t exe_file_addr,
349 lldb::addr_t oso_file_addr,
350 lldb::addr_t oso_byte_size);
351
352 //------------------------------------------------------------------
353 // Called after calling AddOSOFileRange() for each object file debug
354 // map entry to finalize the info for the unlinked compile unit.
355 //------------------------------------------------------------------
356 void
357 FinalizeOSOFileRanges (CompileUnitInfo *cu_info);
358
359 //------------------------------------------------------------------
360 /// Convert \a addr from a .o file address, to an executable address.
361 ///
362 /// @param[in] addr
363 /// A section offset address from a .o file
364 ///
365 /// @return
366 /// Returns true if \a addr was converted to be an executable
367 /// section/offset address, false otherwise.
368 //------------------------------------------------------------------
369 bool
370 LinkOSOAddress (lldb_private::Address &addr);
371
372 //------------------------------------------------------------------
373 /// Convert a .o file "file address" to an executable "file address".
374 ///
375 /// @param[in] oso_symfile
376 /// The DWARF symbol file that contains \a oso_file_addr
377 ///
378 /// @param[in] oso_file_addr
379 /// A .o file "file address" to convert.
380 ///
381 /// @return
382 /// LLDB_INVALID_ADDRESS if \a oso_file_addr is not in the
383 /// linked executable, otherwise a valid "file address" from the
384 /// linked executable that contains the debug map.
385 //------------------------------------------------------------------
386 lldb::addr_t
387 LinkOSOFileAddress (SymbolFileDWARF *oso_symfile, lldb::addr_t oso_file_addr);
388
389 //------------------------------------------------------------------
390 /// Given a line table full of lines with "file adresses" that are
391 /// for a .o file represented by \a oso_symfile, link a new line table
392 /// and return it.
393 ///
394 /// @param[in] oso_symfile
395 /// The DWARF symbol file that produced the \a line_table
396 ///
397 /// @param[in] addr
398 /// A section offset address from a .o file
399 ///
400 /// @return
401 /// Returns a valid line table full of linked addresses, or NULL
402 /// if none of the line table adresses exist in the main
403 /// executable.
404 //------------------------------------------------------------------
405 lldb_private::LineTable *
406 LinkOSOLineTable (SymbolFileDWARF *oso_symfile,
407 lldb_private::LineTable *line_table);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000408};
409
Greg Claytona76dd622011-09-12 04:20:38 +0000410#endif // #ifndef SymbolFileDWARF_SymbolFileDWARFDebugMap_h_