Searched refs:sym_file (Results 1 - 16 of 16) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DStatistics.cpp237 SymbolFile *sym_file = module->GetSymbolFile(); local
238 if (sym_file) {
240 if (sym_file->GetObjectFile() != module->GetObjectFile())
242 sym_file->GetObjectFile()->GetFileSpec().GetPath();
243 module_stat.debug_index_time = sym_file->GetDebugInfoIndexTime().count();
244 module_stat.debug_parse_time = sym_file->GetDebugInfoParseTime().count();
245 module_stat.debug_info_size = sym_file->GetDebugInfoSize();
247 sym_file->GetDebugInfoIndexWasLoadedFromCache();
251 sym_file->GetDebugInfoIndexWasSavedToCache();
254 ModuleList symbol_modules = sym_file
[all...]
H A DStackFrame.cpp465 SymbolFile *sym_file = m_sc.module_sp->GetSymbolFile(); local
466 if (sym_file)
467 *error_ptr = sym_file->GetFrameVariableError(*this);
H A DPlatform.cpp867 FileSpec &sym_file) {
870 sym_file = sym_spec.GetSymbolFileSpec();
866 ResolveSymbolFile(Target &target, const ModuleSpec &sym_spec, FileSpec &sym_file) argument
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp332 SymbolFile *sym_file = block.GetSymbolFile(); local
333 if (!sym_file)
337 m_call_edges = sym_file->ParseCallEdgesInFunction(GetID());
526 if (SymbolFile *sym_file = module_sp->GetSymbolFile())
527 return sym_file->GetDeclContextForUID(GetID());
533 if (SymbolFile *sym_file = module_sp->GetSymbolFile())
534 return sym_file->GetCompilerContextForUID(GetID());
547 SymbolFile *sym_file = sc.module_sp->GetSymbolFile();
549 if (sym_file == nullptr)
552 m_type = sym_file
[all...]
H A DBlock.cpp481 if (SymbolFile *sym_file = GetSymbolFile())
482 return sym_file->GetDeclContextForUID(GetID());
H A DType.cpp176 bool TypeResults::AlreadySearched(lldb_private::SymbolFile *sym_file) { argument
177 return !m_searched_symbol_files.insert(sym_file).second;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeSystem.h93 virtual void SetSymbolFile(SymbolFile *sym_file) { m_sym_file = sym_file; } argument
H A DType.h323 /// This function will add \a sym_file to the set of SymbolFile objects if it
324 /// isn't already in the set and return \a false. Returns true if \a sym_file
332 /// \param[in] sym_file
338 bool AlreadySearched(lldb_private::SymbolFile *sym_file);
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp323 SymbolFile *sym_file = module_sp->GetSymbolFile(); local
324 if (!sym_file)
326 if (!sym_file->ParseFunctions(*cu_sp))
H A DModule.cpp1322 SymbolFile *sym_file = GetSymbolFile(); local
1323 if (!sym_file)
1328 if (Symtab *symtab = sym_file->GetSymtab())
1333 sym_file->PreloadSymbols();
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp600 lldb_private::SymbolFile *sym_file = sym_ctx.module_sp->GetSymbolFile();
601 if (!sym_file)
605 sym_file->GetMangledNamesForFunction(scope_qualified_name, alternates);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp550 SymbolFileDWARFDebugMap::GetSymbolFileAsSymbolFileDWARF(SymbolFile *sym_file) { argument
551 if (sym_file &&
552 sym_file->GetPluginName() == SymbolFileDWARF::GetPluginNameStatic())
553 return static_cast<SymbolFileDWARF *>(sym_file);
H A DSymbolFileDWARFDebugMap.h209 static SymbolFileDWARF *GetSymbolFileAsSymbolFileDWARF(SymbolFile *sym_file);
H A DDWARFASTParserClang.cpp179 // sym_file->FindTypes(), which would return this again, go straight
181 auto &sym_file = die.GetCU()->GetSymbolFileDWARF(); local
185 results.AlreadySearched(&sym_file);
186 sym_file.ForEachExternalModule(
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h182 /// \param[out] sym_file
189 FileSpec &sym_file);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp5244 GetDynamicArrayInfo(TypeSystemClang &ast, SymbolFile *sym_file, argument
5249 return sym_file->GetDynamicArrayInfoForUID(metadata->GetUserID(),
8865 SymbolFile *sym_file = GetSymbolFile(); local
8866 if (sym_file) {
8869 sym_file->CompleteType(clang_type);
8875 SymbolFile *sym_file = GetSymbolFile(); local
8876 if (sym_file) {
8879 sym_file->CompleteType(clang_type);

Completed in 324 milliseconds