Home
last modified time | relevance | path

Searched refs:PDB_Machine (Results 1 – 25 of 28) sorted by relevance

12

/external/llvm/tools/llvm-pdbdump/
DPdbYaml.cpp57 template <> struct ScalarEnumerationTraits<llvm::pdb::PDB_Machine> {
58 static void enumeration(IO &io, llvm::pdb::PDB_Machine &Value) { in enumeration()
59 io.enumCase(Value, "Invalid", PDB_Machine::Invalid); in enumeration()
60 io.enumCase(Value, "Am33", PDB_Machine::Am33); in enumeration()
61 io.enumCase(Value, "Amd64", PDB_Machine::Amd64); in enumeration()
62 io.enumCase(Value, "Arm", PDB_Machine::Arm); in enumeration()
63 io.enumCase(Value, "ArmNT", PDB_Machine::ArmNT); in enumeration()
64 io.enumCase(Value, "Ebc", PDB_Machine::Ebc); in enumeration()
65 io.enumCase(Value, "x86", PDB_Machine::x86); in enumeration()
66 io.enumCase(Value, "Ia64", PDB_Machine::Ia64); in enumeration()
[all …]
DPdbYaml.h55 PDB_Machine MachineType;
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DPdbYaml.cpp34 template <> struct ScalarEnumerationTraits<llvm::pdb::PDB_Machine> {
35 static void enumeration(IO &io, llvm::pdb::PDB_Machine &Value) { in enumeration()
36 io.enumCase(Value, "Invalid", PDB_Machine::Invalid); in enumeration()
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()
[all …]
DPdbYaml.h85 PDB_Machine MachineType = PDB_Machine::x86;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/
DPDBExtras.cpp232 const PDB_Machine &Machine) { in operator <<()
234 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Am33, OS) in operator <<()
235 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Amd64, OS) in operator <<()
236 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Arm, OS) in operator <<()
237 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, ArmNT, OS) in operator <<()
238 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Ebc, OS) in operator <<()
239 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, x86, OS) in operator <<()
240 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Ia64, OS) in operator <<()
241 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, M32R, OS) in operator <<()
242 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Mips16, OS) in operator <<()
[all …]
DPDBSymbolExe.cpp33 if (getMachineType() == PDB_Machine::x86) in getPointerByteSize()
/external/llvm/lib/DebugInfo/PDB/
DPDBExtras.cpp292 const PDB_Machine &Machine) { in operator <<()
294 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Am33, OS) in operator <<()
295 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Amd64, OS) in operator <<()
296 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Arm, OS) in operator <<()
297 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, ArmNT, OS) in operator <<()
298 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Ebc, OS) in operator <<()
299 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, x86, OS) in operator <<()
300 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Ia64, OS) in operator <<()
301 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, M32R, OS) in operator <<()
302 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Mips16, OS) in operator <<()
[all …]
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DDbiStreamBuilder.h38 void setMachineType(PDB_Machine M);
50 PDB_Machine MachineType;
DDbiStream.h87 PDB_Machine getMachineType() const;
/external/llvm/lib/DebugInfo/PDB/Raw/
DDbiStreamBuilder.cpp23 Flags(0), MachineType(PDB_Machine::x86) {} in DbiStreamBuilder()
37 void DbiStreamBuilder::setMachineType(PDB_Machine M) { MachineType = M; } in setMachineType()
DDbiStream.cpp239 PDB_Machine DbiStream::getMachineType() const { in getMachineType()
241 return static_cast<PDB_Machine>(Machine); in getMachineType()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStreamBuilder.h54 void setMachineType(PDB_Machine M);
111 PDB_Machine MachineType;
DDbiStream.h64 PDB_Machine getMachineType() const;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DDbiStreamBuilder.cpp29 PdbDllVersion(0), PdbDllRbld(0), Flags(0), MachineType(PDB_Machine::x86), in DbiStreamBuilder()
54 void DbiStreamBuilder::setMachineType(PDB_Machine M) { MachineType = M; } in setMachineType()
58 MachineType = static_cast<pdb::PDB_Machine>(static_cast<unsigned>(M)); in setMachineType()
DDbiStream.cpp195 PDB_Machine DbiStream::getMachineType() const { in getMachineType()
197 return static_cast<PDB_Machine>(Machine); in getMachineType()
DNativeRawSymbol.cpp399 PDB_Machine NativeRawSymbol::getMachineType() const { in getMachineType()
400 return PDB_Machine::Invalid; in getMachineType()
DPDBFile.cpp398 PDB_Machine Machine = DbiS->getMachineType(); in getPointerSize()
399 if (Machine == PDB_Machine::Amd64) in getPointerSize()
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBExtras.h35 raw_ostream &operator<<(raw_ostream &OS, const PDB_Machine &Machine);
DPDBTypes.h115 enum class PDB_Machine { enum
DIPDBRawSymbol.h121 virtual PDB_Machine getMachineType() const = 0;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
DPDBExtras.h36 raw_ostream &operator<<(raw_ostream &OS, const PDB_Machine &Machine);
DPDBTypes.h120 enum class PDB_Machine { enum
DIPDBRawSymbol.h150 virtual PDB_Machine getMachineType() const = 0;
/external/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIARawSymbol.h112 PDB_Machine getMachineType() const override;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIARawSymbol.h137 PDB_Machine getMachineType() const override;

12