3f1454ce527cbc957be698537176e33026f7932c
[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 was developed by Nate Begeman and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the PowerPC specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef POWERPCSUBTARGET_H
15 #define POWERPCSUBTARGET_H
16
17 #include "llvm/Target/TargetInstrItineraries.h"
18 #include "llvm/Target/TargetSubtarget.h"
19
20 #include <string>
21
22 namespace llvm {
23 class Module;
24
25 class PPCSubtarget : public TargetSubtarget {
26 protected:
27   /// stackAlignment - The minimum alignment known to hold of the stack frame on
28   /// entry to the function and which must be maintained by every function.
29   unsigned StackAlignment;
30   
31   /// Selected instruction itineraries (one entry per itinerary class.)
32   InstrItineraryData InstrItins;
33
34   /// Used by the ISel to turn in optimizations for POWER4-derived architectures
35   bool IsGigaProcessor;
36   bool Is64Bit;
37   bool Has64BitRegs;
38   bool HasAltivec;
39   bool HasFSQRT;
40   bool IsAIX;
41   bool IsDarwin;
42 public:
43   /// This constructor initializes the data members to match that
44   /// of the specified module.
45   ///
46   PPCSubtarget(const Module &M, const std::string &FS);
47   
48   /// ParseSubtargetFeatures - Parses features string setting specified 
49   /// subtarget options.  Definition of function is auto generated by tblgen.
50   void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
51
52   /// getStackAlignment - Returns the minimum alignment known to hold of the
53   /// stack frame on entry to the function and which must be maintained by every
54   /// function for this subtarget.
55   unsigned getStackAlignment() const { return StackAlignment; }
56   
57   /// getInstrItins - Return the instruction itineraies based on subtarget 
58   /// selection.
59   const InstrItineraryData getInstrItineraryData() const { return InstrItins; }
60   
61
62   bool hasFSQRT() const { return HasFSQRT; }
63   bool has64BitRegs() const { return Has64BitRegs; }
64   bool hasAltivec() const { return HasAltivec; }
65   
66   bool isAIX() const { return IsAIX; }
67   bool isDarwin() const { return IsDarwin; }
68   bool is64Bit() const { return Is64Bit; }
69   bool isGigaProcessor() const { return IsGigaProcessor; }
70 };
71 } // End llvm namespace
72
73 #endif