Home
last modified time | relevance | path

Searched refs:Precomp (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp427 Error LVCodeViewReader::loadPrecompiledObject(PrecompRecord &Precomp, in loadPrecompiledObject() argument
430 W.printHex("Count", Precomp.getTypesCount()); in loadPrecompiledObject()
431 W.printHex("Signature", Precomp.getSignature()); in loadPrecompiledObject()
432 W.printString("PrecompFile", Precomp.getPrecompFilePath()); in loadPrecompiledObject()
435 SmallString<128> ServerName(Precomp.getPrecompFilePath()); in loadPrecompiledObject()
444 Precomp.getPrecompFilePath().str().c_str()); in loadPrecompiledObject()
491 if (Precomp.getSignature() != EndPrecomp.getSignature()) in loadPrecompiledObject()
565 PrecompRecord Precomp = cantFail( in traverseTypeSection() local
567 return loadPrecompiledObject(Precomp, CVTypes); in traverseTypeSection()
H A DLVCodeViewVisitor.cpp2606 Error LVLogicalVisitor::visitKnownRecord(CVType &Record, PrecompRecord &Precomp, in visitKnownRecord() argument
2610 W.printHex("StartIndex", Precomp.getStartTypeIndex()); in visitKnownRecord()
2611 W.printHex("Count", Precomp.getTypesCount()); in visitKnownRecord()
2612 W.printHex("Signature", Precomp.getSignature()); in visitKnownRecord()
2613 W.printString("PrecompFile", Precomp.getPrecompFilePath()); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp557 PrecompRecord &Precomp) { in visitKnownRecord() argument
558 W->printHex("StartIndex", Precomp.getStartTypeIndex()); in visitKnownRecord()
559 W->printHex("Count", Precomp.getTypesCount()); in visitKnownRecord()
560 W->printHex("Signature", Precomp.getSignature()); in visitKnownRecord()
561 W->printString("PrecompFile", Precomp.getPrecompFilePath()); in visitKnownRecord()
H A DTypeRecordMapping.cpp742 PrecompRecord &Precomp) { in visitKnownRecord() argument
743 error(IO.mapInteger(Precomp.StartTypeIndex, "StartIndex")); in visitKnownRecord()
744 error(IO.mapInteger(Precomp.TypesCount, "Count")); in visitKnownRecord()
745 error(IO.mapInteger(Precomp.Signature, "Signature")); in visitKnownRecord()
746 error(IO.mapStringZ(Precomp.PrecompFilePath, "PrecompFile")); in visitKnownRecord()
H A DRecordName.cpp245 PrecompRecord &Precomp) { in visitKnownRecord() argument
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp511 PrecompRecord &Precomp) { in visitKnownRecord() argument
514 Precomp.StartTypeIndex, Precomp.TypesCount, Precomp.Signature, in visitKnownRecord()
515 Precomp.PrecompFilePath); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.h147 Error loadPrecompiledObject(PrecompRecord &Precomp, CVTypeArray &CVTypesObj);
H A DLVCodeViewVisitor.h417 Error visitKnownRecord(CVType &Record, PrecompRecord &Precomp, TypeIndex TI,
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewTypes.def89 TYPE_RECORD(LF_PRECOMP, 0x1509, Precomp)