Temporarily Revert "Nuke the old JIT." as it's not quite ready 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 TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "PPCSubtarget.h"
15 #include "PPC.h"
16 #include "PPCRegisterInfo.h"
17 #include "llvm/CodeGen/MachineFunction.h"
18 #include "llvm/CodeGen/MachineScheduler.h"
19 #include "llvm/IR/Attributes.h"
20 #include "llvm/IR/Function.h"
21 #include "llvm/IR/GlobalValue.h"
22 #include "llvm/Support/Host.h"
23 #include "llvm/Support/TargetRegistry.h"
24 #include "llvm/Target/TargetMachine.h"
25 #include <cstdlib>
26
27 using namespace llvm;
28
29 #define DEBUG_TYPE "ppc-subtarget"
30
31 #define GET_SUBTARGETINFO_TARGET_DESC
32 #define GET_SUBTARGETINFO_CTOR
33 #include "PPCGenSubtargetInfo.inc"
34
35 /// Return the datalayout string of a subtarget.
36 static std::string getDataLayoutString(const PPCSubtarget &ST) {
37   const Triple &T = ST.getTargetTriple();
38
39   std::string Ret;
40
41   // Most PPC* platforms are big endian, PPC64LE is little endian.
42   if (ST.isLittleEndian())
43     Ret = "e";
44   else
45     Ret = "E";
46
47   Ret += DataLayout::getManglingComponent(T);
48
49   // PPC32 has 32 bit pointers. The PS3 (OS Lv2) is a PPC64 machine with 32 bit
50   // pointers.
51   if (!ST.isPPC64() || T.getOS() == Triple::Lv2)
52     Ret += "-p:32:32";
53
54   // Note, the alignment values for f64 and i64 on ppc64 in Darwin
55   // documentation are wrong; these are correct (i.e. "what gcc does").
56   if (ST.isPPC64() || ST.isSVR4ABI())
57     Ret += "-i64:64";
58   else
59     Ret += "-f64:32:64";
60
61   // PPC64 has 32 and 64 bit registers, PPC32 has only 32 bit ones.
62   if (ST.isPPC64())
63     Ret += "-n32:64";
64   else
65     Ret += "-n32";
66
67   return Ret;
68 }
69
70 PPCSubtarget &PPCSubtarget::initializeSubtargetDependencies(StringRef CPU,
71                                                             StringRef FS) {
72   initializeEnvironment();
73   resetSubtargetFeatures(CPU, FS);
74   return *this;
75 }
76
77 PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
78                            const std::string &FS, PPCTargetMachine &TM,
79                            bool is64Bit, CodeGenOpt::Level OptLevel)
80     : PPCGenSubtargetInfo(TT, CPU, FS), IsPPC64(is64Bit), TargetTriple(TT),
81       OptLevel(OptLevel), TargetABI(PPC_ABI_UNKNOWN),
82       FrameLowering(initializeSubtargetDependencies(CPU, FS)),
83       DL(getDataLayoutString(*this)), InstrInfo(*this), JITInfo(*this),
84       TLInfo(TM), TSInfo(&DL) {}
85
86 /// SetJITMode - This is called to inform the subtarget info that we are
87 /// producing code for the JIT.
88 void PPCSubtarget::SetJITMode() {
89   // JIT mode doesn't want lazy resolver stubs, it knows exactly where
90   // everything is.  This matters for PPC64, which codegens in PIC mode without
91   // stubs.
92   HasLazyResolverStubs = false;
93
94   // Calls to external functions need to use indirect calls
95   IsJITCodeModel = true;
96 }
97
98 void PPCSubtarget::resetSubtargetFeatures(const MachineFunction *MF) {
99   AttributeSet FnAttrs = MF->getFunction()->getAttributes();
100   Attribute CPUAttr = FnAttrs.getAttribute(AttributeSet::FunctionIndex,
101                                            "target-cpu");
102   Attribute FSAttr = FnAttrs.getAttribute(AttributeSet::FunctionIndex,
103                                           "target-features");
104   std::string CPU =
105     !CPUAttr.hasAttribute(Attribute::None) ? CPUAttr.getValueAsString() : "";
106   std::string FS =
107     !FSAttr.hasAttribute(Attribute::None) ? FSAttr.getValueAsString() : "";
108   if (!FS.empty()) {
109     initializeEnvironment();
110     resetSubtargetFeatures(CPU, FS);
111   }
112 }
113
114 void PPCSubtarget::initializeEnvironment() {
115   StackAlignment = 16;
116   DarwinDirective = PPC::DIR_NONE;
117   HasMFOCRF = false;
118   Has64BitSupport = false;
119   Use64BitRegs = false;
120   UseCRBits = false;
121   HasAltivec = false;
122   HasSPE = false;
123   HasQPX = false;
124   HasVSX = false;
125   HasFCPSGN = false;
126   HasFSQRT = false;
127   HasFRE = false;
128   HasFRES = false;
129   HasFRSQRTE = false;
130   HasFRSQRTES = false;
131   HasRecipPrec = false;
132   HasSTFIWX = false;
133   HasLFIWAX = false;
134   HasFPRND = false;
135   HasFPCVT = false;
136   HasISEL = false;
137   HasPOPCNTD = false;
138   HasLDBRX = false;
139   IsBookE = false;
140   IsPPC4xx = false;
141   IsPPC6xx = false;
142   IsE500 = false;
143   DeprecatedMFTB = false;
144   DeprecatedDST = false;
145   HasLazyResolverStubs = false;
146   IsJITCodeModel = false;
147 }
148
149 void PPCSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
150   // Determine default and user specified characteristics
151   std::string CPUName = CPU;
152   if (CPUName.empty())
153     CPUName = "generic";
154 #if (defined(__APPLE__) || defined(__linux__)) && \
155     (defined(__ppc__) || defined(__powerpc__))
156   if (CPUName == "generic")
157     CPUName = sys::getHostCPUName();
158 #endif
159
160   // Initialize scheduling itinerary for the specified CPU.
161   InstrItins = getInstrItineraryForCPU(CPUName);
162
163   // Make sure 64-bit features are available when CPUname is generic
164   std::string FullFS = FS;
165
166   // If we are generating code for ppc64, verify that options make sense.
167   if (IsPPC64) {
168     Has64BitSupport = true;
169     // Silently force 64-bit register use on ppc64.
170     Use64BitRegs = true;
171     if (!FullFS.empty())
172       FullFS = "+64bit," + FullFS;
173     else
174       FullFS = "+64bit";
175   }
176
177   // At -O2 and above, track CR bits as individual registers.
178   if (OptLevel >= CodeGenOpt::Default) {
179     if (!FullFS.empty())
180       FullFS = "+crbits," + FullFS;
181     else
182       FullFS = "+crbits";
183   }
184
185   // Parse features string.
186   ParseSubtargetFeatures(CPUName, FullFS);
187
188   // If the user requested use of 64-bit regs, but the cpu selected doesn't
189   // support it, ignore.
190   if (use64BitRegs() && !has64BitSupport())
191     Use64BitRegs = false;
192
193   // Set up darwin-specific properties.
194   if (isDarwin())
195     HasLazyResolverStubs = true;
196
197   // QPX requires a 32-byte aligned stack. Note that we need to do this if
198   // we're compiling for a BG/Q system regardless of whether or not QPX
199   // is enabled because external functions will assume this alignment.
200   if (hasQPX() || isBGQ())
201     StackAlignment = 32;
202
203   // Determine endianness.
204   IsLittleEndian = (TargetTriple.getArch() == Triple::ppc64le);
205
206   // FIXME: For now, we disable VSX in little-endian mode until endian
207   // issues in those instructions can be addressed.
208   if (IsLittleEndian)
209     HasVSX = false;
210
211   // Determine default ABI.
212   if (TargetABI == PPC_ABI_UNKNOWN) {
213     if (!isDarwin() && IsPPC64) {
214       if (IsLittleEndian)
215         TargetABI = PPC_ABI_ELFv2;
216       else
217         TargetABI = PPC_ABI_ELFv1;
218     }
219   }
220 }
221
222 /// hasLazyResolverStub - Return true if accesses to the specified global have
223 /// to go through a dyld lazy resolution stub.  This means that an extra load
224 /// is required to get the address of the global.
225 bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV,
226                                        const TargetMachine &TM) const {
227   // We never have stubs if HasLazyResolverStubs=false or if in static mode.
228   if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
229     return false;
230   // If symbol visibility is hidden, the extra load is not needed if
231   // the symbol is definitely defined in the current translation unit.
232   bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
233   if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
234     return false;
235   return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
236          GV->hasCommonLinkage() || isDecl;
237 }
238
239 // Embedded cores need aggressive scheduling (and some others also benefit).
240 static bool needsAggressiveScheduling(unsigned Directive) {
241   switch (Directive) {
242   default: return false;
243   case PPC::DIR_440:
244   case PPC::DIR_A2:
245   case PPC::DIR_E500mc:
246   case PPC::DIR_E5500:
247   case PPC::DIR_PWR7:
248   case PPC::DIR_PWR8:
249     return true;
250   }
251 }
252
253 bool PPCSubtarget::enableMachineScheduler() const {
254   // Enable MI scheduling for the embedded cores.
255   // FIXME: Enable this for all cores (some additional modeling
256   // may be necessary).
257   return needsAggressiveScheduling(DarwinDirective);
258 }
259
260 // This overrides the PostRAScheduler bit in the SchedModel for each CPU.
261 bool PPCSubtarget::enablePostMachineScheduler() const { return true; }
262
263 PPCGenSubtargetInfo::AntiDepBreakMode PPCSubtarget::getAntiDepBreakMode() const {
264   return TargetSubtargetInfo::ANTIDEP_ALL;
265 }
266
267 void PPCSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const {
268   CriticalPathRCs.clear();
269   CriticalPathRCs.push_back(isPPC64() ?
270                             &PPC::G8RCRegClass : &PPC::GPRCRegClass);
271 }
272
273 void PPCSubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy,
274                                        MachineInstr *begin,
275                                        MachineInstr *end,
276                                        unsigned NumRegionInstrs) const {
277   if (needsAggressiveScheduling(DarwinDirective)) {
278     Policy.OnlyTopDown = false;
279     Policy.OnlyBottomUp = false;
280   }
281
282   // Spilling is generally expensive on all PPC cores, so always enable
283   // register-pressure tracking.
284   Policy.ShouldTrackPressure = true;
285 }
286
287 bool PPCSubtarget::useAA() const {
288   // Use AA during code generation for the embedded cores.
289   return needsAggressiveScheduling(DarwinDirective);
290 }
291