Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / lib / Target / NVPTX / NVPTXISelDAGToDAG.h
blob06922331f5e2059f627f55d5b79822e9be4a6787
1 //===-- NVPTXISelDAGToDAG.h - A dag to dag inst selector for NVPTX --------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines an instruction selector for the NVPTX target.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_NVPTX_NVPTXISELDAGTODAG_H
14 #define LLVM_LIB_TARGET_NVPTX_NVPTXISELDAGTODAG_H
16 #include "MCTargetDesc/NVPTXBaseInfo.h"
17 #include "NVPTX.h"
18 #include "NVPTXISelLowering.h"
19 #include "NVPTXRegisterInfo.h"
20 #include "NVPTXTargetMachine.h"
21 #include "llvm/CodeGen/SelectionDAGISel.h"
22 #include "llvm/IR/InlineAsm.h"
23 #include "llvm/IR/Intrinsics.h"
24 #include "llvm/Support/Compiler.h"
26 namespace llvm {
28 class LLVM_LIBRARY_VISIBILITY NVPTXDAGToDAGISel : public SelectionDAGISel {
29 const NVPTXTargetMachine &TM;
31 // If true, generate mul.wide from sext and mul
32 bool doMulWide;
34 int getDivF32Level() const;
35 bool usePrecSqrtF32() const;
36 bool useF32FTZ() const;
37 bool allowFMA() const;
38 bool allowUnsafeFPMath() const;
39 bool useShortPointers() const;
41 public:
42 static char ID;
44 NVPTXDAGToDAGISel() = delete;
46 explicit NVPTXDAGToDAGISel(NVPTXTargetMachine &tm, CodeGenOptLevel OptLevel);
48 bool runOnMachineFunction(MachineFunction &MF) override;
49 const NVPTXSubtarget *Subtarget = nullptr;
51 bool SelectInlineAsmMemoryOperand(const SDValue &Op,
52 InlineAsm::ConstraintCode ConstraintID,
53 std::vector<SDValue> &OutOps) override;
55 private:
56 // Include the pieces autogenerated from the target description.
57 #include "NVPTXGenDAGISel.inc"
59 void Select(SDNode *N) override;
60 bool tryIntrinsicNoChain(SDNode *N);
61 bool tryIntrinsicChain(SDNode *N);
62 void SelectTexSurfHandle(SDNode *N);
63 bool tryLoad(SDNode *N);
64 bool tryLoadVector(SDNode *N);
65 bool tryLDGLDU(SDNode *N);
66 bool tryStore(SDNode *N);
67 bool tryStoreVector(SDNode *N);
68 bool tryLoadParam(SDNode *N);
69 bool tryStoreRetval(SDNode *N);
70 bool tryStoreParam(SDNode *N);
71 void SelectAddrSpaceCast(SDNode *N);
72 bool tryTextureIntrinsic(SDNode *N);
73 bool trySurfaceIntrinsic(SDNode *N);
74 bool tryBFE(SDNode *N);
75 bool tryConstantFP(SDNode *N);
76 bool SelectSETP_F16X2(SDNode *N);
77 bool tryEXTRACT_VECTOR_ELEMENT(SDNode *N);
79 inline SDValue getI32Imm(unsigned Imm, const SDLoc &DL) {
80 return CurDAG->getTargetConstant(Imm, DL, MVT::i32);
83 // Match direct address complex pattern.
84 bool SelectDirectAddr(SDValue N, SDValue &Address);
86 bool SelectADDRri_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
87 SDValue &Offset, MVT mvt);
88 bool SelectADDRri(SDNode *OpNode, SDValue Addr, SDValue &Base,
89 SDValue &Offset);
90 bool SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base,
91 SDValue &Offset);
92 bool SelectADDRsi_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
93 SDValue &Offset, MVT mvt);
94 bool SelectADDRsi(SDNode *OpNode, SDValue Addr, SDValue &Base,
95 SDValue &Offset);
96 bool SelectADDRsi64(SDNode *OpNode, SDValue Addr, SDValue &Base,
97 SDValue &Offset);
99 bool ChkMemSDNodeAddressSpace(SDNode *N, unsigned int spN) const;
101 static unsigned GetConvertOpcode(MVT DestTy, MVT SrcTy, LoadSDNode *N);
103 } // end namespace llvm
105 #endif