Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DPdbYaml.cpp33 template <> struct ScalarEnumerationTraits<llvm::pdb::PDB_Machine> {
34 static void enumeration(IO &io, llvm::pdb::PDB_Machine &Value) { in enumeration()
35 io.enumCase(Value, "Invalid", PDB_Machine::Invalid); in enumeration()
36 io.enumCase(Value, "Am33", PDB_Machine::Am33); in enumeration()
37 io.enumCase(Value, "Amd64", PDB_Machine::Amd64); in enumeration()
38 io.enumCase(Value, "Arm", PDB_Machine::Arm); in enumeration()
39 io.enumCase(Value, "ArmNT", PDB_Machine::ArmNT); in enumeration()
40 io.enumCase(Value, "Ebc", PDB_Machine::Ebc); in enumeration()
41 io.enumCase(Value, "x86", PDB_Machine::x86); in enumeration()
42 io.enumCase(Value, "Ia64", PDB_Machine::Ia64); in enumeration()
[all …]
H A DPdbYaml.h80 PDB_Machine MachineType = PDB_Machine::x86;
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp56 PDB_Machine machine = dbi_stream->getMachineType(); in GetArchitecture()
60 case PDB_Machine::Amd64: in GetArchitecture()
61 case PDB_Machine::x86: in GetArchitecture()
62 case PDB_Machine::PowerPC: in GetArchitecture()
63 case PDB_Machine::PowerPCFP: in GetArchitecture()
64 case PDB_Machine::Arm: in GetArchitecture()
65 case PDB_Machine::ArmNT: in GetArchitecture()
66 case PDB_Machine::Thumb: in GetArchitecture()
67 case PDB_Machine::Arm64: in GetArchitecture()
133 case PDB_Machine::Amd64: in GetModuleSpecifications()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp310 const PDB_Machine &Machine) { in operator <<()
312 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Am33, OS) in operator <<()
313 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Amd64, OS) in operator <<()
314 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Arm, OS) in operator <<()
315 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, ArmNT, OS) in operator <<()
316 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Ebc, OS) in operator <<()
317 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, x86, OS) in operator <<()
318 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Ia64, OS) in operator <<()
319 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, M32R, OS) in operator <<()
320 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Machine, Mips16, OS) in operator <<()
[all …]
H A DPDBSymbolExe.cpp26 if (getMachineType() == PDB_Machine::x86) in getPointerByteSize()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.h55 void setMachineType(PDB_Machine M);
113 PDB_Machine MachineType;
H A DDbiStream.h66 PDB_Machine getMachineType() const;
H A DNativeRawSymbol.h142 PDB_Machine getMachineType() const override;
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A 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()
H A DDbiStream.cpp194 PDB_Machine DbiStream::getMachineType() const { in getMachineType()
196 return static_cast<PDB_Machine>(Machine); in getMachineType()
H A DNativeRawSymbol.cpp383 PDB_Machine NativeRawSymbol::getMachineType() const { in getMachineType()
384 return PDB_Machine::Invalid; in getMachineType()
H A DPDBFile.cpp406 PDB_Machine Machine = DbiS->getMachineType(); in getPointerSize()
407 if (Machine == PDB_Machine::Amd64) in getPointerSize()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/
H A DPDBExtras.h38 raw_ostream &operator<<(raw_ostream &OS, const PDB_Machine &Machine);
H A DIPDBRawSymbol.h164 virtual PDB_Machine getMachineType() const = 0;
H A DPDBTypes.h125 enum class PDB_Machine { enum
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIARawSymbol.h137 PDB_Machine getMachineType() const override;
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp911 PDB_Machine DIARawSymbol::getMachineType() const { in getMachineType()
912 return PrivateGetDIAValue<DWORD, PDB_Machine>(Symbol, in getMachineType()