| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | PdbYaml.cpp | 37 io.enumCase(Value, "Am33", PDB_Machine::Am33); in enumeration() 38 io.enumCase(Value, "Amd64", PDB_Machine::Amd64); in enumeration() 39 io.enumCase(Value, "Arm", PDB_Machine::Arm); in enumeration() 40 io.enumCase(Value, "ArmNT", PDB_Machine::ArmNT); in enumeration() 41 io.enumCase(Value, "Ebc", PDB_Machine::Ebc); in enumeration() 42 io.enumCase(Value, "x86", PDB_Machine::x86); in enumeration() 43 io.enumCase(Value, "Ia64", PDB_Machine::Ia64); in enumeration() 44 io.enumCase(Value, "M32R", PDB_Machine::M32R); in enumeration() 49 io.enumCase(Value, "R4000", PDB_Machine::R4000); in enumeration() 50 io.enumCase(Value, "SH3", PDB_Machine::SH3); in enumeration() [all …]
|
| H A D | PdbYaml.h | 85 PDB_Machine MachineType = PDB_Machine::x86;
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBExtras.cpp | 273 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Am33, OS) in operator <<() 274 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Amd64, OS) in operator <<() 275 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Arm, OS) in operator <<() 276 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, ArmNT, OS) in operator <<() 277 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Ebc, OS) in operator <<() 278 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, x86, OS) in operator <<() 279 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Ia64, OS) in operator <<() 280 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, M32R, OS) in operator <<() 287 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, SH3, OS) in operator <<() 289 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, SH4, OS) in operator <<() [all …]
|
| H A D | PDBSymbolExe.cpp | 27 if (getMachineType() == PDB_Machine::x86) in getPointerByteSize()
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | DbiStreamBuilder.h | 59 void setMachineType(PDB_Machine M); 119 PDB_Machine MachineType;
|
| H A D | DbiStream.h | 64 PDB_Machine getMachineType() const;
|
| H A D | NativeRawSymbol.h | 143 PDB_Machine getMachineType() const override;
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | DbiStreamBuilder.cpp | 30 PdbDllVersion(0), PdbDllRbld(0), Flags(0), MachineType(PDB_Machine::x86), in DbiStreamBuilder() 55 void DbiStreamBuilder::setMachineType(PDB_Machine M) { MachineType = M; } in setMachineType() 59 MachineType = static_cast<pdb::PDB_Machine>(static_cast<unsigned>(M)); in setMachineType()
|
| H A D | DbiStream.cpp | 195 PDB_Machine DbiStream::getMachineType() const { in getMachineType() 197 return static_cast<PDB_Machine>(Machine); in getMachineType()
|
| H A D | NativeRawSymbol.cpp | 385 PDB_Machine NativeRawSymbol::getMachineType() const { in getMachineType() 386 return PDB_Machine::Invalid; in getMachineType()
|
| H A D | PDBFile.cpp | 398 PDB_Machine Machine = DbiS->getMachineType(); in getPointerSize() 399 if (Machine == PDB_Machine::Amd64) in getPointerSize()
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBExtras.h | 39 raw_ostream &operator<<(raw_ostream &OS, const PDB_Machine &Machine);
|
| H A D | PDBTypes.h | 124 enum class PDB_Machine { enum
|
| H A D | IPDBRawSymbol.h | 169 virtual PDB_Machine getMachineType() const = 0;
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/ |
| H A D | DIARawSymbol.h | 138 PDB_Machine getMachineType() const override;
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/ |
| H A D | DIARawSymbol.cpp | 912 PDB_Machine DIARawSymbol::getMachineType() const { in getMachineType() 913 return PrivateGetDIAValue<DWORD, PDB_Machine>(Symbol, in getMachineType()
|