Home
last modified time | relevance | path

Searched full:cpusubtype (Results 1 – 25 of 163) sorted by relevance

1234567

/external/llvm/test/ObjectYAML/MachO/
Dfat_macho_i386_x86_64.yaml9 cpusubtype: 0x00000003
14 cpusubtype: 0x80000003
22 cpusubtype: 0x00000003
30 cpusubtype: 0x80000003
45 #CHECK: cpusubtype: 0x00000003
50 #CHECK: cpusubtype: 0x80000003
59 #CHECK: cpusubtype: 0x00000003
68 #CHECK: cpusubtype: 0x80000003
Dmach_header.yaml7 cpusubtype: 0x80000003
18 # CHECK: cpusubtype: 0x80000003
Dmach_header_64.yaml7 cpusubtype: 0x80000003
19 # CHECK: cpusubtype: 0x80000003
Dmach_header_32_malformed.yaml7 cpusubtype: 0x80000003
/external/llvm/test/CodeGen/ARM/
DMachO-subtypes.ll60 ; CHECK-V4T: CpuSubType: CPU_SUBTYPE_ARM_V4T (0x5)
61 ; CHECK-V5: CpuSubType: CPU_SUBTYPE_ARM_V5 (0x7)
62 ; CHECK-V6: CpuSubType: CPU_SUBTYPE_ARM_V6 (0x6)
63 ; CHECK-V6M: CpuSubType: CPU_SUBTYPE_ARM_V6M (0xE)
64 ; CHECK-V7: CpuSubType: CPU_SUBTYPE_ARM_V7 (0x9)
65 ; CHECK-V7EM: CpuSubType: CPU_SUBTYPE_ARM_V7EM (0x10)
66 ; CHECK-V7K: CpuSubType: CPU_SUBTYPE_ARM_V7K (0xC)
67 ; CHECK-V7M: CpuSubType: CPU_SUBTYPE_ARM_V7M (0xF)
68 ; CHECK-V7S: CpuSubType: CPU_SUBTYPE_ARM_V7S (0xB)
/external/llvm/test/tools/llvm-objdump/X86/
Dmacho-universal-x86_64.i386.test37 FAT: cpusubtype CPU_SUBTYPE_X86_64_ALL
44 FAT: cpusubtype CPU_SUBTYPE_I386_ALL
55 NON-VERBOSE: cpusubtype 3
62 NON-VERBOSE: cpusubtype 3
Dmacho-private-headers.test28 CHECK: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
124 EXE: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
448 FATi386: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
452 NON_VERBOSE: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
Dmacho-private-header.test4 CHECK: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
/external/llvm/include/llvm/Object/
DMachOUniversal.h64 return Header.cpusubtype; in getCPUSubType()
66 return Header64.cpusubtype; in getCPUSubType()
95 MachOObjectFile::getArchTriple(Header.cputype, Header.cpusubtype); in getArchTypeName()
100 Header64.cpusubtype); in getArchTypeName()
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp399 uint32_t subtype = Header.cpusubtype & ~MachO::CPU_SUBTYPE_MASK; in printFileHeaders()
402 W.printEnum("CpuSubType", subtype, makeArrayRef(MachOHeaderCpuSubtypesX86)); in printFileHeaders()
405 W.printEnum("CpuSubType", subtype, makeArrayRef(MachOHeaderCpuSubtypesX64)); in printFileHeaders()
408 W.printEnum("CpuSubType", subtype, makeArrayRef(MachOHeaderCpuSubtypesARM)); in printFileHeaders()
411 W.printEnum("CpuSubType", subtype, makeArrayRef(MachOHeaderCpuSubtypesPPC)); in printFileHeaders()
414 W.printEnum("CpuSubType", subtype, makeArrayRef(MachOHeaderCpuSubtypesSPARC)); in printFileHeaders()
417 W.printEnum("CpuSubType", subtype, makeArrayRef(MachOHeaderCpuSubtypesARM64)); in printFileHeaders()
421 W.printHex("CpuSubtype", subtype); in printFileHeaders()
/external/llvm/test/tools/llvm-readobj/
Dmacho-universal-x86_64.i386.test19 MULTIHEADER: CpuSubType: CPU_SUBTYPE_X86_64_ALL (0x3)
38 MULTIHEADER: CpuSubType: CPU_SUBTYPE_I386_ALL (0x3)
156 MULTIHEADER-ARCHIVE: CpuSubType: CPU_SUBTYPE_X86_64_ALL (0x3)
172 MULTIHEADER-ARCHIVE: CpuSubType: CPU_SUBTYPE_I386_ALL (0x3)
Dfile-headers.test144 MACHO32-NEXT: CpuSubType: CPU_SUBTYPE_I386_ALL (0x3)
160 MACHO64-NEXT: CpuSubType: CPU_SUBTYPE_X86_64_ALL (0x3)
177 MACHO-PPC-NEXT: CpuSubType: CPU_SUBTYPE_POWERPC_ALL (0x0)
193 MACHO-PPC64-NEXT: CpuSubtype: 0x0
210 MACHO-ARM-NEXT: CpuSubType: CPU_SUBTYPE_ARM_V7 (0x9)
/external/google-breakpad/src/common/mac/
Darch_utilities.cc64 arm64->cpusubtype = CPU_SUBTYPE_ARM64_ALL; in ArchInfo_arm64()
74 armv7s->cpusubtype = CPU_SUBTYPE_ARM_V7S; in ArchInfo_armv7s()
Dmacho_utilities.cc66 mh->cpusubtype = ByteSwap(mh->cpusubtype); in breakpad_swap_mach_header_64()
Ddump_syms.mm205 arch_set = SetArchitecture(arch_info->cputype, arch_info->cpusubtype);
214 cpu_subtype_t cpu_subtype = selected_object_file_->cpusubtype;
474 if (!SetArchitecture(local_arch->cputype, local_arch->cpusubtype)) {
491 selected_object_file_->cputype, selected_object_file_->cpusubtype);
527 selected_object_file_->cpusubtype))
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp44 uint32_t CPUSubtype) in ARMMachObjectWriter() argument
45 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype, in ARMMachObjectWriter()
383 uint32_t CPUSubtype) { in createARMMachObjectWriter() argument
386 CPUSubtype), in createARMMachObjectWriter()
/external/llvm/include/llvm/Support/
DMachO.h495 uint32_t cpusubtype; member
505 uint32_t cpusubtype; member
890 uint32_t cpusubtype; member
898 uint32_t cpusubtype; member
970 sys::swapByteOrder(mh.cpusubtype); in swapStruct()
978 sys::swapByteOrder(mh.cpusubtype); in swapStruct()
988 sys::swapByteOrder(mh.cpusubtype); in swapStruct()
998 sys::swapByteOrder(H.cpusubtype); in swapStruct()
1364 // Capability bits used in the definition of cpusubtype.
1372 // Constants for the cpusubtype field.
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp40 PPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in PPCMachObjectWriter() argument
41 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in PPCMachObjectWriter()
379 uint32_t CPUSubtype) { in createPPCMachObjectWriter() argument
381 new PPCMachObjectWriter(Is64Bit, CPUType, CPUSubtype), OS, in createPPCMachObjectWriter()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMachO.h495 uint32_t cpusubtype; member
505 uint32_t cpusubtype; member
898 uint32_t cpusubtype; member
906 uint32_t cpusubtype; member
978 sys::swapByteOrder(mh.cpusubtype); in swapStruct()
986 sys::swapByteOrder(mh.cpusubtype); in swapStruct()
996 sys::swapByteOrder(mh.cpusubtype); in swapStruct()
1006 sys::swapByteOrder(H.cpusubtype); in swapStruct()
1379 // Capability bits used in the definition of cpusubtype.
1387 // Constants for the cpusubtype field.
/external/compiler-rt/cmake/Modules/
DCompilerRTDarwinUtils.cmake101 # This function checks the host cpusubtype to see if it is post-haswell. Haswell
102 # and later machines can run x86_64h binaries. Haswell is cpusubtype 8.
106 COMMAND sysctl hw.cpusubtype
109 string(REGEX MATCH "hw.cpusubtype: ([0-9]*)"
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp33 AArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype) in AArch64MachObjectWriter() argument
34 : MCMachObjectTargetWriter(true /* is64Bit */, CPUType, CPUSubtype) {} in AArch64MachObjectWriter()
427 uint32_t CPUSubtype) { in createAArch64MachObjectWriter() argument
429 new AArch64MachObjectWriter(CPUType, CPUSubtype), OS, in createAArch64MachObjectWriter()
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp51 ARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in ARMMachObjectWriter() argument
52 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in ARMMachObjectWriter()
481 uint32_t CPUSubtype) { in createARMMachObjectWriter() argument
484 CPUSubtype), in createARMMachObjectWriter()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DMachO.h282 uint32_t cpusubtype; member
292 uint32_t cpusubtype; member
626 uint32_t cpusubtype; member
686 // Constants for the cpusubtype field.
/external/google-breakpad/src/tools/mac/dump_syms/
Ddump_syms_tool.mm125 options.arch->cpusubtype)) {
139 arch->cputype, arch->cpusubtype);
144 arch->cputype, arch->cpusubtype);
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
DPPCAsmBackend.cpp51 uint32_t CPUSubtype) in PPCMachObjectWriter() argument
52 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in PPCMachObjectWriter()

1234567