Searched refs:CPUSubType (Results 1 - 15 of 15) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachOUniversalWriter.h37 uint32_t CPUSubType; member in class:llvm::object::Slice
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; }
75 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType;
82 Twine(CPUSubType & ~MachO::CPU_SUBTYPE_MASK) + ")")
88 return Lhs.CPUSubType < Rhs.CPUSubType;
H A DMachO.h749 static Triple::ArchType getArch(uint32_t CPUType, uint32_t CPUSubType);
750 static Triple getArchTriple(uint32_t CPUType, uint32_t CPUSubType,
/freebsd-current/contrib/llvm-project/llvm/lib/TextAPI/
H A DArchitecture.cpp23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { argument
26 (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) == (Subtype)) \
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DArchitecture.h35 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType);
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DMachOUniversalWriter.cpp85 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, argument
87 : B(&A), CPUType(CPUType), CPUSubType(CPUSubType),
92 CPUSubType(O.getHeader().cpusubtype),
96 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, argument
98 : B(&IRO), CPUType(CPUType), CPUSubType(CPUSubType),
230 unsigned CPUType, CPUSubType; local
231 std::tie(CPUType, CPUSubType) = CPUOrErr.get();
235 MachOObjectFile::getArchTriple(CPUType, CPUSubType)
[all...]
H A DMachOObjectFile.cpp2689 Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType, uint32_t CPUSubType) { argument
2710 Triple MachOObjectFile::getArchTriple(uint32_t CPUType, uint32_t CPUSubType, argument
2720 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2729 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2742 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2797 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2814 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2825 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2834 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObject.h29 uint32_t CPUSubType; member in struct:llvm::objcopy::macho::MachHeader
H A DMachOReader.cpp24 O.Header.CPUSubType = MachOObj.getHeader().cpusubtype;
H A DMachOWriter.cpp140 Header.cpusubtype = O.Header.CPUSubType;
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp465 Expected<uint32_t> CPUSubType = (*ModuleOrErr)->getMachOCPUSubType(); local
469 if (!CPUSubType)
471 toString(CPUSubType.takeError()));
473 Filename.c_str(), *CPUType, *CPUSubType);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOPlatform.h411 uint32_t CPUSubType = 0; member in struct:llvm::orc::MachOHeaderInfo
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp599 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TheTriple)); variable
600 return createAArch64MachObjectWriter(CPUType, CPUSubType,
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1325 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TT)); variable
1326 return createX86MachObjectWriter(Is64Bit, CPUType, CPUSubType);
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp1689 B.Header.cpusubtype = HdrInfo.CPUSubType;
1774 /* CPUSubType = */ MachO::CPU_SUBTYPE_ARM64_ALL};
1778 /* CPUSubType = */ MachO::CPU_SUBTYPE_X86_64_ALL};
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp7089 uint32_t CPUType, CPUSubType; local
7094 CPUSubType = H_64.cpusubtype;
7098 CPUSubType = H.cpusubtype;
7100 Triple T = MachOObjectFile::getArchTriple(CPUType, CPUSubType, nullptr,

Completed in 315 milliseconds