Home
last modified time | relevance | path

Searched refs:Compile3 (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp260 Compile3Sym &Compile3) { in visitKnownRecord() argument
261 W.printEnum("Language", uint8_t(Compile3.getLanguage()), getSourceLanguageNames()); in visitKnownRecord()
262 W.printFlags("Flags", uint32_t(Compile3.getFlags()), in visitKnownRecord()
264 W.printEnum("Machine", unsigned(Compile3.Machine), getCPUTypeNames()); in visitKnownRecord()
265 CompilationCPUType = Compile3.Machine; in visitKnownRecord()
269 Out << Compile3.VersionFrontendMajor << '.' << Compile3.VersionFrontendMinor in visitKnownRecord()
270 << '.' << Compile3.VersionFrontendBuild << '.' in visitKnownRecord()
271 << Compile3.VersionFrontendQFE; in visitKnownRecord()
276 Out << Compile3 in visitKnownRecord()
[all...]
H A DSymbolRecordMapping.cpp192 Compile3Sym &Compile3) { in visitKnownRecord() argument
194 error(IO.mapEnum(Compile3.Flags)); in visitKnownRecord()
195 error(IO.mapEnum(Compile3.Machine)); in visitKnownRecord()
196 error(IO.mapInteger(Compile3.VersionFrontendMajor)); in visitKnownRecord()
197 error(IO.mapInteger(Compile3.VersionFrontendMinor)); in visitKnownRecord()
198 error(IO.mapInteger(Compile3.VersionFrontendBuild)); in visitKnownRecord()
199 error(IO.mapInteger(Compile3.VersionFrontendQFE)); in visitKnownRecord()
200 error(IO.mapInteger(Compile3.VersionBackendMajor)); in visitKnownRecord()
201 error(IO.mapInteger(Compile3.VersionBackendMinor)); in visitKnownRecord()
202 error(IO.mapInteger(Compile3 in visitKnownRecord()
[all...]
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp569 Compile3Sym &Compile3) { in visitKnownRecord() argument
572 Compile3.Flags & CompileSym3Flags::SourceLanguageMask); in visitKnownRecord()
573 CompilationCPU = Compile3.Machine; in visitKnownRecord()
575 formatMachineType(Compile3.Machine), Compile3.Version, in visitKnownRecord()
578 Compile3.VersionFrontendMajor, Compile3.VersionFrontendMinor, in visitKnownRecord()
579 Compile3.VersionFrontendBuild, Compile3.VersionFrontendQFE, in visitKnownRecord()
580 Compile3.VersionBackendMajor, Compile3.VersionBackendMinor, in visitKnownRecord()
581 Compile3.VersionBackendBuild, Compile3.VersionBackendQFE); in visitKnownRecord()
583 formatCompileSym3Flags(P.getIndentLevel() + 9, Compile3.Flags)); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp982 Compile3Sym &Compile3) { in visitKnownRecord() argument
984 W.printEnum("Language", uint8_t(Compile3.getLanguage()), in visitKnownRecord()
986 W.printFlags("Flags", uint32_t(Compile3.getFlags()), in visitKnownRecord()
988 W.printEnum("Machine", unsigned(Compile3.Machine), getCPUTypeNames()); in visitKnownRecord()
989 W.printString("VersionName", Compile3.Version); in visitKnownRecord()
1006 Reader->setCompileUnitCPUType(Compile3.Machine); in visitKnownRecord()
1009 Scope->setProducer(Compile3.Version); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h198 Error visitKnownRecord(CVSymbol &Record, Compile3Sym &Compile3) override;