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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompileUnit.cpp149 if (SymbolFile *symfile = GetModule()->GetSymbolFile())
150 m_language = symfile->ParseLanguage(*this);
160 if (SymbolFile *symfile = GetModule()->GetSymbolFile())
161 symfile->ParseLineTable(*this);
183 if (SymbolFile *symfile = GetModule()->GetSymbolFile())
184 symfile->ParseDebugMacros(*this);
327 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) {
328 if (symfile->ParseIsOptimized(*this))
343 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) {
346 symfile
[all...]
H A DFuncUnwinders.cpp205 if (SymbolFile *symfile = m_unwind_table.GetSymbolFile()) {
206 m_unwind_plan_symbol_file_sp = symfile->GetUnwindPlan(
H A DClangASTContext.cpp7949 SymbolFile *symfile = GetSymbolFile(); local
7951 if (!symfile)
7955 symfile->GetTypes(nullptr, eTypeClassAny, type_list);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBCompileUnit.cpp141 SymbolFile *symfile = module_sp->GetSymbolFile();
142 if (!symfile)
147 symfile->GetTypes(m_opaque_ptr, type_class, type_list);
H A DSBModule.cpp532 if (SymbolFile *symfile = module_sp->GetSymbolFile()) {
533 Type *type_ptr = symfile->ResolveTypeUID(uid);
550 SymbolFile *symfile = module_sp->GetSymbolFile();
551 if (!symfile)
556 symfile->GetTypes(nullptr, type_class, type_list);
652 if (SymbolFile *symfile = module_sp->GetSymbolFile())
653 sb_file_spec.SetFileSpec(symfile->GetObjectFile()->GetFileSpec());
H A DSBTarget.cpp1567 const char *uuid_cstr, const char *symfile) {
1570 path, triple, uuid_cstr, symfile);
1588 if (symfile)
1589 module_spec.GetSymbolFileSpec().SetFile(symfile, FileSpec::Style::native);
1566 AddModule(const char *path, const char *triple, const char *uuid_cstr, const char *symfile) argument
/freebsd-11-stable/contrib/elftoolchain/elfcopy/
H A Delfcopy.h57 struct symfile { struct
64 STAILQ_ENTRY(symfile) symfile_list;
252 STAILQ_HEAD(, symfile) v_symfile; /* list of symlist files. */
H A Dmain.c1302 struct symfile *sf;
/freebsd-11-stable/gnu/usr.bin/gdb/libgdb/
H A DMakefile49 stack.c std-regs.c symfile.c symmisc.c symtab.c \
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp458 SymbolFile *symfile = GetSymbolFile(); local
459 if (!symfile)
470 symfile->ResolveSymbolContext(so_addr, resolve_scope, sc);
477 Symtab *symtab = symfile->GetSymtab();
510 ObjectFile *symfile_objfile = symfile->GetObjectFile();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp191 if (SymbolFile *symfile =
197 SymbolFileDWARFDebugMap::GetSymbolFileAsSymbolFileDWARF(symfile);
212 return symfile;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTarget.h279 const char *uuid_cstr, const char *symfile);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp223 m_symbol_file(LLDB_OPT_SET_1, false, "symfile", 's', 0,
289 FileSpec symfile(m_symbol_file.GetOptionValue().GetCurrentValue());
290 if (symfile) {
291 if (FileSystem::Instance().Exists(symfile)) {
292 if (!FileSystem::Instance().Readable(symfile)) {
294 symfile.GetPath().c_str());
300 symfile.GetPath(symfile_path, sizeof(symfile_path));
383 if (symfile || remote_file) {
386 if (symfile)
387 module_sp->SetSymbolFileFileSpec(symfile);
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp148 // See if any symbol file is specified through `--symfile` option.
149 FileSpec symfile = module_sp->GetSymbolFileFileSpec();
150 if (!symfile)
153 llvm::StringRef(symfile.GetPath()), m_session_up);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp293 // See if any symbol file is specified through `--symfile` option.
294 FileSpec symfile = module_sp->GetSymbolFileFileSpec();
295 if (!symfile)
297 file_up = loadPDBFile(symfile.GetPath(), m_allocator);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBTarget.i371 const char *symfile);

Completed in 636 milliseconds