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.cpp106 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.cpp213 cpuSubtype = CPU_SUBTYPE_ARM64_ALL; in ARM64()
/freebsd/contrib/llvm-project/lld/MachO/
H A DTarget.h131 uint32_t cpuSubtype; variable
H A DInputFiles.cpp246 auto getArchName = [](uint32_t cpuType, uint32_t cpuSubtype) { in readFile() argument
247 return getArchitectureName(getArchitectureFromCpuType(cpuType, cpuSubtype)); in readFile()
259 uint32_t cpuSubtype = in readFile() local
265 cpuSubtype != target->cpuSubtype) { in readFile()
266 archs.emplace_back(getArchName(cpuType, cpuSubtype)); in readFile()
280 auto targetArchName = getArchName(target->cpuType, target->cpuSubtype); in readFile()
H A DSyntheticSections.cpp95 static uint32_t cpuSubtype() { in cpuSubtype() function
96 uint32_t subtype = target->cpuSubtype; in cpuSubtype()
99 target->cpuSubtype == CPU_SUBTYPE_X86_64_ALL && in cpuSubtype()
121 hdr->cpusubtype = cpuSubtype(); in writeTo()
1179 stab.sect = target->cpuSubtype; in emitObjectFileStab()
H A DDriver.cpp800 auto [cpuType, cpuSubtype] = getCPUTypeFromArchitecture(config->arch()); in createTargetInfo()