1 //===-- SymbolFileSymtab.cpp ------------------------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "SymbolFileSymtab.h"
11 #include "lldb/Core/Module.h"
12 #include "lldb/Core/PluginManager.h"
13 #include "lldb/Symbol/CompileUnit.h"
14 #include "lldb/Symbol/Function.h"
15 #include "lldb/Symbol/ObjectFile.h"
16 #include "lldb/Symbol/Symbol.h"
17 #include "lldb/Symbol/SymbolContext.h"
18 #include "lldb/Symbol/Symtab.h"
19 #include "lldb/Symbol/TypeList.h"
20 #include "lldb/Utility/RegularExpression.h"
21 #include "lldb/Utility/Timer.h"
22
23 using namespace lldb;
24 using namespace lldb_private;
25
Initialize()26 void SymbolFileSymtab::Initialize() {
27 PluginManager::RegisterPlugin(GetPluginNameStatic(),
28 GetPluginDescriptionStatic(), CreateInstance);
29 }
30
Terminate()31 void SymbolFileSymtab::Terminate() {
32 PluginManager::UnregisterPlugin(CreateInstance);
33 }
34
GetPluginNameStatic()35 lldb_private::ConstString SymbolFileSymtab::GetPluginNameStatic() {
36 static ConstString g_name("symtab");
37 return g_name;
38 }
39
GetPluginDescriptionStatic()40 const char *SymbolFileSymtab::GetPluginDescriptionStatic() {
41 return "Reads debug symbols from an object file's symbol table.";
42 }
43
CreateInstance(ObjectFile * obj_file)44 SymbolFile *SymbolFileSymtab::CreateInstance(ObjectFile *obj_file) {
45 return new SymbolFileSymtab(obj_file);
46 }
47
GetTypes(SymbolContextScope * sc_scope,TypeClass type_mask,lldb_private::TypeList & type_list)48 size_t SymbolFileSymtab::GetTypes(SymbolContextScope *sc_scope,
49 TypeClass type_mask,
50 lldb_private::TypeList &type_list) {
51 return 0;
52 }
53
SymbolFileSymtab(ObjectFile * obj_file)54 SymbolFileSymtab::SymbolFileSymtab(ObjectFile *obj_file)
55 : SymbolFile(obj_file), m_source_indexes(), m_func_indexes(),
56 m_code_indexes(), m_objc_class_name_to_index() {}
57
~SymbolFileSymtab()58 SymbolFileSymtab::~SymbolFileSymtab() {}
59
CalculateAbilities()60 uint32_t SymbolFileSymtab::CalculateAbilities() {
61 uint32_t abilities = 0;
62 if (m_obj_file) {
63 const Symtab *symtab = m_obj_file->GetSymtab();
64 if (symtab) {
65 //----------------------------------------------------------------------
66 // The snippet of code below will get the indexes the module symbol table
67 // entries that are code, data, or function related (debug info), sort
68 // them by value (address) and dump the sorted symbols.
69 //----------------------------------------------------------------------
70 if (symtab->AppendSymbolIndexesWithType(eSymbolTypeSourceFile,
71 m_source_indexes)) {
72 abilities |= CompileUnits;
73 }
74
75 if (symtab->AppendSymbolIndexesWithType(
76 eSymbolTypeCode, Symtab::eDebugYes, Symtab::eVisibilityAny,
77 m_func_indexes)) {
78 symtab->SortSymbolIndexesByValue(m_func_indexes, true);
79 abilities |= Functions;
80 }
81
82 if (symtab->AppendSymbolIndexesWithType(eSymbolTypeCode, Symtab::eDebugNo,
83 Symtab::eVisibilityAny,
84 m_code_indexes)) {
85 symtab->SortSymbolIndexesByValue(m_code_indexes, true);
86 abilities |= Functions;
87 }
88
89 if (symtab->AppendSymbolIndexesWithType(eSymbolTypeData,
90 m_data_indexes)) {
91 symtab->SortSymbolIndexesByValue(m_data_indexes, true);
92 abilities |= GlobalVariables;
93 }
94
95 lldb_private::Symtab::IndexCollection objc_class_indexes;
96 if (symtab->AppendSymbolIndexesWithType(eSymbolTypeObjCClass,
97 objc_class_indexes)) {
98 symtab->AppendSymbolNamesToMap(objc_class_indexes, true, true,
99 m_objc_class_name_to_index);
100 m_objc_class_name_to_index.Sort();
101 }
102 }
103 }
104 return abilities;
105 }
106
GetNumCompileUnits()107 uint32_t SymbolFileSymtab::GetNumCompileUnits() {
108 // If we don't have any source file symbols we will just have one compile
109 // unit for the entire object file
110 if (m_source_indexes.empty())
111 return 0;
112
113 // If we have any source file symbols we will logically organize the object
114 // symbols using these.
115 return m_source_indexes.size();
116 }
117
ParseCompileUnitAtIndex(uint32_t idx)118 CompUnitSP SymbolFileSymtab::ParseCompileUnitAtIndex(uint32_t idx) {
119 CompUnitSP cu_sp;
120
121 // If we don't have any source file symbols we will just have one compile
122 // unit for the entire object file
123 if (idx < m_source_indexes.size()) {
124 const Symbol *cu_symbol =
125 m_obj_file->GetSymtab()->SymbolAtIndex(m_source_indexes[idx]);
126 if (cu_symbol)
127 cu_sp.reset(new CompileUnit(m_obj_file->GetModule(), NULL,
128 cu_symbol->GetName().AsCString(), 0,
129 eLanguageTypeUnknown, eLazyBoolNo));
130 }
131 return cu_sp;
132 }
133
ParseLanguage(CompileUnit & comp_unit)134 lldb::LanguageType SymbolFileSymtab::ParseLanguage(CompileUnit &comp_unit) {
135 return eLanguageTypeUnknown;
136 }
137
ParseFunctions(CompileUnit & comp_unit)138 size_t SymbolFileSymtab::ParseFunctions(CompileUnit &comp_unit) {
139 size_t num_added = 0;
140 // We must at least have a valid compile unit
141 const Symtab *symtab = m_obj_file->GetSymtab();
142 const Symbol *curr_symbol = NULL;
143 const Symbol *next_symbol = NULL;
144 // const char *prefix = m_obj_file->SymbolPrefix();
145 // if (prefix == NULL)
146 // prefix == "";
147 //
148 // const uint32_t prefix_len = strlen(prefix);
149
150 // If we don't have any source file symbols we will just have one compile
151 // unit for the entire object file
152 if (m_source_indexes.empty()) {
153 // The only time we will have a user ID of zero is when we don't have and
154 // source file symbols and we declare one compile unit for the entire
155 // object file
156 if (!m_func_indexes.empty()) {
157 }
158
159 if (!m_code_indexes.empty()) {
160 // StreamFile s(stdout);
161 // symtab->Dump(&s, m_code_indexes);
162
163 uint32_t idx = 0; // Index into the indexes
164 const uint32_t num_indexes = m_code_indexes.size();
165 for (idx = 0; idx < num_indexes; ++idx) {
166 uint32_t symbol_idx = m_code_indexes[idx];
167 curr_symbol = symtab->SymbolAtIndex(symbol_idx);
168 if (curr_symbol) {
169 // Union of all ranges in the function DIE (if the function is
170 // discontiguous)
171 AddressRange func_range(curr_symbol->GetAddress(), 0);
172 if (func_range.GetBaseAddress().IsSectionOffset()) {
173 uint32_t symbol_size = curr_symbol->GetByteSize();
174 if (symbol_size != 0 && !curr_symbol->GetSizeIsSibling())
175 func_range.SetByteSize(symbol_size);
176 else if (idx + 1 < num_indexes) {
177 next_symbol = symtab->SymbolAtIndex(m_code_indexes[idx + 1]);
178 if (next_symbol) {
179 func_range.SetByteSize(
180 next_symbol->GetAddressRef().GetOffset() -
181 curr_symbol->GetAddressRef().GetOffset());
182 }
183 }
184
185 FunctionSP func_sp(
186 new Function(&comp_unit,
187 symbol_idx, // UserID is the DIE offset
188 LLDB_INVALID_UID, // We don't have any type info
189 // for this function
190 curr_symbol->GetMangled(), // Linker/mangled name
191 NULL, // no return type for a code symbol...
192 func_range)); // first address range
193
194 if (func_sp.get() != NULL) {
195 comp_unit.AddFunction(func_sp);
196 ++num_added;
197 }
198 }
199 }
200 }
201 }
202 } else {
203 // We assume we
204 }
205 return num_added;
206 }
207
ParseTypes(CompileUnit & comp_unit)208 size_t SymbolFileSymtab::ParseTypes(CompileUnit &comp_unit) { return 0; }
209
ParseLineTable(CompileUnit & comp_unit)210 bool SymbolFileSymtab::ParseLineTable(CompileUnit &comp_unit) { return false; }
211
ParseDebugMacros(CompileUnit & comp_unit)212 bool SymbolFileSymtab::ParseDebugMacros(CompileUnit &comp_unit) {
213 return false;
214 }
215
ParseSupportFiles(CompileUnit & comp_unit,FileSpecList & support_files)216 bool SymbolFileSymtab::ParseSupportFiles(CompileUnit &comp_unit,
217 FileSpecList &support_files) {
218 return false;
219 }
220
ParseImportedModules(const SymbolContext & sc,std::vector<ConstString> & imported_modules)221 bool SymbolFileSymtab::ParseImportedModules(
222 const SymbolContext &sc, std::vector<ConstString> &imported_modules) {
223 return false;
224 }
225
ParseBlocksRecursive(Function & func)226 size_t SymbolFileSymtab::ParseBlocksRecursive(Function &func) { return 0; }
227
ParseVariablesForContext(const SymbolContext & sc)228 size_t SymbolFileSymtab::ParseVariablesForContext(const SymbolContext &sc) {
229 return 0;
230 }
231
ResolveTypeUID(lldb::user_id_t type_uid)232 Type *SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) {
233 return NULL;
234 }
235
236 llvm::Optional<SymbolFile::ArrayInfo>
GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,const lldb_private::ExecutionContext * exe_ctx)237 SymbolFileSymtab::GetDynamicArrayInfoForUID(
238 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) {
239 return llvm::None;
240 }
241
CompleteType(lldb_private::CompilerType & compiler_type)242 bool SymbolFileSymtab::CompleteType(lldb_private::CompilerType &compiler_type) {
243 return false;
244 }
245
ResolveSymbolContext(const Address & so_addr,SymbolContextItem resolve_scope,SymbolContext & sc)246 uint32_t SymbolFileSymtab::ResolveSymbolContext(const Address &so_addr,
247 SymbolContextItem resolve_scope,
248 SymbolContext &sc) {
249 if (m_obj_file->GetSymtab() == NULL)
250 return 0;
251
252 uint32_t resolved_flags = 0;
253 if (resolve_scope & eSymbolContextSymbol) {
254 sc.symbol = m_obj_file->GetSymtab()->FindSymbolContainingFileAddress(
255 so_addr.GetFileAddress());
256 if (sc.symbol)
257 resolved_flags |= eSymbolContextSymbol;
258 }
259 return resolved_flags;
260 }
261
262 //------------------------------------------------------------------
263 // PluginInterface protocol
264 //------------------------------------------------------------------
GetPluginName()265 lldb_private::ConstString SymbolFileSymtab::GetPluginName() {
266 return GetPluginNameStatic();
267 }
268
GetPluginVersion()269 uint32_t SymbolFileSymtab::GetPluginVersion() { return 1; }
270