Home
last modified time | relevance | path

Searched refs:cpuSubtype (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lld/MachO/Arch/
H A DARM64_32.cpp110 cpuSubtype = CPU_SUBTYPE_ARM64_V8; in ARM64_32()
H A DX86_64.cpp207 cpuSubtype = CPU_SUBTYPE_X86_64_ALL; in X86_64()
H A DARM64.cpp181 cpuSubtype = CPU_SUBTYPE_ARM64_ALL; in ARM64()
/freebsd/contrib/llvm-project/lld/MachO/
H A DTarget.h115 uint32_t cpuSubtype; variable
H A DInputFiles.cpp248 auto getArchName = [](uint32_t cpuType, uint32_t cpuSubtype) { in readFile() argument
249 return getArchitectureName(getArchitectureFromCpuType(cpuType, cpuSubtype)); in readFile()
261 uint32_t cpuSubtype = in readFile() local
267 cpuSubtype != target->cpuSubtype) { in readFile()
268 archs.emplace_back(getArchName(cpuType, cpuSubtype)); in readFile()
282 auto targetArchName = getArchName(target->cpuType, target->cpuSubtype); in readFile()
H A DSyntheticSections.cpp96 static uint32_t cpuSubtype() { in cpuSubtype() function
97 uint32_t subtype = target->cpuSubtype; in cpuSubtype()
100 target->cpuSubtype == CPU_SUBTYPE_X86_64_ALL && in cpuSubtype()
122 hdr->cpusubtype = cpuSubtype(); in writeTo()
1182 stab.sect = target->cpuSubtype; in emitObjectFileStab()
H A DDriver.cpp805 auto [cpuType, cpuSubtype] = getCPUTypeFromArchitecture(config->arch()); in createTargetInfo()