blob: 3d99ec54375885d21a7000d0d258b086178afa2e [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- SymbolVendor.mm -----------------------------------------*- 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/Symbol/SymbolVendor.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16#include "lldb/Core/Module.h"
17#include "lldb/Core/PluginManager.h"
18#include "lldb/Symbol/ObjectFile.h"
19#include "lldb/Symbol/SymbolFile.h"
20
21using namespace lldb;
22using namespace lldb_private;
23
24
25//----------------------------------------------------------------------
26// FindPlugin
27//
28// Platforms can register a callback to use when creating symbol
29// vendors to allow for complex debug information file setups, and to
30// also allow for finding separate debug information files.
31//----------------------------------------------------------------------
32SymbolVendor*
33SymbolVendor::FindPlugin (Module* module)
34{
35 std::auto_ptr<SymbolVendor> instance_ap;
36 //----------------------------------------------------------------------
37 // We currently only have one debug symbol parser...
38 //----------------------------------------------------------------------
39 SymbolVendorCreateInstance create_callback;
40 for (uint32_t idx = 0; (create_callback = PluginManager::GetSymbolVendorCreateCallbackAtIndex(idx)) != NULL; ++idx)
41 {
42 instance_ap.reset(create_callback(module));
43
44 if (instance_ap.get())
45 {
46 // TODO: make sure this symbol vendor is what we want. We
47 // currently are just returning the first one we find, but
48 // we may want to call this function only when we have our
49 // main executable module and then give all symbol vendor
50 // plug-ins a chance to compete for who wins.
51 return instance_ap.release();
52 }
53 }
54 // The default implementation just tries to create debug information using the
55 // file representation for the module.
56 instance_ap.reset(new SymbolVendor(module));
57 if (instance_ap.get())
58 instance_ap->AddSymbolFileRepresendation(module->GetObjectFile());
59 return instance_ap.release();
60}
61
62//----------------------------------------------------------------------
63// SymbolVendor constructor
64//----------------------------------------------------------------------
65SymbolVendor::SymbolVendor(Module *module) :
66 ModuleChild(module),
67 m_mutex (Mutex::eMutexTypeRecursive),
68 m_type_list(),
69 m_compile_units(),
70 m_sym_file_ap()
71{
72 ObjectFile * objfile = module->GetObjectFile();
73 ConstString target_triple;
74 if (objfile && objfile->GetTargetTriple(target_triple))
75 {
76 m_type_list.GetClangASTContext().SetTargetTriple (target_triple.AsCString());
77 }
78}
79
80//----------------------------------------------------------------------
81// Destructor
82//----------------------------------------------------------------------
83SymbolVendor::~SymbolVendor()
84{
85}
86
87//----------------------------------------------------------------------
88// Add a represantion given an object file.
89//----------------------------------------------------------------------
90void
91SymbolVendor::AddSymbolFileRepresendation(ObjectFile *obj_file)
92{
93 Mutex::Locker locker(m_mutex);
94 if (obj_file != NULL)
95 m_sym_file_ap.reset(SymbolFile::FindPlugin(obj_file));
96}
97
98bool
99SymbolVendor::SetCompileUnitAtIndex
100(CompUnitSP& cu, uint32_t idx)
101{
102 Mutex::Locker locker(m_mutex);
103 const uint32_t num_compile_units = GetNumCompileUnits();
104 if (idx < num_compile_units)
105 {
106 // Fire off an assertion if this compile unit already exists for now.
107 // The partial parsing should take care of only setting the compile
108 // unit once, so if this assertion fails, we need to make sure that
109 // we don't have a race condition, or have a second parse of the same
110 // compile unit.
111 assert(m_compile_units[idx].get() == NULL);
112 m_compile_units[idx] = cu;
113 return true;
114 }
115 return false;
116}
117
118uint32_t
119SymbolVendor::GetNumCompileUnits()
120{
121 Mutex::Locker locker(m_mutex);
122 if (m_compile_units.empty())
123 {
124 if (m_sym_file_ap.get())
125 {
126 // Resize our array of compile unit shared pointers -- which will
127 // each remain NULL until someone asks for the actual compile unit
128 // information. When this happens, the symbol file will be asked
129 // to parse this compile unit information.
130 m_compile_units.resize(m_sym_file_ap->GetNumCompileUnits());
131 }
132 }
133 return m_compile_units.size();
134}
135
136size_t
137SymbolVendor::ParseCompileUnitFunctions (const SymbolContext &sc)
138{
139 Mutex::Locker locker(m_mutex);
140 if (m_sym_file_ap.get())
141 return m_sym_file_ap->ParseCompileUnitFunctions(sc);
142 return 0;
143}
144
145bool
146SymbolVendor::ParseCompileUnitLineTable (const SymbolContext &sc)
147{
148 Mutex::Locker locker(m_mutex);
149 if (m_sym_file_ap.get())
150 return m_sym_file_ap->ParseCompileUnitLineTable(sc);
151 return false;
152}
153
154bool
155SymbolVendor::ParseCompileUnitSupportFiles (const SymbolContext& sc, FileSpecList& support_files)
156{
157 Mutex::Locker locker(m_mutex);
158 if (m_sym_file_ap.get())
159 return m_sym_file_ap->ParseCompileUnitSupportFiles(sc, support_files);
160 return false;
161}
162
163size_t
164SymbolVendor::ParseFunctionBlocks (const SymbolContext &sc)
165{
166 Mutex::Locker locker(m_mutex);
167 if (m_sym_file_ap.get())
168 return m_sym_file_ap->ParseFunctionBlocks(sc);
169 return 0;
170}
171
172size_t
173SymbolVendor::ParseTypes (const SymbolContext &sc)
174{
175 Mutex::Locker locker(m_mutex);
176 if (m_sym_file_ap.get())
177 return m_sym_file_ap->ParseTypes(sc);
178 return 0;
179}
180
181size_t
182SymbolVendor::ParseVariablesForContext (const SymbolContext& sc)
183{
184 Mutex::Locker locker(m_mutex);
185 if (m_sym_file_ap.get())
186 return m_sym_file_ap->ParseVariablesForContext(sc);
187 return 0;
188}
189
190Type*
191SymbolVendor::ResolveTypeUID(lldb::user_id_t type_uid)
192{
193 Mutex::Locker locker(m_mutex);
194 if (m_sym_file_ap.get())
195 return m_sym_file_ap->ResolveTypeUID(type_uid);
196 return NULL;
197}
198
199
200uint32_t
201SymbolVendor::ResolveSymbolContext (const Address& so_addr, uint32_t resolve_scope, SymbolContext& sc)
202{
203 Mutex::Locker locker(m_mutex);
204 if (m_sym_file_ap.get())
205 return m_sym_file_ap->ResolveSymbolContext(so_addr, resolve_scope, sc);
206 return 0;
207}
208
209uint32_t
210SymbolVendor::ResolveSymbolContext (const FileSpec& file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list)
211{
212 Mutex::Locker locker(m_mutex);
213 if (m_sym_file_ap.get())
214 return m_sym_file_ap->ResolveSymbolContext(file_spec, line, check_inlines, resolve_scope, sc_list);
215 return 0;
216}
217
218uint32_t
219SymbolVendor::FindGlobalVariables (const ConstString &name, bool append, uint32_t max_matches, VariableList& variables)
220{
221 Mutex::Locker locker(m_mutex);
222 if (m_sym_file_ap.get())
223 return m_sym_file_ap->FindGlobalVariables(name, append, max_matches, variables);
224 return 0;
225}
226
227uint32_t
228SymbolVendor::FindGlobalVariables (const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables)
229{
230 Mutex::Locker locker(m_mutex);
231 if (m_sym_file_ap.get())
232 return m_sym_file_ap->FindGlobalVariables(regex, append, max_matches, variables);
233 return 0;
234}
235
236uint32_t
Greg Clayton12bec712010-06-28 21:30:43 +0000237SymbolVendor::FindFunctions(const ConstString &name, uint32_t name_type_mask, bool append, SymbolContextList& sc_list)
Chris Lattner24943d22010-06-08 16:52:24 +0000238{
239 Mutex::Locker locker(m_mutex);
240 if (m_sym_file_ap.get())
Greg Clayton12bec712010-06-28 21:30:43 +0000241 return m_sym_file_ap->FindFunctions(name, name_type_mask, append, sc_list);
Chris Lattner24943d22010-06-08 16:52:24 +0000242 return 0;
243}
244
245uint32_t
246SymbolVendor::FindFunctions(const RegularExpression& regex, bool append, SymbolContextList& sc_list)
247{
248 Mutex::Locker locker(m_mutex);
249 if (m_sym_file_ap.get())
250 return m_sym_file_ap->FindFunctions(regex, append, sc_list);
251 return 0;
252}
253
254
Greg Clayton960d6a42010-08-03 00:35:52 +0000255uint32_t
256SymbolVendor::FindTypes (const SymbolContext& sc, const ConstString &name, bool append, uint32_t max_matches, TypeList& types)
257{
258 Mutex::Locker locker(m_mutex);
259 if (m_sym_file_ap.get())
260 return m_sym_file_ap->FindTypes(sc, name, append, max_matches, types);
261 if (!append)
262 types.Clear();
263 return 0;
264}
Chris Lattner24943d22010-06-08 16:52:24 +0000265//
266//uint32_t
267//SymbolVendor::FindTypes(const SymbolContext& sc, const RegularExpression& regex, bool append, uint32_t max_matches, Type::Encoding encoding, const char *udt_name, TypeList& types)
268//{
269// Mutex::Locker locker(m_mutex);
270// if (m_sym_file_ap.get())
271// {
272// lldb::user_id_t udt_uid = LLDB_INVALID_UID;
273//
274// if (encoding == Type::user_defined_type)
275// udt_uid = UserDefType::GetUserDefTypeUID(udt_name);
276//
277// return m_sym_file_ap->FindTypes(sc, regex, append, max_matches, encoding, udt_uid, types);
278// }
279// return 0;
280//}
281
282void
283SymbolVendor::Dump(Stream *s)
284{
285 Mutex::Locker locker(m_mutex);
286 bool show_context = false;
287
288 s->Printf("%.*p: ", (int)sizeof(void*) * 2, this);
289 s->Indent();
290 s->PutCString("SymbolVendor");
291 if (m_sym_file_ap.get())
292 {
293 ObjectFile *objfile = m_sym_file_ap->GetObjectFile();
294 if (objfile)
295 {
296 const FileSpec &objfile_file_spec = objfile->GetFileSpec();
297 if (objfile_file_spec)
298 {
299 s->PutCString(" (");
300 objfile_file_spec.Dump(s);
301 s->PutChar(')');
302 }
303 }
304 }
305 s->EOL();
306 s->IndentMore();
307 m_type_list.Dump(s, show_context);
308
309 CompileUnitConstIter cu_pos, cu_end;
310 cu_end = m_compile_units.end();
311 for (cu_pos = m_compile_units.begin(); cu_pos != cu_end; ++cu_pos)
312 {
313 // We currently only dump the compile units that have been parsed
314 if (cu_pos->get())
315 (*cu_pos)->Dump(s, show_context);
316 }
317
318 s->IndentLess();
319
320}
321
322CompUnitSP
323SymbolVendor::GetCompileUnitAtIndex(uint32_t idx)
324{
325 Mutex::Locker locker(m_mutex);
326 CompUnitSP cu_sp;
327 const uint32_t num_compile_units = GetNumCompileUnits();
328 if (idx < num_compile_units)
329 {
330 cu_sp = m_compile_units[idx];
331 if (cu_sp.get() == NULL)
332 {
333 m_compile_units[idx] = m_sym_file_ap->ParseCompileUnitAtIndex(idx);
334 cu_sp = m_compile_units[idx];
335 }
336 }
337 return cu_sp;
338}
339
340
341//------------------------------------------------------------------
342// PluginInterface protocol
343//------------------------------------------------------------------
344const char *
345SymbolVendor::GetPluginName()
346{
347 return "SymbolVendor";
348}
349
350const char *
351SymbolVendor::GetShortPluginName()
352{
353 return "vendor-default";
354}
355
356uint32_t
357SymbolVendor::GetPluginVersion()
358{
359 return 1;
360}
361
362void
363SymbolVendor::GetPluginCommandHelp (const char *command, Stream *strm)
364{
365}
366
367Error
368SymbolVendor::ExecutePluginCommand (Args &command, Stream *strm)
369{
370 Error error;
371 error.SetErrorString("No plug-in command are currently supported.");
372 return error;
373}
374
375Log *
376SymbolVendor::EnablePluginLogging (Stream *strm, Args &command)
377{
378 return NULL;
379}
380
381