Searched refs:cputype (Results 1 - 25 of 57) sorted by relevance

123

/freebsd-11-stable/sys/dev/hwpmc/
H A Dhwpmc_intel.c80 enum pmc_cputype cputype; local
88 cputype = -1;
98 cputype = PMC_CPU_INTEL_P5;
105 cputype = PMC_CPU_INTEL_P6;
108 cputype = PMC_CPU_INTEL_PII;
111 cputype = PMC_CPU_INTEL_CL;
114 cputype = PMC_CPU_INTEL_PIII;
117 cputype = PMC_CPU_INTEL_PM;
121 cputype = PMC_CPU_INTEL_CORE;
126 cputype
[all...]
H A Dhwpmc_amd.c1039 enum pmc_cputype cputype; local
1062 cputype = PMC_CPU_AMD_K7;
1072 cputype = PMC_CPU_AMD_K8;
1079 cputype = PMC_CPU_AMD_F17H;
1108 pmc_mdep->pmd_cputype = cputype;
/freebsd-11-stable/sys/arm/arm/
H A Dcpufunc.c460 u_int cputype; variable
604 cputype = cpu_ident();
605 cputype &= CPU_ID_CPU_MASK;
608 if (((cputype & CPU_ID_IMPLEMENTOR_MASK) == CPU_ID_ARM_LTD ||
609 (cputype & CPU_ID_IMPLEMENTOR_MASK) == CPU_ID_TI) &&
610 (cputype & 0x0000f000) == 0x00009000) {
624 if (cputype == CPU_ID_MV88FR131 || cputype == CPU_ID_MV88FR571_VD ||
625 cputype == CPU_ID_MV88FR571_41) {
638 if (cputype
[all...]
/freebsd-11-stable/sys/arm/xscale/ixp425/
H A Dixp425var.h49 /* NB: cputype is setup by set_cpufuncs */
50 #define cpu_is_ixp42x() (cputype == CPU_ID_IXP425)
51 #define cpu_is_ixp43x() (cputype == CPU_ID_IXP435)
52 #define cpu_is_ixp46x() (cputype == CPU_ID_IXP465)
/freebsd-11-stable/usr.sbin/config/
H A Dconfig.h110 struct cputype { struct
112 SLIST_ENTRY(cputype) cpu_next;
115 extern SLIST_HEAD(cputype_head, cputype) cputype;
H A Dconfig.y164 struct cputype *cp =
165 (struct cputype *)calloc(1, sizeof (struct cputype));
169 SLIST_INSERT_HEAD(&cputype, cp, cpu_next);
172 struct cputype *cp, *cp2;
173 SLIST_FOREACH_SAFE(cp, &cputype, cpu_next, cp2) {
175 SLIST_REMOVE(&cputype, cp, cputype, cpu_next);
H A Dmkoptions.c66 struct cputype *cp;
71 SLIST_FOREACH(cp, &cputype, cpu_next) {
H A Dmain.c77 struct cputype_head cputype; variable in typeref:struct:cputype_head
209 SLIST_INIT(&cputype);
233 if (SLIST_EMPTY(&cputype)) {
468 struct cputype *cput;
479 SLIST_FOREACH(cput, &cputype, cpu_next)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachO.cpp61 dbgs() << "jitLink_MachO: cputype = "
62 << format("0x%08" PRIx32, Header.cputype)
67 switch (Header.cputype) {
/freebsd-11-stable/sys/arm/mv/armadaxp/
H A Darmadaxp.c129 uint32_t cputype; local
131 cputype = cpu_ident();
132 cputype &= CPU_ID_CPU_MASK;
134 if (cputype == CPU_ID_MV88SV584X_V7)
H A Darmadaxp_mp.c97 uint32_t reg, *src, *dst, cpu_num, div_val, cputype; local
103 cputype = cpu_ident();
104 cputype &= CPU_ID_CPU_MASK;
118 if (cputype == CPU_ID_MV88SV584X_V7) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachOUniversal.h59 return Header.cputype;
61 return Header64.cputype;
97 MachOObjectFile::getArchTriple(Header.cputype, Header.cpusubtype,
101 MachOObjectFile::getArchTriple(Header64.cputype,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOUniversal.cpp70 uint32_t cputype; local
73 cputype = Header.cputype;
76 cputype = Header64.cputype;
80 return ObjectFile::createMachOObjectFile(ObjBuffer, cputype, Index);
152 Err = malformedError("offset plus size of cputype (" +
161 ") too large for cputype (" + Twine(A.getCPUType()) +
169 " for cputype (" + Twine(A.getCPUType()) + ") cpusubtype (" +
175 Err = malformedError("cputype ("
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c80 cpu_type_t cputype; member in struct:baton
133 // find the cputype and the start of the __TEXT,__unwind_info
168 baton->cputype = mh.cputype;
332 if (baton->cputype == CPU_TYPE_ARM)
362 if (baton->cputype == CPU_TYPE_ARM)
420 if (baton->cputype == CPU_TYPE_ARM)
438 if (baton->cputype == CPU_TYPE_ARM)
1148 if (baton.cputype == CPU_TYPE_X86_64) {
1150 } else if (baton.cputype
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp240 ModuleArch ModuleArchFromCpuType(cpu_type_t cputype, cpu_subtype_t cpusubtype) { argument
242 switch (cputype) {
306 data_.current_arch = ModuleArchFromCpuType(hdr->cputype, hdr->cpusubtype);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h48 llvm::yaml::Hex32 cputype; member in struct:llvm::MachOYAML::FileHeader
128 llvm::yaml::Hex32 cputype; member in struct:llvm::MachOYAML::FatArch
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachOLinkingContext.cpp116 MachOLinkingContext::archFromCpuType(uint32_t cputype, uint32_t cpusubtype) { argument
118 if ((info->cputype == cputype) && (info->cpusubtype == cpusubtype))
145 return info->cputype;
285 return (info->cputype & CPU_ARCH_ABI64);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp690 uint32_t cputype = O->getHeader().cputype; local
691 if (cputype & MachO::CPU_ARCH_ABI64)
700 if (cputype & MachO::CPU_ARCH_ABI64)
796 static void PrintRType(const uint64_t cputype, const unsigned r_type) { argument
822 switch (cputype) {
841 static void PrintRLength(const uint64_t cputype, const unsigned r_type, argument
843 if (cputype == MachO::CPU_TYPE_ARM &&
866 if (cputype == MachO::CPU_TYPE_X86_64)
880 const uint64_t cputype,
877 PrintRelocationEntries(const MachOObjectFile *O, const relocation_iterator Begin, const relocation_iterator End, const uint64_t cputype, const bool verbose) argument
1053 const uint64_t cputype = O->getHeader().cputype; local
1679 uint32_t cputype = O->getHeader().cputype; local
2026 printUnknownCPUType(uint32_t cputype, uint32_t cpusubtype) argument
2033 printCPUType(uint32_t cputype, uint32_t cpusubtype) argument
2170 uint32_t cputype = OFA.getCPUType(); local
8230 PrintMachHeader(uint32_t magic, uint32_t cputype, uint32_t cpusubtype, uint32_t filetype, uint32_t ncmds, uint32_t sizeofcmds, uint32_t flags, bool verbose) argument
9598 PrintThreadCommand(MachO::thread_command t, const char *Ptr, bool isLittleEndian, uint32_t cputype) argument
10055 PrintLoadCommands(const MachOObjectFile *Obj, uint32_t filetype, uint32_t cputype, bool verbose) argument
10213 uint32_t cputype = 0; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h503 uint32_t cputype; member in struct:llvm::MachO::mach_header
513 uint32_t cputype; member in struct:llvm::MachO::mach_header_64
932 uint32_t cputype; member in struct:llvm::MachO::fat_arch
940 uint32_t cputype; member in struct:llvm::MachO::fat_arch_64
1008 sys::swapByteOrder(mh.cputype);
1016 sys::swapByteOrder(mh.cputype);
1026 sys::swapByteOrder(mh.cputype);
1036 sys::swapByteOrder(H.cputype);
1414 // Constants for the cputype field.
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/ReaderWriter/
H A DMachOLinkingContext.h394 static Arch archFromCpuType(uint32_t cputype, uint32_t cpusubtype);
432 uint32_t cputype; member in struct:lld::MachOLinkingContext::ArchInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp74 Header.cputype = Obj.Header.cputype;
522 FatArch.cputype = Arch.cputype;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp255 return MachO.getHeader64().cputype;
257 return MachO.getHeader().cputype;
/freebsd-11-stable/contrib/binutils/bfd/
H A Dlibcoff-in.h156 /* cputype from optional header. */
157 short cputype; member in struct:xcoff_tdata
/freebsd-11-stable/sys/mips/mips/
H A Dmachdep.c156 int cputype; variable
/freebsd-11-stable/sys/arm/include/
H A Dcpufunc.h166 extern u_int cputype;

Completed in 261 milliseconds

123