5ad2f40f0f3a6273507e89ccfa84c42eac38cf1a
[oota-llvm.git] / lib / Target / R600 / SIISelLowering.h
1 //===-- SIISelLowering.h - SI DAG 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 SI DAG Lowering interface definition
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef SIISELLOWERING_H
16 #define SIISELLOWERING_H
17
18 #include "AMDGPUISelLowering.h"
19 #include "SIInstrInfo.h"
20
21 namespace llvm {
22
23 class SITargetLowering : public AMDGPUTargetLowering {
24   const SIInstrInfo * TII;
25   const TargetRegisterInfo * TRI;
26
27   SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
28   SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
29
30   bool foldImm(SDValue &Operand, int32_t &Immediate,
31                bool &ScalarSlotUsed) const;
32   bool fitsRegClass(SelectionDAG &DAG, SDValue &Op, unsigned RegClass) const;
33   void ensureSRegLimit(SelectionDAG &DAG, SDValue &Operand, 
34                        unsigned RegClass, bool &ScalarSlotUsed) const;
35
36 public:
37   SITargetLowering(TargetMachine &tm);
38
39   SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv,
40                                bool isVarArg,
41                                const SmallVectorImpl<ISD::InputArg> &Ins,
42                                DebugLoc DL, SelectionDAG &DAG,
43                                SmallVectorImpl<SDValue> &InVals) const;
44
45   virtual MachineBasicBlock * EmitInstrWithCustomInserter(MachineInstr * MI,
46                                               MachineBasicBlock * BB) const;
47   virtual EVT getSetCCResultType(EVT VT) const;
48   virtual MVT getScalarShiftAmountTy(EVT VT) const;
49   virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
50   virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
51   virtual SDNode *PostISelFolding(MachineSDNode *N, SelectionDAG &DAG) const;
52
53   int32_t analyzeImmediate(const SDNode *N) const;
54 };
55
56 } // End namespace llvm
57
58 #endif //SIISELLOWERING_H