]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/API/SBModule.cpp
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / API / SBModule.cpp
1 //===-- SBModule.cpp --------------------------------------------*- 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
10 #include "lldb/API/SBModule.h"
11 #include "lldb/API/SBAddress.h"
12 #include "lldb/API/SBFileSpec.h"
13 #include "lldb/API/SBModuleSpec.h"
14 #include "lldb/API/SBProcess.h"
15 #include "lldb/API/SBStream.h"
16 #include "lldb/API/SBSymbolContextList.h"
17 #include "lldb/Core/Module.h"
18 #include "lldb/Core/Section.h"
19 #include "lldb/Core/ValueObjectList.h"
20 #include "lldb/Core/ValueObjectVariable.h"
21 #include "lldb/Symbol/ObjectFile.h"
22 #include "lldb/Symbol/SymbolFile.h"
23 #include "lldb/Symbol/SymbolVendor.h"
24 #include "lldb/Symbol/Symtab.h"
25 #include "lldb/Symbol/TypeSystem.h"
26 #include "lldb/Symbol/VariableList.h"
27 #include "lldb/Target/Target.h"
28 #include "lldb/Utility/Log.h"
29 #include "lldb/Utility/StreamString.h"
30
31 using namespace lldb;
32 using namespace lldb_private;
33
34 SBModule::SBModule() : m_opaque_sp() {}
35
36 SBModule::SBModule(const lldb::ModuleSP &module_sp) : m_opaque_sp(module_sp) {}
37
38 SBModule::SBModule(const SBModuleSpec &module_spec) : m_opaque_sp() {
39   ModuleSP module_sp;
40   Status error = ModuleList::GetSharedModule(*module_spec.m_opaque_ap,
41                                              module_sp, NULL, NULL, NULL);
42   if (module_sp)
43     SetSP(module_sp);
44 }
45
46 SBModule::SBModule(const SBModule &rhs) : m_opaque_sp(rhs.m_opaque_sp) {}
47
48 SBModule::SBModule(lldb::SBProcess &process, lldb::addr_t header_addr)
49     : m_opaque_sp() {
50   ProcessSP process_sp(process.GetSP());
51   if (process_sp) {
52     m_opaque_sp = process_sp->ReadModuleFromMemory(FileSpec(), header_addr);
53     if (m_opaque_sp) {
54       Target &target = process_sp->GetTarget();
55       bool changed = false;
56       m_opaque_sp->SetLoadAddress(target, 0, true, changed);
57       target.GetImages().Append(m_opaque_sp);
58     }
59   }
60 }
61
62 const SBModule &SBModule::operator=(const SBModule &rhs) {
63   if (this != &rhs)
64     m_opaque_sp = rhs.m_opaque_sp;
65   return *this;
66 }
67
68 SBModule::~SBModule() {}
69
70 bool SBModule::IsValid() const { return m_opaque_sp.get() != NULL; }
71
72 void SBModule::Clear() { m_opaque_sp.reset(); }
73
74 SBFileSpec SBModule::GetFileSpec() const {
75   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
76
77   SBFileSpec file_spec;
78   ModuleSP module_sp(GetSP());
79   if (module_sp)
80     file_spec.SetFileSpec(module_sp->GetFileSpec());
81
82   if (log)
83     log->Printf("SBModule(%p)::GetFileSpec () => SBFileSpec(%p)",
84                 static_cast<void *>(module_sp.get()),
85                 static_cast<const void *>(file_spec.get()));
86
87   return file_spec;
88 }
89
90 lldb::SBFileSpec SBModule::GetPlatformFileSpec() const {
91   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
92
93   SBFileSpec file_spec;
94   ModuleSP module_sp(GetSP());
95   if (module_sp)
96     file_spec.SetFileSpec(module_sp->GetPlatformFileSpec());
97
98   if (log)
99     log->Printf("SBModule(%p)::GetPlatformFileSpec () => SBFileSpec(%p)",
100                 static_cast<void *>(module_sp.get()),
101                 static_cast<const void *>(file_spec.get()));
102
103   return file_spec;
104 }
105
106 bool SBModule::SetPlatformFileSpec(const lldb::SBFileSpec &platform_file) {
107   bool result = false;
108   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
109
110   ModuleSP module_sp(GetSP());
111   if (module_sp) {
112     module_sp->SetPlatformFileSpec(*platform_file);
113     result = true;
114   }
115
116   if (log)
117     log->Printf("SBModule(%p)::SetPlatformFileSpec (SBFileSpec(%p (%s)) => %i",
118                 static_cast<void *>(module_sp.get()),
119                 static_cast<const void *>(platform_file.get()),
120                 platform_file->GetPath().c_str(), result);
121   return result;
122 }
123
124 lldb::SBFileSpec SBModule::GetRemoteInstallFileSpec() {
125   SBFileSpec sb_file_spec;
126   ModuleSP module_sp(GetSP());
127   if (module_sp)
128     sb_file_spec.SetFileSpec(module_sp->GetRemoteInstallFileSpec());
129   return sb_file_spec;
130 }
131
132 bool SBModule::SetRemoteInstallFileSpec(lldb::SBFileSpec &file) {
133   ModuleSP module_sp(GetSP());
134   if (module_sp) {
135     module_sp->SetRemoteInstallFileSpec(file.ref());
136     return true;
137   }
138   return false;
139 }
140
141 const uint8_t *SBModule::GetUUIDBytes() const {
142   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
143
144   const uint8_t *uuid_bytes = NULL;
145   ModuleSP module_sp(GetSP());
146   if (module_sp)
147     uuid_bytes = module_sp->GetUUID().GetBytes().data();
148
149   if (log) {
150     if (uuid_bytes) {
151       StreamString s;
152       module_sp->GetUUID().Dump(&s);
153       log->Printf("SBModule(%p)::GetUUIDBytes () => %s",
154                   static_cast<void *>(module_sp.get()), s.GetData());
155     } else
156       log->Printf("SBModule(%p)::GetUUIDBytes () => NULL",
157                   static_cast<void *>(module_sp.get()));
158   }
159   return uuid_bytes;
160 }
161
162 const char *SBModule::GetUUIDString() const {
163   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
164
165   const char *uuid_cstr = NULL;
166   ModuleSP module_sp(GetSP());
167   if (module_sp) {
168     // We are going to return a "const char *" value through the public API, so
169     // we need to constify it so it gets added permanently the string pool and
170     // then we don't need to worry about the lifetime of the string as it will
171     // never go away once it has been put into the ConstString string pool
172     uuid_cstr = ConstString(module_sp->GetUUID().GetAsString()).GetCString();
173   }
174
175   if (uuid_cstr && uuid_cstr[0]) {
176     if (log)
177       log->Printf("SBModule(%p)::GetUUIDString () => %s",
178                   static_cast<void *>(module_sp.get()), uuid_cstr);
179     return uuid_cstr;
180   }
181
182   if (log)
183     log->Printf("SBModule(%p)::GetUUIDString () => NULL",
184                 static_cast<void *>(module_sp.get()));
185   return NULL;
186 }
187
188 bool SBModule::operator==(const SBModule &rhs) const {
189   if (m_opaque_sp)
190     return m_opaque_sp.get() == rhs.m_opaque_sp.get();
191   return false;
192 }
193
194 bool SBModule::operator!=(const SBModule &rhs) const {
195   if (m_opaque_sp)
196     return m_opaque_sp.get() != rhs.m_opaque_sp.get();
197   return false;
198 }
199
200 ModuleSP SBModule::GetSP() const { return m_opaque_sp; }
201
202 void SBModule::SetSP(const ModuleSP &module_sp) { m_opaque_sp = module_sp; }
203
204 SBAddress SBModule::ResolveFileAddress(lldb::addr_t vm_addr) {
205   lldb::SBAddress sb_addr;
206   ModuleSP module_sp(GetSP());
207   if (module_sp) {
208     Address addr;
209     if (module_sp->ResolveFileAddress(vm_addr, addr))
210       sb_addr.ref() = addr;
211   }
212   return sb_addr;
213 }
214
215 SBSymbolContext
216 SBModule::ResolveSymbolContextForAddress(const SBAddress &addr,
217                                          uint32_t resolve_scope) {
218   SBSymbolContext sb_sc;
219   ModuleSP module_sp(GetSP());
220   if (module_sp && addr.IsValid())
221     module_sp->ResolveSymbolContextForAddress(addr.ref(), resolve_scope,
222                                               *sb_sc);
223   return sb_sc;
224 }
225
226 bool SBModule::GetDescription(SBStream &description) {
227   Stream &strm = description.ref();
228
229   ModuleSP module_sp(GetSP());
230   if (module_sp) {
231     module_sp->GetDescription(&strm);
232   } else
233     strm.PutCString("No value");
234
235   return true;
236 }
237
238 uint32_t SBModule::GetNumCompileUnits() {
239   ModuleSP module_sp(GetSP());
240   if (module_sp) {
241     return module_sp->GetNumCompileUnits();
242   }
243   return 0;
244 }
245
246 SBCompileUnit SBModule::GetCompileUnitAtIndex(uint32_t index) {
247   SBCompileUnit sb_cu;
248   ModuleSP module_sp(GetSP());
249   if (module_sp) {
250     CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex(index);
251     sb_cu.reset(cu_sp.get());
252   }
253   return sb_cu;
254 }
255
256 SBSymbolContextList
257 SBModule::FindCompileUnits(const SBFileSpec &sb_file_spec) {
258   SBSymbolContextList sb_sc_list;
259   const ModuleSP module_sp(GetSP());
260   if (sb_file_spec.IsValid() && module_sp) {
261     const bool append = true;
262     module_sp->FindCompileUnits(*sb_file_spec, append, *sb_sc_list);
263   }
264   return sb_sc_list;
265 }
266
267 static Symtab *GetUnifiedSymbolTable(const lldb::ModuleSP &module_sp) {
268   if (module_sp) {
269     SymbolVendor *symbols = module_sp->GetSymbolVendor();
270     if (symbols)
271       return symbols->GetSymtab();
272   }
273   return NULL;
274 }
275
276 size_t SBModule::GetNumSymbols() {
277   ModuleSP module_sp(GetSP());
278   if (module_sp) {
279     Symtab *symtab = GetUnifiedSymbolTable(module_sp);
280     if (symtab)
281       return symtab->GetNumSymbols();
282   }
283   return 0;
284 }
285
286 SBSymbol SBModule::GetSymbolAtIndex(size_t idx) {
287   SBSymbol sb_symbol;
288   ModuleSP module_sp(GetSP());
289   Symtab *symtab = GetUnifiedSymbolTable(module_sp);
290   if (symtab)
291     sb_symbol.SetSymbol(symtab->SymbolAtIndex(idx));
292   return sb_symbol;
293 }
294
295 lldb::SBSymbol SBModule::FindSymbol(const char *name,
296                                     lldb::SymbolType symbol_type) {
297   SBSymbol sb_symbol;
298   if (name && name[0]) {
299     ModuleSP module_sp(GetSP());
300     Symtab *symtab = GetUnifiedSymbolTable(module_sp);
301     if (symtab)
302       sb_symbol.SetSymbol(symtab->FindFirstSymbolWithNameAndType(
303           ConstString(name), symbol_type, Symtab::eDebugAny,
304           Symtab::eVisibilityAny));
305   }
306   return sb_symbol;
307 }
308
309 lldb::SBSymbolContextList SBModule::FindSymbols(const char *name,
310                                                 lldb::SymbolType symbol_type) {
311   SBSymbolContextList sb_sc_list;
312   if (name && name[0]) {
313     ModuleSP module_sp(GetSP());
314     Symtab *symtab = GetUnifiedSymbolTable(module_sp);
315     if (symtab) {
316       std::vector<uint32_t> matching_symbol_indexes;
317       const size_t num_matches = symtab->FindAllSymbolsWithNameAndType(
318           ConstString(name), symbol_type, matching_symbol_indexes);
319       if (num_matches) {
320         SymbolContext sc;
321         sc.module_sp = module_sp;
322         SymbolContextList &sc_list = *sb_sc_list;
323         for (size_t i = 0; i < num_matches; ++i) {
324           sc.symbol = symtab->SymbolAtIndex(matching_symbol_indexes[i]);
325           if (sc.symbol)
326             sc_list.Append(sc);
327         }
328       }
329     }
330   }
331   return sb_sc_list;
332 }
333
334 size_t SBModule::GetNumSections() {
335   ModuleSP module_sp(GetSP());
336   if (module_sp) {
337     // Give the symbol vendor a chance to add to the unified section list.
338     module_sp->GetSymbolVendor();
339     SectionList *section_list = module_sp->GetSectionList();
340     if (section_list)
341       return section_list->GetSize();
342   }
343   return 0;
344 }
345
346 SBSection SBModule::GetSectionAtIndex(size_t idx) {
347   SBSection sb_section;
348   ModuleSP module_sp(GetSP());
349   if (module_sp) {
350     // Give the symbol vendor a chance to add to the unified section list.
351     module_sp->GetSymbolVendor();
352     SectionList *section_list = module_sp->GetSectionList();
353
354     if (section_list)
355       sb_section.SetSP(section_list->GetSectionAtIndex(idx));
356   }
357   return sb_section;
358 }
359
360 lldb::SBSymbolContextList SBModule::FindFunctions(const char *name,
361                                                   uint32_t name_type_mask) {
362   lldb::SBSymbolContextList sb_sc_list;
363   ModuleSP module_sp(GetSP());
364   if (name && module_sp) {
365     const bool append = true;
366     const bool symbols_ok = true;
367     const bool inlines_ok = true;
368     module_sp->FindFunctions(ConstString(name), NULL, name_type_mask,
369                              symbols_ok, inlines_ok, append, *sb_sc_list);
370   }
371   return sb_sc_list;
372 }
373
374 SBValueList SBModule::FindGlobalVariables(SBTarget &target, const char *name,
375                                           uint32_t max_matches) {
376   SBValueList sb_value_list;
377   ModuleSP module_sp(GetSP());
378   if (name && module_sp) {
379     VariableList variable_list;
380     const uint32_t match_count = module_sp->FindGlobalVariables(
381         ConstString(name), NULL, max_matches, variable_list);
382
383     if (match_count > 0) {
384       for (uint32_t i = 0; i < match_count; ++i) {
385         lldb::ValueObjectSP valobj_sp;
386         TargetSP target_sp(target.GetSP());
387         valobj_sp = ValueObjectVariable::Create(
388             target_sp.get(), variable_list.GetVariableAtIndex(i));
389         if (valobj_sp)
390           sb_value_list.Append(SBValue(valobj_sp));
391       }
392     }
393   }
394
395   return sb_value_list;
396 }
397
398 lldb::SBValue SBModule::FindFirstGlobalVariable(lldb::SBTarget &target,
399                                                 const char *name) {
400   SBValueList sb_value_list(FindGlobalVariables(target, name, 1));
401   if (sb_value_list.IsValid() && sb_value_list.GetSize() > 0)
402     return sb_value_list.GetValueAtIndex(0);
403   return SBValue();
404 }
405
406 lldb::SBType SBModule::FindFirstType(const char *name_cstr) {
407   SBType sb_type;
408   ModuleSP module_sp(GetSP());
409   if (name_cstr && module_sp) {
410     SymbolContext sc;
411     const bool exact_match = false;
412     ConstString name(name_cstr);
413
414     sb_type = SBType(module_sp->FindFirstType(sc, name, exact_match));
415
416     if (!sb_type.IsValid()) {
417       TypeSystem *type_system =
418           module_sp->GetTypeSystemForLanguage(eLanguageTypeC);
419       if (type_system)
420         sb_type = SBType(type_system->GetBuiltinTypeByName(name));
421     }
422   }
423   return sb_type;
424 }
425
426 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) {
427   ModuleSP module_sp(GetSP());
428   if (module_sp) {
429     TypeSystem *type_system =
430         module_sp->GetTypeSystemForLanguage(eLanguageTypeC);
431     if (type_system)
432       return SBType(type_system->GetBasicTypeFromAST(type));
433   }
434   return SBType();
435 }
436
437 lldb::SBTypeList SBModule::FindTypes(const char *type) {
438   SBTypeList retval;
439
440   ModuleSP module_sp(GetSP());
441   if (type && module_sp) {
442     SymbolContext sc;
443     TypeList type_list;
444     const bool exact_match = false;
445     ConstString name(type);
446     llvm::DenseSet<SymbolFile *> searched_symbol_files;
447     const uint32_t num_matches = module_sp->FindTypes(
448         sc, name, exact_match, UINT32_MAX, searched_symbol_files, type_list);
449
450     if (num_matches > 0) {
451       for (size_t idx = 0; idx < num_matches; idx++) {
452         TypeSP type_sp(type_list.GetTypeAtIndex(idx));
453         if (type_sp)
454           retval.Append(SBType(type_sp));
455       }
456     } else {
457       TypeSystem *type_system =
458           module_sp->GetTypeSystemForLanguage(eLanguageTypeC);
459       if (type_system) {
460         CompilerType compiler_type = type_system->GetBuiltinTypeByName(name);
461         if (compiler_type)
462           retval.Append(SBType(compiler_type));
463       }
464     }
465   }
466
467   return retval;
468 }
469
470 lldb::SBType SBModule::GetTypeByID(lldb::user_id_t uid) {
471   ModuleSP module_sp(GetSP());
472   if (module_sp) {
473     SymbolVendor *vendor = module_sp->GetSymbolVendor();
474     if (vendor) {
475       Type *type_ptr = vendor->ResolveTypeUID(uid);
476       if (type_ptr)
477         return SBType(type_ptr->shared_from_this());
478     }
479   }
480   return SBType();
481 }
482
483 lldb::SBTypeList SBModule::GetTypes(uint32_t type_mask) {
484   SBTypeList sb_type_list;
485
486   ModuleSP module_sp(GetSP());
487   if (module_sp) {
488     SymbolVendor *vendor = module_sp->GetSymbolVendor();
489     if (vendor) {
490       TypeList type_list;
491       vendor->GetTypes(NULL, type_mask, type_list);
492       sb_type_list.m_opaque_ap->Append(type_list);
493     }
494   }
495   return sb_type_list;
496 }
497
498 SBSection SBModule::FindSection(const char *sect_name) {
499   SBSection sb_section;
500
501   ModuleSP module_sp(GetSP());
502   if (sect_name && module_sp) {
503     // Give the symbol vendor a chance to add to the unified section list.
504     module_sp->GetSymbolVendor();
505     SectionList *section_list = module_sp->GetSectionList();
506     if (section_list) {
507       ConstString const_sect_name(sect_name);
508       SectionSP section_sp(section_list->FindSectionByName(const_sect_name));
509       if (section_sp) {
510         sb_section.SetSP(section_sp);
511       }
512     }
513   }
514   return sb_section;
515 }
516
517 lldb::ByteOrder SBModule::GetByteOrder() {
518   ModuleSP module_sp(GetSP());
519   if (module_sp)
520     return module_sp->GetArchitecture().GetByteOrder();
521   return eByteOrderInvalid;
522 }
523
524 const char *SBModule::GetTriple() {
525   ModuleSP module_sp(GetSP());
526   if (module_sp) {
527     std::string triple(module_sp->GetArchitecture().GetTriple().str());
528     // Unique the string so we don't run into ownership issues since the const
529     // strings put the string into the string pool once and the strings never
530     // comes out
531     ConstString const_triple(triple.c_str());
532     return const_triple.GetCString();
533   }
534   return NULL;
535 }
536
537 uint32_t SBModule::GetAddressByteSize() {
538   ModuleSP module_sp(GetSP());
539   if (module_sp)
540     return module_sp->GetArchitecture().GetAddressByteSize();
541   return sizeof(void *);
542 }
543
544 uint32_t SBModule::GetVersion(uint32_t *versions, uint32_t num_versions) {
545   llvm::VersionTuple version;
546   if (ModuleSP module_sp = GetSP())
547     version = module_sp->GetVersion();
548   uint32_t result = 0;
549   if (!version.empty())
550     ++result;
551   if (version.getMinor())
552     ++result;
553   if(version.getSubminor())
554     ++result;
555
556   if (!versions)
557     return result;
558
559   if (num_versions > 0)
560     versions[0] = version.empty() ? UINT32_MAX : version.getMajor();
561   if (num_versions > 1)
562     versions[1] = version.getMinor().getValueOr(UINT32_MAX);
563   if (num_versions > 2)
564     versions[2] = version.getSubminor().getValueOr(UINT32_MAX);
565   for (uint32_t i = 3; i < num_versions; ++i)
566     versions[i] = UINT32_MAX;
567   return result;
568 }
569
570 lldb::SBFileSpec SBModule::GetSymbolFileSpec() const {
571   lldb::SBFileSpec sb_file_spec;
572   ModuleSP module_sp(GetSP());
573   if (module_sp) {
574     SymbolVendor *symbol_vendor_ptr = module_sp->GetSymbolVendor();
575     if (symbol_vendor_ptr)
576       sb_file_spec.SetFileSpec(symbol_vendor_ptr->GetMainFileSpec());
577   }
578   return sb_file_spec;
579 }
580
581 lldb::SBAddress SBModule::GetObjectFileHeaderAddress() const {
582   lldb::SBAddress sb_addr;
583   ModuleSP module_sp(GetSP());
584   if (module_sp) {
585     ObjectFile *objfile_ptr = module_sp->GetObjectFile();
586     if (objfile_ptr)
587       sb_addr.ref() = objfile_ptr->GetHeaderAddress();
588   }
589   return sb_addr;
590 }