R600: Add support for global addresses with constant initializers
[oota-llvm.git] / lib / Target / R600 / AMDGPUISelLowering.h
1 //===-- AMDGPUISelLowering.h - AMDGPU Lowering Interface --------*- 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 /// \file
11 /// \brief Interface definition of the TargetLowering class that is common
12 /// to all AMD GPUs.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef AMDGPUISELLOWERING_H
17 #define AMDGPUISELLOWERING_H
18
19 #include "llvm/Target/TargetLowering.h"
20
21 namespace llvm {
22
23 class AMDGPUMachineFunction;
24 class MachineRegisterInfo;
25
26 class AMDGPUTargetLowering : public TargetLowering {
27 private:
28   void ExtractVectorElements(SDValue Op, SelectionDAG &DAG,
29                              SmallVectorImpl<SDValue> &Args,
30                              unsigned Start, unsigned Count) const;
31   SDValue LowerConstantInitializer(const Constant* Init, const GlobalValue *GV,
32                                    const SDValue &InitPtr,
33                                    SDValue Chain,
34                                    SelectionDAG &DAG) const;
35   SDValue LowerFrameIndex(SDValue Op, SelectionDAG &DAG) const;
36   SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const;
37   SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const;
38   SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const;
39   /// \brief Lower vector stores by merging the vector elements into an integer
40   /// of the same bitwidth.
41   SDValue MergeVectorStore(const SDValue &Op, SelectionDAG &DAG) const;
42   /// \brief Split a vector store into multiple scalar stores.
43   /// \returns The resulting chain. 
44   SDValue LowerUDIVREM(SDValue Op, SelectionDAG &DAG) const;
45   SDValue LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) const;
46
47 protected:
48
49   /// \brief Helper function that adds Reg to the LiveIn list of the DAG's
50   /// MachineFunction.
51   ///
52   /// \returns a RegisterSDNode representing Reg.
53   virtual SDValue CreateLiveInRegister(SelectionDAG &DAG,
54                                        const TargetRegisterClass *RC,
55                                        unsigned Reg, EVT VT) const;
56   SDValue LowerGlobalAddress(AMDGPUMachineFunction *MFI, SDValue Op,
57                              SelectionDAG &DAG) const;
58   /// \brief Split a vector load into multiple scalar loads.
59   SDValue SplitVectorLoad(const SDValue &Op, SelectionDAG &DAG) const;
60   SDValue SplitVectorStore(SDValue Op, SelectionDAG &DAG) const;
61   SDValue LowerLOAD(SDValue Op, SelectionDAG &DAG) const;
62   SDValue LowerSTORE(SDValue Op, SelectionDAG &DAG) const;
63   bool isHWTrueValue(SDValue Op) const;
64   bool isHWFalseValue(SDValue Op) const;
65
66   /// The SelectionDAGBuilder will automatically promote function arguments
67   /// with illegal types.  However, this does not work for the AMDGPU targets
68   /// since the function arguments are stored in memory as these illegal types.
69   /// In order to handle this properly we need to get the origianl types sizes
70   /// from the LLVM IR Function and fixup the ISD:InputArg values before
71   /// passing them to AnalyzeFormalArguments()
72   void getOriginalFunctionArgs(SelectionDAG &DAG,
73                                const Function *F,
74                                const SmallVectorImpl<ISD::InputArg> &Ins,
75                                SmallVectorImpl<ISD::InputArg> &OrigIns) const;
76   void AnalyzeFormalArguments(CCState &State,
77                               const SmallVectorImpl<ISD::InputArg> &Ins) const;
78
79 public:
80   AMDGPUTargetLowering(TargetMachine &TM);
81
82   virtual bool isFAbsFree(EVT VT) const;
83   virtual bool isFNegFree(EVT VT) const;
84   virtual MVT getVectorIdxTy() const;
85   virtual bool isLoadBitCastBeneficial(EVT, EVT) const LLVM_OVERRIDE;
86   virtual SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv,
87                               bool isVarArg,
88                               const SmallVectorImpl<ISD::OutputArg> &Outs,
89                               const SmallVectorImpl<SDValue> &OutVals,
90                               SDLoc DL, SelectionDAG &DAG) const;
91   virtual SDValue LowerCall(CallLoweringInfo &CLI,
92                             SmallVectorImpl<SDValue> &InVals) const {
93     CLI.Callee.dump();
94     llvm_unreachable("Undefined function");
95   }
96
97   virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
98   SDValue LowerIntrinsicIABS(SDValue Op, SelectionDAG &DAG) const;
99   SDValue LowerIntrinsicLRP(SDValue Op, SelectionDAG &DAG) const;
100   SDValue LowerMinMax(SDValue Op, SelectionDAG &DAG) const;
101   virtual const char* getTargetNodeName(unsigned Opcode) const;
102
103   virtual SDNode *PostISelFolding(MachineSDNode *N, SelectionDAG &DAG) const {
104     return N;
105   }
106
107 // Functions defined in AMDILISelLowering.cpp
108 public:
109
110   /// \brief Determine which of the bits specified in \p Mask are known to be
111   /// either zero or one and return them in the \p KnownZero and \p KnownOne
112   /// bitsets.
113   virtual void computeMaskedBitsForTargetNode(const SDValue Op,
114                                               APInt &KnownZero,
115                                               APInt &KnownOne,
116                                               const SelectionDAG &DAG,
117                                               unsigned Depth = 0) const;
118
119   virtual bool getTgtMemIntrinsic(IntrinsicInfo &Info,
120                                   const CallInst &I, unsigned Intrinsic) const;
121
122   /// We want to mark f32/f64 floating point values as legal.
123   bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
124
125   /// We don't want to shrink f64/f32 constants.
126   bool ShouldShrinkFPConstant(EVT VT) const;
127
128 private:
129   void InitAMDILLowering();
130   SDValue LowerSREM(SDValue Op, SelectionDAG &DAG) const;
131   SDValue LowerSREM8(SDValue Op, SelectionDAG &DAG) const;
132   SDValue LowerSREM16(SDValue Op, SelectionDAG &DAG) const;
133   SDValue LowerSREM32(SDValue Op, SelectionDAG &DAG) const;
134   SDValue LowerSREM64(SDValue Op, SelectionDAG &DAG) const;
135   SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) const;
136   SDValue LowerSDIV24(SDValue Op, SelectionDAG &DAG) const;
137   SDValue LowerSDIV32(SDValue Op, SelectionDAG &DAG) const;
138   SDValue LowerSDIV64(SDValue Op, SelectionDAG &DAG) const;
139   SDValue LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const;
140   EVT genIntType(uint32_t size = 32, uint32_t numEle = 1) const;
141   SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
142   SDValue LowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const;
143 };
144
145 namespace AMDGPUISD {
146
147 enum {
148   // AMDIL ISD Opcodes
149   FIRST_NUMBER = ISD::BUILTIN_OP_END,
150   CALL,        // Function call based on a single integer
151   UMUL,        // 32bit unsigned multiplication
152   DIV_INF,      // Divide with infinity returned on zero divisor
153   RET_FLAG,
154   BRANCH_COND,
155   // End AMDIL ISD Opcodes
156   DWORDADDR,
157   FRACT,
158   COS_HW,
159   SIN_HW,
160   FMAX,
161   SMAX,
162   UMAX,
163   FMIN,
164   SMIN,
165   UMIN,
166   URECIP,
167   DOT4,
168   TEXTURE_FETCH,
169   EXPORT,
170   CONST_ADDRESS,
171   REGISTER_LOAD,
172   REGISTER_STORE,
173   LOAD_INPUT,
174   SAMPLE,
175   SAMPLEB,
176   SAMPLED,
177   SAMPLEL,
178   FIRST_MEM_OPCODE_NUMBER = ISD::FIRST_TARGET_MEMORY_OPCODE,
179   STORE_MSKOR,
180   LOAD_CONSTANT,
181   TBUFFER_STORE_FORMAT,
182   LAST_AMDGPU_ISD_NUMBER
183 };
184
185
186 } // End namespace AMDGPUISD
187
188 } // End namespace llvm
189
190 #endif // AMDGPUISELLOWERING_H