/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | MachOUniversalWriter.h | 37 uint32_t CPUSubType; variable 45 Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, 53 /// This constructor takes pre-specified \param CPUType , \param CPUSubType , 56 Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, 70 uint32_t getCPUSubType() const { return CPUSubType; } in getCPUSubType() 75 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType; in getCPUID() 82 Twine(CPUSubType & ~MachO::CPU_SUBTYPE_MASK) + ")") in getArchString() 88 return Lhs.CPUSubType < Rhs.CPUSubType;
|
H A D | MachO.h | 750 static Triple::ArchType getArch(uint32_t CPUType, uint32_t CPUSubType); 751 static Triple getArchTriple(uint32_t CPUType, uint32_t CPUSubType,
|
/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 | 2689 Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType, uint32_t CPUSubType) { in getArch() argument 2710 Triple MachOObjectFile::getArchTriple(uint32_t CPUType, uint32_t CPUSubType, in getArchTriple() argument 2720 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2729 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2742 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2797 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2814 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2825 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2834 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple()
|
/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 | 35 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType);
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/ |
H A D | llvm-lto.cpp | 474 Expected<uint32_t> CPUSubType = (*ModuleOrErr)->getMachOCPUSubType(); in printMachOCPUOnly() local 478 if (!CPUSubType) in printMachOCPUOnly() 480 toString(CPUSubType.takeError())); in printMachOCPUOnly() 482 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 | 24 O.Header.CPUSubType = MachOObj.getHeader().cpusubtype; in readHeader()
|
H A D | MachOWriter.cpp | 140 Header.cpusubtype = O.Header.CPUSubType; in writeHeader()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64AsmBackend.cpp | 596 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TheTriple)); in createObjectTargetWriter() local 597 return createAArch64MachObjectWriter(CPUType, CPUSubType, in createObjectTargetWriter()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | MachOPlatform.h | 425 uint32_t CPUSubType = 0; member
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86AsmBackend.cpp | 1325 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TT)); in createObjectTargetWriter() local 1326 return createX86MachObjectWriter(Is64Bit, CPUType, CPUSubType); in createObjectTargetWriter()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | MachOPlatform.cpp | 1735 B.Header.cpusubtype = HdrInfo.CPUSubType; in createHeaderBlock()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 7201 uint32_t CPUType, CPUSubType; in getMachODSymObject() local 7206 CPUSubType = H_64.cpusubtype; in getMachODSymObject() 7210 CPUSubType = H.cpusubtype; in getMachODSymObject() 7212 Triple T = MachOObjectFile::getArchTriple(CPUType, CPUSubType, nullptr, in getMachODSymObject()
|