| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | Statistics.cpp | 237 SymbolFile *sym_file = module->GetSymbolFile(); in ReportStatistics() local 238 if (sym_file) { in ReportStatistics() 240 if (sym_file->GetObjectFile() != module->GetObjectFile()) in ReportStatistics() 242 sym_file->GetObjectFile()->GetFileSpec().GetPath(); in ReportStatistics() 243 module_stat.debug_index_time = sym_file->GetDebugInfoIndexTime().count(); in ReportStatistics() 244 module_stat.debug_parse_time = sym_file->GetDebugInfoParseTime().count(); in ReportStatistics() 245 module_stat.debug_info_size = sym_file->GetDebugInfoSize(); in ReportStatistics() 247 sym_file->GetDebugInfoIndexWasLoadedFromCache(); in ReportStatistics() 251 sym_file->GetDebugInfoIndexWasSavedToCache(); in ReportStatistics() 254 ModuleList symbol_modules = sym_file->GetDebugInfoModules(); in ReportStatistics() [all …]
|
| D | StackFrame.cpp | 465 SymbolFile *sym_file = m_sc.module_sp->GetSymbolFile(); in GetVariableList() local 466 if (sym_file) in GetVariableList() 467 *error_ptr = sym_file->GetFrameVariableError(*this); in GetVariableList()
|
| D | Platform.cpp | 871 FileSpec &sym_file) { in ResolveSymbolFile() argument 874 sym_file = sym_spec.GetSymbolFileSpec(); in ResolveSymbolFile()
|
| /openbsd/src/gnu/llvm/lldb/source/Symbol/ |
| D | Function.cpp | 307 SymbolFile *sym_file = block.GetSymbolFile(); in GetCallEdges() local 308 if (!sym_file) in GetCallEdges() 312 m_call_edges = sym_file->ParseCallEdgesInFunction(GetID()); in GetCallEdges() 494 if (SymbolFile *sym_file = module_sp->GetSymbolFile()) in GetDeclContext() local 495 return sym_file->GetDeclContextForUID(GetID()); in GetDeclContext() 509 SymbolFile *sym_file = sc.module_sp->GetSymbolFile(); in GetType() local 511 if (sym_file == nullptr) in GetType() 514 m_type = sym_file->ResolveTypeUID(m_type_uid); in GetType()
|
| D | Block.cpp | 481 if (SymbolFile *sym_file = GetSymbolFile()) in GetDeclContext() local 482 return sym_file->GetDeclContextForUID(GetID()); in GetDeclContext()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/ |
| D | PlatformDarwin.cpp | 324 FileSpec &sym_file) { in ResolveSymbolFile() argument 325 sym_file = sym_spec.GetSymbolFileSpec(); in ResolveSymbolFile() 326 if (FileSystem::Instance().IsDirectory(sym_file)) { in ResolveSymbolFile() 327 sym_file = Symbols::FindSymbolFileInBundle(sym_file, sym_spec.GetUUIDPtr(), in ResolveSymbolFile()
|
| D | PlatformDarwin.h | 68 FileSpec &sym_file) override;
|
| /openbsd/src/gnu/llvm/lldb/source/Core/ |
| D | SearchFilter.cpp | 323 SymbolFile *sym_file = module_sp->GetSymbolFile(); in DoCUIteration() local 324 if (!sym_file) in DoCUIteration() 326 if (!sym_file->ParseFunctions(*cu_sp)) in DoCUIteration()
|
| D | Module.cpp | 1371 SymbolFile *sym_file = GetSymbolFile(); in PreloadSymbols() local 1372 if (!sym_file) in PreloadSymbols() 1377 if (Symtab *symtab = sym_file->GetSymtab()) in PreloadSymbols() 1382 sym_file->PreloadSymbols(); in PreloadSymbols()
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Symbol/ |
| D | TypeSystem.h | 101 virtual void SetSymbolFile(SymbolFile *sym_file) { m_sym_file = sym_file; } in SetSymbolFile() argument
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | SymbolFileDWARFDebugMap.cpp | 554 SymbolFileDWARFDebugMap::GetSymbolFileAsSymbolFileDWARF(SymbolFile *sym_file) { in GetSymbolFileAsSymbolFileDWARF() argument 555 if (sym_file && in GetSymbolFileAsSymbolFileDWARF() 556 sym_file->GetPluginName() == SymbolFileDWARF::GetPluginNameStatic()) in GetSymbolFileAsSymbolFileDWARF() 557 return static_cast<SymbolFileDWARF *>(sym_file); in GetSymbolFileAsSymbolFileDWARF()
|
| D | SymbolFileDWARFDebugMap.h | 215 static SymbolFileDWARF *GetSymbolFileAsSymbolFileDWARF(SymbolFile *sym_file);
|
| D | DWARFASTParserClang.cpp | 158 auto &sym_file = die.GetCU()->GetSymbolFileDWARF(); in ParseTypeFromClangModule() local 162 searched_symbol_files.insert(&sym_file); in ParseTypeFromClangModule() 163 sym_file.ForEachExternalModule( in ParseTypeFromClangModule()
|
| D | SymbolFileDWARF.cpp | 2580 if (SymbolFile *sym_file = external_module_sp->GetSymbolFile()) in FindTypes() local 2581 sym_file->FindTypes(name, parent_decl_ctx, max_matches, in FindTypes()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/ |
| D | CPlusPlusLanguage.cpp | 601 lldb_private::SymbolFile *sym_file = sym_ctx.module_sp->GetSymbolFile(); in FindBestAlternateFunctionMangledName() local 602 if (!sym_file) in FindBestAlternateFunctionMangledName() 606 sym_file->GetMangledNamesForFunction(scope_qualified_name, alternates); in FindBestAlternateFunctionMangledName()
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Target/ |
| D | Platform.h | 189 FileSpec &sym_file);
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/ |
| D | TypeSystemClang.cpp | 5361 GetDynamicArrayInfo(TypeSystemClang &ast, SymbolFile *sym_file, in GetDynamicArrayInfo() argument 5366 return sym_file->GetDynamicArrayInfoForUID(metadata->GetUserID(), in GetDynamicArrayInfo() 9409 SymbolFile *sym_file = GetSymbolFile(); in CompleteTagDecl() local 9410 if (sym_file) { in CompleteTagDecl() 9413 sym_file->CompleteType(clang_type); in CompleteTagDecl() 9419 SymbolFile *sym_file = GetSymbolFile(); in CompleteObjCInterfaceDecl() local 9420 if (sym_file) { in CompleteObjCInterfaceDecl() 9423 sym_file->CompleteType(clang_type); in CompleteObjCInterfaceDecl()
|