| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | EnumTables.cpp | 148 CV_ENUM_CLASS_ENT(CPUType, Intel8080), 149 CV_ENUM_CLASS_ENT(CPUType, Intel8086), 150 CV_ENUM_CLASS_ENT(CPUType, Intel80286), 151 CV_ENUM_CLASS_ENT(CPUType, Intel80386), 152 CV_ENUM_CLASS_ENT(CPUType, Intel80486), 153 CV_ENUM_CLASS_ENT(CPUType, Pentium), 154 CV_ENUM_CLASS_ENT(CPUType, PentiumPro), 155 CV_ENUM_CLASS_ENT(CPUType, Pentium3), 156 CV_ENUM_CLASS_ENT(CPUType, MIPS), 157 CV_ENUM_CLASS_ENT(CPUType, MIPS16), [all …]
|
| H A D | SymbolRecordMapping.cpp | 507 CPUType CPU) { in decodeFramePtrReg() 513 case CPUType::Intel8080: in decodeFramePtrReg() 514 case CPUType::Intel8086: in decodeFramePtrReg() 515 case CPUType::Intel80286: in decodeFramePtrReg() 516 case CPUType::Intel80386: in decodeFramePtrReg() 517 case CPUType::Intel80486: in decodeFramePtrReg() 518 case CPUType::Pentium: in decodeFramePtrReg() 519 case CPUType::PentiumPro: in decodeFramePtrReg() 520 case CPUType::Pentium3: in decodeFramePtrReg() 528 case CPUType::X64: in decodeFramePtrReg() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalSymbolDumper.cpp | 223 static std::string formatMachineType(CPUType Cpu) { in formatMachineType() 225 RETURN_CASE(CPUType, Intel8080, "intel 8080"); in formatMachineType() 226 RETURN_CASE(CPUType, Intel8086, "intel 8086"); in formatMachineType() 227 RETURN_CASE(CPUType, Intel80286, "intel 80286"); in formatMachineType() 228 RETURN_CASE(CPUType, Intel80386, "intel 80386"); in formatMachineType() 229 RETURN_CASE(CPUType, Intel80486, "intel 80486"); in formatMachineType() 230 RETURN_CASE(CPUType, Pentium, "intel pentium"); in formatMachineType() 231 RETURN_CASE(CPUType, PentiumPro, "intel pentium pro"); in formatMachineType() 232 RETURN_CASE(CPUType, Pentium3, "intel pentium 3"); in formatMachineType() 233 RETURN_CASE(CPUType, MIPS, "mips"); in formatMachineType() [all …]
|
| H A D | MinimalSymbolDumper.h | 58 codeview::CPUType CompilationCPU = codeview::CPUType::X64;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | MachOUniversalWriter.h | 37 uint32_t CPUType; variable 46 Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, 57 LLVM_ABI Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, 70 uint32_t getCPUType() const { return CPUType; } in getCPUType() 77 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType; in getCPUID() 83 return ("unknown(" + Twine(CPUType) + "," + in getArchString() 89 if (Lhs.CPUType == Rhs.CPUType) 93 if (Lhs.CPUType == MachO::CPU_TYPE_ARM64) 95 if (Rhs.CPUType == MachO::CPU_TYPE_ARM64)
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | MachO.cpp | 53 uint32_t CPUType; in createLinkGraphFromMachOObject() local 54 memcpy(&CPUType, Data.data() + 4, sizeof(uint32_t)); in createLinkGraphFromMachOObject() 56 CPUType = llvm::byteswap<uint32_t>(CPUType); in createLinkGraphFromMachOObject() 59 dbgs() << "jitLink_MachO: cputype = " << format("0x%08" PRIx32, CPUType) in createLinkGraphFromMachOObject() 63 switch (CPUType) { in createLinkGraphFromMachOObject() 95 if (auto CPUType = MachO::getCPUType(G.getTargetTriple())) in createLocalHeaderBlock() local 96 Hdr.cputype = *CPUType; in createLocalHeaderBlock() 98 return CPUType.takeError(); in createLocalHeaderBlock()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | GetDylibInterface.cpp | 22 auto CPUType = MachO::getCPUType(ES.getTargetTriple()); in getDylibInterfaceFromDylib() local 23 if (!CPUType) in getDylibInterfaceFromDylib() 24 return CPUType.takeError(); in getDylibInterfaceFromDylib() 44 if (O.getCPUType() == *CPUType && in getDylibInterfaceFromDylib() 90 auto CPUType = MachO::getCPUType(ES.getTargetTriple()); in getDylibInterfaceFromTapiFile() local 91 if (!CPUType) in getDylibInterfaceFromTapiFile() 92 return CPUType.takeError(); in getDylibInterfaceFromTapiFile() 100 IF.extract(MachO::getArchitectureFromCpuType(*CPUType, *CPUSubType)); in getDylibInterfaceFromTapiFile()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | MachOUniversalWriter.cpp | 85 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, in Slice() argument 87 : B(&A), CPUType(CPUType), CPUSubType(CPUSubType), in Slice() 91 : B(&O), CPUType(O.getHeader().cputype), in Slice() 96 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, in Slice() argument 98 : B(&IRO), CPUType(CPUType), CPUSubType(CPUSubType), in Slice() 230 unsigned CPUType, CPUSubType; in create() 231 std::tie(CPUType, CPUSubType) = CPUOrErr.get(); in create() 235 MachOObjectFile::getArchTriple(CPUType, CPUSubTyp in create() 234 unsigned CPUType, CPUSubType; create() local [all...] |
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | SymbolDumper.h | 32 std::unique_ptr<SymbolDumpDelegate> ObjDelegate, CPUType CPU, in CVSymbolDumper() 48 CPUType getCompilationCPUType() const { return CompilationCPUType; } in getCompilationCPUType() 55 CPUType CompilationCPUType;
|
| H A D | CodeView.h | 77 enum class CPUType : uint16_t { enum 514 CPURegister(CPUType Cpu, codeview::RegisterId Reg) { in CPURegister() 518 CPUType Cpu; 532 CPUType CPU); 534 LLVM_ABI EncodedFramePtrReg encodeFramePtrReg(RegisterId Reg, CPUType CPU);
|
| H A D | EnumTables.h | 24 LLVM_ABI ArrayRef<EnumEntry<uint16_t>> getRegisterNames(CPUType Cpu);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCXCOFFObjectWriter.h | 44 std::string CPUType; variable 51 StringRef getCPUType() const { return CPUType; } in getCPUType() 52 void setCPU(StringRef TargetCPU) { CPUType = TargetCPU; } in setCPU()
|
| H A D | MCMachObjectWriter.h | 35 const uint32_t CPUType; variable 68 uint32_t getCPUType() const { return CPUType; } in getCPUType() 260 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64() local 261 return CPUType == MachO::CPU_TYPE_X86_64; in isX86_64()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbFPOProgramToDWARFExpression.cpp | 28 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()
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | Architecture.cpp | 23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { in getArchitectureFromCpuType() argument 25 if (CPUType == (Type) && \ in getArchitectureFromCpuType()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64MachObjectWriter.cpp | 40 AArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, bool IsILP32) in AArch64MachObjectWriter() argument 41 : MCMachObjectTargetWriter(!IsILP32 /* is64Bit */, CPUType, CPUSubtype) {} in AArch64MachObjectWriter() 432 llvm::createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, in createAArch64MachObjectWriter() argument 434 return std::make_unique<AArch64MachObjectWriter>(CPUType, CPUSubtype, in createAArch64MachObjectWriter()
|
| H A D | AArch64MCTargetDesc.h | 53 createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype,
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLSymbols.cpp | 60 LLVM_YAML_DECLARE_ENUM_TRAITS(CPUType) in LLVM_YAML_IS_SEQUENCE_VECTOR() 145 void ScalarEnumerationTraits<CPUType>::enumeration(IO &io, CPUType &Cpu) { in enumeration() 148 io.enumCase(Cpu, E.Name.str().c_str(), static_cast<CPUType>(E.Value)); in enumeration() 156 std::optional<CPUType> CpuType; in enumeration() 161 CpuType = CPUType::Pentium3; in enumeration() 164 CpuType = CPUType::X64; in enumeration() 167 CpuType = CPUType::ARMNT; in enumeration() 172 CpuType = CPUType::ARM64; in enumeration()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMMachObjectWriter.cpp | 48 ARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in ARMMachObjectWriter() argument 49 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in ARMMachObjectWriter() 492 llvm::createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, in createARMMachObjectWriter() argument 494 return std::make_unique<ARMMachObjectWriter>(Is64Bit, CPUType, CPUSubtype); in createARMMachObjectWriter()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86MachObjectWriter.cpp | 53 X86MachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in X86MachObjectWriter() argument 54 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in X86MachObjectWriter() 578 llvm::createX86MachObjectWriter(bool Is64Bit, uint32_t CPUType, in createX86MachObjectWriter() argument 580 return std::make_unique<X86MachObjectWriter>(Is64Bit, CPUType, CPUSubtype); in createX86MachObjectWriter()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCMachObjectTargetWriter.cpp | 16 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_) {} in MCMachObjectTargetWriter()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | Architecture.h | 36 LLVM_ABI Architecture getArchitectureFromCpuType(uint32_t CPUType,
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/ |
| H A D | DebuggerSupportPlugin.cpp | 124 if (auto CPUType = MachO::getCPUType(G.getTargetTriple())) in startSynthesis() local 125 Builder.Header.cputype = *CPUType; in startSynthesis() 127 return CPUType.takeError(); in startSynthesis()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOReader.cpp | 22 O.Header.CPUType = MachOObj.getHeader().cputype; in readHeader() 94 const uint32_t CPUType = MachOObj.getHeader().cputype; in extractSections() local 105 R.IsAddend = !R.Scattered && (CPUType == MachO::CPU_TYPE_ARM64 && in extractSections()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVScope.h | 422 codeview::CPUType CompilationCPUType = codeview::CPUType::X64; 554 void setCPUType(codeview::CPUType Type) { CompilationCPUType = Type; } in setCPUType() 555 codeview::CPUType getCPUType() { return CompilationCPUType; } in getCPUType()
|