Add support for the PPC isel instruction.
[oota-llvm.git] / lib / Target / PowerPC / PPCSubtarget.h
1 //===-- PPCSubtarget.h - Define Subtarget for the PPC ----------*- C++ -*--===//
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 declares the PowerPC specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef POWERPCSUBTARGET_H
15 #define POWERPCSUBTARGET_H
16
17 #include "llvm/Target/TargetSubtargetInfo.h"
18 #include "llvm/MC/MCInstrItineraries.h"
19 #include "llvm/ADT/Triple.h"
20 #include <string>
21
22 #define GET_SUBTARGETINFO_HEADER
23 #include "PPCGenSubtargetInfo.inc"
24
25 // GCC #defines PPC on Linux but we use it as our namespace name
26 #undef PPC
27
28 namespace llvm {
29 class StringRef;
30
31 namespace PPC {
32   // -m directive values.
33   enum {
34     DIR_NONE,
35     DIR_32,
36     DIR_440, 
37     DIR_601, 
38     DIR_602, 
39     DIR_603, 
40     DIR_7400,
41     DIR_750, 
42     DIR_970, 
43     DIR_A2,
44     DIR_PWR6,
45     DIR_PWR7,
46     DIR_64  
47   };
48 }
49
50 class GlobalValue;
51 class TargetMachine;
52   
53 class PPCSubtarget : public PPCGenSubtargetInfo {
54 protected:
55   /// stackAlignment - The minimum alignment known to hold of the stack frame on
56   /// entry to the function and which must be maintained by every function.
57   unsigned StackAlignment;
58   
59   /// Selected instruction itineraries (one entry per itinerary class.)
60   InstrItineraryData InstrItins;
61   
62   /// Which cpu directive was used.
63   unsigned DarwinDirective;
64
65   /// Used by the ISel to turn in optimizations for POWER4-derived architectures
66   bool HasMFOCRF;
67   bool Has64BitSupport;
68   bool Use64BitRegs;
69   bool IsPPC64;
70   bool HasAltivec;
71   bool HasFSQRT;
72   bool HasSTFIWX;
73   bool HasISEL;
74   bool IsBookE;
75   bool HasLazyResolverStubs;
76   bool IsJITCodeModel;
77   
78   /// TargetTriple - What processor and OS we're targeting.
79   Triple TargetTriple;
80
81 public:
82   /// This constructor initializes the data members to match that
83   /// of the specified triple.
84   ///
85   PPCSubtarget(const std::string &TT, const std::string &CPU,
86                const std::string &FS, bool is64Bit);
87   
88   /// ParseSubtargetFeatures - Parses features string setting specified 
89   /// subtarget options.  Definition of function is auto generated by tblgen.
90   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
91   
92   /// SetJITMode - This is called to inform the subtarget info that we are
93   /// producing code for the JIT.
94   void SetJITMode();
95
96   /// getStackAlignment - Returns the minimum alignment known to hold of the
97   /// stack frame on entry to the function and which must be maintained by every
98   /// function for this subtarget.
99   unsigned getStackAlignment() const { return StackAlignment; }
100   
101   /// getDarwinDirective - Returns the -m directive specified for the cpu.
102   ///
103   unsigned getDarwinDirective() const { return DarwinDirective; }
104   
105   /// getInstrItins - Return the instruction itineraies based on subtarget 
106   /// selection.
107   const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
108
109   /// getTargetDataString - Return the pointer size and type alignment
110   /// properties of this subtarget.
111   const char *getTargetDataString() const {
112     // Note, the alignment values for f64 and i64 on ppc64 in Darwin
113     // documentation are wrong; these are correct (i.e. "what gcc does").
114     return isPPC64() ? "E-p:64:64-f64:64:64-i64:64:64-f128:64:128-n32:64"
115                      : "E-p:32:32-f64:64:64-i64:64:64-f128:64:128-n32";
116   }
117
118   /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
119   ///
120   bool isPPC64() const { return IsPPC64; }
121   
122   /// has64BitSupport - Return true if the selected CPU supports 64-bit
123   /// instructions, regardless of whether we are in 32-bit or 64-bit mode.
124   bool has64BitSupport() const { return Has64BitSupport; }
125   
126   /// use64BitRegs - Return true if in 64-bit mode or if we should use 64-bit
127   /// registers in 32-bit mode when possible.  This can only true if
128   /// has64BitSupport() returns true.
129   bool use64BitRegs() const { return Use64BitRegs; }
130   
131   /// hasLazyResolverStub - Return true if accesses to the specified global have
132   /// to go through a dyld lazy resolution stub.  This means that an extra load
133   /// is required to get the address of the global.
134   bool hasLazyResolverStub(const GlobalValue *GV, 
135                            const TargetMachine &TM) const;
136   
137   // isJITCodeModel - True if we're generating code for the JIT
138   bool isJITCodeModel() const { return IsJITCodeModel; }
139
140   // Specific obvious features.
141   bool hasFSQRT() const { return HasFSQRT; }
142   bool hasSTFIWX() const { return HasSTFIWX; }
143   bool hasAltivec() const { return HasAltivec; }
144   bool hasMFOCRF() const { return HasMFOCRF; }
145   bool hasISEL() const { return HasISEL; }
146   bool isBookE() const { return IsBookE; }
147
148   const Triple &getTargetTriple() const { return TargetTriple; }
149
150   /// isDarwin - True if this is any darwin platform.
151   bool isDarwin() const { return TargetTriple.isMacOSX(); }
152   /// isBGP - True if this is a BG/P platform.
153   bool isBGP() const { return TargetTriple.getVendor() == Triple::BGP; }
154
155   bool isDarwinABI() const { return isDarwin(); }
156   bool isSVR4ABI() const { return !isDarwin(); }
157
158   /// enablePostRAScheduler - True at 'More' optimization.
159   bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
160                              TargetSubtargetInfo::AntiDepBreakMode& Mode,
161                              RegClassVector& CriticalPathRCs) const;
162 };
163 } // End llvm namespace
164
165 #endif