| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | MachOUniversalWriter.h | 38 uint32_t CPUSubType; 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, 72 uint32_t getCPUSubType() const { return CPUSubType; } in getCPUSubType() 77 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType; in getCPUID() 84 Twine(CPUSubType & ~MachO::CPU_SUBTYPE_MASK) + ")") in getArchString() 90 return Lhs.CPUSubType < Rhs.CPUSubType;
|
| H A D | MachO.h | 755 static Triple::ArchType getArch(uint32_t CPUType, uint32_t CPUSubType); 756 static Triple getArchTriple(uint32_t CPUType, uint32_t CPUSubType,
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | GetDylibInterface.cpp | 26 auto CPUSubType = MachO::getCPUSubType(ES.getTargetTriple()); in getDylibInterfaceFromDylib() local 27 if (!CPUSubType) in getDylibInterfaceFromDylib() 28 return CPUSubType.takeError(); in getDylibInterfaceFromDylib() 45 (O.getCPUSubType() & ~MachO::CPU_SUBTYPE_MASK) == *CPUSubType) { in getDylibInterfaceFromDylib() 94 auto CPUSubType = MachO::getCPUSubType(ES.getTargetTriple()); in getDylibInterfaceFromTapiFile() local 95 if (!CPUSubType) in getDylibInterfaceFromTapiFile() 96 return CPUSubType.takeError(); in getDylibInterfaceFromTapiFile() 100 IF.extract(MachO::getArchitectureFromCpuType(*CPUType, *CPUSubType)); in getDylibInterfaceFromTapiFile()
|
| H A D | MachOPlatform.cpp | 1752 B.Header.cpusubtype = HdrInfo.CPUSubType; in createHeaderBlock()
|
| /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() 92 CPUSubType(O.getHeader().cpusubtype), 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, CPUSubType) in create() 234 unsigned CPUType, CPUSubType; create() local [all...] |
| H A D | MachOObjectFile.cpp | 2688 Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType, uint32_t CPUSubType) { in getArch() argument 2709 Triple MachOObjectFile::getArchTriple(uint32_t CPUType, uint32_t CPUSubType, in getArchTriple() argument 2719 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2728 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2741 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2796 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2813 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2824 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2833 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | MachO.cpp | 99 if (auto CPUSubType = MachO::getCPUSubType(G.getTargetTriple())) in createLocalHeaderBlock() local 100 Hdr.cpusubtype = *CPUSubType; in createLocalHeaderBlock() 102 return CPUSubType.takeError(); in createLocalHeaderBlock()
|
| H A D | MachO_arm64.cpp | 64 uint32_t CPUSubType = in getObjectTriple() local 66 CPUSubType &= ~MachO::CPU_SUBTYPE_MASK; in getObjectTriple() 67 if (CPUSubType == MachO::CPU_SUBTYPE_ARM64E) in getObjectTriple()
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | Architecture.cpp | 23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { in getArchitectureFromCpuType() argument 26 (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) == (Subtype)) \ in getArchitectureFromCpuType()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | Architecture.h | 37 uint32_t CPUSubType);
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/ |
| H A D | DebuggerSupportPlugin.cpp | 128 if (auto CPUSubType = MachO::getCPUSubType(G.getTargetTriple())) in startSynthesis() local 129 Builder.Header.cpusubtype = *CPUSubType; in startSynthesis() 131 return CPUSubType.takeError(); in startSynthesis()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-lto/ |
| H A D | llvm-lto.cpp | 528 Expected<uint32_t> CPUSubType = (*ModuleOrErr)->getMachOCPUSubType(); in printMachOCPUOnly() local 532 if (!CPUSubType) in printMachOCPUOnly() 534 toString(CPUSubType.takeError())); in printMachOCPUOnly() 536 Filename.c_str(), *CPUType, *CPUSubType); in printMachOCPUOnly()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObject.h | 29 uint32_t CPUSubType; member
|
| H A D | MachOReader.cpp | 23 O.Header.CPUSubType = MachOObj.getHeader().cpusubtype; in readHeader()
|
| H A D | MachOWriter.cpp | 139 Header.cpusubtype = O.Header.CPUSubType; in writeHeader()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64AsmBackend.cpp | 582 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TheTriple)); in createObjectTargetWriter() local 583 return createAArch64MachObjectWriter(CPUType, CPUSubType, in createObjectTargetWriter()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MachOPlatform.h | 428 uint32_t CPUSubType = 0; member
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86AsmBackend.cpp | 1329 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TT)); in createObjectTargetWriter() local 1330 return createX86MachObjectWriter(Is64Bit, CPUType, CPUSubType); in createObjectTargetWriter()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 7205 uint32_t CPUType, CPUSubType; in getMachODSymObject() local 7210 CPUSubType = H_64.cpusubtype; in getMachODSymObject() 7214 CPUSubType = H.cpusubtype; in getMachODSymObject() 7216 Triple T = MachOObjectFile::getArchTriple(CPUType, CPUSubType, nullptr, in getMachODSymObject()
|