Home
last modified time | relevance | path

Searched refs:CPUType (Results 1 – 25 of 114) sorted by relevance

12345

/external/llvm/lib/DebugInfo/CodeView/
DEnumTables.cpp158 CV_ENUM_CLASS_ENT(CPUType, Intel8080),
159 CV_ENUM_CLASS_ENT(CPUType, Intel8086),
160 CV_ENUM_CLASS_ENT(CPUType, Intel80286),
161 CV_ENUM_CLASS_ENT(CPUType, Intel80386),
162 CV_ENUM_CLASS_ENT(CPUType, Intel80486),
163 CV_ENUM_CLASS_ENT(CPUType, Pentium),
164 CV_ENUM_CLASS_ENT(CPUType, PentiumPro),
165 CV_ENUM_CLASS_ENT(CPUType, Pentium3),
166 CV_ENUM_CLASS_ENT(CPUType, MIPS),
167 CV_ENUM_CLASS_ENT(CPUType, MIPS16),
[all …]
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DEnumTables.cpp145 CV_ENUM_CLASS_ENT(CPUType, Intel8080),
146 CV_ENUM_CLASS_ENT(CPUType, Intel8086),
147 CV_ENUM_CLASS_ENT(CPUType, Intel80286),
148 CV_ENUM_CLASS_ENT(CPUType, Intel80386),
149 CV_ENUM_CLASS_ENT(CPUType, Intel80486),
150 CV_ENUM_CLASS_ENT(CPUType, Pentium),
151 CV_ENUM_CLASS_ENT(CPUType, PentiumPro),
152 CV_ENUM_CLASS_ENT(CPUType, Pentium3),
153 CV_ENUM_CLASS_ENT(CPUType, MIPS),
154 CV_ENUM_CLASS_ENT(CPUType, MIPS16),
[all …]
DSymbolRecordMapping.cpp487 CPUType CPU) { in decodeFramePtrReg()
493 case CPUType::Intel8080: in decodeFramePtrReg()
494 case CPUType::Intel8086: in decodeFramePtrReg()
495 case CPUType::Intel80286: in decodeFramePtrReg()
496 case CPUType::Intel80386: in decodeFramePtrReg()
497 case CPUType::Intel80486: in decodeFramePtrReg()
498 case CPUType::Pentium: in decodeFramePtrReg()
499 case CPUType::PentiumPro: in decodeFramePtrReg()
500 case CPUType::Pentium3: in decodeFramePtrReg()
508 case CPUType::X64: in decodeFramePtrReg()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DEnumTables.cpp137 CV_ENUM_CLASS_ENT(CPUType, Intel8080),
138 CV_ENUM_CLASS_ENT(CPUType, Intel8086),
139 CV_ENUM_CLASS_ENT(CPUType, Intel80286),
140 CV_ENUM_CLASS_ENT(CPUType, Intel80386),
141 CV_ENUM_CLASS_ENT(CPUType, Intel80486),
142 CV_ENUM_CLASS_ENT(CPUType, Pentium),
143 CV_ENUM_CLASS_ENT(CPUType, PentiumPro),
144 CV_ENUM_CLASS_ENT(CPUType, Pentium3),
145 CV_ENUM_CLASS_ENT(CPUType, MIPS),
146 CV_ENUM_CLASS_ENT(CPUType, MIPS16),
[all …]
DSymbolRecordMapping.cpp487 CPUType CPU) { in decodeFramePtrReg()
493 case CPUType::Intel8080: in decodeFramePtrReg()
494 case CPUType::Intel8086: in decodeFramePtrReg()
495 case CPUType::Intel80286: in decodeFramePtrReg()
496 case CPUType::Intel80386: in decodeFramePtrReg()
497 case CPUType::Intel80486: in decodeFramePtrReg()
498 case CPUType::Pentium: in decodeFramePtrReg()
499 case CPUType::PentiumPro: in decodeFramePtrReg()
500 case CPUType::Pentium3: in decodeFramePtrReg()
508 case CPUType::X64: in decodeFramePtrReg()
[all …]
/external/llvm-project/llvm/tools/llvm-pdbutil/
DMinimalSymbolDumper.cpp214 static std::string formatMachineType(CPUType Cpu) { in formatMachineType()
216 RETURN_CASE(CPUType, Intel8080, "intel 8080"); in formatMachineType()
217 RETURN_CASE(CPUType, Intel8086, "intel 8086"); in formatMachineType()
218 RETURN_CASE(CPUType, Intel80286, "intel 80286"); in formatMachineType()
219 RETURN_CASE(CPUType, Intel80386, "intel 80386"); in formatMachineType()
220 RETURN_CASE(CPUType, Intel80486, "intel 80486"); in formatMachineType()
221 RETURN_CASE(CPUType, Pentium, "intel pentium"); in formatMachineType()
222 RETURN_CASE(CPUType, PentiumPro, "intel pentium pro"); in formatMachineType()
223 RETURN_CASE(CPUType, Pentium3, "intel pentium 3"); in formatMachineType()
224 RETURN_CASE(CPUType, MIPS, "mips"); in formatMachineType()
[all …]
DMinimalSymbolDumper.h58 codeview::CPUType CompilationCPU = codeview::CPUType::X64;
/external/llvm-project/llvm/include/llvm/Object/
DMachOUniversalWriter.h29 uint32_t CPUType; variable
38 Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType,
49 Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType,
61 uint32_t getCPUType() const { return CPUType; } in getCPUType()
68 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType; in getCPUID()
74 return ("unknown(" + Twine(CPUType) + "," + in getArchString()
80 if (Lhs.CPUType == Rhs.CPUType)
84 if (Lhs.CPUType == MachO::CPU_TYPE_ARM64)
86 if (Rhs.CPUType == MachO::CPU_TYPE_ARM64)
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DMachO.cpp65 uint32_t CPUType; in jitLink_MachO() local
66 memcpy(&CPUType, Data.data() + 4, sizeof(uint32_t)); in jitLink_MachO()
68 CPUType = ByteSwap_32(CPUType); in jitLink_MachO()
71 dbgs() << "jitLink_MachO: cputype = " << format("0x%08" PRIx32, CPUType) in jitLink_MachO()
75 switch (CPUType) { in jitLink_MachO()
/external/llvm-project/llvm/lib/Object/
DMachOUniversalWriter.cpp78 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, in Slice() argument
80 : B(&A), CPUType(CPUType), CPUSubType(CPUSubType), in Slice()
84 : B(&O), CPUType(O.getHeader().cputype), in Slice()
89 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, in Slice() argument
91 : B(&IRO), CPUType(CPUType), CPUSubType(CPUSubType), in Slice()
227 unsigned CPUType, CPUSubType; in create() local
228 std::tie(CPUType, CPUSubType) = CPUOrErr.get(); in create()
232 MachOObjectFile::getArchTriple(CPUType, CPUSubType).getArchName()); in create()
233 return Slice{IRO, CPUType, CPUSubType, std::move(ArchName), Align}; in create()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DSymbolDumper.h29 std::unique_ptr<SymbolDumpDelegate> ObjDelegate, CPUType CPU, in CVSymbolDumper()
45 CPUType getCompilationCPUType() const { return CompilationCPUType; } in getCompilationCPUType()
52 CPUType CompilationCPUType;
DCodeView.h78 enum class CPUType : uint16_t { enum
526 CPURegister(CPUType Cpu, codeview::RegisterId Reg) { in CPURegister()
530 CPUType Cpu;
543 RegisterId decodeFramePtrReg(EncodedFramePtrReg EncodedReg, CPUType CPU);
545 EncodedFramePtrReg encodeFramePtrReg(RegisterId Reg, CPUType CPU);
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DSymbolDumper.h29 std::unique_ptr<SymbolDumpDelegate> ObjDelegate, CPUType CPU, in CVSymbolDumper()
45 CPUType getCompilationCPUType() const { return CompilationCPUType; } in getCompilationCPUType()
52 CPUType CompilationCPUType;
DCodeView.h78 enum class CPUType : uint16_t { enum
526 CPURegister(CPUType Cpu, codeview::RegisterId Reg) { in CPURegister()
530 CPUType Cpu;
543 RegisterId decodeFramePtrReg(EncodedFramePtrReg EncodedReg, CPUType CPU);
545 EncodedFramePtrReg encodeFramePtrReg(RegisterId Reg, CPUType CPU);
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DPdbFPOProgramToDWARFExpression.cpp28 llvm::codeview::CPUType cpu_type; in ResolveLLDBRegisterNum()
31 cpu_type = llvm::codeview::CPUType::ARM64; in ResolveLLDBRegisterNum()
35 cpu_type = llvm::codeview::CPUType::X64; in ResolveLLDBRegisterNum()
/external/llvm/include/llvm/MC/
DMCMachObjectWriter.h28 const uint32_t CPUType; variable
54 uint32_t getCPUType() const { return CPUType; } in getCPUType()
156 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64() local
157 return CPUType == MachO::CPU_TYPE_X86_64; in isX86_64()
/external/llvm-project/llvm/include/llvm/MC/
DMCMachObjectWriter.h31 const uint32_t CPUType; variable
64 uint32_t getCPUType() const { return CPUType; } in getCPUType()
173 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64() local
174 return CPUType == MachO::CPU_TYPE_X86_64; in isX86_64()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCMachObjectWriter.h30 const uint32_t CPUType; variable
63 uint32_t getCPUType() const { return CPUType; } in getCPUType()
170 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64() local
171 return CPUType == MachO::CPU_TYPE_X86_64; in isX86_64()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
DArchitecture.cpp20 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { in getArchitectureFromCpuType() argument
22 if (CPUType == (Type) && \ in getArchitectureFromCpuType()
/external/llvm-project/llvm/lib/TextAPI/MachO/
DArchitecture.cpp23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { in getArchitectureFromCpuType() argument
25 if (CPUType == (Type) && \ in getArchitectureFromCpuType()
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp40 PPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in PPCMachObjectWriter() argument
41 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in PPCMachObjectWriter()
378 bool Is64Bit, uint32_t CPUType, in createPPCMachObjectWriter() argument
381 new PPCMachObjectWriter(Is64Bit, CPUType, CPUSubtype), OS, in createPPCMachObjectWriter()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp39 PPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in PPCMachObjectWriter() argument
40 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in PPCMachObjectWriter()
377 llvm::createPPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, in createPPCMachObjectWriter() argument
379 return std::make_unique<PPCMachObjectWriter>(Is64Bit, CPUType, CPUSubtype); in createPPCMachObjectWriter()
/external/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp58 LLVM_YAML_DECLARE_ENUM_TRAITS(CPUType) in LLVM_YAML_IS_SEQUENCE_VECTOR()
142 void ScalarEnumerationTraits<CPUType>::enumeration(IO &io, CPUType &Cpu) { in enumeration()
145 io.enumCase(Cpu, E.Name.str().c_str(), static_cast<CPUType>(E.Value)); in enumeration()
153 Optional<CPUType> CpuType; in enumeration()
158 CpuType = CPUType::Pentium3; in enumeration()
161 CpuType = CPUType::X64; in enumeration()
164 CpuType = CPUType::ARMNT; in enumeration()
167 CpuType = CPUType::ARM64; in enumeration()
/external/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp40 AArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, bool IsILP32) in AArch64MachObjectWriter() argument
41 : MCMachObjectTargetWriter(!IsILP32 /* is64Bit */, CPUType, CPUSubtype) {} in AArch64MachObjectWriter()
411 llvm::createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, in createAArch64MachObjectWriter() argument
413 return std::make_unique<AArch64MachObjectWriter>(CPUType, CPUSubtype, in createAArch64MachObjectWriter()
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp33 AArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype) in AArch64MachObjectWriter() argument
34 : MCMachObjectTargetWriter(true /* is64Bit */, CPUType, CPUSubtype) {} in AArch64MachObjectWriter()
426 uint32_t CPUType, in createAArch64MachObjectWriter() argument
429 new AArch64MachObjectWriter(CPUType, CPUSubtype), OS, in createAArch64MachObjectWriter()

12345