blob: 404f6201a55d0b5e032011c502671b54f1b0bbaf [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001//===-- 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
21namespace llvm {
22
23class MachineRegisterInfo;
24
25class AMDGPUTargetLowering : public TargetLowering {
26private:
27 SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const;
28 SDValue LowerUDIVREM(SDValue Op, SelectionDAG &DAG) const;
29
30protected:
31
32 /// \brief Helper function that adds Reg to the LiveIn list of the DAG's
33 /// MachineFunction.
34 ///
35 /// \returns a RegisterSDNode representing Reg.
36 SDValue CreateLiveInRegister(SelectionDAG &DAG, const TargetRegisterClass *RC,
37 unsigned Reg, EVT VT) const;
38
39 bool isHWTrueValue(SDValue Op) const;
40 bool isHWFalseValue(SDValue Op) const;
41
42public:
43 AMDGPUTargetLowering(TargetMachine &TM);
44
45 virtual SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv,
46 bool isVarArg,
47 const SmallVectorImpl<ISD::InputArg> &Ins,
48 DebugLoc DL, SelectionDAG &DAG,
49 SmallVectorImpl<SDValue> &InVals) const;
50
51 virtual SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv,
52 bool isVarArg,
53 const SmallVectorImpl<ISD::OutputArg> &Outs,
54 const SmallVectorImpl<SDValue> &OutVals,
55 DebugLoc DL, SelectionDAG &DAG) const;
Tom Stellard47d42012013-02-08 22:24:40 +000056 virtual SDValue LowerCall(CallLoweringInfo &CLI,
57 SmallVectorImpl<SDValue> &InVals) const {
58 CLI.Callee.dump();
59 llvm_unreachable("Undefined function");
60 }
Tom Stellard75aadc22012-12-11 21:25:42 +000061
62 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
63 SDValue LowerIntrinsicIABS(SDValue Op, SelectionDAG &DAG) const;
64 SDValue LowerIntrinsicLRP(SDValue Op, SelectionDAG &DAG) const;
65 SDValue LowerMinMax(SDValue Op, SelectionDAG &DAG) const;
66 virtual const char* getTargetNodeName(unsigned Opcode) const;
67
68// Functions defined in AMDILISelLowering.cpp
69public:
70
71 /// \brief Determine which of the bits specified in \p Mask are known to be
72 /// either zero or one and return them in the \p KnownZero and \p KnownOne
73 /// bitsets.
74 virtual void computeMaskedBitsForTargetNode(const SDValue Op,
75 APInt &KnownZero,
76 APInt &KnownOne,
77 const SelectionDAG &DAG,
78 unsigned Depth = 0) const;
79
80 virtual bool getTgtMemIntrinsic(IntrinsicInfo &Info,
81 const CallInst &I, unsigned Intrinsic) const;
82
83 /// We want to mark f32/f64 floating point values as legal.
84 bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
85
86 /// We don't want to shrink f64/f32 constants.
87 bool ShouldShrinkFPConstant(EVT VT) const;
88
89private:
90 void InitAMDILLowering();
91 SDValue LowerSREM(SDValue Op, SelectionDAG &DAG) const;
92 SDValue LowerSREM8(SDValue Op, SelectionDAG &DAG) const;
93 SDValue LowerSREM16(SDValue Op, SelectionDAG &DAG) const;
94 SDValue LowerSREM32(SDValue Op, SelectionDAG &DAG) const;
95 SDValue LowerSREM64(SDValue Op, SelectionDAG &DAG) const;
96 SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) const;
97 SDValue LowerSDIV24(SDValue Op, SelectionDAG &DAG) const;
98 SDValue LowerSDIV32(SDValue Op, SelectionDAG &DAG) const;
99 SDValue LowerSDIV64(SDValue Op, SelectionDAG &DAG) const;
100 SDValue LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const;
101 EVT genIntType(uint32_t size = 32, uint32_t numEle = 1) const;
102 SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
103 SDValue LowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const;
104};
105
106namespace AMDGPUISD {
107
108enum {
109 // AMDIL ISD Opcodes
110 FIRST_NUMBER = ISD::BUILTIN_OP_END,
Tom Stellard75aadc22012-12-11 21:25:42 +0000111 CALL, // Function call based on a single integer
112 UMUL, // 32bit unsigned multiplication
113 DIV_INF, // Divide with infinity returned on zero divisor
114 RET_FLAG,
115 BRANCH_COND,
116 // End AMDIL ISD Opcodes
117 BITALIGN,
118 DWORDADDR,
119 FRACT,
120 FMAX,
121 SMAX,
122 UMAX,
123 FMIN,
124 SMIN,
125 UMIN,
126 URECIP,
Tom Stellard75aadc22012-12-11 21:25:42 +0000127 EXPORT,
Tom Stellardff62c352013-01-23 02:09:03 +0000128 CONST_ADDRESS,
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000129 REGISTER_LOAD,
130 REGISTER_STORE,
Tom Stellard75aadc22012-12-11 21:25:42 +0000131 LAST_AMDGPU_ISD_NUMBER
132};
133
134
135} // End namespace AMDGPUISD
136
Tom Stellard75aadc22012-12-11 21:25:42 +0000137} // End namespace llvm
138
139#endif // AMDGPUISELLOWERING_H