Move DataLayout back to the TargetMachine from TargetSubtargetInfo
[oota-llvm.git] / lib / Target / SystemZ / SystemZSubtarget.h
1 //===-- SystemZSubtarget.h - SystemZ subtarget information -----*- 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 SystemZ specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZSUBTARGET_H
15 #define LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZSUBTARGET_H
16
17 #include "SystemZFrameLowering.h"
18 #include "SystemZISelLowering.h"
19 #include "SystemZInstrInfo.h"
20 #include "SystemZRegisterInfo.h"
21 #include "SystemZSelectionDAGInfo.h"
22 #include "llvm/IR/DataLayout.h"
23 #include "llvm/ADT/Triple.h"
24 #include "llvm/Target/TargetSubtargetInfo.h"
25 #include <string>
26
27 #define GET_SUBTARGETINFO_HEADER
28 #include "SystemZGenSubtargetInfo.inc"
29
30 namespace llvm {
31 class GlobalValue;
32 class StringRef;
33
34 class SystemZSubtarget : public SystemZGenSubtargetInfo {
35   virtual void anchor();
36 protected:
37   bool HasDistinctOps;
38   bool HasLoadStoreOnCond;
39   bool HasHighWord;
40   bool HasFPExtension;
41   bool HasFastSerialization;
42   bool HasInterlockedAccess1;
43
44 private:
45   Triple TargetTriple;
46   SystemZInstrInfo InstrInfo;
47   SystemZTargetLowering TLInfo;
48   SystemZSelectionDAGInfo TSInfo;
49   SystemZFrameLowering FrameLowering;
50
51   SystemZSubtarget &initializeSubtargetDependencies(StringRef CPU,
52                                                     StringRef FS);
53 public:
54   SystemZSubtarget(const std::string &TT, const std::string &CPU,
55                    const std::string &FS, const TargetMachine &TM);
56
57   const TargetFrameLowering *getFrameLowering() const override {
58     return &FrameLowering;
59   }
60   const SystemZInstrInfo *getInstrInfo() const override { return &InstrInfo; }
61   const SystemZRegisterInfo *getRegisterInfo() const override {
62     return &InstrInfo.getRegisterInfo();
63   }
64   const SystemZTargetLowering *getTargetLowering() const override {
65     return &TLInfo;
66   }
67   const TargetSelectionDAGInfo *getSelectionDAGInfo() const override {
68     return &TSInfo;
69   }
70
71   // This is important for reducing register pressure in vector code.
72   bool useAA() const override { return true; }
73
74   // Automatically generated by tblgen.
75   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
76
77   // Return true if the target has the distinct-operands facility.
78   bool hasDistinctOps() const { return HasDistinctOps; }
79
80   // Return true if the target has the load/store-on-condition facility.
81   bool hasLoadStoreOnCond() const { return HasLoadStoreOnCond; }
82
83   // Return true if the target has the high-word facility.
84   bool hasHighWord() const { return HasHighWord; }
85
86   // Return true if the target has the floating-point extension facility.
87   bool hasFPExtension() const { return HasFPExtension; }
88
89   // Return true if the target has the fast-serialization facility.
90   bool hasFastSerialization() const { return HasFastSerialization; }
91
92   // Return true if the target has interlocked-access facility 1.
93   bool hasInterlockedAccess1() const { return HasInterlockedAccess1; }
94
95   // Return true if GV can be accessed using LARL for reloc model RM
96   // and code model CM.
97   bool isPC32DBLSymbol(const GlobalValue *GV, Reloc::Model RM,
98                        CodeModel::Model CM) const;
99
100   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
101 };
102 } // end namespace llvm
103
104 #endif