[Modules] Consolidate the DEBUG_TYPE defines in NVPTX to the top of the
[oota-llvm.git] / lib / Target / NVPTX / NVPTXISelDAGToDAG.h
1 //===-- NVPTXISelDAGToDAG.h - A dag to dag inst selector for NVPTX --------===//
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 defines an instruction selector for the NVPTX target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "NVPTX.h"
15 #include "NVPTXISelLowering.h"
16 #include "NVPTXRegisterInfo.h"
17 #include "NVPTXTargetMachine.h"
18 #include "llvm/CodeGen/SelectionDAGISel.h"
19 #include "llvm/IR/Intrinsics.h"
20 #include "llvm/Support/Compiler.h"
21 using namespace llvm;
22
23 namespace {
24
25 class LLVM_LIBRARY_VISIBILITY NVPTXDAGToDAGISel : public SelectionDAGISel {
26
27   // If true, generate corresponding FPCONTRACT. This is
28   // language dependent (i.e. CUDA and OpenCL works differently).
29   bool doFMAF64;
30   bool doFMAF32;
31   bool doFMAF64AGG;
32   bool doFMAF32AGG;
33   bool allowFMA;
34
35   // If true, generate mul.wide from sext and mul
36   bool doMulWide;
37
38   int getDivF32Level() const;
39   bool usePrecSqrtF32() const;
40   bool useF32FTZ() const;
41
42 public:
43   explicit NVPTXDAGToDAGISel(NVPTXTargetMachine &tm,
44                              CodeGenOpt::Level   OptLevel);
45
46   // Pass Name
47   virtual const char *getPassName() const {
48     return "NVPTX DAG->DAG Pattern Instruction Selection";
49   }
50
51   const NVPTXSubtarget &Subtarget;
52
53   virtual bool SelectInlineAsmMemoryOperand(
54       const SDValue &Op, char ConstraintCode, std::vector<SDValue> &OutOps);
55 private:
56 // Include the pieces autogenerated from the target description.
57 #include "NVPTXGenDAGISel.inc"
58
59   SDNode *Select(SDNode *N);
60   SDNode *SelectIntrinsicNoChain(SDNode *N);
61   SDNode *SelectTexSurfHandle(SDNode *N);
62   SDNode *SelectLoad(SDNode *N);
63   SDNode *SelectLoadVector(SDNode *N);
64   SDNode *SelectLDGLDUVector(SDNode *N);
65   SDNode *SelectStore(SDNode *N);
66   SDNode *SelectStoreVector(SDNode *N);
67   SDNode *SelectLoadParam(SDNode *N);
68   SDNode *SelectStoreRetval(SDNode *N);
69   SDNode *SelectStoreParam(SDNode *N);
70   SDNode *SelectAddrSpaceCast(SDNode *N);
71   SDNode *SelectTextureIntrinsic(SDNode *N);
72   SDNode *SelectSurfaceIntrinsic(SDNode *N);
73         
74   inline SDValue getI32Imm(unsigned Imm) {
75     return CurDAG->getTargetConstant(Imm, MVT::i32);
76   }
77
78   // Match direct address complex pattern.
79   bool SelectDirectAddr(SDValue N, SDValue &Address);
80
81   bool SelectADDRri_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
82                         SDValue &Offset, MVT mvt);
83   bool SelectADDRri(SDNode *OpNode, SDValue Addr, SDValue &Base,
84                     SDValue &Offset);
85   bool SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base,
86                       SDValue &Offset);
87
88   bool SelectADDRsi_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
89                         SDValue &Offset, MVT mvt);
90   bool SelectADDRsi(SDNode *OpNode, SDValue Addr, SDValue &Base,
91                     SDValue &Offset);
92   bool SelectADDRsi64(SDNode *OpNode, SDValue Addr, SDValue &Base,
93                       SDValue &Offset);
94
95   bool ChkMemSDNodeAddressSpace(SDNode *N, unsigned int spN) const;
96
97 };
98 }