1 //===- PowerPCSubtarget.cpp - PPC Subtarget Information -------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file was developed by Nate Begeman and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the PPC specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #include "PPCSubtarget.h"
16 #include "llvm/Module.h"
17 #include "PPCGenSubtarget.inc"
21 #if defined(__APPLE__)
22 #include <mach/mach.h>
23 #include <mach/mach_host.h>
24 #include <mach/host_info.h>
25 #include <mach/machine.h>
27 /// GetCurrentPowerPCFeatures - Returns the current CPUs features.
28 static const char *GetCurrentPowerPCCPU() {
29 host_basic_info_data_t hostInfo;
30 mach_msg_type_number_t infoCount;
32 infoCount = HOST_BASIC_INFO_COUNT;
33 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo,
36 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
38 switch(hostInfo.cpu_subtype) {
39 case CPU_SUBTYPE_POWERPC_601: return "601";
40 case CPU_SUBTYPE_POWERPC_602: return "602";
41 case CPU_SUBTYPE_POWERPC_603: return "603";
42 case CPU_SUBTYPE_POWERPC_603e: return "603e";
43 case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
44 case CPU_SUBTYPE_POWERPC_604: return "604";
45 case CPU_SUBTYPE_POWERPC_604e: return "604e";
46 case CPU_SUBTYPE_POWERPC_620: return "620";
47 case CPU_SUBTYPE_POWERPC_750: return "750";
48 case CPU_SUBTYPE_POWERPC_7400: return "7400";
49 case CPU_SUBTYPE_POWERPC_7450: return "7450";
50 case CPU_SUBTYPE_POWERPC_970: return "970";
59 PPCSubtarget::PPCSubtarget(const Module &M, const std::string &FS, bool is64Bit)
62 , IsGigaProcessor(false)
63 , Has64BitSupport(false)
71 // Determine default and user specified characteristics
72 std::string CPU = "generic";
73 #if defined(__APPLE__)
74 CPU = GetCurrentPowerPCCPU();
77 // Parse features string.
78 ParseSubtargetFeatures(FS, CPU);
80 // If we are generating code for ppc64, verify that options make sense.
82 if (!has64BitSupport()) {
83 std::cerr << "PPC: Generation of 64-bit code for a 32-bit processor "
84 "requested. Ignoring 32-bit processor feature.\n";
85 Has64BitSupport = true;
87 // Silently force 64-bit register use on ppc64.
91 // If the user requested use of 64-bit regs, but the cpu selected doesn't
92 // support it, warn and ignore.
93 if (use64BitRegs() && !has64BitSupport()) {
94 std::cerr << "PPC: 64-bit registers requested on CPU without support. "
95 "Disabling 64-bit register use.\n";
99 // Set the boolean corresponding to the current target triple, or the default
100 // if one cannot be determined, to true.
101 const std::string& TT = M.getTargetTriple();
102 if (TT.length() > 5) {
103 IsDarwin = TT.find("-darwin") != std::string::npos;
104 } else if (TT.empty()) {
105 #if defined(__APPLE__)