/external/llvm/tools/llvm-pdbdump/ |
D | PdbYaml.cpp | 57 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 …]
|
D | PdbYaml.h | 55 PDB_Machine MachineType;
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | PdbYaml.cpp | 34 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 …]
|
D | PdbYaml.h | 85 PDB_Machine MachineType = PDB_Machine::x86;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/ |
D | PDBExtras.cpp | 232 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 …]
|
D | PDBSymbolExe.cpp | 33 if (getMachineType() == PDB_Machine::x86) in getPointerByteSize()
|
/external/llvm/lib/DebugInfo/PDB/ |
D | PDBExtras.cpp | 292 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/ |
D | DbiStreamBuilder.h | 38 void setMachineType(PDB_Machine M); 50 PDB_Machine MachineType;
|
D | DbiStream.h | 87 PDB_Machine getMachineType() const;
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | DbiStreamBuilder.cpp | 23 Flags(0), MachineType(PDB_Machine::x86) {} in DbiStreamBuilder() 37 void DbiStreamBuilder::setMachineType(PDB_Machine M) { MachineType = M; } in setMachineType()
|
D | DbiStream.cpp | 239 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/ |
D | DbiStreamBuilder.h | 54 void setMachineType(PDB_Machine M); 111 PDB_Machine MachineType;
|
D | DbiStream.h | 64 PDB_Machine getMachineType() const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/ |
D | DbiStreamBuilder.cpp | 29 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()
|
D | DbiStream.cpp | 195 PDB_Machine DbiStream::getMachineType() const { in getMachineType() 197 return static_cast<PDB_Machine>(Machine); in getMachineType()
|
D | NativeRawSymbol.cpp | 399 PDB_Machine NativeRawSymbol::getMachineType() const { in getMachineType() 400 return PDB_Machine::Invalid; in getMachineType()
|
D | PDBFile.cpp | 398 PDB_Machine Machine = DbiS->getMachineType(); in getPointerSize() 399 if (Machine == PDB_Machine::Amd64) in getPointerSize()
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
D | PDBExtras.h | 35 raw_ostream &operator<<(raw_ostream &OS, const PDB_Machine &Machine);
|
D | PDBTypes.h | 115 enum class PDB_Machine { enum
|
D | IPDBRawSymbol.h | 121 virtual PDB_Machine getMachineType() const = 0;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/ |
D | PDBExtras.h | 36 raw_ostream &operator<<(raw_ostream &OS, const PDB_Machine &Machine);
|
D | PDBTypes.h | 120 enum class PDB_Machine { enum
|
D | IPDBRawSymbol.h | 150 virtual PDB_Machine getMachineType() const = 0;
|
/external/llvm/include/llvm/DebugInfo/PDB/DIA/ |
D | DIARawSymbol.h | 112 PDB_Machine getMachineType() const override;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/DIA/ |
D | DIARawSymbol.h | 137 PDB_Machine getMachineType() const override;
|