Home
last modified time | relevance | path

Searched refs:PDBFileName (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lld/test/COFF/
H A Dpdbaltpath.test5 # HELLO: PDBFileName: hello.pdb
9 # PDBVAR: PDBFileName: pdbaltpath.test.tmp.pdb
13 # EXTVAR: PDBFileName: fooexe.pdb
17 # NOCLOSE: PDBFileName: %_PDB
21 # NOCLOSE2: PDBFileName: foo%_PDB
25 # CLOSEONE: PDBFileName: foopdbaltpath.test.tmp.pdbbar%_EXT
29 # CLOSETWO: PDBFileName: foopdbaltpath.test.tmp.pdbbarexe
33 # CLOSETWO2: PDBFileName: foopdbaltpath.test.tmp.pdbbarexea
39 # ENVVARS: PDBFileName: foo%FoO%bar%r%a
H A Drsds.test44 # CHECK: PDBFileName: {{.*}}.pdb
63 # CHECK: PDBFileName: {{.*}}.pdb
83 # TWOPDBS: PDBFileName: {{.*}}.pdb
102 # TWOPDBS: PDBFileName: {{.*}}.pdb
136 # REPRODEBUG: PDBFileName:
166 # MINGW: PDBFileName:
H A Dpdb-exe-path-dots.test10 CHECK: PDBFileName: {{.*}}tmp{{/|\\}}foo{{/|\\}}out.pdb
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/COFF/
H A Ddebug-directory.test17 CHECK: PDBFileName: D:\src\llvm\build\has_pdb.pdb
/llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp637 StringRef PDBFileName; in getOrCreateModuleInfo() local
638 auto EC = CoffObject->getDebugPDBInfo(DebugInfo, PDBFileName); in getOrCreateModuleInfo()
639 if (!EC && DebugInfo != nullptr && !PDBFileName.empty()) { in getOrCreateModuleInfo()
649 return createFileError(PDBFileName, std::move(Err)); in getOrCreateModuleInfo()
/llvm-project-15.0.7/llvm/lib/Object/
H A DCOFFObjectFile.cpp548 StringRef &PDBFileName) const { in getDebugPDBInfo()
558 PDBFileName = StringRef(reinterpret_cast<const char *>(InfoBytes.data()), in getDebugPDBInfo()
561 PDBFileName = PDBFileName.split('\0').first; in getDebugPDBInfo()
566 StringRef &PDBFileName) const { in getDebugPDBInfo()
569 return getDebugPDBInfo(&D, PDBInfo, PDBFileName); in getDebugPDBInfo()
572 PDBFileName = StringRef(); in getDebugPDBInfo()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DCOFF.h1098 StringRef &PDBFileName) const;
1105 StringRef &PDBFileName) const;
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp741 StringRef PDBFileName; in printCOFFDebugDirectory() local
742 if (Error E = Obj->getDebugPDBInfo(&D, DebugInfo, PDBFileName)) in printCOFFDebugDirectory()
750 W.printString("PDBFileName", PDBFileName); in printCOFFDebugDirectory()