blob: 010900b05cf333f54810e754f901e937959e46c3 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- Module.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
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Richard Mittonf86248d2013-09-12 02:20:34 +000012#include "lldb/Core/AddressResolverFileLine.h"
Enrico Granata17598482012-11-08 02:22:02 +000013#include "lldb/Core/Error.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000014#include "lldb/Core/Module.h"
Greg Claytonc9660542012-02-05 02:38:54 +000015#include "lldb/Core/DataBuffer.h"
16#include "lldb/Core/DataBufferHeap.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017#include "lldb/Core/Log.h"
18#include "lldb/Core/ModuleList.h"
Greg Clayton1f746072012-08-29 21:13:06 +000019#include "lldb/Core/ModuleSpec.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020#include "lldb/Core/RegularExpression.h"
Greg Clayton1f746072012-08-29 21:13:06 +000021#include "lldb/Core/Section.h"
Greg Claytonc982b3d2011-11-28 01:45:00 +000022#include "lldb/Core/StreamString.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000023#include "lldb/Core/Timer.h"
Greg Claytone38a5ed2012-01-05 03:57:59 +000024#include "lldb/Host/Host.h"
Enrico Granata17598482012-11-08 02:22:02 +000025#include "lldb/Host/Symbols.h"
26#include "lldb/Interpreter/CommandInterpreter.h"
27#include "lldb/Interpreter/ScriptInterpreter.h"
Zachary Turner88c6b622015-03-03 18:34:26 +000028#include "lldb/Symbol/ClangASTContext.h"
Greg Clayton1f746072012-08-29 21:13:06 +000029#include "lldb/Symbol/CompileUnit.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000030#include "lldb/Symbol/ObjectFile.h"
31#include "lldb/Symbol/SymbolContext.h"
32#include "lldb/Symbol/SymbolVendor.h"
Greg Clayton43fe2172013-04-03 02:00:15 +000033#include "lldb/Target/CPPLanguageRuntime.h"
34#include "lldb/Target/ObjCLanguageRuntime.h"
Greg Claytonc9660542012-02-05 02:38:54 +000035#include "lldb/Target/Process.h"
Greg Claytond5944cd2013-12-06 01:12:00 +000036#include "lldb/Target/SectionLoadList.h"
Greg Claytonc9660542012-02-05 02:38:54 +000037#include "lldb/Target/Target.h"
Michael Sartaina7499c92013-07-01 19:45:50 +000038#include "lldb/Symbol/SymbolFile.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000039
Greg Clayton23f8c952014-03-24 23:10:19 +000040#include "Plugins/ObjectFile/JIT/ObjectFileJIT.h"
41
Zachary Turnera893d302015-03-06 20:45:43 +000042#include "llvm/Support/raw_os_ostream.h"
43#include "llvm/Support/Signals.h"
44
Chris Lattner30fdc8d2010-06-08 16:52:24 +000045using namespace lldb;
46using namespace lldb_private;
47
Greg Clayton65a03992011-08-09 00:01:09 +000048// Shared pointers to modules track module lifetimes in
49// targets and in the global module, but this collection
50// will track all module objects that are still alive
51typedef std::vector<Module *> ModuleCollection;
52
53static ModuleCollection &
54GetModuleCollection()
55{
Jim Ingham549f7372011-10-31 23:47:10 +000056 // This module collection needs to live past any module, so we could either make it a
57 // shared pointer in each module or just leak is. Since it is only an empty vector by
58 // the time all the modules have gone away, we just leak it for now. If we decide this
59 // is a big problem we can introduce a Finalize method that will tear everything down in
60 // a predictable order.
61
62 static ModuleCollection *g_module_collection = NULL;
63 if (g_module_collection == NULL)
64 g_module_collection = new ModuleCollection();
65
66 return *g_module_collection;
Greg Clayton65a03992011-08-09 00:01:09 +000067}
68
Greg Claytonb26e6be2012-01-27 18:08:35 +000069Mutex *
Greg Clayton65a03992011-08-09 00:01:09 +000070Module::GetAllocationModuleCollectionMutex()
71{
Greg Claytonb26e6be2012-01-27 18:08:35 +000072 // NOTE: The mutex below must be leaked since the global module list in
73 // the ModuleList class will get torn at some point, and we can't know
74 // if it will tear itself down before the "g_module_collection_mutex" below
75 // will. So we leak a Mutex object below to safeguard against that
76
77 static Mutex *g_module_collection_mutex = NULL;
78 if (g_module_collection_mutex == NULL)
79 g_module_collection_mutex = new Mutex (Mutex::eMutexTypeRecursive); // NOTE: known leak
80 return g_module_collection_mutex;
Greg Clayton65a03992011-08-09 00:01:09 +000081}
82
83size_t
84Module::GetNumberAllocatedModules ()
85{
86 Mutex::Locker locker (GetAllocationModuleCollectionMutex());
87 return GetModuleCollection().size();
88}
89
90Module *
91Module::GetAllocatedModuleAtIndex (size_t idx)
92{
93 Mutex::Locker locker (GetAllocationModuleCollectionMutex());
94 ModuleCollection &modules = GetModuleCollection();
95 if (idx < modules.size())
96 return modules[idx];
97 return NULL;
98}
Greg Clayton29ad7b92012-01-27 18:45:39 +000099#if 0
Greg Clayton65a03992011-08-09 00:01:09 +0000100
Greg Clayton29ad7b92012-01-27 18:45:39 +0000101// These functions help us to determine if modules are still loaded, yet don't require that
102// you have a command interpreter and can easily be called from an external debugger.
103namespace lldb {
Greg Clayton65a03992011-08-09 00:01:09 +0000104
Greg Clayton29ad7b92012-01-27 18:45:39 +0000105 void
106 ClearModuleInfo (void)
107 {
Greg Clayton0cd70862012-04-09 20:22:01 +0000108 const bool mandatory = true;
109 ModuleList::RemoveOrphanSharedModules(mandatory);
Greg Clayton29ad7b92012-01-27 18:45:39 +0000110 }
111
112 void
113 DumpModuleInfo (void)
114 {
115 Mutex::Locker locker (Module::GetAllocationModuleCollectionMutex());
116 ModuleCollection &modules = GetModuleCollection();
117 const size_t count = modules.size();
Daniel Malead01b2952012-11-29 21:49:15 +0000118 printf ("%s: %" PRIu64 " modules:\n", __PRETTY_FUNCTION__, (uint64_t)count);
Greg Clayton29ad7b92012-01-27 18:45:39 +0000119 for (size_t i=0; i<count; ++i)
120 {
121
122 StreamString strm;
123 Module *module = modules[i];
124 const bool in_shared_module_list = ModuleList::ModuleIsInCache (module);
125 module->GetDescription(&strm, eDescriptionLevelFull);
126 printf ("%p: shared = %i, ref_count = %3u, module = %s\n",
127 module,
128 in_shared_module_list,
129 (uint32_t)module->use_count(),
130 strm.GetString().c_str());
131 }
132 }
133}
134
135#endif
Greg Clayton3a18e312012-10-08 22:41:53 +0000136
Greg Claytonb9a01b32012-02-26 05:51:37 +0000137Module::Module (const ModuleSpec &module_spec) :
138 m_mutex (Mutex::eMutexTypeRecursive),
Greg Clayton34f11592014-03-04 21:20:23 +0000139 m_mod_time (),
140 m_arch (),
Greg Claytonb9a01b32012-02-26 05:51:37 +0000141 m_uuid (),
Greg Clayton34f11592014-03-04 21:20:23 +0000142 m_file (),
143 m_platform_file(),
Greg Claytonfbb76342013-11-20 21:07:01 +0000144 m_remote_install_file(),
Greg Clayton34f11592014-03-04 21:20:23 +0000145 m_symfile_spec (),
146 m_object_name (),
147 m_object_offset (),
148 m_object_mod_time (),
Greg Claytonb9a01b32012-02-26 05:51:37 +0000149 m_objfile_sp (),
150 m_symfile_ap (),
Zachary Turner88c6b622015-03-03 18:34:26 +0000151 m_ast (new ClangASTContext),
Greg Claytond804d282012-03-15 21:01:31 +0000152 m_source_mappings (),
Greg Clayton23f8c952014-03-24 23:10:19 +0000153 m_sections_ap(),
Greg Claytonb9a01b32012-02-26 05:51:37 +0000154 m_did_load_objfile (false),
155 m_did_load_symbol_vendor (false),
156 m_did_parse_uuid (false),
157 m_did_init_ast (false),
Greg Clayton1d609092012-07-12 22:51:12 +0000158 m_file_has_changed (false),
159 m_first_file_changed_log (false)
Greg Claytonb9a01b32012-02-26 05:51:37 +0000160{
161 // Scope for locker below...
162 {
163 Mutex::Locker locker (GetAllocationModuleCollectionMutex());
164 GetModuleCollection().push_back(this);
165 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000166
Greg Clayton5160ce52013-03-27 23:08:40 +0000167 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_OBJECT|LIBLLDB_LOG_MODULES));
Greg Claytonb9a01b32012-02-26 05:51:37 +0000168 if (log)
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000169 log->Printf ("%p Module::Module((%s) '%s%s%s%s')",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000170 static_cast<void*>(this),
Greg Clayton34f11592014-03-04 21:20:23 +0000171 module_spec.GetArchitecture().GetArchitectureName(),
172 module_spec.GetFileSpec().GetPath().c_str(),
173 module_spec.GetObjectName().IsEmpty() ? "" : "(",
174 module_spec.GetObjectName().IsEmpty() ? "" : module_spec.GetObjectName().AsCString(""),
175 module_spec.GetObjectName().IsEmpty() ? "" : ")");
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000176
Greg Clayton34f11592014-03-04 21:20:23 +0000177 // First extract all module specifications from the file using the local
178 // file path. If there are no specifications, then don't fill anything in
179 ModuleSpecList modules_specs;
180 if (ObjectFile::GetModuleSpecifications(module_spec.GetFileSpec(), 0, 0, modules_specs) == 0)
181 return;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000182
Greg Clayton34f11592014-03-04 21:20:23 +0000183 // Now make sure that one of the module specifications matches what we just
184 // extract. We might have a module specification that specifies a file "/usr/lib/dyld"
185 // with UUID XXX, but we might have a local version of "/usr/lib/dyld" that has
186 // UUID YYY and we don't want those to match. If they don't match, just don't
187 // fill any ivars in so we don't accidentally grab the wrong file later since
188 // they don't match...
189 ModuleSpec matching_module_spec;
190 if (modules_specs.FindMatchingModuleSpec(module_spec, matching_module_spec) == 0)
191 return;
Greg Clayton7ab7f892014-05-29 21:33:45 +0000192
193 if (module_spec.GetFileSpec())
194 m_mod_time = module_spec.GetFileSpec().GetModificationTime();
195 else if (matching_module_spec.GetFileSpec())
196 m_mod_time = matching_module_spec.GetFileSpec().GetModificationTime();
197
198 // Copy the architecture from the actual spec if we got one back, else use the one that was specified
199 if (matching_module_spec.GetArchitecture().IsValid())
Greg Clayton34f11592014-03-04 21:20:23 +0000200 m_arch = matching_module_spec.GetArchitecture();
Greg Clayton7ab7f892014-05-29 21:33:45 +0000201 else if (module_spec.GetArchitecture().IsValid())
202 m_arch = module_spec.GetArchitecture();
203
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +0000204 // Copy the file spec over and use the specified one (if there was one) so we
Greg Clayton7ab7f892014-05-29 21:33:45 +0000205 // don't use a path that might have gotten resolved a path in 'matching_module_spec'
206 if (module_spec.GetFileSpec())
207 m_file = module_spec.GetFileSpec();
208 else if (matching_module_spec.GetFileSpec())
209 m_file = matching_module_spec.GetFileSpec();
210
211 // Copy the platform file spec over
212 if (module_spec.GetPlatformFileSpec())
213 m_platform_file = module_spec.GetPlatformFileSpec();
214 else if (matching_module_spec.GetPlatformFileSpec())
215 m_platform_file = matching_module_spec.GetPlatformFileSpec();
216
217 // Copy the symbol file spec over
218 if (module_spec.GetSymbolFileSpec())
219 m_symfile_spec = module_spec.GetSymbolFileSpec();
220 else if (matching_module_spec.GetSymbolFileSpec())
221 m_symfile_spec = matching_module_spec.GetSymbolFileSpec();
222
223 // Copy the object name over
224 if (matching_module_spec.GetObjectName())
225 m_object_name = matching_module_spec.GetObjectName();
226 else
227 m_object_name = module_spec.GetObjectName();
228
229 // Always trust the object offset (file offset) and object modification
230 // time (for mod time in a BSD static archive) of from the matching
231 // module specification
Greg Clayton36d7c892014-05-29 17:52:46 +0000232 m_object_offset = matching_module_spec.GetObjectOffset();
233 m_object_mod_time = matching_module_spec.GetObjectModificationTime();
Greg Clayton34f11592014-03-04 21:20:23 +0000234
Greg Claytonb9a01b32012-02-26 05:51:37 +0000235}
236
Greg Claytone72dfb32012-02-24 01:59:29 +0000237Module::Module(const FileSpec& file_spec,
238 const ArchSpec& arch,
239 const ConstString *object_name,
Zachary Turnera746e8e2014-07-02 17:24:07 +0000240 lldb::offset_t object_offset,
Greg Clayton57abc5d2013-05-10 21:47:16 +0000241 const TimeValue *object_mod_time_ptr) :
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000242 m_mutex (Mutex::eMutexTypeRecursive),
243 m_mod_time (file_spec.GetModificationTime()),
244 m_arch (arch),
245 m_uuid (),
246 m_file (file_spec),
Greg Clayton32e0a752011-03-30 18:16:51 +0000247 m_platform_file(),
Greg Claytonfbb76342013-11-20 21:07:01 +0000248 m_remote_install_file (),
Greg Claytone72dfb32012-02-24 01:59:29 +0000249 m_symfile_spec (),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000250 m_object_name (),
Greg Clayton8b82f082011-04-12 05:54:46 +0000251 m_object_offset (object_offset),
Greg Clayton57abc5d2013-05-10 21:47:16 +0000252 m_object_mod_time (),
Greg Clayton762f7132011-09-18 18:59:15 +0000253 m_objfile_sp (),
Greg Claytone83e7312010-09-07 23:40:05 +0000254 m_symfile_ap (),
Zachary Turner88c6b622015-03-03 18:34:26 +0000255 m_ast (new ClangASTContext),
Greg Claytond804d282012-03-15 21:01:31 +0000256 m_source_mappings (),
Greg Clayton23f8c952014-03-24 23:10:19 +0000257 m_sections_ap(),
Greg Claytone83e7312010-09-07 23:40:05 +0000258 m_did_load_objfile (false),
259 m_did_load_symbol_vendor (false),
260 m_did_parse_uuid (false),
Greg Clayton6beaaa62011-01-17 03:46:26 +0000261 m_did_init_ast (false),
Greg Clayton1d609092012-07-12 22:51:12 +0000262 m_file_has_changed (false),
263 m_first_file_changed_log (false)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000264{
Greg Clayton65a03992011-08-09 00:01:09 +0000265 // Scope for locker below...
266 {
267 Mutex::Locker locker (GetAllocationModuleCollectionMutex());
268 GetModuleCollection().push_back(this);
269 }
270
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000271 if (object_name)
272 m_object_name = *object_name;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000273
Greg Clayton57abc5d2013-05-10 21:47:16 +0000274 if (object_mod_time_ptr)
275 m_object_mod_time = *object_mod_time_ptr;
276
Greg Clayton5160ce52013-03-27 23:08:40 +0000277 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_OBJECT|LIBLLDB_LOG_MODULES));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000278 if (log)
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000279 log->Printf ("%p Module::Module((%s) '%s%s%s%s')",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000280 static_cast<void*>(this), m_arch.GetArchitectureName(),
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000281 m_file.GetPath().c_str(),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000282 m_object_name.IsEmpty() ? "" : "(",
283 m_object_name.IsEmpty() ? "" : m_object_name.AsCString(""),
284 m_object_name.IsEmpty() ? "" : ")");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000285}
286
Greg Clayton23f8c952014-03-24 23:10:19 +0000287Module::Module () :
288 m_mutex (Mutex::eMutexTypeRecursive),
289 m_mod_time (),
290 m_arch (),
291 m_uuid (),
292 m_file (),
293 m_platform_file(),
294 m_remote_install_file (),
295 m_symfile_spec (),
296 m_object_name (),
297 m_object_offset (0),
298 m_object_mod_time (),
299 m_objfile_sp (),
300 m_symfile_ap (),
Zachary Turner88c6b622015-03-03 18:34:26 +0000301 m_ast (new ClangASTContext),
Greg Clayton23f8c952014-03-24 23:10:19 +0000302 m_source_mappings (),
303 m_sections_ap(),
304 m_did_load_objfile (false),
305 m_did_load_symbol_vendor (false),
306 m_did_parse_uuid (false),
307 m_did_init_ast (false),
Greg Clayton23f8c952014-03-24 23:10:19 +0000308 m_file_has_changed (false),
309 m_first_file_changed_log (false)
310{
311 Mutex::Locker locker (GetAllocationModuleCollectionMutex());
312 GetModuleCollection().push_back(this);
313}
314
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000315Module::~Module()
316{
Greg Clayton217b28b2013-05-22 20:13:22 +0000317 // Lock our module down while we tear everything down to make sure
318 // we don't get any access to the module while it is being destroyed
319 Mutex::Locker locker (m_mutex);
Greg Clayton65a03992011-08-09 00:01:09 +0000320 // Scope for locker below...
321 {
322 Mutex::Locker locker (GetAllocationModuleCollectionMutex());
323 ModuleCollection &modules = GetModuleCollection();
324 ModuleCollection::iterator end = modules.end();
325 ModuleCollection::iterator pos = std::find(modules.begin(), end, this);
Greg Clayton3a18e312012-10-08 22:41:53 +0000326 assert (pos != end);
327 modules.erase(pos);
Greg Clayton65a03992011-08-09 00:01:09 +0000328 }
Greg Clayton5160ce52013-03-27 23:08:40 +0000329 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_OBJECT|LIBLLDB_LOG_MODULES));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000330 if (log)
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000331 log->Printf ("%p Module::~Module((%s) '%s%s%s%s')",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000332 static_cast<void*>(this),
Greg Clayton64195a22011-02-23 00:35:02 +0000333 m_arch.GetArchitectureName(),
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000334 m_file.GetPath().c_str(),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000335 m_object_name.IsEmpty() ? "" : "(",
336 m_object_name.IsEmpty() ? "" : m_object_name.AsCString(""),
337 m_object_name.IsEmpty() ? "" : ")");
Greg Clayton6beaaa62011-01-17 03:46:26 +0000338 // Release any auto pointers before we start tearing down our member
339 // variables since the object file and symbol files might need to make
340 // function calls back into this module object. The ordering is important
341 // here because symbol files can require the module object file. So we tear
342 // down the symbol file first, then the object file.
Greg Clayton3046e662013-07-10 01:23:25 +0000343 m_sections_ap.reset();
Greg Clayton6beaaa62011-01-17 03:46:26 +0000344 m_symfile_ap.reset();
Greg Clayton762f7132011-09-18 18:59:15 +0000345 m_objfile_sp.reset();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000346}
347
Greg Claytonc7f09cc2012-02-24 21:55:59 +0000348ObjectFile *
Andrew MacPherson17220c12014-03-05 10:12:43 +0000349Module::GetMemoryObjectFile (const lldb::ProcessSP &process_sp, lldb::addr_t header_addr, Error &error, size_t size_to_read)
Greg Claytonc7f09cc2012-02-24 21:55:59 +0000350{
351 if (m_objfile_sp)
352 {
353 error.SetErrorString ("object file already exists");
354 }
355 else
356 {
357 Mutex::Locker locker (m_mutex);
358 if (process_sp)
359 {
Greg Claytonc7f09cc2012-02-24 21:55:59 +0000360 m_did_load_objfile = true;
Andrew MacPherson17220c12014-03-05 10:12:43 +0000361 std::unique_ptr<DataBufferHeap> data_ap (new DataBufferHeap (size_to_read, 0));
Greg Claytonc7f09cc2012-02-24 21:55:59 +0000362 Error readmem_error;
363 const size_t bytes_read = process_sp->ReadMemory (header_addr,
364 data_ap->GetBytes(),
365 data_ap->GetByteSize(),
366 readmem_error);
Andrew MacPherson17220c12014-03-05 10:12:43 +0000367 if (bytes_read == size_to_read)
Greg Claytonc7f09cc2012-02-24 21:55:59 +0000368 {
369 DataBufferSP data_sp(data_ap.release());
370 m_objfile_sp = ObjectFile::FindPlugin(shared_from_this(), process_sp, header_addr, data_sp);
371 if (m_objfile_sp)
372 {
Greg Clayton3e10cf32012-04-20 19:50:20 +0000373 StreamString s;
Daniel Malead01b2952012-11-29 21:49:15 +0000374 s.Printf("0x%16.16" PRIx64, header_addr);
Greg Clayton3e10cf32012-04-20 19:50:20 +0000375 m_object_name.SetCString (s.GetData());
376
377 // Once we get the object file, update our module with the object file's
Greg Claytonc7f09cc2012-02-24 21:55:59 +0000378 // architecture since it might differ in vendor/os if some parts were
379 // unknown.
380 m_objfile_sp->GetArchitecture (m_arch);
381 }
382 else
383 {
384 error.SetErrorString ("unable to find suitable object file plug-in");
385 }
386 }
387 else
388 {
389 error.SetErrorStringWithFormat ("unable to read header from memory: %s", readmem_error.AsCString());
390 }
391 }
392 else
393 {
394 error.SetErrorString ("invalid process");
395 }
396 }
397 return m_objfile_sp.get();
398}
399
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000400
Greg Clayton60830262011-02-04 18:53:10 +0000401const lldb_private::UUID&
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000402Module::GetUUID()
403{
404 Mutex::Locker locker (m_mutex);
Greg Claytone83e7312010-09-07 23:40:05 +0000405 if (m_did_parse_uuid == false)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000406 {
407 ObjectFile * obj_file = GetObjectFile ();
408
409 if (obj_file != NULL)
410 {
411 obj_file->GetUUID(&m_uuid);
Greg Claytone83e7312010-09-07 23:40:05 +0000412 m_did_parse_uuid = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000413 }
414 }
415 return m_uuid;
416}
417
Greg Clayton6beaaa62011-01-17 03:46:26 +0000418ClangASTContext &
419Module::GetClangASTContext ()
420{
421 Mutex::Locker locker (m_mutex);
422 if (m_did_init_ast == false)
423 {
424 ObjectFile * objfile = GetObjectFile();
Greg Clayton514487e2011-02-15 21:59:32 +0000425 ArchSpec object_arch;
426 if (objfile && objfile->GetArchitecture(object_arch))
Greg Clayton6beaaa62011-01-17 03:46:26 +0000427 {
428 m_did_init_ast = true;
Jason Molenda981d4df2012-10-16 20:45:49 +0000429
430 // LLVM wants this to be set to iOS or MacOSX; if we're working on
431 // a bare-boards type image, change the triple for llvm's benefit.
432 if (object_arch.GetTriple().getVendor() == llvm::Triple::Apple
433 && object_arch.GetTriple().getOS() == llvm::Triple::UnknownOS)
434 {
435 if (object_arch.GetTriple().getArch() == llvm::Triple::arm ||
Todd Fialad8eaa172014-07-23 14:37:35 +0000436 object_arch.GetTriple().getArch() == llvm::Triple::aarch64 ||
Jason Molenda981d4df2012-10-16 20:45:49 +0000437 object_arch.GetTriple().getArch() == llvm::Triple::thumb)
438 {
439 object_arch.GetTriple().setOS(llvm::Triple::IOS);
440 }
441 else
442 {
443 object_arch.GetTriple().setOS(llvm::Triple::MacOSX);
444 }
445 }
Zachary Turner88c6b622015-03-03 18:34:26 +0000446 m_ast->SetArchitecture (object_arch);
Greg Clayton6beaaa62011-01-17 03:46:26 +0000447 }
448 }
Zachary Turner88c6b622015-03-03 18:34:26 +0000449 return *m_ast;
Greg Clayton6beaaa62011-01-17 03:46:26 +0000450}
451
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000452void
453Module::ParseAllDebugSymbols()
454{
455 Mutex::Locker locker (m_mutex);
Greg Claytonc7bece562013-01-25 18:06:21 +0000456 size_t num_comp_units = GetNumCompileUnits();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000457 if (num_comp_units == 0)
458 return;
459
Greg Claytona2eee182011-09-17 07:23:18 +0000460 SymbolContext sc;
Greg Claytone1cd1be2012-01-29 20:56:30 +0000461 sc.module_sp = shared_from_this();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000462 SymbolVendor *symbols = GetSymbolVendor ();
463
Greg Claytonc7bece562013-01-25 18:06:21 +0000464 for (size_t cu_idx = 0; cu_idx < num_comp_units; cu_idx++)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000465 {
466 sc.comp_unit = symbols->GetCompileUnitAtIndex(cu_idx).get();
467 if (sc.comp_unit)
468 {
469 sc.function = NULL;
470 symbols->ParseVariablesForContext(sc);
471
472 symbols->ParseCompileUnitFunctions(sc);
473
Greg Claytonc7bece562013-01-25 18:06:21 +0000474 for (size_t func_idx = 0; (sc.function = sc.comp_unit->GetFunctionAtIndex(func_idx).get()) != NULL; ++func_idx)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000475 {
476 symbols->ParseFunctionBlocks(sc);
477
478 // Parse the variables for this function and all its blocks
479 symbols->ParseVariablesForContext(sc);
480 }
481
482
483 // Parse all types for this compile unit
484 sc.function = NULL;
485 symbols->ParseTypes(sc);
486 }
487 }
488}
489
490void
491Module::CalculateSymbolContext(SymbolContext* sc)
492{
Greg Claytone1cd1be2012-01-29 20:56:30 +0000493 sc->module_sp = shared_from_this();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000494}
495
Greg Claytone72dfb32012-02-24 01:59:29 +0000496ModuleSP
Greg Clayton7e9b1fd2011-08-12 21:40:01 +0000497Module::CalculateSymbolContextModule ()
498{
Greg Claytone72dfb32012-02-24 01:59:29 +0000499 return shared_from_this();
Greg Clayton7e9b1fd2011-08-12 21:40:01 +0000500}
501
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000502void
503Module::DumpSymbolContext(Stream *s)
504{
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000505 s->Printf(", Module{%p}", static_cast<void*>(this));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000506}
507
Greg Claytonc7bece562013-01-25 18:06:21 +0000508size_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000509Module::GetNumCompileUnits()
510{
511 Mutex::Locker locker (m_mutex);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000512 Timer scoped_timer(__PRETTY_FUNCTION__,
513 "Module::GetNumCompileUnits (module = %p)",
514 static_cast<void*>(this));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000515 SymbolVendor *symbols = GetSymbolVendor ();
516 if (symbols)
517 return symbols->GetNumCompileUnits();
518 return 0;
519}
520
521CompUnitSP
Greg Claytonc7bece562013-01-25 18:06:21 +0000522Module::GetCompileUnitAtIndex (size_t index)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000523{
524 Mutex::Locker locker (m_mutex);
Greg Claytonc7bece562013-01-25 18:06:21 +0000525 size_t num_comp_units = GetNumCompileUnits ();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000526 CompUnitSP cu_sp;
527
528 if (index < num_comp_units)
529 {
530 SymbolVendor *symbols = GetSymbolVendor ();
531 if (symbols)
532 cu_sp = symbols->GetCompileUnitAtIndex(index);
533 }
534 return cu_sp;
535}
536
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000537bool
538Module::ResolveFileAddress (lldb::addr_t vm_addr, Address& so_addr)
539{
540 Mutex::Locker locker (m_mutex);
Daniel Malead01b2952012-11-29 21:49:15 +0000541 Timer scoped_timer(__PRETTY_FUNCTION__, "Module::ResolveFileAddress (vm_addr = 0x%" PRIx64 ")", vm_addr);
Greg Clayton3046e662013-07-10 01:23:25 +0000542 SectionList *section_list = GetSectionList();
543 if (section_list)
544 return so_addr.ResolveAddressUsingFileSections(vm_addr, section_list);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000545 return false;
546}
547
548uint32_t
Ashok Thirumurthi35729bb2013-09-24 15:34:13 +0000549Module::ResolveSymbolContextForAddress (const Address& so_addr, uint32_t resolve_scope, SymbolContext& sc,
550 bool resolve_tail_call_address)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000551{
552 Mutex::Locker locker (m_mutex);
553 uint32_t resolved_flags = 0;
554
Greg Clayton72310352013-02-23 04:12:47 +0000555 // Clear the result symbol context in case we don't find anything, but don't clear the target
556 sc.Clear(false);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000557
558 // Get the section from the section/offset address.
Greg Claytone72dfb32012-02-24 01:59:29 +0000559 SectionSP section_sp (so_addr.GetSection());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000560
561 // Make sure the section matches this module before we try and match anything
Greg Claytone72dfb32012-02-24 01:59:29 +0000562 if (section_sp && section_sp->GetModule().get() == this)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000563 {
564 // If the section offset based address resolved itself, then this
565 // is the right module.
Greg Claytone1cd1be2012-01-29 20:56:30 +0000566 sc.module_sp = shared_from_this();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000567 resolved_flags |= eSymbolContextModule;
568
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000569 SymbolVendor* sym_vendor = GetSymbolVendor();
570 if (!sym_vendor)
571 return resolved_flags;
572
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000573 // Resolve the compile unit, function, block, line table or line
574 // entry if requested.
575 if (resolve_scope & eSymbolContextCompUnit ||
576 resolve_scope & eSymbolContextFunction ||
577 resolve_scope & eSymbolContextBlock ||
578 resolve_scope & eSymbolContextLineEntry )
579 {
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000580 resolved_flags |= sym_vendor->ResolveSymbolContext (so_addr, resolve_scope, sc);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000581 }
582
Jim Ingham680e1772010-08-31 23:51:36 +0000583 // Resolve the symbol if requested, but don't re-look it up if we've already found it.
584 if (resolve_scope & eSymbolContextSymbol && !(resolved_flags & eSymbolContextSymbol))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000585 {
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000586 Symtab *symtab = sym_vendor->GetSymtab();
587 if (symtab && so_addr.IsSectionOffset())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000588 {
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000589 sc.symbol = symtab->FindSymbolContainingFileAddress(so_addr.GetFileAddress());
Ashok Thirumurthi35729bb2013-09-24 15:34:13 +0000590 if (!sc.symbol &&
591 resolve_scope & eSymbolContextFunction && !(resolved_flags & eSymbolContextFunction))
592 {
593 bool verify_unique = false; // No need to check again since ResolveSymbolContext failed to find a symbol at this address.
594 if (ObjectFile *obj_file = sc.module_sp->GetObjectFile())
595 sc.symbol = obj_file->ResolveSymbolForAddress(so_addr, verify_unique);
596 }
597
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000598 if (sc.symbol)
Greg Clayton93e28612013-10-11 22:03:48 +0000599 {
600 if (sc.symbol->IsSynthetic())
601 {
602 // We have a synthetic symbol so lets check if the object file
603 // from the symbol file in the symbol vendor is different than
604 // the object file for the module, and if so search its symbol
605 // table to see if we can come up with a better symbol. For example
606 // dSYM files on MacOSX have an unstripped symbol table inside of
607 // them.
608 ObjectFile *symtab_objfile = symtab->GetObjectFile();
609 if (symtab_objfile && symtab_objfile->IsStripped())
610 {
611 SymbolFile *symfile = sym_vendor->GetSymbolFile();
612 if (symfile)
613 {
614 ObjectFile *symfile_objfile = symfile->GetObjectFile();
615 if (symfile_objfile != symtab_objfile)
616 {
617 Symtab *symfile_symtab = symfile_objfile->GetSymtab();
618 if (symfile_symtab)
619 {
620 Symbol *symbol = symfile_symtab->FindSymbolContainingFileAddress(so_addr.GetFileAddress());
621 if (symbol && !symbol->IsSynthetic())
622 {
623 sc.symbol = symbol;
624 }
625 }
626 }
627 }
628 }
629 }
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000630 resolved_flags |= eSymbolContextSymbol;
Greg Clayton93e28612013-10-11 22:03:48 +0000631 }
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000632 }
633 }
634
635 // For function symbols, so_addr may be off by one. This is a convention consistent
636 // with FDE row indices in eh_frame sections, but requires extra logic here to permit
637 // symbol lookup for disassembly and unwind.
638 if (resolve_scope & eSymbolContextSymbol && !(resolved_flags & eSymbolContextSymbol) &&
Ashok Thirumurthi35729bb2013-09-24 15:34:13 +0000639 resolve_tail_call_address && so_addr.IsSectionOffset())
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000640 {
641 Address previous_addr = so_addr;
Greg Claytonedfaae32013-09-18 20:03:31 +0000642 previous_addr.Slide(-1);
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000643
Ashok Thirumurthi35729bb2013-09-24 15:34:13 +0000644 bool do_resolve_tail_call_address = false; // prevent recursion
645 const uint32_t flags = ResolveSymbolContextForAddress(previous_addr, resolve_scope, sc,
646 do_resolve_tail_call_address);
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000647 if (flags & eSymbolContextSymbol)
648 {
649 AddressRange addr_range;
650 if (sc.GetAddressRange (eSymbolContextFunction | eSymbolContextSymbol, 0, false, addr_range))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000651 {
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000652 if (addr_range.GetBaseAddress().GetSection() == so_addr.GetSection())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000653 {
Ashok Thirumurthi38807142013-09-16 22:00:17 +0000654 // If the requested address is one past the address range of a function (i.e. a tail call),
655 // or the decremented address is the start of a function (i.e. some forms of trampoline),
656 // indicate that the symbol has been resolved.
657 if (so_addr.GetOffset() == addr_range.GetBaseAddress().GetOffset() ||
658 so_addr.GetOffset() == addr_range.GetBaseAddress().GetOffset() + addr_range.GetByteSize())
659 {
660 resolved_flags |= flags;
661 }
662 }
663 else
664 {
665 sc.symbol = nullptr; // Don't trust the symbol if the sections didn't match.
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000666 }
667 }
668 }
669 }
670 }
671 return resolved_flags;
672}
673
674uint32_t
Greg Clayton274060b2010-10-20 20:54:39 +0000675Module::ResolveSymbolContextForFilePath
676(
677 const char *file_path,
678 uint32_t line,
679 bool check_inlines,
680 uint32_t resolve_scope,
681 SymbolContextList& sc_list
682)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000683{
Greg Clayton274060b2010-10-20 20:54:39 +0000684 FileSpec file_spec(file_path, false);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000685 return ResolveSymbolContextsForFileSpec (file_spec, line, check_inlines, resolve_scope, sc_list);
686}
687
688uint32_t
689Module::ResolveSymbolContextsForFileSpec (const FileSpec &file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list)
690{
691 Mutex::Locker locker (m_mutex);
692 Timer scoped_timer(__PRETTY_FUNCTION__,
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000693 "Module::ResolveSymbolContextForFilePath (%s:%u, check_inlines = %s, resolve_scope = 0x%8.8x)",
694 file_spec.GetPath().c_str(),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000695 line,
696 check_inlines ? "yes" : "no",
697 resolve_scope);
698
699 const uint32_t initial_count = sc_list.GetSize();
700
701 SymbolVendor *symbols = GetSymbolVendor ();
702 if (symbols)
703 symbols->ResolveSymbolContext (file_spec, line, check_inlines, resolve_scope, sc_list);
704
705 return sc_list.GetSize() - initial_count;
706}
707
708
Greg Claytonc7bece562013-01-25 18:06:21 +0000709size_t
710Module::FindGlobalVariables (const ConstString &name,
711 const ClangNamespaceDecl *namespace_decl,
712 bool append,
713 size_t max_matches,
714 VariableList& variables)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000715{
716 SymbolVendor *symbols = GetSymbolVendor ();
717 if (symbols)
Sean Callanan213fdb82011-10-13 01:49:10 +0000718 return symbols->FindGlobalVariables(name, namespace_decl, append, max_matches, variables);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000719 return 0;
720}
Greg Claytonc7bece562013-01-25 18:06:21 +0000721
722size_t
723Module::FindGlobalVariables (const RegularExpression& regex,
724 bool append,
725 size_t max_matches,
726 VariableList& variables)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000727{
728 SymbolVendor *symbols = GetSymbolVendor ();
729 if (symbols)
730 return symbols->FindGlobalVariables(regex, append, max_matches, variables);
731 return 0;
732}
733
Greg Claytonc7bece562013-01-25 18:06:21 +0000734size_t
Greg Clayton644247c2011-07-07 01:59:51 +0000735Module::FindCompileUnits (const FileSpec &path,
736 bool append,
737 SymbolContextList &sc_list)
738{
739 if (!append)
740 sc_list.Clear();
741
Greg Claytonc7bece562013-01-25 18:06:21 +0000742 const size_t start_size = sc_list.GetSize();
743 const size_t num_compile_units = GetNumCompileUnits();
Greg Clayton644247c2011-07-07 01:59:51 +0000744 SymbolContext sc;
Greg Claytone1cd1be2012-01-29 20:56:30 +0000745 sc.module_sp = shared_from_this();
Sean Callananddd7a2a2013-10-03 22:27:29 +0000746 const bool compare_directory = (bool)path.GetDirectory();
Greg Claytonc7bece562013-01-25 18:06:21 +0000747 for (size_t i=0; i<num_compile_units; ++i)
Greg Clayton644247c2011-07-07 01:59:51 +0000748 {
749 sc.comp_unit = GetCompileUnitAtIndex(i).get();
Greg Clayton2dafd8e2012-04-23 22:00:21 +0000750 if (sc.comp_unit)
751 {
752 if (FileSpec::Equal (*sc.comp_unit, path, compare_directory))
753 sc_list.Append(sc);
754 }
Greg Clayton644247c2011-07-07 01:59:51 +0000755 }
756 return sc_list.GetSize() - start_size;
757}
758
Greg Claytonc7bece562013-01-25 18:06:21 +0000759size_t
Sean Callananb6d70eb2011-10-12 02:08:07 +0000760Module::FindFunctions (const ConstString &name,
761 const ClangNamespaceDecl *namespace_decl,
Greg Claytonc7bece562013-01-25 18:06:21 +0000762 uint32_t name_type_mask,
Sean Callanan9df05fb2012-02-10 22:52:19 +0000763 bool include_symbols,
764 bool include_inlines,
Greg Clayton931180e2011-01-27 06:44:37 +0000765 bool append,
766 SymbolContextList& sc_list)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000767{
Greg Clayton931180e2011-01-27 06:44:37 +0000768 if (!append)
769 sc_list.Clear();
770
Greg Clayton43fe2172013-04-03 02:00:15 +0000771 const size_t old_size = sc_list.GetSize();
Greg Clayton931180e2011-01-27 06:44:37 +0000772
773 // Find all the functions (not symbols, but debug information functions...
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000774 SymbolVendor *symbols = GetSymbolVendor ();
Greg Clayton43fe2172013-04-03 02:00:15 +0000775
776 if (name_type_mask & eFunctionNameTypeAuto)
Greg Clayton931180e2011-01-27 06:44:37 +0000777 {
Greg Clayton43fe2172013-04-03 02:00:15 +0000778 ConstString lookup_name;
779 uint32_t lookup_name_type_mask = 0;
780 bool match_name_after_lookup = false;
781 Module::PrepareForFunctionNameLookup (name,
782 name_type_mask,
783 lookup_name,
784 lookup_name_type_mask,
785 match_name_after_lookup);
786
787 if (symbols)
Michael Sartaina7499c92013-07-01 19:45:50 +0000788 {
Greg Clayton43fe2172013-04-03 02:00:15 +0000789 symbols->FindFunctions(lookup_name,
790 namespace_decl,
791 lookup_name_type_mask,
792 include_inlines,
793 append,
794 sc_list);
795
Michael Sartaina7499c92013-07-01 19:45:50 +0000796 // Now check our symbol table for symbols that are code symbols if requested
797 if (include_symbols)
Greg Clayton931180e2011-01-27 06:44:37 +0000798 {
Michael Sartaina7499c92013-07-01 19:45:50 +0000799 Symtab *symtab = symbols->GetSymtab();
Greg Clayton43fe2172013-04-03 02:00:15 +0000800 if (symtab)
801 symtab->FindFunctionSymbols(lookup_name, lookup_name_type_mask, sc_list);
802 }
803 }
804
805 if (match_name_after_lookup)
806 {
807 SymbolContext sc;
808 size_t i = old_size;
809 while (i<sc_list.GetSize())
810 {
811 if (sc_list.GetContextAtIndex(i, sc))
Greg Clayton931180e2011-01-27 06:44:37 +0000812 {
Greg Clayton43fe2172013-04-03 02:00:15 +0000813 const char *func_name = sc.GetFunctionName().GetCString();
814 if (func_name && strstr (func_name, name.GetCString()) == NULL)
Greg Clayton931180e2011-01-27 06:44:37 +0000815 {
Greg Clayton43fe2172013-04-03 02:00:15 +0000816 // Remove the current context
817 sc_list.RemoveContextAtIndex(i);
818 // Don't increment i and continue in the loop
819 continue;
Greg Clayton931180e2011-01-27 06:44:37 +0000820 }
821 }
Greg Clayton43fe2172013-04-03 02:00:15 +0000822 ++i;
823 }
824 }
Greg Clayton43fe2172013-04-03 02:00:15 +0000825 }
826 else
827 {
828 if (symbols)
Michael Sartaina7499c92013-07-01 19:45:50 +0000829 {
Greg Clayton43fe2172013-04-03 02:00:15 +0000830 symbols->FindFunctions(name, namespace_decl, name_type_mask, include_inlines, append, sc_list);
831
Michael Sartaina7499c92013-07-01 19:45:50 +0000832 // Now check our symbol table for symbols that are code symbols if requested
833 if (include_symbols)
Greg Clayton43fe2172013-04-03 02:00:15 +0000834 {
Michael Sartaina7499c92013-07-01 19:45:50 +0000835 Symtab *symtab = symbols->GetSymtab();
Greg Clayton43fe2172013-04-03 02:00:15 +0000836 if (symtab)
837 symtab->FindFunctionSymbols(name, name_type_mask, sc_list);
Greg Clayton931180e2011-01-27 06:44:37 +0000838 }
839 }
840 }
Greg Clayton43fe2172013-04-03 02:00:15 +0000841
842 return sc_list.GetSize() - old_size;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000843}
844
Greg Claytonc7bece562013-01-25 18:06:21 +0000845size_t
Greg Clayton931180e2011-01-27 06:44:37 +0000846Module::FindFunctions (const RegularExpression& regex,
Sean Callanan9df05fb2012-02-10 22:52:19 +0000847 bool include_symbols,
848 bool include_inlines,
Greg Clayton931180e2011-01-27 06:44:37 +0000849 bool append,
850 SymbolContextList& sc_list)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000851{
Greg Clayton931180e2011-01-27 06:44:37 +0000852 if (!append)
853 sc_list.Clear();
854
Greg Claytonc7bece562013-01-25 18:06:21 +0000855 const size_t start_size = sc_list.GetSize();
Greg Clayton931180e2011-01-27 06:44:37 +0000856
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000857 SymbolVendor *symbols = GetSymbolVendor ();
858 if (symbols)
Greg Clayton931180e2011-01-27 06:44:37 +0000859 {
Michael Sartaina7499c92013-07-01 19:45:50 +0000860 symbols->FindFunctions(regex, include_inlines, append, sc_list);
861
862 // Now check our symbol table for symbols that are code symbols if requested
863 if (include_symbols)
Greg Clayton931180e2011-01-27 06:44:37 +0000864 {
Michael Sartaina7499c92013-07-01 19:45:50 +0000865 Symtab *symtab = symbols->GetSymtab();
Greg Clayton931180e2011-01-27 06:44:37 +0000866 if (symtab)
867 {
868 std::vector<uint32_t> symbol_indexes;
Matt Kopec00049b82013-02-27 20:13:38 +0000869 symtab->AppendSymbolIndexesMatchingRegExAndType (regex, eSymbolTypeAny, Symtab::eDebugAny, Symtab::eVisibilityAny, symbol_indexes);
Greg Claytonc7bece562013-01-25 18:06:21 +0000870 const size_t num_matches = symbol_indexes.size();
Greg Clayton931180e2011-01-27 06:44:37 +0000871 if (num_matches)
872 {
873 SymbolContext sc(this);
Greg Claytond8cf1a12013-06-12 00:46:38 +0000874 const size_t end_functions_added_index = sc_list.GetSize();
875 size_t num_functions_added_to_sc_list = end_functions_added_index - start_size;
876 if (num_functions_added_to_sc_list == 0)
Greg Clayton931180e2011-01-27 06:44:37 +0000877 {
Greg Claytond8cf1a12013-06-12 00:46:38 +0000878 // No functions were added, just symbols, so we can just append them
879 for (size_t i=0; i<num_matches; ++i)
880 {
881 sc.symbol = symtab->SymbolAtIndex(symbol_indexes[i]);
882 SymbolType sym_type = sc.symbol->GetType();
883 if (sc.symbol && (sym_type == eSymbolTypeCode ||
884 sym_type == eSymbolTypeResolver))
885 sc_list.Append(sc);
886 }
887 }
888 else
889 {
890 typedef std::map<lldb::addr_t, uint32_t> FileAddrToIndexMap;
891 FileAddrToIndexMap file_addr_to_index;
892 for (size_t i=start_size; i<end_functions_added_index; ++i)
893 {
894 const SymbolContext &sc = sc_list[i];
895 if (sc.block)
896 continue;
897 file_addr_to_index[sc.function->GetAddressRange().GetBaseAddress().GetFileAddress()] = i;
898 }
899
900 FileAddrToIndexMap::const_iterator end = file_addr_to_index.end();
901 // Functions were added so we need to merge symbols into any
902 // existing function symbol contexts
903 for (size_t i=start_size; i<num_matches; ++i)
904 {
905 sc.symbol = symtab->SymbolAtIndex(symbol_indexes[i]);
906 SymbolType sym_type = sc.symbol->GetType();
907 if (sc.symbol && (sym_type == eSymbolTypeCode ||
908 sym_type == eSymbolTypeResolver))
909 {
910 FileAddrToIndexMap::const_iterator pos = file_addr_to_index.find(sc.symbol->GetAddress().GetFileAddress());
911 if (pos == end)
912 sc_list.Append(sc);
913 else
914 sc_list[pos->second].symbol = sc.symbol;
915 }
916 }
Greg Clayton931180e2011-01-27 06:44:37 +0000917 }
918 }
919 }
920 }
921 }
922 return sc_list.GetSize() - start_size;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000923}
924
Richard Mittonf86248d2013-09-12 02:20:34 +0000925void
926Module::FindAddressesForLine (const lldb::TargetSP target_sp,
927 const FileSpec &file, uint32_t line,
928 Function *function,
929 std::vector<Address> &output_local, std::vector<Address> &output_extern)
930{
931 SearchFilterByModule filter(target_sp, m_file);
932 AddressResolverFileLine resolver(file, line, true);
933 resolver.ResolveAddress (filter);
934
935 for (size_t n=0;n<resolver.GetNumberOfAddresses();n++)
936 {
937 Address addr = resolver.GetAddressRangeAtIndex(n).GetBaseAddress();
938 Function *f = addr.CalculateSymbolContextFunction();
939 if (f && f == function)
940 output_local.push_back (addr);
941 else
942 output_extern.push_back (addr);
943 }
944}
945
Greg Claytonc7bece562013-01-25 18:06:21 +0000946size_t
Greg Clayton84db9102012-03-26 23:03:23 +0000947Module::FindTypes_Impl (const SymbolContext& sc,
948 const ConstString &name,
949 const ClangNamespaceDecl *namespace_decl,
950 bool append,
Greg Claytonc7bece562013-01-25 18:06:21 +0000951 size_t max_matches,
Greg Clayton84db9102012-03-26 23:03:23 +0000952 TypeList& types)
Greg Clayton3504eee2010-08-03 01:26:16 +0000953{
954 Timer scoped_timer(__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
955 if (sc.module_sp.get() == NULL || sc.module_sp.get() == this)
956 {
957 SymbolVendor *symbols = GetSymbolVendor ();
958 if (symbols)
Sean Callanan213fdb82011-10-13 01:49:10 +0000959 return symbols->FindTypes(sc, name, namespace_decl, append, max_matches, types);
Greg Clayton3504eee2010-08-03 01:26:16 +0000960 }
961 return 0;
962}
963
Greg Claytonc7bece562013-01-25 18:06:21 +0000964size_t
Greg Clayton84db9102012-03-26 23:03:23 +0000965Module::FindTypesInNamespace (const SymbolContext& sc,
966 const ConstString &type_name,
967 const ClangNamespaceDecl *namespace_decl,
Greg Claytonc7bece562013-01-25 18:06:21 +0000968 size_t max_matches,
Greg Clayton84db9102012-03-26 23:03:23 +0000969 TypeList& type_list)
Enrico Granata6f3533f2011-07-29 19:53:35 +0000970{
Greg Clayton84db9102012-03-26 23:03:23 +0000971 const bool append = true;
972 return FindTypes_Impl(sc, type_name, namespace_decl, append, max_matches, type_list);
Enrico Granata6f3533f2011-07-29 19:53:35 +0000973}
974
Greg Claytonb43165b2012-12-05 21:24:42 +0000975lldb::TypeSP
976Module::FindFirstType (const SymbolContext& sc,
977 const ConstString &name,
978 bool exact_match)
979{
980 TypeList type_list;
Greg Claytonc7bece562013-01-25 18:06:21 +0000981 const size_t num_matches = FindTypes (sc, name, exact_match, 1, type_list);
Greg Claytonb43165b2012-12-05 21:24:42 +0000982 if (num_matches)
983 return type_list.GetTypeAtIndex(0);
984 return TypeSP();
985}
986
987
Greg Claytonc7bece562013-01-25 18:06:21 +0000988size_t
Greg Clayton84db9102012-03-26 23:03:23 +0000989Module::FindTypes (const SymbolContext& sc,
990 const ConstString &name,
991 bool exact_match,
Greg Claytonc7bece562013-01-25 18:06:21 +0000992 size_t max_matches,
Greg Clayton84db9102012-03-26 23:03:23 +0000993 TypeList& types)
Enrico Granata6f3533f2011-07-29 19:53:35 +0000994{
Greg Claytonc7bece562013-01-25 18:06:21 +0000995 size_t num_matches = 0;
Greg Clayton84db9102012-03-26 23:03:23 +0000996 const char *type_name_cstr = name.GetCString();
997 std::string type_scope;
998 std::string type_basename;
999 const bool append = true;
Greg Clayton7bc31332012-10-22 16:19:56 +00001000 TypeClass type_class = eTypeClassAny;
1001 if (Type::GetTypeScopeAndBasename (type_name_cstr, type_scope, type_basename, type_class))
Enrico Granata6f3533f2011-07-29 19:53:35 +00001002 {
Greg Clayton84db9102012-03-26 23:03:23 +00001003 // Check if "name" starts with "::" which means the qualified type starts
1004 // from the root namespace and implies and exact match. The typenames we
1005 // get back from clang do not start with "::" so we need to strip this off
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +00001006 // in order to get the qualified names to match
Greg Clayton84db9102012-03-26 23:03:23 +00001007
1008 if (type_scope.size() >= 2 && type_scope[0] == ':' && type_scope[1] == ':')
1009 {
1010 type_scope.erase(0,2);
1011 exact_match = true;
1012 }
1013 ConstString type_basename_const_str (type_basename.c_str());
1014 if (FindTypes_Impl(sc, type_basename_const_str, NULL, append, max_matches, types))
1015 {
Greg Clayton7bc31332012-10-22 16:19:56 +00001016 types.RemoveMismatchedTypes (type_scope, type_basename, type_class, exact_match);
Greg Clayton84db9102012-03-26 23:03:23 +00001017 num_matches = types.GetSize();
1018 }
Enrico Granata6f3533f2011-07-29 19:53:35 +00001019 }
1020 else
Greg Clayton84db9102012-03-26 23:03:23 +00001021 {
1022 // The type is not in a namespace/class scope, just search for it by basename
Greg Clayton7bc31332012-10-22 16:19:56 +00001023 if (type_class != eTypeClassAny)
1024 {
1025 // The "type_name_cstr" will have been modified if we have a valid type class
1026 // prefix (like "struct", "class", "union", "typedef" etc).
Arnaud A. de Grandmaison62e5f4d2014-03-22 20:23:26 +00001027 FindTypes_Impl(sc, ConstString(type_name_cstr), NULL, append, max_matches, types);
Greg Clayton7bc31332012-10-22 16:19:56 +00001028 types.RemoveMismatchedTypes (type_class);
1029 num_matches = types.GetSize();
1030 }
1031 else
1032 {
1033 num_matches = FindTypes_Impl(sc, name, NULL, append, max_matches, types);
1034 }
Greg Clayton84db9102012-03-26 23:03:23 +00001035 }
1036
1037 return num_matches;
Enrico Granata6f3533f2011-07-29 19:53:35 +00001038
1039}
1040
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001041SymbolVendor*
Greg Clayton136dff82012-12-14 02:15:00 +00001042Module::GetSymbolVendor (bool can_create, lldb_private::Stream *feedback_strm)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001043{
1044 Mutex::Locker locker (m_mutex);
Greg Claytone83e7312010-09-07 23:40:05 +00001045 if (m_did_load_symbol_vendor == false && can_create)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001046 {
1047 ObjectFile *obj_file = GetObjectFile ();
1048 if (obj_file != NULL)
1049 {
1050 Timer scoped_timer(__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
Greg Clayton136dff82012-12-14 02:15:00 +00001051 m_symfile_ap.reset(SymbolVendor::FindPlugin(shared_from_this(), feedback_strm));
Greg Claytone83e7312010-09-07 23:40:05 +00001052 m_did_load_symbol_vendor = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001053 }
1054 }
1055 return m_symfile_ap.get();
1056}
1057
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001058void
1059Module::SetFileSpecAndObjectName (const FileSpec &file, const ConstString &object_name)
1060{
1061 // Container objects whose paths do not specify a file directly can call
1062 // this function to correct the file and object names.
1063 m_file = file;
1064 m_mod_time = file.GetModificationTime();
1065 m_object_name = object_name;
1066}
1067
1068const ArchSpec&
1069Module::GetArchitecture () const
1070{
1071 return m_arch;
1072}
1073
Greg Claytonb5ad4ec2013-04-29 17:25:54 +00001074std::string
1075Module::GetSpecificationDescription () const
1076{
1077 std::string spec(GetFileSpec().GetPath());
1078 if (m_object_name)
1079 {
1080 spec += '(';
1081 spec += m_object_name.GetCString();
1082 spec += ')';
1083 }
1084 return spec;
1085}
1086
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001087void
Greg Claytonc982b3d2011-11-28 01:45:00 +00001088Module::GetDescription (Stream *s, lldb::DescriptionLevel level)
Caroline Ticeceb6b132010-10-26 03:11:13 +00001089{
1090 Mutex::Locker locker (m_mutex);
1091
Greg Claytonc982b3d2011-11-28 01:45:00 +00001092 if (level >= eDescriptionLevelFull)
1093 {
1094 if (m_arch.IsValid())
1095 s->Printf("(%s) ", m_arch.GetArchitectureName());
1096 }
Caroline Ticeceb6b132010-10-26 03:11:13 +00001097
Greg Claytonc982b3d2011-11-28 01:45:00 +00001098 if (level == eDescriptionLevelBrief)
1099 {
1100 const char *filename = m_file.GetFilename().GetCString();
1101 if (filename)
1102 s->PutCString (filename);
1103 }
1104 else
1105 {
1106 char path[PATH_MAX];
1107 if (m_file.GetPath(path, sizeof(path)))
1108 s->PutCString(path);
1109 }
Greg Claytoncfd1ace2010-10-31 03:01:06 +00001110
1111 const char *object_name = m_object_name.GetCString();
1112 if (object_name)
1113 s->Printf("(%s)", object_name);
Caroline Ticeceb6b132010-10-26 03:11:13 +00001114}
1115
1116void
Greg Claytonc982b3d2011-11-28 01:45:00 +00001117Module::ReportError (const char *format, ...)
1118{
Greg Claytone38a5ed2012-01-05 03:57:59 +00001119 if (format && format[0])
1120 {
1121 StreamString strm;
1122 strm.PutCString("error: ");
1123 GetDescription(&strm, lldb::eDescriptionLevelBrief);
Greg Clayton8b353342012-01-11 01:59:18 +00001124 strm.PutChar (' ');
Greg Claytone38a5ed2012-01-05 03:57:59 +00001125 va_list args;
1126 va_start (args, format);
1127 strm.PrintfVarArg(format, args);
1128 va_end (args);
1129
1130 const int format_len = strlen(format);
1131 if (format_len > 0)
1132 {
1133 const char last_char = format[format_len-1];
1134 if (last_char != '\n' || last_char != '\r')
1135 strm.EOL();
1136 }
1137 Host::SystemLog (Host::eSystemLogError, "%s", strm.GetString().c_str());
1138
1139 }
1140}
1141
Greg Clayton1d609092012-07-12 22:51:12 +00001142bool
1143Module::FileHasChanged () const
1144{
1145 if (m_file_has_changed == false)
1146 m_file_has_changed = (m_file.GetModificationTime() != m_mod_time);
1147 return m_file_has_changed;
1148}
1149
Greg Claytone38a5ed2012-01-05 03:57:59 +00001150void
1151Module::ReportErrorIfModifyDetected (const char *format, ...)
1152{
Greg Clayton1d609092012-07-12 22:51:12 +00001153 if (m_first_file_changed_log == false)
Greg Claytone38a5ed2012-01-05 03:57:59 +00001154 {
Greg Clayton1d609092012-07-12 22:51:12 +00001155 if (FileHasChanged ())
Greg Claytone38a5ed2012-01-05 03:57:59 +00001156 {
Greg Clayton1d609092012-07-12 22:51:12 +00001157 m_first_file_changed_log = true;
1158 if (format)
Greg Claytone38a5ed2012-01-05 03:57:59 +00001159 {
Greg Clayton1d609092012-07-12 22:51:12 +00001160 StreamString strm;
1161 strm.PutCString("error: the object file ");
1162 GetDescription(&strm, lldb::eDescriptionLevelFull);
1163 strm.PutCString (" has been modified\n");
1164
1165 va_list args;
1166 va_start (args, format);
1167 strm.PrintfVarArg(format, args);
1168 va_end (args);
1169
1170 const int format_len = strlen(format);
1171 if (format_len > 0)
1172 {
1173 const char last_char = format[format_len-1];
1174 if (last_char != '\n' || last_char != '\r')
1175 strm.EOL();
1176 }
1177 strm.PutCString("The debug session should be aborted as the original debug information has been overwritten.\n");
1178 Host::SystemLog (Host::eSystemLogError, "%s", strm.GetString().c_str());
Greg Claytone38a5ed2012-01-05 03:57:59 +00001179 }
Greg Claytone38a5ed2012-01-05 03:57:59 +00001180 }
1181 }
Greg Claytonc982b3d2011-11-28 01:45:00 +00001182}
1183
1184void
1185Module::ReportWarning (const char *format, ...)
1186{
Greg Claytone38a5ed2012-01-05 03:57:59 +00001187 if (format && format[0])
1188 {
1189 StreamString strm;
1190 strm.PutCString("warning: ");
Greg Clayton8b353342012-01-11 01:59:18 +00001191 GetDescription(&strm, lldb::eDescriptionLevelFull);
1192 strm.PutChar (' ');
Greg Claytone38a5ed2012-01-05 03:57:59 +00001193
1194 va_list args;
1195 va_start (args, format);
1196 strm.PrintfVarArg(format, args);
1197 va_end (args);
1198
1199 const int format_len = strlen(format);
1200 if (format_len > 0)
1201 {
1202 const char last_char = format[format_len-1];
1203 if (last_char != '\n' || last_char != '\r')
1204 strm.EOL();
1205 }
1206 Host::SystemLog (Host::eSystemLogWarning, "%s", strm.GetString().c_str());
1207 }
Greg Claytonc982b3d2011-11-28 01:45:00 +00001208}
1209
1210void
1211Module::LogMessage (Log *log, const char *format, ...)
1212{
1213 if (log)
1214 {
1215 StreamString log_message;
Greg Clayton8b353342012-01-11 01:59:18 +00001216 GetDescription(&log_message, lldb::eDescriptionLevelFull);
Greg Claytonc982b3d2011-11-28 01:45:00 +00001217 log_message.PutCString (": ");
1218 va_list args;
1219 va_start (args, format);
1220 log_message.PrintfVarArg (format, args);
1221 va_end (args);
1222 log->PutCString(log_message.GetString().c_str());
1223 }
1224}
1225
Greg Claytond61c0fc2012-04-23 22:55:20 +00001226void
1227Module::LogMessageVerboseBacktrace (Log *log, const char *format, ...)
1228{
1229 if (log)
1230 {
1231 StreamString log_message;
1232 GetDescription(&log_message, lldb::eDescriptionLevelFull);
1233 log_message.PutCString (": ");
1234 va_list args;
1235 va_start (args, format);
1236 log_message.PrintfVarArg (format, args);
1237 va_end (args);
1238 if (log->GetVerbose())
Zachary Turnera893d302015-03-06 20:45:43 +00001239 {
1240 std::string back_trace;
1241 llvm::raw_string_ostream stream(back_trace);
1242 llvm::sys::PrintStackTrace(stream);
1243 log_message.PutCString(back_trace.c_str());
1244 }
Greg Claytond61c0fc2012-04-23 22:55:20 +00001245 log->PutCString(log_message.GetString().c_str());
1246 }
1247}
1248
Greg Claytonc982b3d2011-11-28 01:45:00 +00001249void
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001250Module::Dump(Stream *s)
1251{
1252 Mutex::Locker locker (m_mutex);
Greg Clayton89411422010-10-08 00:21:05 +00001253 //s->Printf("%.*p: ", (int)sizeof(void*) * 2, this);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001254 s->Indent();
Greg Claytonb5ad4ec2013-04-29 17:25:54 +00001255 s->Printf("Module %s%s%s%s\n",
1256 m_file.GetPath().c_str(),
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001257 m_object_name ? "(" : "",
1258 m_object_name ? m_object_name.GetCString() : "",
1259 m_object_name ? ")" : "");
1260
1261 s->IndentMore();
Michael Sartaina7499c92013-07-01 19:45:50 +00001262
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001263 ObjectFile *objfile = GetObjectFile ();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001264 if (objfile)
1265 objfile->Dump(s);
1266
1267 SymbolVendor *symbols = GetSymbolVendor ();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001268 if (symbols)
1269 symbols->Dump(s);
1270
1271 s->IndentLess();
1272}
1273
1274
1275TypeList*
1276Module::GetTypeList ()
1277{
1278 SymbolVendor *symbols = GetSymbolVendor ();
1279 if (symbols)
1280 return &symbols->GetTypeList();
1281 return NULL;
1282}
1283
1284const ConstString &
1285Module::GetObjectName() const
1286{
1287 return m_object_name;
1288}
1289
1290ObjectFile *
1291Module::GetObjectFile()
1292{
1293 Mutex::Locker locker (m_mutex);
Greg Claytone83e7312010-09-07 23:40:05 +00001294 if (m_did_load_objfile == false)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001295 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001296 Timer scoped_timer(__PRETTY_FUNCTION__,
1297 "Module::GetObjectFile () module = %s", GetFileSpec().GetFilename().AsCString(""));
Greg Clayton5ce9c562013-02-06 17:22:03 +00001298 DataBufferSP data_sp;
1299 lldb::offset_t data_offset = 0;
Greg Clayton2540a8a2013-07-12 22:07:46 +00001300 const lldb::offset_t file_size = m_file.GetByteSize();
1301 if (file_size > m_object_offset)
Greg Clayton593577a2011-09-21 03:57:31 +00001302 {
Greg Clayton2540a8a2013-07-12 22:07:46 +00001303 m_did_load_objfile = true;
1304 m_objfile_sp = ObjectFile::FindPlugin (shared_from_this(),
1305 &m_file,
1306 m_object_offset,
1307 file_size - m_object_offset,
1308 data_sp,
1309 data_offset);
1310 if (m_objfile_sp)
1311 {
Zachary Turner5e6f4522015-01-22 18:59:05 +00001312 // Once we get the object file, update our module with the object file's
Greg Clayton2540a8a2013-07-12 22:07:46 +00001313 // architecture since it might differ in vendor/os if some parts were
Zachary Turner5e6f4522015-01-22 18:59:05 +00001314 // unknown. But since the matching arch might already be more specific
1315 // than the generic COFF architecture, only merge in those values that
1316 // overwrite unspecified unknown values.
1317 ArchSpec new_arch;
1318 m_objfile_sp->GetArchitecture(new_arch);
1319 m_arch.MergeFrom(new_arch);
Greg Clayton2540a8a2013-07-12 22:07:46 +00001320 }
Todd Fiala0ee56ce2014-09-05 14:48:49 +00001321 else
1322 {
1323 ReportError ("failed to load objfile for %s", GetFileSpec().GetPath().c_str());
1324 }
Greg Clayton593577a2011-09-21 03:57:31 +00001325 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001326 }
Greg Clayton762f7132011-09-18 18:59:15 +00001327 return m_objfile_sp.get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001328}
1329
Michael Sartaina7499c92013-07-01 19:45:50 +00001330SectionList *
Greg Clayton3046e662013-07-10 01:23:25 +00001331Module::GetSectionList()
1332{
1333 // Populate m_unified_sections_ap with sections from objfile.
1334 if (m_sections_ap.get() == NULL)
1335 {
1336 ObjectFile *obj_file = GetObjectFile();
1337 if (obj_file)
1338 obj_file->CreateSections(*GetUnifiedSectionList());
1339 }
1340 return m_sections_ap.get();
1341}
1342
Jason Molenda05a09c62014-08-22 02:46:46 +00001343void
1344Module::SectionFileAddressesChanged ()
1345{
1346 ObjectFile *obj_file = GetObjectFile ();
1347 if (obj_file)
1348 obj_file->SectionFileAddressesChanged ();
1349 SymbolVendor* sym_vendor = GetSymbolVendor();
1350 if (sym_vendor)
1351 sym_vendor->SectionFileAddressesChanged ();
1352}
1353
Greg Clayton3046e662013-07-10 01:23:25 +00001354SectionList *
Michael Sartaina7499c92013-07-01 19:45:50 +00001355Module::GetUnifiedSectionList()
1356{
Greg Clayton3046e662013-07-10 01:23:25 +00001357 // Populate m_unified_sections_ap with sections from objfile.
1358 if (m_sections_ap.get() == NULL)
1359 m_sections_ap.reset(new SectionList());
1360 return m_sections_ap.get();
Michael Sartaina7499c92013-07-01 19:45:50 +00001361}
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001362
1363const Symbol *
1364Module::FindFirstSymbolWithNameAndType (const ConstString &name, SymbolType symbol_type)
1365{
1366 Timer scoped_timer(__PRETTY_FUNCTION__,
1367 "Module::FindFirstSymbolWithNameAndType (name = %s, type = %i)",
1368 name.AsCString(),
1369 symbol_type);
Michael Sartaina7499c92013-07-01 19:45:50 +00001370 SymbolVendor* sym_vendor = GetSymbolVendor();
1371 if (sym_vendor)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001372 {
Michael Sartaina7499c92013-07-01 19:45:50 +00001373 Symtab *symtab = sym_vendor->GetSymtab();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001374 if (symtab)
Greg Claytonbcf2cfb2010-09-11 03:13:28 +00001375 return symtab->FindFirstSymbolWithNameAndType (name, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001376 }
1377 return NULL;
1378}
1379void
1380Module::SymbolIndicesToSymbolContextList (Symtab *symtab, std::vector<uint32_t> &symbol_indexes, SymbolContextList &sc_list)
1381{
1382 // No need to protect this call using m_mutex all other method calls are
1383 // already thread safe.
1384
1385 size_t num_indices = symbol_indexes.size();
1386 if (num_indices > 0)
1387 {
1388 SymbolContext sc;
1389 CalculateSymbolContext (&sc);
1390 for (size_t i = 0; i < num_indices; i++)
1391 {
1392 sc.symbol = symtab->SymbolAtIndex (symbol_indexes[i]);
1393 if (sc.symbol)
1394 sc_list.Append (sc);
1395 }
1396 }
1397}
1398
1399size_t
Greg Claytonc1b2ccf2013-01-08 00:01:36 +00001400Module::FindFunctionSymbols (const ConstString &name,
1401 uint32_t name_type_mask,
1402 SymbolContextList& sc_list)
1403{
1404 Timer scoped_timer(__PRETTY_FUNCTION__,
1405 "Module::FindSymbolsFunctions (name = %s, mask = 0x%8.8x)",
1406 name.AsCString(),
1407 name_type_mask);
Michael Sartaina7499c92013-07-01 19:45:50 +00001408 SymbolVendor* sym_vendor = GetSymbolVendor();
1409 if (sym_vendor)
Greg Claytonc1b2ccf2013-01-08 00:01:36 +00001410 {
Michael Sartaina7499c92013-07-01 19:45:50 +00001411 Symtab *symtab = sym_vendor->GetSymtab();
Greg Claytonc1b2ccf2013-01-08 00:01:36 +00001412 if (symtab)
1413 return symtab->FindFunctionSymbols (name, name_type_mask, sc_list);
1414 }
1415 return 0;
1416}
1417
1418size_t
Sean Callananb96ff332011-10-13 16:49:47 +00001419Module::FindSymbolsWithNameAndType (const ConstString &name, SymbolType symbol_type, SymbolContextList &sc_list)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001420{
1421 // No need to protect this call using m_mutex all other method calls are
1422 // already thread safe.
1423
1424
1425 Timer scoped_timer(__PRETTY_FUNCTION__,
1426 "Module::FindSymbolsWithNameAndType (name = %s, type = %i)",
1427 name.AsCString(),
1428 symbol_type);
1429 const size_t initial_size = sc_list.GetSize();
Michael Sartaina7499c92013-07-01 19:45:50 +00001430 SymbolVendor* sym_vendor = GetSymbolVendor();
1431 if (sym_vendor)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001432 {
Michael Sartaina7499c92013-07-01 19:45:50 +00001433 Symtab *symtab = sym_vendor->GetSymtab();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001434 if (symtab)
1435 {
1436 std::vector<uint32_t> symbol_indexes;
1437 symtab->FindAllSymbolsWithNameAndType (name, symbol_type, symbol_indexes);
1438 SymbolIndicesToSymbolContextList (symtab, symbol_indexes, sc_list);
1439 }
1440 }
1441 return sc_list.GetSize() - initial_size;
1442}
1443
1444size_t
1445Module::FindSymbolsMatchingRegExAndType (const RegularExpression &regex, SymbolType symbol_type, SymbolContextList &sc_list)
1446{
1447 // No need to protect this call using m_mutex all other method calls are
1448 // already thread safe.
1449
1450 Timer scoped_timer(__PRETTY_FUNCTION__,
1451 "Module::FindSymbolsMatchingRegExAndType (regex = %s, type = %i)",
1452 regex.GetText(),
1453 symbol_type);
1454 const size_t initial_size = sc_list.GetSize();
Michael Sartaina7499c92013-07-01 19:45:50 +00001455 SymbolVendor* sym_vendor = GetSymbolVendor();
1456 if (sym_vendor)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001457 {
Michael Sartaina7499c92013-07-01 19:45:50 +00001458 Symtab *symtab = sym_vendor->GetSymtab();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001459 if (symtab)
1460 {
1461 std::vector<uint32_t> symbol_indexes;
Greg Claytonbcf2cfb2010-09-11 03:13:28 +00001462 symtab->FindAllSymbolsMatchingRexExAndType (regex, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny, symbol_indexes);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001463 SymbolIndicesToSymbolContextList (symtab, symbol_indexes, sc_list);
1464 }
1465 }
1466 return sc_list.GetSize() - initial_size;
1467}
1468
Greg Claytone01e07b2013-04-18 18:10:51 +00001469void
1470Module::SetSymbolFileFileSpec (const FileSpec &file)
1471{
Greg Clayton902716722015-03-31 21:01:48 +00001472 if (!file.Exists())
1473 return;
Michael Sartaina7499c92013-07-01 19:45:50 +00001474 if (m_symfile_ap)
1475 {
Greg Clayton902716722015-03-31 21:01:48 +00001476 // Remove any sections in the unified section list that come from the current symbol vendor.
Greg Clayton3046e662013-07-10 01:23:25 +00001477 SectionList *section_list = GetSectionList();
Michael Sartaina7499c92013-07-01 19:45:50 +00001478 SymbolFile *symbol_file = m_symfile_ap->GetSymbolFile();
1479 if (section_list && symbol_file)
1480 {
1481 ObjectFile *obj_file = symbol_file->GetObjectFile();
Greg Clayton540fbbf2013-08-13 16:46:35 +00001482 // Make sure we have an object file and that the symbol vendor's objfile isn't
1483 // the same as the module's objfile before we remove any sections for it...
Greg Clayton902716722015-03-31 21:01:48 +00001484 if (obj_file)
Michael Sartaina7499c92013-07-01 19:45:50 +00001485 {
Greg Clayton902716722015-03-31 21:01:48 +00001486 // Check to make sure we aren't trying to specify the file we already have
1487 if (obj_file->GetFileSpec() == file)
Michael Sartaina7499c92013-07-01 19:45:50 +00001488 {
Greg Clayton902716722015-03-31 21:01:48 +00001489 // We are being told to add the exact same file that we already have
1490 // we don't have to do anything.
1491 return;
1492 }
1493
1494 // The symbol file might be a directory bundle ("/tmp/a.out.dSYM") instead
1495 // of a full path to the symbol file within the bundle
1496 // ("/tmp/a.out.dSYM/Contents/Resources/DWARF/a.out"). So we need to check this
1497
1498 if (file.IsDirectory())
1499 {
1500 std::string new_path(file.GetPath());
1501 std::string old_path(obj_file->GetFileSpec().GetPath());
1502 if (old_path.find(new_path) == 0)
Michael Sartaina7499c92013-07-01 19:45:50 +00001503 {
Greg Clayton902716722015-03-31 21:01:48 +00001504 // We specified the same bundle as the symbol file that we already have
1505 return;
1506 }
1507 }
1508
1509 if (obj_file != m_objfile_sp.get())
1510 {
1511 size_t num_sections = section_list->GetNumSections (0);
1512 for (size_t idx = num_sections; idx > 0; --idx)
1513 {
1514 lldb::SectionSP section_sp (section_list->GetSectionAtIndex (idx - 1));
1515 if (section_sp->GetObjectFile() == obj_file)
1516 {
1517 section_list->DeleteSection (idx - 1);
1518 }
Michael Sartaina7499c92013-07-01 19:45:50 +00001519 }
1520 }
Michael Sartaina7499c92013-07-01 19:45:50 +00001521 }
1522 }
Greg Clayton902716722015-03-31 21:01:48 +00001523 // Keep all old symbol files around in case there are any lingering type references in
1524 // any SBValue objects that might have been handed out.
1525 m_old_symfiles.push_back(std::move(m_symfile_ap));
Michael Sartaina7499c92013-07-01 19:45:50 +00001526 }
Greg Claytone01e07b2013-04-18 18:10:51 +00001527 m_symfile_spec = file;
1528 m_symfile_ap.reset();
1529 m_did_load_symbol_vendor = false;
1530}
1531
Jim Ingham5aee1622010-08-09 23:31:02 +00001532bool
1533Module::IsExecutable ()
1534{
1535 if (GetObjectFile() == NULL)
1536 return false;
1537 else
1538 return GetObjectFile()->IsExecutable();
1539}
1540
Jim Inghamb53cb272011-08-03 01:03:17 +00001541bool
1542Module::IsLoadedInTarget (Target *target)
1543{
1544 ObjectFile *obj_file = GetObjectFile();
1545 if (obj_file)
1546 {
Greg Clayton3046e662013-07-10 01:23:25 +00001547 SectionList *sections = GetSectionList();
Jim Inghamb53cb272011-08-03 01:03:17 +00001548 if (sections != NULL)
1549 {
1550 size_t num_sections = sections->GetSize();
Jim Inghamb53cb272011-08-03 01:03:17 +00001551 for (size_t sect_idx = 0; sect_idx < num_sections; sect_idx++)
1552 {
1553 SectionSP section_sp = sections->GetSectionAtIndex(sect_idx);
1554 if (section_sp->GetLoadBaseAddress(target) != LLDB_INVALID_ADDRESS)
1555 {
1556 return true;
1557 }
1558 }
1559 }
1560 }
1561 return false;
1562}
Enrico Granata17598482012-11-08 02:22:02 +00001563
1564bool
Enrico Granata97303392013-05-21 00:00:30 +00001565Module::LoadScriptingResourceInTarget (Target *target, Error& error, Stream* feedback_stream)
Enrico Granata17598482012-11-08 02:22:02 +00001566{
1567 if (!target)
1568 {
1569 error.SetErrorString("invalid destination Target");
1570 return false;
1571 }
1572
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +00001573 LoadScriptFromSymFile should_load = target->TargetProperties::GetLoadScriptFromSymbolFile();
Enrico Granata2ea43cd2013-05-13 17:03:52 +00001574
Greg Clayton994740f2014-08-18 21:08:44 +00001575 if (should_load == eLoadScriptFromSymFileFalse)
1576 return false;
1577
Greg Clayton91c0e742013-01-11 23:44:27 +00001578 Debugger &debugger = target->GetDebugger();
1579 const ScriptLanguage script_language = debugger.GetScriptLanguage();
1580 if (script_language != eScriptLanguageNone)
Enrico Granata17598482012-11-08 02:22:02 +00001581 {
Greg Clayton91c0e742013-01-11 23:44:27 +00001582
1583 PlatformSP platform_sp(target->GetPlatform());
1584
1585 if (!platform_sp)
1586 {
1587 error.SetErrorString("invalid Platform");
1588 return false;
1589 }
Enrico Granata17598482012-11-08 02:22:02 +00001590
Greg Claytonb9d88902013-03-23 00:50:58 +00001591 FileSpecList file_specs = platform_sp->LocateExecutableScriptingResources (target,
Enrico Granatafe7295d2014-08-16 00:32:58 +00001592 *this,
1593 feedback_stream);
Greg Claytonb9d88902013-03-23 00:50:58 +00001594
1595
1596 const uint32_t num_specs = file_specs.GetSize();
1597 if (num_specs)
Enrico Granata17598482012-11-08 02:22:02 +00001598 {
Greg Claytonb9d88902013-03-23 00:50:58 +00001599 ScriptInterpreter *script_interpreter = debugger.GetCommandInterpreter().GetScriptInterpreter();
1600 if (script_interpreter)
Greg Clayton91c0e742013-01-11 23:44:27 +00001601 {
1602 for (uint32_t i=0; i<num_specs; ++i)
1603 {
1604 FileSpec scripting_fspec (file_specs.GetFileSpecAtIndex(i));
1605 if (scripting_fspec && scripting_fspec.Exists())
1606 {
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +00001607 if (should_load == eLoadScriptFromSymFileWarn)
Enrico Granata2ea43cd2013-05-13 17:03:52 +00001608 {
Enrico Granata397ddd52013-05-21 20:13:34 +00001609 if (feedback_stream)
Jim Inghamd516deb2013-07-01 18:49:43 +00001610 feedback_stream->Printf("warning: '%s' contains a debug script. To run this script in "
1611 "this debug session:\n\n command script import \"%s\"\n\n"
1612 "To run all discovered debug scripts in this session:\n\n"
1613 " settings set target.load-script-from-symbol-file true\n",
1614 GetFileSpec().GetFileNameStrippingExtension().GetCString(),
1615 scripting_fspec.GetPath().c_str());
Enrico Granata2ea43cd2013-05-13 17:03:52 +00001616 return false;
1617 }
Greg Clayton91c0e742013-01-11 23:44:27 +00001618 StreamString scripting_stream;
1619 scripting_fspec.Dump(&scripting_stream);
Enrico Granatae0c70f12013-05-31 01:03:09 +00001620 const bool can_reload = true;
Greg Clayton91c0e742013-01-11 23:44:27 +00001621 const bool init_lldb_globals = false;
Jim Inghamd516deb2013-07-01 18:49:43 +00001622 bool did_load = script_interpreter->LoadScriptingModule(scripting_stream.GetData(),
1623 can_reload,
1624 init_lldb_globals,
1625 error);
Greg Clayton91c0e742013-01-11 23:44:27 +00001626 if (!did_load)
1627 return false;
1628 }
1629 }
1630 }
Greg Claytonb9d88902013-03-23 00:50:58 +00001631 else
1632 {
1633 error.SetErrorString("invalid ScriptInterpreter");
1634 return false;
1635 }
Enrico Granata17598482012-11-08 02:22:02 +00001636 }
1637 }
1638 return true;
1639}
1640
1641bool
Jim Ingham5aee1622010-08-09 23:31:02 +00001642Module::SetArchitecture (const ArchSpec &new_arch)
1643{
Greg Clayton64195a22011-02-23 00:35:02 +00001644 if (!m_arch.IsValid())
Jim Ingham5aee1622010-08-09 23:31:02 +00001645 {
1646 m_arch = new_arch;
1647 return true;
Greg Clayton64195a22011-02-23 00:35:02 +00001648 }
Chaoren Linb6cd5fe2015-02-26 22:15:16 +00001649 return m_arch.IsCompatibleMatch(new_arch);
Jim Ingham5aee1622010-08-09 23:31:02 +00001650}
1651
Greg Claytonc9660542012-02-05 02:38:54 +00001652bool
Greg Clayton751caf62014-02-07 22:54:47 +00001653Module::SetLoadAddress (Target &target, lldb::addr_t value, bool value_is_offset, bool &changed)
Greg Claytonc9660542012-02-05 02:38:54 +00001654{
Steve Pucci9e02dac2014-02-06 19:02:19 +00001655 ObjectFile *object_file = GetObjectFile();
1656 if (object_file)
Greg Claytonc9660542012-02-05 02:38:54 +00001657 {
Greg Clayton751caf62014-02-07 22:54:47 +00001658 changed = object_file->SetLoadAddress(target, value, value_is_offset);
Greg Clayton7524e092014-02-06 20:10:16 +00001659 return true;
1660 }
1661 else
1662 {
1663 changed = false;
Greg Claytonc9660542012-02-05 02:38:54 +00001664 }
Steve Pucci9e02dac2014-02-06 19:02:19 +00001665 return false;
Greg Claytonc9660542012-02-05 02:38:54 +00001666}
1667
Greg Claytonb9a01b32012-02-26 05:51:37 +00001668
1669bool
1670Module::MatchesModuleSpec (const ModuleSpec &module_ref)
1671{
1672 const UUID &uuid = module_ref.GetUUID();
1673
1674 if (uuid.IsValid())
1675 {
1676 // If the UUID matches, then nothing more needs to match...
1677 if (uuid == GetUUID())
1678 return true;
1679 else
1680 return false;
1681 }
1682
1683 const FileSpec &file_spec = module_ref.GetFileSpec();
1684 if (file_spec)
1685 {
Sean Callananddd7a2a2013-10-03 22:27:29 +00001686 if (!FileSpec::Equal (file_spec, m_file, (bool)file_spec.GetDirectory()))
Greg Claytonb9a01b32012-02-26 05:51:37 +00001687 return false;
1688 }
1689
1690 const FileSpec &platform_file_spec = module_ref.GetPlatformFileSpec();
1691 if (platform_file_spec)
1692 {
Sean Callananddd7a2a2013-10-03 22:27:29 +00001693 if (!FileSpec::Equal (platform_file_spec, GetPlatformFileSpec (), (bool)platform_file_spec.GetDirectory()))
Greg Claytonb9a01b32012-02-26 05:51:37 +00001694 return false;
1695 }
1696
1697 const ArchSpec &arch = module_ref.GetArchitecture();
1698 if (arch.IsValid())
1699 {
Sean Callananbf4b7be2012-12-13 22:07:14 +00001700 if (!m_arch.IsCompatibleMatch(arch))
Greg Claytonb9a01b32012-02-26 05:51:37 +00001701 return false;
1702 }
1703
1704 const ConstString &object_name = module_ref.GetObjectName();
1705 if (object_name)
1706 {
1707 if (object_name != GetObjectName())
1708 return false;
1709 }
1710 return true;
1711}
1712
Greg Claytond804d282012-03-15 21:01:31 +00001713bool
1714Module::FindSourceFile (const FileSpec &orig_spec, FileSpec &new_spec) const
1715{
1716 Mutex::Locker locker (m_mutex);
1717 return m_source_mappings.FindFile (orig_spec, new_spec);
1718}
1719
Greg Claytonf9be6932012-03-19 22:22:41 +00001720bool
1721Module::RemapSourceFile (const char *path, std::string &new_path) const
1722{
1723 Mutex::Locker locker (m_mutex);
1724 return m_source_mappings.RemapPath(path, new_path);
1725}
1726
Enrico Granata3467d802012-09-04 18:47:54 +00001727uint32_t
1728Module::GetVersion (uint32_t *versions, uint32_t num_versions)
1729{
1730 ObjectFile *obj_file = GetObjectFile();
1731 if (obj_file)
1732 return obj_file->GetVersion (versions, num_versions);
1733
1734 if (versions && num_versions)
1735 {
1736 for (uint32_t i=0; i<num_versions; ++i)
Enrico Granataafcbdb12014-03-25 20:53:33 +00001737 versions[i] = LLDB_INVALID_MODULE_VERSION;
Enrico Granata3467d802012-09-04 18:47:54 +00001738 }
1739 return 0;
1740}
Greg Clayton43fe2172013-04-03 02:00:15 +00001741
1742void
1743Module::PrepareForFunctionNameLookup (const ConstString &name,
1744 uint32_t name_type_mask,
1745 ConstString &lookup_name,
1746 uint32_t &lookup_name_type_mask,
1747 bool &match_name_after_lookup)
1748{
1749 const char *name_cstr = name.GetCString();
1750 lookup_name_type_mask = eFunctionNameTypeNone;
1751 match_name_after_lookup = false;
Jim Inghamfa39bb42014-10-25 00:33:55 +00001752
1753 llvm::StringRef basename;
1754 llvm::StringRef context;
Greg Clayton43fe2172013-04-03 02:00:15 +00001755
1756 if (name_type_mask & eFunctionNameTypeAuto)
1757 {
1758 if (CPPLanguageRuntime::IsCPPMangledName (name_cstr))
1759 lookup_name_type_mask = eFunctionNameTypeFull;
1760 else if (ObjCLanguageRuntime::IsPossibleObjCMethodName (name_cstr))
1761 lookup_name_type_mask = eFunctionNameTypeFull;
1762 else
1763 {
1764 if (ObjCLanguageRuntime::IsPossibleObjCSelector(name_cstr))
1765 lookup_name_type_mask |= eFunctionNameTypeSelector;
1766
Greg Clayton6ecb2322013-05-18 00:11:21 +00001767 CPPLanguageRuntime::MethodName cpp_method (name);
Jim Inghamfa39bb42014-10-25 00:33:55 +00001768 basename = cpp_method.GetBasename();
Greg Clayton6ecb2322013-05-18 00:11:21 +00001769 if (basename.empty())
1770 {
Jim Inghamfa39bb42014-10-25 00:33:55 +00001771 if (CPPLanguageRuntime::ExtractContextAndIdentifier (name_cstr, context, basename))
Greg Clayton6ecb2322013-05-18 00:11:21 +00001772 lookup_name_type_mask |= (eFunctionNameTypeMethod | eFunctionNameTypeBase);
Greg Claytonc3795402014-10-22 21:47:13 +00001773 else
Greg Clayton65b0e762015-01-28 01:08:39 +00001774 lookup_name_type_mask |= eFunctionNameTypeFull;
Greg Clayton6ecb2322013-05-18 00:11:21 +00001775 }
1776 else
1777 {
Greg Clayton43fe2172013-04-03 02:00:15 +00001778 lookup_name_type_mask |= (eFunctionNameTypeMethod | eFunctionNameTypeBase);
Greg Clayton6ecb2322013-05-18 00:11:21 +00001779 }
Greg Clayton43fe2172013-04-03 02:00:15 +00001780 }
1781 }
1782 else
1783 {
1784 lookup_name_type_mask = name_type_mask;
1785 if (lookup_name_type_mask & eFunctionNameTypeMethod || name_type_mask & eFunctionNameTypeBase)
1786 {
1787 // If they've asked for a CPP method or function name and it can't be that, we don't
1788 // even need to search for CPP methods or names.
Greg Clayton6ecb2322013-05-18 00:11:21 +00001789 CPPLanguageRuntime::MethodName cpp_method (name);
1790 if (cpp_method.IsValid())
Greg Clayton43fe2172013-04-03 02:00:15 +00001791 {
Jim Inghamfa39bb42014-10-25 00:33:55 +00001792 basename = cpp_method.GetBasename();
Greg Clayton6ecb2322013-05-18 00:11:21 +00001793
1794 if (!cpp_method.GetQualifiers().empty())
1795 {
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +00001796 // There is a "const" or other qualifier following the end of the function parens,
Greg Clayton6ecb2322013-05-18 00:11:21 +00001797 // this can't be a eFunctionNameTypeBase
1798 lookup_name_type_mask &= ~(eFunctionNameTypeBase);
1799 if (lookup_name_type_mask == eFunctionNameTypeNone)
1800 return;
1801 }
1802 }
1803 else
1804 {
Jim Inghamfa39bb42014-10-25 00:33:55 +00001805 // If the CPP method parser didn't manage to chop this up, try to fill in the base name if we can.
1806 // If a::b::c is passed in, we need to just look up "c", and then we'll filter the result later.
1807 CPPLanguageRuntime::ExtractContextAndIdentifier (name_cstr, context, basename);
Greg Clayton43fe2172013-04-03 02:00:15 +00001808 }
1809 }
1810
1811 if (lookup_name_type_mask & eFunctionNameTypeSelector)
1812 {
1813 if (!ObjCLanguageRuntime::IsPossibleObjCSelector(name_cstr))
1814 {
1815 lookup_name_type_mask &= ~(eFunctionNameTypeSelector);
1816 if (lookup_name_type_mask == eFunctionNameTypeNone)
1817 return;
1818 }
1819 }
1820 }
1821
Jim Inghamfa39bb42014-10-25 00:33:55 +00001822 if (!basename.empty())
Greg Clayton43fe2172013-04-03 02:00:15 +00001823 {
1824 // The name supplied was a partial C++ path like "a::count". In this case we want to do a
1825 // lookup on the basename "count" and then make sure any matching results contain "a::count"
1826 // so that it would match "b::a::count" and "a::count". This is why we set "match_name_after_lookup"
1827 // to true
Jim Inghamfa39bb42014-10-25 00:33:55 +00001828 lookup_name.SetString(basename);
Greg Clayton43fe2172013-04-03 02:00:15 +00001829 match_name_after_lookup = true;
1830 }
1831 else
1832 {
1833 // The name is already correct, just use the exact name as supplied, and we won't need
1834 // to check if any matches contain "name"
1835 lookup_name = name;
1836 match_name_after_lookup = false;
1837 }
Richard Mittonf86248d2013-09-12 02:20:34 +00001838}
Greg Clayton23f8c952014-03-24 23:10:19 +00001839
1840ModuleSP
1841Module::CreateJITModule (const lldb::ObjectFileJITDelegateSP &delegate_sp)
1842{
1843 if (delegate_sp)
1844 {
1845 // Must create a module and place it into a shared pointer before
1846 // we can create an object file since it has a std::weak_ptr back
1847 // to the module, so we need to control the creation carefully in
1848 // this static function
1849 ModuleSP module_sp(new Module());
1850 module_sp->m_objfile_sp.reset (new ObjectFileJIT (module_sp, delegate_sp));
1851 if (module_sp->m_objfile_sp)
1852 {
1853 // Once we get the object file, update our module with the object file's
1854 // architecture since it might differ in vendor/os if some parts were
1855 // unknown.
1856 module_sp->m_objfile_sp->GetArchitecture (module_sp->m_arch);
1857 }
1858 return module_sp;
1859 }
1860 return ModuleSP();
1861}
1862
Greg Clayton08928f32015-02-05 02:01:34 +00001863bool
1864Module::GetIsDynamicLinkEditor()
1865{
1866 ObjectFile * obj_file = GetObjectFile ();
1867
1868 if (obj_file)
1869 return obj_file->GetIsDynamicLinkEditor();
1870
1871 return false;
1872}