b3e7a3512cd265440b9a0e56e292c8275d4ac445
[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 HasPopulationCount;
42   bool HasFastSerialization;
43   bool HasInterlockedAccess1;
44
45 private:
46   Triple TargetTriple;
47   SystemZInstrInfo InstrInfo;
48   SystemZTargetLowering TLInfo;
49   SystemZSelectionDAGInfo TSInfo;
50   SystemZFrameLowering FrameLowering;
51
52   SystemZSubtarget &initializeSubtargetDependencies(StringRef CPU,
53                                                     StringRef FS);
54 public:
55   SystemZSubtarget(const std::string &TT, const std::string &CPU,
56                    const std::string &FS, const TargetMachine &TM);
57
58   const TargetFrameLowering *getFrameLowering() const override {
59     return &FrameLowering;
60   }
61   const SystemZInstrInfo *getInstrInfo() const override { return &InstrInfo; }
62   const SystemZRegisterInfo *getRegisterInfo() const override {
63     return &InstrInfo.getRegisterInfo();
64   }
65   const SystemZTargetLowering *getTargetLowering() const override {
66     return &TLInfo;
67   }
68   const TargetSelectionDAGInfo *getSelectionDAGInfo() const override {
69     return &TSInfo;
70   }
71
72   // This is important for reducing register pressure in vector code.
73   bool useAA() const override { return true; }
74
75   // Automatically generated by tblgen.
76   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
77
78   // Return true if the target has the distinct-operands facility.
79   bool hasDistinctOps() const { return HasDistinctOps; }
80
81   // Return true if the target has the load/store-on-condition facility.
82   bool hasLoadStoreOnCond() const { return HasLoadStoreOnCond; }
83
84   // Return true if the target has the high-word facility.
85   bool hasHighWord() const { return HasHighWord; }
86
87   // Return true if the target has the floating-point extension facility.
88   bool hasFPExtension() const { return HasFPExtension; }
89
90   // Return true if the target has the population-count facility.
91   bool hasPopulationCount() const { return HasPopulationCount; }
92
93   // Return true if the target has the fast-serialization facility.
94   bool hasFastSerialization() const { return HasFastSerialization; }
95
96   // Return true if the target has interlocked-access facility 1.
97   bool hasInterlockedAccess1() const { return HasInterlockedAccess1; }
98
99   // Return true if GV can be accessed using LARL for reloc model RM
100   // and code model CM.
101   bool isPC32DBLSymbol(const GlobalValue *GV, Reloc::Model RM,
102                        CodeModel::Model CM) const;
103
104   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
105 };
106 } // end namespace llvm
107
108 #endif