Home
last modified time | relevance | path

Searched refs:ObjName (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInjectedSourceStream.cpp54 auto ObjName = Strings.getStringForID(Entry.second.ObjNI); in reload()
55 if (!ObjName) in reload() local
56 return ObjName.takeError(); in reload()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp32 ObjDumper::ObjDumper(ScopedPrinter &Writer, StringRef ObjName) : W(Writer) { in ObjDumper() argument
37 reportWarning(createError(Msg), ObjName); in ObjDumper()
H A DObjDumper.h67 ObjDumper(ScopedPrinter &Writer, StringRef ObjName);
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp785 std::string ObjName = in handleBuffer() local
793 if (!HandleObj(Obj, *DICtx, ObjName, OS)) in handleBuffer()
800 error(ObjName, ArchiveOrErr.takeError()); in handleBuffer()
801 if (!handleArchive(ObjName, *ArchiveOrErr.get(), HandleObj, OS)) in handleBuffer()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/
H A DLVReaderHandler.cpp219 std::string ObjName = (Twine(Filename) + Twine("(") + in handleMach() local
234 if (Error Err = handleArchive(Readers, ObjName, *ArchiveOrErr.get())) in handleMach()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp401 ObjNameSym &ObjName) { in visitKnownRecord() argument
403 error(IO.mapInteger(ObjName.Signature)); in visitKnownRecord()
404 error(IO.mapStringZ(ObjName.Name)); in visitKnownRecord()
H A DSymbolDumper.cpp551 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, ObjNameSym &ObjName) { in visitKnownRecord() argument
552 W.printHex("Signature", ObjName.Signature); in visitKnownRecord()
553 W.printString("ObjectName", ObjName.Name); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp689 StringRef ObjName = Obj.getFileName(); in getOrCreateModuleInfo() local
690 auto I = Modules.find(ObjName); in getOrCreateModuleInfo()
700 return createModuleInfo(&Obj, std::move(Context), ObjName); in getOrCreateModuleInfo()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp847 ObjNameSym &ObjName) { in visitKnownRecord() argument
848 P.format(" sig={0}, `{1}`", ObjName.Signature, ObjName.Name); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h220 Error visitKnownRecord(CVSymbol &Record, ObjNameSym &ObjName) override;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp1466 Error LVSymbolVisitor::visitKnownRecord(CVSymbol &Record, ObjNameSym &ObjName) { in visitKnownRecord() argument
1468 W.printHex("Signature", ObjName.Signature); in visitKnownRecord()
1469 W.printString("ObjectName", ObjName.Name); in visitKnownRecord()
1472 CurrentObjectName = ObjName.Name; in visitKnownRecord()