Fix the ridiculous SubtargetFeatures API where it implicitly expects CPU name to
[oota-llvm.git] / lib / Target / PowerPC / PPCSubtarget.cpp
1 //===- PowerPCSubtarget.cpp - PPC Subtarget Information -------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the PPC specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "PPCSubtarget.h"
15 #include "PPC.h"
16 #include "llvm/GlobalValue.h"
17 #include "llvm/Target/TargetMachine.h"
18 #include "PPCGenSubtarget.inc"
19 #include <cstdlib>
20 using namespace llvm;
21
22 #if defined(__APPLE__)
23 #include <mach/mach.h>
24 #include <mach/mach_host.h>
25 #include <mach/host_info.h>
26 #include <mach/machine.h>
27
28 /// GetCurrentPowerPCFeatures - Returns the current CPUs features.
29 static const char *GetCurrentPowerPCCPU() {
30   host_basic_info_data_t hostInfo;
31   mach_msg_type_number_t infoCount;
32
33   infoCount = HOST_BASIC_INFO_COUNT;
34   host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, 
35             &infoCount);
36             
37   if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
38
39   switch(hostInfo.cpu_subtype) {
40   case CPU_SUBTYPE_POWERPC_601:   return "601";
41   case CPU_SUBTYPE_POWERPC_602:   return "602";
42   case CPU_SUBTYPE_POWERPC_603:   return "603";
43   case CPU_SUBTYPE_POWERPC_603e:  return "603e";
44   case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
45   case CPU_SUBTYPE_POWERPC_604:   return "604";
46   case CPU_SUBTYPE_POWERPC_604e:  return "604e";
47   case CPU_SUBTYPE_POWERPC_620:   return "620";
48   case CPU_SUBTYPE_POWERPC_750:   return "750";
49   case CPU_SUBTYPE_POWERPC_7400:  return "7400";
50   case CPU_SUBTYPE_POWERPC_7450:  return "7450";
51   case CPU_SUBTYPE_POWERPC_970:   return "970";
52   default: ;
53   }
54   
55   return "generic";
56 }
57 #endif
58
59
60 PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
61                            const std::string &FS, bool is64Bit)
62   : StackAlignment(16)
63   , DarwinDirective(PPC::DIR_NONE)
64   , IsGigaProcessor(false)
65   , Has64BitSupport(false)
66   , Use64BitRegs(false)
67   , IsPPC64(is64Bit)
68   , HasAltivec(false)
69   , HasFSQRT(false)
70   , HasSTFIWX(false)
71   , HasLazyResolverStubs(false)
72   , IsJITCodeModel(false)
73   , TargetTriple(TT) {
74
75   // Determine default and user specified characteristics
76   std::string CPUName = CPU;
77   if (CPUName.empty())
78     CPUName = "generic";
79 #if defined(__APPLE__)
80   if (CPUName == "generic")
81     CPUName = GetCurrentPowerPCCPU();
82 #endif
83
84   // Parse features string.
85   ParseSubtargetFeatures(FS, CPUName);
86
87   // If we are generating code for ppc64, verify that options make sense.
88   if (is64Bit) {
89     Has64BitSupport = true;
90     // Silently force 64-bit register use on ppc64.
91     Use64BitRegs = true;
92   }
93   
94   // If the user requested use of 64-bit regs, but the cpu selected doesn't
95   // support it, ignore.
96   if (use64BitRegs() && !has64BitSupport())
97     Use64BitRegs = false;
98
99   // Set up darwin-specific properties.
100   if (isDarwin())
101     HasLazyResolverStubs = true;
102 }
103
104 /// SetJITMode - This is called to inform the subtarget info that we are
105 /// producing code for the JIT.
106 void PPCSubtarget::SetJITMode() {
107   // JIT mode doesn't want lazy resolver stubs, it knows exactly where
108   // everything is.  This matters for PPC64, which codegens in PIC mode without
109   // stubs.
110   HasLazyResolverStubs = false;
111
112   // Calls to external functions need to use indirect calls
113   IsJITCodeModel = true;
114 }
115
116
117 /// hasLazyResolverStub - Return true if accesses to the specified global have
118 /// to go through a dyld lazy resolution stub.  This means that an extra load
119 /// is required to get the address of the global.
120 bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV,
121                                        const TargetMachine &TM) const {
122   // We never have stubs if HasLazyResolverStubs=false or if in static mode.
123   if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
124     return false;
125   // If symbol visibility is hidden, the extra load is not needed if
126   // the symbol is definitely defined in the current translation unit.
127   bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
128   if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
129     return false;
130   return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
131          GV->hasCommonLinkage() || isDecl;
132 }