1 //===-- CompileUnit.cpp -----------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "lldb/Symbol/CompileUnit.h" 10 #include "lldb/Core/Module.h" 11 #include "lldb/Symbol/LineTable.h" 12 #include "lldb/Symbol/SymbolFile.h" 13 #include "lldb/Symbol/VariableList.h" 14 #include "lldb/Target/Language.h" 15 16 using namespace lldb; 17 using namespace lldb_private; 18 19 CompileUnit::CompileUnit(const lldb::ModuleSP &module_sp, void *user_data, 20 const char *pathname, const lldb::user_id_t cu_sym_id, 21 lldb::LanguageType language, 22 lldb_private::LazyBool is_optimized) 23 : ModuleChild(module_sp), FileSpec(pathname), UserID(cu_sym_id), 24 m_user_data(user_data), m_language(language), m_flags(0), 25 m_support_files(), m_line_table_up(), m_variables(), 26 m_is_optimized(is_optimized) { 27 if (language != eLanguageTypeUnknown) 28 m_flags.Set(flagsParsedLanguage); 29 assert(module_sp); 30 } 31 32 CompileUnit::CompileUnit(const lldb::ModuleSP &module_sp, void *user_data, 33 const FileSpec &fspec, const lldb::user_id_t cu_sym_id, 34 lldb::LanguageType language, 35 lldb_private::LazyBool is_optimized) 36 : ModuleChild(module_sp), FileSpec(fspec), UserID(cu_sym_id), 37 m_user_data(user_data), m_language(language), m_flags(0), 38 m_support_files(), m_line_table_up(), m_variables(), 39 m_is_optimized(is_optimized) { 40 if (language != eLanguageTypeUnknown) 41 m_flags.Set(flagsParsedLanguage); 42 assert(module_sp); 43 } 44 45 CompileUnit::~CompileUnit() {} 46 47 void CompileUnit::CalculateSymbolContext(SymbolContext *sc) { 48 sc->comp_unit = this; 49 GetModule()->CalculateSymbolContext(sc); 50 } 51 52 ModuleSP CompileUnit::CalculateSymbolContextModule() { return GetModule(); } 53 54 CompileUnit *CompileUnit::CalculateSymbolContextCompileUnit() { return this; } 55 56 void CompileUnit::DumpSymbolContext(Stream *s) { 57 GetModule()->DumpSymbolContext(s); 58 s->Printf(", CompileUnit{0x%8.8" PRIx64 "}", GetID()); 59 } 60 61 void CompileUnit::GetDescription(Stream *s, 62 lldb::DescriptionLevel level) const { 63 const char *language = Language::GetNameForLanguageType(m_language); 64 *s << "id = " << (const UserID &)*this << ", file = \"" 65 << (const FileSpec &)*this << "\", language = \"" << language << '"'; 66 } 67 68 void CompileUnit::ForeachFunction( 69 llvm::function_ref<bool(const FunctionSP &)> lambda) const { 70 std::vector<lldb::FunctionSP> sorted_functions; 71 sorted_functions.reserve(m_functions_by_uid.size()); 72 for (auto &p : m_functions_by_uid) 73 sorted_functions.push_back(p.second); 74 llvm::sort(sorted_functions.begin(), sorted_functions.end(), 75 [](const lldb::FunctionSP &a, const lldb::FunctionSP &b) { 76 return a->GetID() < b->GetID(); 77 }); 78 79 for (auto &f : sorted_functions) 80 if (lambda(f)) 81 return; 82 } 83 84 // Dump the current contents of this object. No functions that cause on demand 85 // parsing of functions, globals, statics are called, so this is a good 86 // function to call to get an idea of the current contents of the CompileUnit 87 // object. 88 void CompileUnit::Dump(Stream *s, bool show_context) const { 89 const char *language = Language::GetNameForLanguageType(m_language); 90 91 s->Printf("%p: ", static_cast<const void *>(this)); 92 s->Indent(); 93 *s << "CompileUnit" << static_cast<const UserID &>(*this) << ", language = \"" 94 << language << "\", file = '" << static_cast<const FileSpec &>(*this) 95 << "'\n"; 96 97 // m_types.Dump(s); 98 99 if (m_variables.get()) { 100 s->IndentMore(); 101 m_variables->Dump(s, show_context); 102 s->IndentLess(); 103 } 104 105 if (!m_functions_by_uid.empty()) { 106 s->IndentMore(); 107 ForeachFunction([&s, show_context](const FunctionSP &f) { 108 f->Dump(s, show_context); 109 return false; 110 }); 111 112 s->IndentLess(); 113 s->EOL(); 114 } 115 } 116 117 // Add a function to this compile unit 118 void CompileUnit::AddFunction(FunctionSP &funcSP) { 119 m_functions_by_uid[funcSP->GetID()] = funcSP; 120 } 121 122 // Find functions using the Mangled::Tokens token list. This function currently 123 // implements an interactive approach designed to find all instances of certain 124 // functions. It isn't designed to the quickest way to lookup functions as it 125 // will need to iterate through all functions and see if they match, though it 126 // does provide a powerful and context sensitive way to search for all 127 // functions with a certain name, all functions in a namespace, or all 128 // functions of a template type. See Mangled::Tokens::Parse() comments for more 129 // information. 130 // 131 // The function prototype will need to change to return a list of results. It 132 // was originally used to help debug the Mangled class and the 133 // Mangled::Tokens::MatchesQuery() function and it currently will print out a 134 // list of matching results for the functions that are currently in this 135 // compile unit. 136 // 137 // A FindFunctions method should be called prior to this that takes 138 // a regular function name (const char * or ConstString as a parameter) before 139 // resorting to this slower but more complete function. The other FindFunctions 140 // method should be able to take advantage of any accelerator tables available 141 // in the debug information (which is parsed by the SymbolFile parser plug-ins 142 // and registered with each Module). 143 // void 144 // CompileUnit::FindFunctions(const Mangled::Tokens& tokens) 145 //{ 146 // if (!m_functions.empty()) 147 // { 148 // Stream s(stdout); 149 // std::vector<FunctionSP>::const_iterator pos; 150 // std::vector<FunctionSP>::const_iterator end = m_functions.end(); 151 // for (pos = m_functions.begin(); pos != end; ++pos) 152 // { 153 // const ConstString& demangled = (*pos)->Mangled().Demangled(); 154 // if (demangled) 155 // { 156 // const Mangled::Tokens& func_tokens = 157 // (*pos)->Mangled().GetTokens(); 158 // if (func_tokens.MatchesQuery (tokens)) 159 // s << "demangled MATCH found: " << demangled << "\n"; 160 // } 161 // } 162 // } 163 //} 164 165 FunctionSP CompileUnit::FindFunctionByUID(lldb::user_id_t func_uid) { 166 auto it = m_functions_by_uid.find(func_uid); 167 if (it == m_functions_by_uid.end()) 168 return FunctionSP(); 169 return it->second; 170 } 171 172 lldb::LanguageType CompileUnit::GetLanguage() { 173 if (m_language == eLanguageTypeUnknown) { 174 if (m_flags.IsClear(flagsParsedLanguage)) { 175 m_flags.Set(flagsParsedLanguage); 176 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) 177 m_language = symfile->ParseLanguage(*this); 178 } 179 } 180 return m_language; 181 } 182 183 LineTable *CompileUnit::GetLineTable() { 184 if (m_line_table_up == nullptr) { 185 if (m_flags.IsClear(flagsParsedLineTable)) { 186 m_flags.Set(flagsParsedLineTable); 187 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) 188 symfile->ParseLineTable(*this); 189 } 190 } 191 return m_line_table_up.get(); 192 } 193 194 void CompileUnit::SetLineTable(LineTable *line_table) { 195 if (line_table == nullptr) 196 m_flags.Clear(flagsParsedLineTable); 197 else 198 m_flags.Set(flagsParsedLineTable); 199 m_line_table_up.reset(line_table); 200 } 201 202 DebugMacros *CompileUnit::GetDebugMacros() { 203 if (m_debug_macros_sp.get() == nullptr) { 204 if (m_flags.IsClear(flagsParsedDebugMacros)) { 205 m_flags.Set(flagsParsedDebugMacros); 206 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) 207 symfile->ParseDebugMacros(*this); 208 } 209 } 210 211 return m_debug_macros_sp.get(); 212 } 213 214 void CompileUnit::SetDebugMacros(const DebugMacrosSP &debug_macros_sp) { 215 if (debug_macros_sp.get() == nullptr) 216 m_flags.Clear(flagsParsedDebugMacros); 217 else 218 m_flags.Set(flagsParsedDebugMacros); 219 m_debug_macros_sp = debug_macros_sp; 220 } 221 222 VariableListSP CompileUnit::GetVariableList(bool can_create) { 223 if (m_variables.get() == nullptr && can_create) { 224 SymbolContext sc; 225 CalculateSymbolContext(&sc); 226 assert(sc.module_sp); 227 sc.module_sp->GetSymbolFile()->ParseVariablesForContext(sc); 228 } 229 230 return m_variables; 231 } 232 233 uint32_t CompileUnit::FindLineEntry(uint32_t start_idx, uint32_t line, 234 const FileSpec *file_spec_ptr, bool exact, 235 LineEntry *line_entry_ptr) { 236 uint32_t file_idx = 0; 237 238 if (file_spec_ptr) { 239 file_idx = GetSupportFiles().FindFileIndex(1, *file_spec_ptr, true); 240 if (file_idx == UINT32_MAX) 241 return UINT32_MAX; 242 } else { 243 // All the line table entries actually point to the version of the Compile 244 // Unit that is in the support files (the one at 0 was artificially added.) 245 // So prefer the one further on in the support files if it exists... 246 const FileSpecList &support_files = GetSupportFiles(); 247 const bool full = true; 248 file_idx = support_files.FindFileIndex( 249 1, support_files.GetFileSpecAtIndex(0), full); 250 if (file_idx == UINT32_MAX) 251 file_idx = 0; 252 } 253 LineTable *line_table = GetLineTable(); 254 if (line_table) 255 return line_table->FindLineEntryIndexByFileIndex(start_idx, file_idx, line, 256 exact, line_entry_ptr); 257 return UINT32_MAX; 258 } 259 260 uint32_t CompileUnit::ResolveSymbolContext(const FileSpec &file_spec, 261 uint32_t line, bool check_inlines, 262 bool exact, 263 SymbolContextItem resolve_scope, 264 SymbolContextList &sc_list) { 265 // First find all of the file indexes that match our "file_spec". If 266 // "file_spec" has an empty directory, then only compare the basenames when 267 // finding file indexes 268 std::vector<uint32_t> file_indexes; 269 const bool full_match = (bool)file_spec.GetDirectory(); 270 bool file_spec_matches_cu_file_spec = 271 FileSpec::Equal(file_spec, *this, full_match); 272 273 // If we are not looking for inlined functions and our file spec doesn't 274 // match then we are done... 275 if (!file_spec_matches_cu_file_spec && !check_inlines) 276 return 0; 277 278 uint32_t file_idx = 279 GetSupportFiles().FindFileIndex(1, file_spec, true); 280 while (file_idx != UINT32_MAX) { 281 file_indexes.push_back(file_idx); 282 file_idx = GetSupportFiles().FindFileIndex(file_idx + 1, file_spec, true); 283 } 284 285 const size_t num_file_indexes = file_indexes.size(); 286 if (num_file_indexes == 0) 287 return 0; 288 289 const uint32_t prev_size = sc_list.GetSize(); 290 291 SymbolContext sc(GetModule()); 292 sc.comp_unit = this; 293 294 if (line != 0) { 295 LineTable *line_table = sc.comp_unit->GetLineTable(); 296 297 if (line_table != nullptr) { 298 uint32_t found_line; 299 uint32_t line_idx; 300 301 if (num_file_indexes == 1) { 302 // We only have a single support file that matches, so use the line 303 // table function that searches for a line entries that match a single 304 // support file index 305 LineEntry line_entry; 306 line_idx = line_table->FindLineEntryIndexByFileIndex( 307 0, file_indexes.front(), line, exact, &line_entry); 308 309 // If "exact == true", then "found_line" will be the same as "line". If 310 // "exact == false", the "found_line" will be the closest line entry 311 // with a line number greater than "line" and we will use this for our 312 // subsequent line exact matches below. 313 found_line = line_entry.line; 314 315 while (line_idx != UINT32_MAX) { 316 // If they only asked for the line entry, then we're done, we can 317 // just copy that over. But if they wanted more than just the line 318 // number, fill it in. 319 if (resolve_scope == eSymbolContextLineEntry) { 320 sc.line_entry = line_entry; 321 } else { 322 line_entry.range.GetBaseAddress().CalculateSymbolContext( 323 &sc, resolve_scope); 324 } 325 326 sc_list.Append(sc); 327 line_idx = line_table->FindLineEntryIndexByFileIndex( 328 line_idx + 1, file_indexes.front(), found_line, true, 329 &line_entry); 330 } 331 } else { 332 // We found multiple support files that match "file_spec" so use the 333 // line table function that searches for a line entries that match a 334 // multiple support file indexes. 335 LineEntry line_entry; 336 line_idx = line_table->FindLineEntryIndexByFileIndex( 337 0, file_indexes, line, exact, &line_entry); 338 339 // If "exact == true", then "found_line" will be the same as "line". If 340 // "exact == false", the "found_line" will be the closest line entry 341 // with a line number greater than "line" and we will use this for our 342 // subsequent line exact matches below. 343 found_line = line_entry.line; 344 345 while (line_idx != UINT32_MAX) { 346 if (resolve_scope == eSymbolContextLineEntry) { 347 sc.line_entry = line_entry; 348 } else { 349 line_entry.range.GetBaseAddress().CalculateSymbolContext( 350 &sc, resolve_scope); 351 } 352 353 sc_list.Append(sc); 354 line_idx = line_table->FindLineEntryIndexByFileIndex( 355 line_idx + 1, file_indexes, found_line, true, &line_entry); 356 } 357 } 358 } 359 } else if (file_spec_matches_cu_file_spec && !check_inlines) { 360 // only append the context if we aren't looking for inline call sites by 361 // file and line and if the file spec matches that of the compile unit 362 sc_list.Append(sc); 363 } 364 return sc_list.GetSize() - prev_size; 365 } 366 367 bool CompileUnit::GetIsOptimized() { 368 if (m_is_optimized == eLazyBoolCalculate) { 369 m_is_optimized = eLazyBoolNo; 370 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) { 371 if (symfile->ParseIsOptimized(*this)) 372 m_is_optimized = eLazyBoolYes; 373 } 374 } 375 return m_is_optimized; 376 } 377 378 void CompileUnit::SetVariableList(VariableListSP &variables) { 379 m_variables = variables; 380 } 381 382 const std::vector<SourceModule> &CompileUnit::GetImportedModules() { 383 if (m_imported_modules.empty() && 384 m_flags.IsClear(flagsParsedImportedModules)) { 385 m_flags.Set(flagsParsedImportedModules); 386 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) { 387 SymbolContext sc; 388 CalculateSymbolContext(&sc); 389 symfile->ParseImportedModules(sc, m_imported_modules); 390 } 391 } 392 return m_imported_modules; 393 } 394 395 const FileSpecList &CompileUnit::GetSupportFiles() { 396 if (m_support_files.GetSize() == 0) { 397 if (m_flags.IsClear(flagsParsedSupportFiles)) { 398 m_flags.Set(flagsParsedSupportFiles); 399 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) 400 symfile->ParseSupportFiles(*this, m_support_files); 401 } 402 } 403 return m_support_files; 404 } 405 406 void *CompileUnit::GetUserData() const { return m_user_data; } 407