Searched refs:CPUType (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCMachObjectTargetWriter.cpp16 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_) {}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A 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, MIPS1
[all...]
H A DSymbolRecordMapping.cpp487 CPUType CPU) {
493 case CPUType::Intel8080:
494 case CPUType::Intel8086:
495 case CPUType::Intel80286:
496 case CPUType::Intel80386:
497 case CPUType::Intel80486:
498 case CPUType::Pentium:
499 case CPUType::PentiumPro:
500 case CPUType::Pentium3:
508 case CPUType
[all...]
H A DSymbolDumper.cpp34 ScopedPrinter &W, CPUType CPU, bool PrintRecordBytes)
48 CPUType getCompilationCPUType() const { return CompilationCPUType; }
61 CPUType CompilationCPUType = CPUType::X64;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachO.cpp65 uint32_t CPUType; local
66 memcpy(&CPUType, Data.data() + 4, sizeof(uint32_t));
68 CPUType = ByteSwap_32(CPUType);
71 dbgs() << "jitLink_MachO: cputype = " << format("0x%08" PRIx32, CPUType)
75 switch (CPUType) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolDumper.h29 std::unique_ptr<SymbolDumpDelegate> ObjDelegate, CPUType CPU,
45 CPUType getCompilationCPUType() const { return CompilationCPUType; }
52 CPUType CompilationCPUType;
H A DEnumTables.h23 ArrayRef<EnumEntry<uint16_t>> getRegisterNames(CPUType Cpu);
H A DCodeView.h78 enum class CPUType : uint16_t { class in namespace:llvm::codeview
522 // Register Ids are shared between architectures in CodeView. CPUType is needed
526 CPURegister(CPUType Cpu, codeview::RegisterId Reg) {
530 CPUType Cpu;
543 RegisterId decodeFramePtrReg(EncodedFramePtrReg EncodedReg, CPUType CPU);
545 EncodedFramePtrReg encodeFramePtrReg(RegisterId Reg, CPUType CPU);
H A DSymbolRecord.h711 CPUType Machine;
737 CPUType Machine;
784 RegisterId getLocalFramePtrReg(CPUType CPU) const {
790 RegisterId getParamFramePtrReg(CPUType CPU) const {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp214 static std::string formatMachineType(CPUType Cpu) {
216 RETURN_CASE(CPUType, Intel8080, "intel 8080");
217 RETURN_CASE(CPUType, Intel8086, "intel 8086");
218 RETURN_CASE(CPUType, Intel80286, "intel 80286");
219 RETURN_CASE(CPUType, Intel80386, "intel 80386");
220 RETURN_CASE(CPUType, Intel80486, "intel 80486");
221 RETURN_CASE(CPUType, Pentium, "intel pentium");
222 RETURN_CASE(CPUType, PentiumPro, "intel pentium pro");
223 RETURN_CASE(CPUType, Pentium3, "intel pentium 3");
224 RETURN_CASE(CPUType, MIP
[all...]
H A DMinimalSymbolDumper.h58 codeview::CPUType CompilationCPU = codeview::CPUType::X64;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DArchitecture.cpp23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { argument
25 if (CPUType == (Type) && \
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbFPOProgramToDWARFExpression.cpp28 llvm::codeview::CPUType cpu_type;
31 cpu_type = llvm::codeview::CPUType::ARM64;
35 cpu_type = llvm::codeview::CPUType::X64;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/
H A DArchitecture.h35 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h31 const uint32_t CPUType; member in class:llvm::MCMachObjectTargetWriter
64 uint32_t getCPUType() const { return CPUType; }
171 uint32_t CPUType = TargetObjectWriter->getCPUType(); local
172 return CPUType == MachO::CPU_TYPE_X86_64;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.h55 createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype,
H A DAArch64MachObjectWriter.cpp40 AArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, bool IsILP32) argument
41 : MCMachObjectTargetWriter(!IsILP32 /* is64Bit */, CPUType, CPUSubtype) {}
407 llvm::createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, argument
409 return std::make_unique<AArch64MachObjectWriter>(CPUType, CPUSubtype,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.h89 createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType,
H A DARMMachObjectWriter.cpp52 ARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) argument
53 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {}
507 llvm::createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, argument
509 return std::make_unique<ARMMachObjectWriter>(Is64Bit, CPUType, CPUSubtype);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.h108 createX86MachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype);
H A DX86MachObjectWriter.cpp56 X86MachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) argument
57 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {}
600 llvm::createX86MachObjectWriter(bool Is64Bit, uint32_t CPUType, argument
602 return std::make_unique<X86MachObjectWriter>(Is64Bit, CPUType, CPUSubtype);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp58 LLVM_YAML_DECLARE_ENUM_TRAITS(CPUType)
142 void ScalarEnumerationTraits<CPUType>::enumeration(IO &io, CPUType &Cpu) {
145 io.enumCase(Cpu, E.Name.str().c_str(), static_cast<CPUType>(E.Value));
150 auto RegNames = getRegisterNames(CPUType::X64);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp424 Expected<uint32_t> CPUType = (*ModuleOrErr)->getMachOCPUType(); local
426 if (!CPUType)
428 toString(CPUType.takeError()));
433 Filename.c_str(), *CPUType, *CPUSubType);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DObject.h29 uint32_t CPUType; member in struct:llvm::objcopy::macho::MachHeader
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.h49 createPPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype);

Completed in 171 milliseconds

12