Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 1 | //===-- SIISelLowering.cpp - SI DAG Lowering Implementation ---------------===// |
| 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 Custom DAG lowering for SI |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "SIISelLowering.h" |
Christian Konig | 99ee0f4 | 2013-03-07 09:04:14 +0000 | [diff] [blame] | 16 | #include "AMDGPU.h" |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 17 | #include "AMDILIntrinsicInfo.h" |
| 18 | #include "SIInstrInfo.h" |
| 19 | #include "SIMachineFunctionInfo.h" |
| 20 | #include "SIRegisterInfo.h" |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/CallingConvLower.h" |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 23 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 24 | #include "llvm/CodeGen/SelectionDAG.h" |
Benjamin Kramer | d78bb46 | 2013-05-23 17:10:37 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Function.h" |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 26 | |
Tom Stellard | 556d9aa | 2013-06-03 17:39:37 +0000 | [diff] [blame] | 27 | const uint64_t RSRC_DATA_FORMAT = 0xf00000000000LL; |
| 28 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 29 | using namespace llvm; |
| 30 | |
| 31 | SITargetLowering::SITargetLowering(TargetMachine &TM) : |
Bill Wendling | 37e9adb | 2013-06-07 20:28:55 +0000 | [diff] [blame] | 32 | AMDGPUTargetLowering(TM) { |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 33 | |
Christian Konig | a881179 | 2013-02-16 11:28:30 +0000 | [diff] [blame] | 34 | addRegisterClass(MVT::i1, &AMDGPU::SReg_64RegClass); |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 35 | addRegisterClass(MVT::i64, &AMDGPU::SReg_64RegClass); |
| 36 | |
Tom Stellard | 8374720 | 2013-07-18 21:43:53 +0000 | [diff] [blame] | 37 | addRegisterClass(MVT::v2i1, &AMDGPU::VReg_64RegClass); |
| 38 | addRegisterClass(MVT::v4i1, &AMDGPU::VReg_128RegClass); |
| 39 | |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 40 | addRegisterClass(MVT::v16i8, &AMDGPU::SReg_128RegClass); |
| 41 | addRegisterClass(MVT::v32i8, &AMDGPU::SReg_256RegClass); |
| 42 | addRegisterClass(MVT::v64i8, &AMDGPU::SReg_512RegClass); |
| 43 | |
| 44 | addRegisterClass(MVT::i32, &AMDGPU::VReg_32RegClass); |
| 45 | addRegisterClass(MVT::f32, &AMDGPU::VReg_32RegClass); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 46 | |
Tom Stellard | 538ceeb | 2013-02-07 17:02:09 +0000 | [diff] [blame] | 47 | addRegisterClass(MVT::v1i32, &AMDGPU::VReg_32RegClass); |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 48 | |
Tom Stellard | 538ceeb | 2013-02-07 17:02:09 +0000 | [diff] [blame] | 49 | addRegisterClass(MVT::v2i32, &AMDGPU::VReg_64RegClass); |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 50 | addRegisterClass(MVT::v2f32, &AMDGPU::VReg_64RegClass); |
Tom Stellard | 7512c08 | 2013-07-12 18:14:56 +0000 | [diff] [blame] | 51 | addRegisterClass(MVT::f64, &AMDGPU::VReg_64RegClass); |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 52 | |
Tom Stellard | 538ceeb | 2013-02-07 17:02:09 +0000 | [diff] [blame] | 53 | addRegisterClass(MVT::v4i32, &AMDGPU::VReg_128RegClass); |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 54 | addRegisterClass(MVT::v4f32, &AMDGPU::VReg_128RegClass); |
Tom Stellard | 754f80f | 2013-04-05 23:31:51 +0000 | [diff] [blame] | 55 | addRegisterClass(MVT::i128, &AMDGPU::SReg_128RegClass); |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 56 | |
Tom Stellard | 538ceeb | 2013-02-07 17:02:09 +0000 | [diff] [blame] | 57 | addRegisterClass(MVT::v8i32, &AMDGPU::VReg_256RegClass); |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 58 | addRegisterClass(MVT::v8f32, &AMDGPU::VReg_256RegClass); |
| 59 | |
Tom Stellard | 538ceeb | 2013-02-07 17:02:09 +0000 | [diff] [blame] | 60 | addRegisterClass(MVT::v16i32, &AMDGPU::VReg_512RegClass); |
Christian Konig | 2214f14 | 2013-03-07 09:03:38 +0000 | [diff] [blame] | 61 | addRegisterClass(MVT::v16f32, &AMDGPU::VReg_512RegClass); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 62 | |
| 63 | computeRegisterProperties(); |
| 64 | |
Christian Konig | 2989ffc | 2013-03-18 11:34:16 +0000 | [diff] [blame] | 65 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i32, Expand); |
| 66 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Expand); |
| 67 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i32, Expand); |
| 68 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16f32, Expand); |
| 69 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 70 | setOperationAction(ISD::ADD, MVT::i64, Legal); |
| 71 | setOperationAction(ISD::ADD, MVT::i32, Legal); |
Aaron Watry | daabb20 | 2013-06-25 13:55:52 +0000 | [diff] [blame] | 72 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 73 | setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); |
| 74 | setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); |
| 75 | |
| 76 | setOperationAction(ISD::SELECT_CC, MVT::Other, Expand); |
Tom Stellard | 754f80f | 2013-04-05 23:31:51 +0000 | [diff] [blame] | 77 | |
Tom Stellard | 8374720 | 2013-07-18 21:43:53 +0000 | [diff] [blame] | 78 | setOperationAction(ISD::SETCC, MVT::v2i1, Expand); |
| 79 | setOperationAction(ISD::SETCC, MVT::v4i1, Expand); |
| 80 | |
Tom Stellard | 046039e | 2013-06-03 17:40:03 +0000 | [diff] [blame] | 81 | setOperationAction(ISD::SIGN_EXTEND, MVT::i64, Custom); |
| 82 | |
Tom Stellard | 94593ee | 2013-06-03 17:40:18 +0000 | [diff] [blame] | 83 | setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); |
| 84 | |
Tom Stellard | 31209cc | 2013-07-15 19:00:09 +0000 | [diff] [blame] | 85 | setLoadExtAction(ISD::SEXTLOAD, MVT::i32, Expand); |
| 86 | |
Michel Danzer | 49812b5 | 2013-07-10 16:37:07 +0000 | [diff] [blame] | 87 | setOperationAction(ISD::GlobalAddress, MVT::i64, Custom); |
| 88 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 89 | setTargetDAGCombine(ISD::SELECT_CC); |
| 90 | |
| 91 | setTargetDAGCombine(ISD::SETCC); |
Michel Danzer | f52a672 | 2013-03-08 10:58:01 +0000 | [diff] [blame] | 92 | |
Christian Konig | eecebd0 | 2013-03-26 14:04:02 +0000 | [diff] [blame] | 93 | setSchedulingPreference(Sched::RegPressure); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Tom Stellard | 0125f2a | 2013-06-25 02:39:35 +0000 | [diff] [blame] | 96 | //===----------------------------------------------------------------------===// |
| 97 | // TargetLowering queries |
| 98 | //===----------------------------------------------------------------------===// |
| 99 | |
| 100 | bool SITargetLowering::allowsUnalignedMemoryAccesses(EVT VT, |
| 101 | bool *IsFast) const { |
| 102 | // XXX: This depends on the address space and also we may want to revist |
| 103 | // the alignment values we specify in the DataLayout. |
| 104 | return VT.bitsGT(MVT::i32); |
| 105 | } |
| 106 | |
| 107 | |
Tom Stellard | 94593ee | 2013-06-03 17:40:18 +0000 | [diff] [blame] | 108 | SDValue SITargetLowering::LowerParameter(SelectionDAG &DAG, EVT VT, |
| 109 | SDLoc DL, SDValue Chain, |
| 110 | unsigned Offset) const { |
| 111 | MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo(); |
| 112 | PointerType *PtrTy = PointerType::get(VT.getTypeForEVT(*DAG.getContext()), |
| 113 | AMDGPUAS::CONSTANT_ADDRESS); |
| 114 | EVT ArgVT = MVT::getIntegerVT(VT.getSizeInBits()); |
| 115 | SDValue BasePtr = DAG.getCopyFromReg(Chain, DL, |
| 116 | MRI.getLiveInVirtReg(AMDGPU::SGPR0_SGPR1), MVT::i64); |
| 117 | SDValue Ptr = DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr, |
| 118 | DAG.getConstant(Offset, MVT::i64)); |
Tom Stellard | 9f95033 | 2013-07-23 01:48:35 +0000 | [diff] [blame^] | 119 | return DAG.getLoad(VT, DL, Chain, Ptr, |
Tom Stellard | 94593ee | 2013-06-03 17:40:18 +0000 | [diff] [blame] | 120 | MachinePointerInfo(UndefValue::get(PtrTy)), |
Tom Stellard | 9f95033 | 2013-07-23 01:48:35 +0000 | [diff] [blame^] | 121 | false, false, false, ArgVT.getSizeInBits() >> 3); |
Tom Stellard | 94593ee | 2013-06-03 17:40:18 +0000 | [diff] [blame] | 122 | |
| 123 | } |
| 124 | |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 125 | SDValue SITargetLowering::LowerFormalArguments( |
| 126 | SDValue Chain, |
| 127 | CallingConv::ID CallConv, |
| 128 | bool isVarArg, |
| 129 | const SmallVectorImpl<ISD::InputArg> &Ins, |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 130 | SDLoc DL, SelectionDAG &DAG, |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 131 | SmallVectorImpl<SDValue> &InVals) const { |
| 132 | |
| 133 | const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo(); |
| 134 | |
| 135 | MachineFunction &MF = DAG.getMachineFunction(); |
| 136 | FunctionType *FType = MF.getFunction()->getFunctionType(); |
Christian Konig | 99ee0f4 | 2013-03-07 09:04:14 +0000 | [diff] [blame] | 137 | SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>(); |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 138 | |
| 139 | assert(CallConv == CallingConv::C); |
| 140 | |
| 141 | SmallVector<ISD::InputArg, 16> Splits; |
Christian Konig | 99ee0f4 | 2013-03-07 09:04:14 +0000 | [diff] [blame] | 142 | uint32_t Skipped = 0; |
| 143 | |
| 144 | for (unsigned i = 0, e = Ins.size(), PSInputNum = 0; i != e; ++i) { |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 145 | const ISD::InputArg &Arg = Ins[i]; |
Matt Arsenault | 75865923 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 146 | |
| 147 | // First check if it's a PS input addr |
Christian Konig | 99ee0f4 | 2013-03-07 09:04:14 +0000 | [diff] [blame] | 148 | if (Info->ShaderType == ShaderType::PIXEL && !Arg.Flags.isInReg()) { |
| 149 | |
| 150 | assert((PSInputNum <= 15) && "Too many PS inputs!"); |
| 151 | |
| 152 | if (!Arg.Used) { |
| 153 | // We can savely skip PS inputs |
| 154 | Skipped |= 1 << i; |
| 155 | ++PSInputNum; |
| 156 | continue; |
| 157 | } |
| 158 | |
| 159 | Info->PSInputAddr |= 1 << PSInputNum++; |
| 160 | } |
| 161 | |
| 162 | // Second split vertices into their elements |
Tom Stellard | ed882c2 | 2013-06-03 17:40:11 +0000 | [diff] [blame] | 163 | if (Info->ShaderType != ShaderType::COMPUTE && Arg.VT.isVector()) { |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 164 | ISD::InputArg NewArg = Arg; |
| 165 | NewArg.Flags.setSplit(); |
| 166 | NewArg.VT = Arg.VT.getVectorElementType(); |
| 167 | |
| 168 | // We REALLY want the ORIGINAL number of vertex elements here, e.g. a |
| 169 | // three or five element vertex only needs three or five registers, |
| 170 | // NOT four or eigth. |
| 171 | Type *ParamType = FType->getParamType(Arg.OrigArgIndex); |
| 172 | unsigned NumElements = ParamType->getVectorNumElements(); |
| 173 | |
| 174 | for (unsigned j = 0; j != NumElements; ++j) { |
| 175 | Splits.push_back(NewArg); |
| 176 | NewArg.PartOffset += NewArg.VT.getStoreSize(); |
| 177 | } |
| 178 | |
| 179 | } else { |
| 180 | Splits.push_back(Arg); |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | SmallVector<CCValAssign, 16> ArgLocs; |
| 185 | CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), |
| 186 | getTargetMachine(), ArgLocs, *DAG.getContext()); |
| 187 | |
Christian Konig | 99ee0f4 | 2013-03-07 09:04:14 +0000 | [diff] [blame] | 188 | // At least one interpolation mode must be enabled or else the GPU will hang. |
| 189 | if (Info->ShaderType == ShaderType::PIXEL && (Info->PSInputAddr & 0x7F) == 0) { |
| 190 | Info->PSInputAddr |= 1; |
| 191 | CCInfo.AllocateReg(AMDGPU::VGPR0); |
| 192 | CCInfo.AllocateReg(AMDGPU::VGPR1); |
| 193 | } |
| 194 | |
Tom Stellard | ed882c2 | 2013-06-03 17:40:11 +0000 | [diff] [blame] | 195 | // The pointer to the list of arguments is stored in SGPR0, SGPR1 |
| 196 | if (Info->ShaderType == ShaderType::COMPUTE) { |
| 197 | CCInfo.AllocateReg(AMDGPU::SGPR0); |
| 198 | CCInfo.AllocateReg(AMDGPU::SGPR1); |
Tom Stellard | 94593ee | 2013-06-03 17:40:18 +0000 | [diff] [blame] | 199 | MF.addLiveIn(AMDGPU::SGPR0_SGPR1, &AMDGPU::SReg_64RegClass); |
Tom Stellard | ed882c2 | 2013-06-03 17:40:11 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 202 | AnalyzeFormalArguments(CCInfo, Splits); |
| 203 | |
| 204 | for (unsigned i = 0, e = Ins.size(), ArgIdx = 0; i != e; ++i) { |
| 205 | |
Christian Konig | b7be72d | 2013-05-17 09:46:48 +0000 | [diff] [blame] | 206 | const ISD::InputArg &Arg = Ins[i]; |
Christian Konig | 99ee0f4 | 2013-03-07 09:04:14 +0000 | [diff] [blame] | 207 | if (Skipped & (1 << i)) { |
Christian Konig | b7be72d | 2013-05-17 09:46:48 +0000 | [diff] [blame] | 208 | InVals.push_back(DAG.getUNDEF(Arg.VT)); |
Christian Konig | 99ee0f4 | 2013-03-07 09:04:14 +0000 | [diff] [blame] | 209 | continue; |
| 210 | } |
| 211 | |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 212 | CCValAssign &VA = ArgLocs[ArgIdx++]; |
Tom Stellard | ed882c2 | 2013-06-03 17:40:11 +0000 | [diff] [blame] | 213 | EVT VT = VA.getLocVT(); |
| 214 | |
| 215 | if (VA.isMemLoc()) { |
Tom Stellard | 94593ee | 2013-06-03 17:40:18 +0000 | [diff] [blame] | 216 | // The first 36 bytes of the input buffer contains information about |
| 217 | // thread group and global sizes. |
| 218 | SDValue Arg = LowerParameter(DAG, VT, DL, DAG.getRoot(), |
| 219 | 36 + VA.getLocMemOffset()); |
Tom Stellard | ed882c2 | 2013-06-03 17:40:11 +0000 | [diff] [blame] | 220 | InVals.push_back(Arg); |
| 221 | continue; |
| 222 | } |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 223 | assert(VA.isRegLoc() && "Parameter must be in a register!"); |
| 224 | |
| 225 | unsigned Reg = VA.getLocReg(); |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 226 | |
| 227 | if (VT == MVT::i64) { |
| 228 | // For now assume it is a pointer |
| 229 | Reg = TRI->getMatchingSuperReg(Reg, AMDGPU::sub0, |
| 230 | &AMDGPU::SReg_64RegClass); |
| 231 | Reg = MF.addLiveIn(Reg, &AMDGPU::SReg_64RegClass); |
| 232 | InVals.push_back(DAG.getCopyFromReg(Chain, DL, Reg, VT)); |
| 233 | continue; |
| 234 | } |
| 235 | |
| 236 | const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg, VT); |
| 237 | |
| 238 | Reg = MF.addLiveIn(Reg, RC); |
| 239 | SDValue Val = DAG.getCopyFromReg(Chain, DL, Reg, VT); |
| 240 | |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 241 | if (Arg.VT.isVector()) { |
| 242 | |
| 243 | // Build a vector from the registers |
| 244 | Type *ParamType = FType->getParamType(Arg.OrigArgIndex); |
| 245 | unsigned NumElements = ParamType->getVectorNumElements(); |
| 246 | |
| 247 | SmallVector<SDValue, 4> Regs; |
| 248 | Regs.push_back(Val); |
| 249 | for (unsigned j = 1; j != NumElements; ++j) { |
| 250 | Reg = ArgLocs[ArgIdx++].getLocReg(); |
| 251 | Reg = MF.addLiveIn(Reg, RC); |
| 252 | Regs.push_back(DAG.getCopyFromReg(Chain, DL, Reg, VT)); |
| 253 | } |
| 254 | |
| 255 | // Fill up the missing vector elements |
| 256 | NumElements = Arg.VT.getVectorNumElements() - NumElements; |
| 257 | for (unsigned j = 0; j != NumElements; ++j) |
| 258 | Regs.push_back(DAG.getUNDEF(VT)); |
Matt Arsenault | 75865923 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 259 | |
Christian Konig | 2c8f6d5 | 2013-03-07 09:03:52 +0000 | [diff] [blame] | 260 | InVals.push_back(DAG.getNode(ISD::BUILD_VECTOR, DL, Arg.VT, |
| 261 | Regs.data(), Regs.size())); |
| 262 | continue; |
| 263 | } |
| 264 | |
| 265 | InVals.push_back(Val); |
| 266 | } |
| 267 | return Chain; |
| 268 | } |
| 269 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 270 | MachineBasicBlock * SITargetLowering::EmitInstrWithCustomInserter( |
| 271 | MachineInstr * MI, MachineBasicBlock * BB) const { |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 272 | |
Tom Stellard | 556d9aa | 2013-06-03 17:39:37 +0000 | [diff] [blame] | 273 | MachineBasicBlock::iterator I = *MI; |
| 274 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 275 | switch (MI->getOpcode()) { |
| 276 | default: |
| 277 | return AMDGPUTargetLowering::EmitInstrWithCustomInserter(MI, BB); |
| 278 | case AMDGPU::BRANCH: return BB; |
Tom Stellard | 556d9aa | 2013-06-03 17:39:37 +0000 | [diff] [blame] | 279 | case AMDGPU::SI_ADDR64_RSRC: { |
Bill Wendling | 37e9adb | 2013-06-07 20:28:55 +0000 | [diff] [blame] | 280 | const SIInstrInfo *TII = |
| 281 | static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo()); |
Tom Stellard | 556d9aa | 2013-06-03 17:39:37 +0000 | [diff] [blame] | 282 | MachineRegisterInfo &MRI = BB->getParent()->getRegInfo(); |
| 283 | unsigned SuperReg = MI->getOperand(0).getReg(); |
| 284 | unsigned SubRegLo = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass); |
| 285 | unsigned SubRegHi = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass); |
| 286 | unsigned SubRegHiHi = MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass); |
| 287 | unsigned SubRegHiLo = MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass); |
| 288 | BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::S_MOV_B64), SubRegLo) |
| 289 | .addOperand(MI->getOperand(1)); |
| 290 | BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::S_MOV_B32), SubRegHiLo) |
| 291 | .addImm(0); |
| 292 | BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::S_MOV_B32), SubRegHiHi) |
| 293 | .addImm(RSRC_DATA_FORMAT >> 32); |
| 294 | BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::REG_SEQUENCE), SubRegHi) |
| 295 | .addReg(SubRegHiLo) |
| 296 | .addImm(AMDGPU::sub0) |
| 297 | .addReg(SubRegHiHi) |
| 298 | .addImm(AMDGPU::sub1); |
| 299 | BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::REG_SEQUENCE), SuperReg) |
| 300 | .addReg(SubRegLo) |
| 301 | .addImm(AMDGPU::sub0_sub1) |
| 302 | .addReg(SubRegHi) |
| 303 | .addImm(AMDGPU::sub2_sub3); |
| 304 | MI->eraseFromParent(); |
| 305 | break; |
| 306 | } |
Tom Stellard | 2a6a6105 | 2013-07-12 18:15:08 +0000 | [diff] [blame] | 307 | case AMDGPU::V_SUB_F64: { |
| 308 | const SIInstrInfo *TII = |
| 309 | static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo()); |
| 310 | BuildMI(*BB, I, MI->getDebugLoc(), TII->get(AMDGPU::V_ADD_F64), |
| 311 | MI->getOperand(0).getReg()) |
| 312 | .addReg(MI->getOperand(1).getReg()) |
| 313 | .addReg(MI->getOperand(2).getReg()) |
| 314 | .addImm(0) /* src2 */ |
| 315 | .addImm(0) /* ABS */ |
| 316 | .addImm(0) /* CLAMP */ |
| 317 | .addImm(0) /* OMOD */ |
| 318 | .addImm(2); /* NEG */ |
| 319 | MI->eraseFromParent(); |
| 320 | break; |
| 321 | } |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 322 | } |
| 323 | return BB; |
| 324 | } |
| 325 | |
Matt Arsenault | 75865923 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 326 | EVT SITargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const { |
Tom Stellard | 8374720 | 2013-07-18 21:43:53 +0000 | [diff] [blame] | 327 | if (!VT.isVector()) { |
| 328 | return MVT::i1; |
| 329 | } |
| 330 | return MVT::getVectorVT(MVT::i1, VT.getVectorNumElements()); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Christian Konig | 082a14a | 2013-03-18 11:34:05 +0000 | [diff] [blame] | 333 | MVT SITargetLowering::getScalarShiftAmountTy(EVT VT) const { |
| 334 | return MVT::i32; |
| 335 | } |
| 336 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 337 | //===----------------------------------------------------------------------===// |
| 338 | // Custom DAG Lowering Operations |
| 339 | //===----------------------------------------------------------------------===// |
| 340 | |
| 341 | SDValue SITargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { |
Michel Danzer | 49812b5 | 2013-07-10 16:37:07 +0000 | [diff] [blame] | 342 | MachineFunction &MF = DAG.getMachineFunction(); |
| 343 | SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>(); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 344 | switch (Op.getOpcode()) { |
| 345 | default: return AMDGPUTargetLowering::LowerOperation(Op, DAG); |
Tom Stellard | f879435 | 2012-12-19 22:10:31 +0000 | [diff] [blame] | 346 | case ISD::BRCOND: return LowerBRCOND(Op, DAG); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 347 | case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); |
Tom Stellard | 046039e | 2013-06-03 17:40:03 +0000 | [diff] [blame] | 348 | case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG); |
Michel Danzer | 49812b5 | 2013-07-10 16:37:07 +0000 | [diff] [blame] | 349 | case ISD::GlobalAddress: return LowerGlobalAddress(MFI, Op, DAG); |
Tom Stellard | 94593ee | 2013-06-03 17:40:18 +0000 | [diff] [blame] | 350 | case ISD::INTRINSIC_WO_CHAIN: { |
| 351 | unsigned IntrinsicID = |
| 352 | cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
| 353 | EVT VT = Op.getValueType(); |
| 354 | SDLoc DL(Op); |
| 355 | //XXX: Hardcoded we only use two to store the pointer to the parameters. |
| 356 | unsigned NumUserSGPRs = 2; |
| 357 | switch (IntrinsicID) { |
| 358 | default: return AMDGPUTargetLowering::LowerOperation(Op, DAG); |
| 359 | case Intrinsic::r600_read_ngroups_x: |
| 360 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 0); |
| 361 | case Intrinsic::r600_read_ngroups_y: |
| 362 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 4); |
| 363 | case Intrinsic::r600_read_ngroups_z: |
| 364 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 8); |
| 365 | case Intrinsic::r600_read_global_size_x: |
| 366 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 12); |
| 367 | case Intrinsic::r600_read_global_size_y: |
| 368 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 16); |
| 369 | case Intrinsic::r600_read_global_size_z: |
| 370 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 20); |
| 371 | case Intrinsic::r600_read_local_size_x: |
| 372 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 24); |
| 373 | case Intrinsic::r600_read_local_size_y: |
| 374 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 28); |
| 375 | case Intrinsic::r600_read_local_size_z: |
| 376 | return LowerParameter(DAG, VT, DL, DAG.getEntryNode(), 32); |
| 377 | case Intrinsic::r600_read_tgid_x: |
| 378 | return CreateLiveInRegister(DAG, &AMDGPU::SReg_32RegClass, |
| 379 | AMDGPU::SReg_32RegClass.getRegister(NumUserSGPRs + 0), VT); |
| 380 | case Intrinsic::r600_read_tgid_y: |
| 381 | return CreateLiveInRegister(DAG, &AMDGPU::SReg_32RegClass, |
| 382 | AMDGPU::SReg_32RegClass.getRegister(NumUserSGPRs + 1), VT); |
| 383 | case Intrinsic::r600_read_tgid_z: |
| 384 | return CreateLiveInRegister(DAG, &AMDGPU::SReg_32RegClass, |
| 385 | AMDGPU::SReg_32RegClass.getRegister(NumUserSGPRs + 2), VT); |
| 386 | case Intrinsic::r600_read_tidig_x: |
| 387 | return CreateLiveInRegister(DAG, &AMDGPU::VReg_32RegClass, |
| 388 | AMDGPU::VGPR0, VT); |
| 389 | case Intrinsic::r600_read_tidig_y: |
| 390 | return CreateLiveInRegister(DAG, &AMDGPU::VReg_32RegClass, |
| 391 | AMDGPU::VGPR1, VT); |
| 392 | case Intrinsic::r600_read_tidig_z: |
| 393 | return CreateLiveInRegister(DAG, &AMDGPU::VReg_32RegClass, |
| 394 | AMDGPU::VGPR2, VT); |
| 395 | |
| 396 | } |
| 397 | } |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 398 | } |
| 399 | return SDValue(); |
| 400 | } |
| 401 | |
Tom Stellard | f879435 | 2012-12-19 22:10:31 +0000 | [diff] [blame] | 402 | /// \brief Helper function for LowerBRCOND |
| 403 | static SDNode *findUser(SDValue Value, unsigned Opcode) { |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 404 | |
Tom Stellard | f879435 | 2012-12-19 22:10:31 +0000 | [diff] [blame] | 405 | SDNode *Parent = Value.getNode(); |
| 406 | for (SDNode::use_iterator I = Parent->use_begin(), E = Parent->use_end(); |
| 407 | I != E; ++I) { |
| 408 | |
| 409 | if (I.getUse().get() != Value) |
| 410 | continue; |
| 411 | |
| 412 | if (I->getOpcode() == Opcode) |
| 413 | return *I; |
| 414 | } |
| 415 | return 0; |
| 416 | } |
| 417 | |
| 418 | /// This transforms the control flow intrinsics to get the branch destination as |
| 419 | /// last parameter, also switches branch target with BR if the need arise |
| 420 | SDValue SITargetLowering::LowerBRCOND(SDValue BRCOND, |
| 421 | SelectionDAG &DAG) const { |
| 422 | |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 423 | SDLoc DL(BRCOND); |
Tom Stellard | f879435 | 2012-12-19 22:10:31 +0000 | [diff] [blame] | 424 | |
| 425 | SDNode *Intr = BRCOND.getOperand(1).getNode(); |
| 426 | SDValue Target = BRCOND.getOperand(2); |
| 427 | SDNode *BR = 0; |
| 428 | |
| 429 | if (Intr->getOpcode() == ISD::SETCC) { |
| 430 | // As long as we negate the condition everything is fine |
| 431 | SDNode *SetCC = Intr; |
| 432 | assert(SetCC->getConstantOperandVal(1) == 1); |
NAKAMURA Takumi | 458a827 | 2013-01-07 11:14:44 +0000 | [diff] [blame] | 433 | assert(cast<CondCodeSDNode>(SetCC->getOperand(2).getNode())->get() == |
| 434 | ISD::SETNE); |
Tom Stellard | f879435 | 2012-12-19 22:10:31 +0000 | [diff] [blame] | 435 | Intr = SetCC->getOperand(0).getNode(); |
| 436 | |
| 437 | } else { |
| 438 | // Get the target from BR if we don't negate the condition |
| 439 | BR = findUser(BRCOND, ISD::BR); |
| 440 | Target = BR->getOperand(1); |
| 441 | } |
| 442 | |
| 443 | assert(Intr->getOpcode() == ISD::INTRINSIC_W_CHAIN); |
| 444 | |
| 445 | // Build the result and |
| 446 | SmallVector<EVT, 4> Res; |
| 447 | for (unsigned i = 1, e = Intr->getNumValues(); i != e; ++i) |
| 448 | Res.push_back(Intr->getValueType(i)); |
| 449 | |
| 450 | // operands of the new intrinsic call |
| 451 | SmallVector<SDValue, 4> Ops; |
| 452 | Ops.push_back(BRCOND.getOperand(0)); |
| 453 | for (unsigned i = 1, e = Intr->getNumOperands(); i != e; ++i) |
| 454 | Ops.push_back(Intr->getOperand(i)); |
| 455 | Ops.push_back(Target); |
| 456 | |
| 457 | // build the new intrinsic call |
| 458 | SDNode *Result = DAG.getNode( |
| 459 | Res.size() > 1 ? ISD::INTRINSIC_W_CHAIN : ISD::INTRINSIC_VOID, DL, |
| 460 | DAG.getVTList(Res.data(), Res.size()), Ops.data(), Ops.size()).getNode(); |
| 461 | |
| 462 | if (BR) { |
| 463 | // Give the branch instruction our target |
| 464 | SDValue Ops[] = { |
| 465 | BR->getOperand(0), |
| 466 | BRCOND.getOperand(2) |
| 467 | }; |
| 468 | DAG.MorphNodeTo(BR, ISD::BR, BR->getVTList(), Ops, 2); |
| 469 | } |
| 470 | |
| 471 | SDValue Chain = SDValue(Result, Result->getNumValues() - 1); |
| 472 | |
| 473 | // Copy the intrinsic results to registers |
| 474 | for (unsigned i = 1, e = Intr->getNumValues() - 1; i != e; ++i) { |
| 475 | SDNode *CopyToReg = findUser(SDValue(Intr, i), ISD::CopyToReg); |
| 476 | if (!CopyToReg) |
| 477 | continue; |
| 478 | |
| 479 | Chain = DAG.getCopyToReg( |
| 480 | Chain, DL, |
| 481 | CopyToReg->getOperand(1), |
| 482 | SDValue(Result, i - 1), |
| 483 | SDValue()); |
| 484 | |
| 485 | DAG.ReplaceAllUsesWith(SDValue(CopyToReg, 0), CopyToReg->getOperand(0)); |
| 486 | } |
| 487 | |
| 488 | // Remove the old intrinsic from the chain |
| 489 | DAG.ReplaceAllUsesOfValueWith( |
| 490 | SDValue(Intr, Intr->getNumValues() - 1), |
| 491 | Intr->getOperand(0)); |
| 492 | |
| 493 | return Chain; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 494 | } |
| 495 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 496 | SDValue SITargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const { |
| 497 | SDValue LHS = Op.getOperand(0); |
| 498 | SDValue RHS = Op.getOperand(1); |
| 499 | SDValue True = Op.getOperand(2); |
| 500 | SDValue False = Op.getOperand(3); |
| 501 | SDValue CC = Op.getOperand(4); |
| 502 | EVT VT = Op.getValueType(); |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 503 | SDLoc DL(Op); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 504 | |
| 505 | // Possible Min/Max pattern |
| 506 | SDValue MinMax = LowerMinMax(Op, DAG); |
| 507 | if (MinMax.getNode()) { |
| 508 | return MinMax; |
| 509 | } |
| 510 | |
| 511 | SDValue Cond = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, CC); |
| 512 | return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False); |
| 513 | } |
| 514 | |
Tom Stellard | 046039e | 2013-06-03 17:40:03 +0000 | [diff] [blame] | 515 | SDValue SITargetLowering::LowerSIGN_EXTEND(SDValue Op, |
| 516 | SelectionDAG &DAG) const { |
| 517 | EVT VT = Op.getValueType(); |
| 518 | SDLoc DL(Op); |
| 519 | |
| 520 | if (VT != MVT::i64) { |
| 521 | return SDValue(); |
| 522 | } |
| 523 | |
| 524 | SDValue Hi = DAG.getNode(ISD::SRA, DL, MVT::i32, Op.getOperand(0), |
| 525 | DAG.getConstant(31, MVT::i32)); |
| 526 | |
| 527 | return DAG.getNode(ISD::BUILD_PAIR, DL, VT, Op.getOperand(0), Hi); |
| 528 | } |
| 529 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 530 | //===----------------------------------------------------------------------===// |
| 531 | // Custom DAG optimizations |
| 532 | //===----------------------------------------------------------------------===// |
| 533 | |
| 534 | SDValue SITargetLowering::PerformDAGCombine(SDNode *N, |
| 535 | DAGCombinerInfo &DCI) const { |
| 536 | SelectionDAG &DAG = DCI.DAG; |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 537 | SDLoc DL(N); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 538 | EVT VT = N->getValueType(0); |
| 539 | |
| 540 | switch (N->getOpcode()) { |
| 541 | default: break; |
| 542 | case ISD::SELECT_CC: { |
| 543 | N->dump(); |
| 544 | ConstantSDNode *True, *False; |
| 545 | // i1 selectcc(l, r, -1, 0, cc) -> i1 setcc(l, r, cc) |
| 546 | if ((True = dyn_cast<ConstantSDNode>(N->getOperand(2))) |
| 547 | && (False = dyn_cast<ConstantSDNode>(N->getOperand(3))) |
| 548 | && True->isAllOnesValue() |
| 549 | && False->isNullValue() |
| 550 | && VT == MVT::i1) { |
| 551 | return DAG.getNode(ISD::SETCC, DL, VT, N->getOperand(0), |
| 552 | N->getOperand(1), N->getOperand(4)); |
| 553 | |
| 554 | } |
| 555 | break; |
| 556 | } |
| 557 | case ISD::SETCC: { |
| 558 | SDValue Arg0 = N->getOperand(0); |
| 559 | SDValue Arg1 = N->getOperand(1); |
| 560 | SDValue CC = N->getOperand(2); |
| 561 | ConstantSDNode * C = NULL; |
| 562 | ISD::CondCode CCOp = dyn_cast<CondCodeSDNode>(CC)->get(); |
| 563 | |
| 564 | // i1 setcc (sext(i1), 0, setne) -> i1 setcc(i1, 0, setne) |
| 565 | if (VT == MVT::i1 |
| 566 | && Arg0.getOpcode() == ISD::SIGN_EXTEND |
| 567 | && Arg0.getOperand(0).getValueType() == MVT::i1 |
| 568 | && (C = dyn_cast<ConstantSDNode>(Arg1)) |
| 569 | && C->isNullValue() |
| 570 | && CCOp == ISD::SETNE) { |
| 571 | return SimplifySetCC(VT, Arg0.getOperand(0), |
| 572 | DAG.getConstant(0, MVT::i1), CCOp, true, DCI, DL); |
| 573 | } |
| 574 | break; |
| 575 | } |
| 576 | } |
| 577 | return SDValue(); |
| 578 | } |
Christian Konig | d910b7d | 2013-02-26 17:52:16 +0000 | [diff] [blame] | 579 | |
Matt Arsenault | 75865923 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 580 | /// \brief Test if RegClass is one of the VSrc classes |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 581 | static bool isVSrc(unsigned RegClass) { |
| 582 | return AMDGPU::VSrc_32RegClassID == RegClass || |
| 583 | AMDGPU::VSrc_64RegClassID == RegClass; |
| 584 | } |
| 585 | |
Matt Arsenault | 75865923 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 586 | /// \brief Test if RegClass is one of the SSrc classes |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 587 | static bool isSSrc(unsigned RegClass) { |
| 588 | return AMDGPU::SSrc_32RegClassID == RegClass || |
| 589 | AMDGPU::SSrc_64RegClassID == RegClass; |
| 590 | } |
| 591 | |
| 592 | /// \brief Analyze the possible immediate value Op |
| 593 | /// |
| 594 | /// Returns -1 if it isn't an immediate, 0 if it's and inline immediate |
| 595 | /// and the immediate value if it's a literal immediate |
| 596 | int32_t SITargetLowering::analyzeImmediate(const SDNode *N) const { |
| 597 | |
| 598 | union { |
| 599 | int32_t I; |
| 600 | float F; |
| 601 | } Imm; |
| 602 | |
Tom Stellard | edbf1eb | 2013-04-05 23:31:20 +0000 | [diff] [blame] | 603 | if (const ConstantSDNode *Node = dyn_cast<ConstantSDNode>(N)) { |
| 604 | if (Node->getZExtValue() >> 32) { |
| 605 | return -1; |
| 606 | } |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 607 | Imm.I = Node->getSExtValue(); |
Tom Stellard | edbf1eb | 2013-04-05 23:31:20 +0000 | [diff] [blame] | 608 | } else if (const ConstantFPSDNode *Node = dyn_cast<ConstantFPSDNode>(N)) |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 609 | Imm.F = Node->getValueAPF().convertToFloat(); |
| 610 | else |
| 611 | return -1; // It isn't an immediate |
| 612 | |
| 613 | if ((Imm.I >= -16 && Imm.I <= 64) || |
| 614 | Imm.F == 0.5f || Imm.F == -0.5f || |
| 615 | Imm.F == 1.0f || Imm.F == -1.0f || |
| 616 | Imm.F == 2.0f || Imm.F == -2.0f || |
| 617 | Imm.F == 4.0f || Imm.F == -4.0f) |
| 618 | return 0; // It's an inline immediate |
| 619 | |
| 620 | return Imm.I; // It's a literal immediate |
| 621 | } |
| 622 | |
| 623 | /// \brief Try to fold an immediate directly into an instruction |
| 624 | bool SITargetLowering::foldImm(SDValue &Operand, int32_t &Immediate, |
| 625 | bool &ScalarSlotUsed) const { |
| 626 | |
| 627 | MachineSDNode *Mov = dyn_cast<MachineSDNode>(Operand); |
Bill Wendling | 37e9adb | 2013-06-07 20:28:55 +0000 | [diff] [blame] | 628 | const SIInstrInfo *TII = |
| 629 | static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo()); |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 630 | if (Mov == 0 || !TII->isMov(Mov->getMachineOpcode())) |
| 631 | return false; |
| 632 | |
| 633 | const SDValue &Op = Mov->getOperand(0); |
| 634 | int32_t Value = analyzeImmediate(Op.getNode()); |
| 635 | if (Value == -1) { |
| 636 | // Not an immediate at all |
| 637 | return false; |
| 638 | |
| 639 | } else if (Value == 0) { |
| 640 | // Inline immediates can always be fold |
| 641 | Operand = Op; |
| 642 | return true; |
| 643 | |
| 644 | } else if (Value == Immediate) { |
| 645 | // Already fold literal immediate |
| 646 | Operand = Op; |
| 647 | return true; |
| 648 | |
| 649 | } else if (!ScalarSlotUsed && !Immediate) { |
| 650 | // Fold this literal immediate |
| 651 | ScalarSlotUsed = true; |
| 652 | Immediate = Value; |
| 653 | Operand = Op; |
| 654 | return true; |
| 655 | |
| 656 | } |
| 657 | |
| 658 | return false; |
| 659 | } |
| 660 | |
| 661 | /// \brief Does "Op" fit into register class "RegClass" ? |
Tom Stellard | b35efba | 2013-05-20 15:02:01 +0000 | [diff] [blame] | 662 | bool SITargetLowering::fitsRegClass(SelectionDAG &DAG, const SDValue &Op, |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 663 | unsigned RegClass) const { |
| 664 | |
Matt Arsenault | 75865923 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 665 | MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo(); |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 666 | SDNode *Node = Op.getNode(); |
| 667 | |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 668 | const TargetRegisterClass *OpClass; |
Bill Wendling | 37e9adb | 2013-06-07 20:28:55 +0000 | [diff] [blame] | 669 | const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo(); |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 670 | if (MachineSDNode *MN = dyn_cast<MachineSDNode>(Node)) { |
Bill Wendling | 37e9adb | 2013-06-07 20:28:55 +0000 | [diff] [blame] | 671 | const SIInstrInfo *TII = |
| 672 | static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo()); |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 673 | const MCInstrDesc &Desc = TII->get(MN->getMachineOpcode()); |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 674 | int OpClassID = Desc.OpInfo[Op.getResNo()].RegClass; |
Tom Stellard | bad1f59 | 2013-06-03 17:39:54 +0000 | [diff] [blame] | 675 | if (OpClassID == -1) { |
| 676 | switch (MN->getMachineOpcode()) { |
| 677 | case AMDGPU::REG_SEQUENCE: |
| 678 | // Operand 0 is the register class id for REG_SEQUENCE instructions. |
| 679 | OpClass = TRI->getRegClass( |
| 680 | cast<ConstantSDNode>(MN->getOperand(0))->getZExtValue()); |
| 681 | break; |
| 682 | default: |
| 683 | OpClass = getRegClassFor(Op.getSimpleValueType()); |
| 684 | break; |
| 685 | } |
| 686 | } else { |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 687 | OpClass = TRI->getRegClass(OpClassID); |
Tom Stellard | bad1f59 | 2013-06-03 17:39:54 +0000 | [diff] [blame] | 688 | } |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 689 | |
| 690 | } else if (Node->getOpcode() == ISD::CopyFromReg) { |
| 691 | RegisterSDNode *Reg = cast<RegisterSDNode>(Node->getOperand(1).getNode()); |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 692 | OpClass = MRI.getRegClass(Reg->getReg()); |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 693 | |
| 694 | } else |
| 695 | return false; |
| 696 | |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 697 | return TRI->getRegClass(RegClass)->hasSubClassEq(OpClass); |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | /// \brief Make sure that we don't exeed the number of allowed scalars |
| 701 | void SITargetLowering::ensureSRegLimit(SelectionDAG &DAG, SDValue &Operand, |
| 702 | unsigned RegClass, |
| 703 | bool &ScalarSlotUsed) const { |
| 704 | |
| 705 | // First map the operands register class to a destination class |
| 706 | if (RegClass == AMDGPU::VSrc_32RegClassID) |
| 707 | RegClass = AMDGPU::VReg_32RegClassID; |
| 708 | else if (RegClass == AMDGPU::VSrc_64RegClassID) |
| 709 | RegClass = AMDGPU::VReg_64RegClassID; |
| 710 | else |
| 711 | return; |
| 712 | |
| 713 | // Nothing todo if they fit naturaly |
| 714 | if (fitsRegClass(DAG, Operand, RegClass)) |
| 715 | return; |
| 716 | |
| 717 | // If the scalar slot isn't used yet use it now |
| 718 | if (!ScalarSlotUsed) { |
| 719 | ScalarSlotUsed = true; |
| 720 | return; |
| 721 | } |
| 722 | |
| 723 | // This is a conservative aproach, it is possible that we can't determine |
| 724 | // the correct register class and copy too often, but better save than sorry. |
| 725 | SDValue RC = DAG.getTargetConstant(RegClass, MVT::i32); |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 726 | SDNode *Node = DAG.getMachineNode(TargetOpcode::COPY_TO_REGCLASS, SDLoc(), |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 727 | Operand.getValueType(), Operand, RC); |
| 728 | Operand = SDValue(Node, 0); |
| 729 | } |
| 730 | |
Tom Stellard | acec99c | 2013-06-05 23:39:50 +0000 | [diff] [blame] | 731 | /// \returns true if \p Node's operands are different from the SDValue list |
| 732 | /// \p Ops |
| 733 | static bool isNodeChanged(const SDNode *Node, const std::vector<SDValue> &Ops) { |
| 734 | for (unsigned i = 0, e = Node->getNumOperands(); i < e; ++i) { |
| 735 | if (Ops[i].getNode() != Node->getOperand(i).getNode()) { |
| 736 | return true; |
| 737 | } |
| 738 | } |
| 739 | return false; |
| 740 | } |
| 741 | |
Christian Konig | 8e06e2a | 2013-04-10 08:39:08 +0000 | [diff] [blame] | 742 | /// \brief Try to fold the Nodes operands into the Node |
| 743 | SDNode *SITargetLowering::foldOperands(MachineSDNode *Node, |
| 744 | SelectionDAG &DAG) const { |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 745 | |
| 746 | // Original encoding (either e32 or e64) |
| 747 | int Opcode = Node->getMachineOpcode(); |
Bill Wendling | 37e9adb | 2013-06-07 20:28:55 +0000 | [diff] [blame] | 748 | const SIInstrInfo *TII = |
| 749 | static_cast<const SIInstrInfo*>(getTargetMachine().getInstrInfo()); |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 750 | const MCInstrDesc *Desc = &TII->get(Opcode); |
| 751 | |
| 752 | unsigned NumDefs = Desc->getNumDefs(); |
| 753 | unsigned NumOps = Desc->getNumOperands(); |
| 754 | |
Christian Konig | 3c14580 | 2013-03-27 09:12:59 +0000 | [diff] [blame] | 755 | // Commuted opcode if available |
| 756 | int OpcodeRev = Desc->isCommutable() ? TII->commuteOpcode(Opcode) : -1; |
| 757 | const MCInstrDesc *DescRev = OpcodeRev == -1 ? 0 : &TII->get(OpcodeRev); |
| 758 | |
| 759 | assert(!DescRev || DescRev->getNumDefs() == NumDefs); |
| 760 | assert(!DescRev || DescRev->getNumOperands() == NumOps); |
| 761 | |
Christian Konig | e500e44 | 2013-02-26 17:52:47 +0000 | [diff] [blame] | 762 | // e64 version if available, -1 otherwise |
| 763 | int OpcodeE64 = AMDGPU::getVOPe64(Opcode); |
| 764 | const MCInstrDesc *DescE64 = OpcodeE64 == -1 ? 0 : &TII->get(OpcodeE64); |
| 765 | |
| 766 | assert(!DescE64 || DescE64->getNumDefs() == NumDefs); |
| 767 | assert(!DescE64 || DescE64->getNumOperands() == (NumOps + 4)); |
| 768 | |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 769 | int32_t Immediate = Desc->getSize() == 4 ? 0 : -1; |
| 770 | bool HaveVSrc = false, HaveSSrc = false; |
| 771 | |
| 772 | // First figure out what we alread have in this instruction |
| 773 | for (unsigned i = 0, e = Node->getNumOperands(), Op = NumDefs; |
| 774 | i != e && Op < NumOps; ++i, ++Op) { |
| 775 | |
| 776 | unsigned RegClass = Desc->OpInfo[Op].RegClass; |
| 777 | if (isVSrc(RegClass)) |
| 778 | HaveVSrc = true; |
| 779 | else if (isSSrc(RegClass)) |
| 780 | HaveSSrc = true; |
| 781 | else |
| 782 | continue; |
| 783 | |
| 784 | int32_t Imm = analyzeImmediate(Node->getOperand(i).getNode()); |
| 785 | if (Imm != -1 && Imm != 0) { |
| 786 | // Literal immediate |
| 787 | Immediate = Imm; |
| 788 | } |
| 789 | } |
| 790 | |
| 791 | // If we neither have VSrc nor SSrc it makes no sense to continue |
| 792 | if (!HaveVSrc && !HaveSSrc) |
| 793 | return Node; |
| 794 | |
| 795 | // No scalar allowed when we have both VSrc and SSrc |
| 796 | bool ScalarSlotUsed = HaveVSrc && HaveSSrc; |
| 797 | |
| 798 | // Second go over the operands and try to fold them |
| 799 | std::vector<SDValue> Ops; |
Christian Konig | e500e44 | 2013-02-26 17:52:47 +0000 | [diff] [blame] | 800 | bool Promote2e64 = false; |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 801 | for (unsigned i = 0, e = Node->getNumOperands(), Op = NumDefs; |
| 802 | i != e && Op < NumOps; ++i, ++Op) { |
| 803 | |
| 804 | const SDValue &Operand = Node->getOperand(i); |
| 805 | Ops.push_back(Operand); |
| 806 | |
| 807 | // Already folded immediate ? |
| 808 | if (isa<ConstantSDNode>(Operand.getNode()) || |
| 809 | isa<ConstantFPSDNode>(Operand.getNode())) |
| 810 | continue; |
| 811 | |
| 812 | // Is this a VSrc or SSrc operand ? |
| 813 | unsigned RegClass = Desc->OpInfo[Op].RegClass; |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 814 | if (isVSrc(RegClass) || isSSrc(RegClass)) { |
| 815 | // Try to fold the immediates |
| 816 | if (!foldImm(Ops[i], Immediate, ScalarSlotUsed)) { |
| 817 | // Folding didn't worked, make sure we don't hit the SReg limit |
| 818 | ensureSRegLimit(DAG, Ops[i], RegClass, ScalarSlotUsed); |
| 819 | } |
| 820 | continue; |
| 821 | } |
Christian Konig | 6612ac3 | 2013-02-26 17:52:36 +0000 | [diff] [blame] | 822 | |
Christian Konig | 3c14580 | 2013-03-27 09:12:59 +0000 | [diff] [blame] | 823 | if (i == 1 && DescRev && fitsRegClass(DAG, Ops[0], RegClass)) { |
Christian Konig | 6612ac3 | 2013-02-26 17:52:36 +0000 | [diff] [blame] | 824 | |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 825 | unsigned OtherRegClass = Desc->OpInfo[NumDefs].RegClass; |
| 826 | assert(isVSrc(OtherRegClass) || isSSrc(OtherRegClass)); |
| 827 | |
| 828 | // Test if it makes sense to swap operands |
| 829 | if (foldImm(Ops[1], Immediate, ScalarSlotUsed) || |
| 830 | (!fitsRegClass(DAG, Ops[1], RegClass) && |
| 831 | fitsRegClass(DAG, Ops[1], OtherRegClass))) { |
Christian Konig | 6612ac3 | 2013-02-26 17:52:36 +0000 | [diff] [blame] | 832 | |
| 833 | // Swap commutable operands |
| 834 | SDValue Tmp = Ops[1]; |
| 835 | Ops[1] = Ops[0]; |
| 836 | Ops[0] = Tmp; |
Christian Konig | 3c14580 | 2013-03-27 09:12:59 +0000 | [diff] [blame] | 837 | |
| 838 | Desc = DescRev; |
| 839 | DescRev = 0; |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 840 | continue; |
Christian Konig | 6612ac3 | 2013-02-26 17:52:36 +0000 | [diff] [blame] | 841 | } |
Christian Konig | 6612ac3 | 2013-02-26 17:52:36 +0000 | [diff] [blame] | 842 | } |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 843 | |
Christian Konig | 8370dbb | 2013-03-26 14:04:17 +0000 | [diff] [blame] | 844 | if (DescE64 && !Immediate) { |
| 845 | |
| 846 | // Test if it makes sense to switch to e64 encoding |
| 847 | unsigned OtherRegClass = DescE64->OpInfo[Op].RegClass; |
| 848 | if (!isVSrc(OtherRegClass) && !isSSrc(OtherRegClass)) |
| 849 | continue; |
| 850 | |
| 851 | int32_t TmpImm = -1; |
| 852 | if (foldImm(Ops[i], TmpImm, ScalarSlotUsed) || |
| 853 | (!fitsRegClass(DAG, Ops[i], RegClass) && |
| 854 | fitsRegClass(DAG, Ops[1], OtherRegClass))) { |
| 855 | |
| 856 | // Switch to e64 encoding |
| 857 | Immediate = -1; |
| 858 | Promote2e64 = true; |
| 859 | Desc = DescE64; |
| 860 | DescE64 = 0; |
| 861 | } |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 862 | } |
| 863 | } |
| 864 | |
Christian Konig | e500e44 | 2013-02-26 17:52:47 +0000 | [diff] [blame] | 865 | if (Promote2e64) { |
| 866 | // Add the modifier flags while promoting |
| 867 | for (unsigned i = 0; i < 4; ++i) |
| 868 | Ops.push_back(DAG.getTargetConstant(0, MVT::i32)); |
| 869 | } |
| 870 | |
Christian Konig | f82901a | 2013-02-26 17:52:23 +0000 | [diff] [blame] | 871 | // Add optional chain and glue |
| 872 | for (unsigned i = NumOps - NumDefs, e = Node->getNumOperands(); i < e; ++i) |
| 873 | Ops.push_back(Node->getOperand(i)); |
| 874 | |
Tom Stellard | b5a9700 | 2013-06-03 17:39:50 +0000 | [diff] [blame] | 875 | // Nodes that have a glue result are not CSE'd by getMachineNode(), so in |
| 876 | // this case a brand new node is always be created, even if the operands |
| 877 | // are the same as before. So, manually check if anything has been changed. |
Tom Stellard | acec99c | 2013-06-05 23:39:50 +0000 | [diff] [blame] | 878 | if (Desc->Opcode == Opcode && !isNodeChanged(Node, Ops)) { |
| 879 | return Node; |
Tom Stellard | b5a9700 | 2013-06-03 17:39:50 +0000 | [diff] [blame] | 880 | } |
| 881 | |
Christian Konig | 3c14580 | 2013-03-27 09:12:59 +0000 | [diff] [blame] | 882 | // Create a complete new instruction |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 883 | return DAG.getMachineNode(Desc->Opcode, SDLoc(Node), Node->getVTList(), Ops); |
Christian Konig | d910b7d | 2013-02-26 17:52:16 +0000 | [diff] [blame] | 884 | } |
Christian Konig | 8e06e2a | 2013-04-10 08:39:08 +0000 | [diff] [blame] | 885 | |
| 886 | /// \brief Helper function for adjustWritemask |
Benjamin Kramer | 635e368 | 2013-05-23 15:43:05 +0000 | [diff] [blame] | 887 | static unsigned SubIdx2Lane(unsigned Idx) { |
Christian Konig | 8e06e2a | 2013-04-10 08:39:08 +0000 | [diff] [blame] | 888 | switch (Idx) { |
| 889 | default: return 0; |
| 890 | case AMDGPU::sub0: return 0; |
| 891 | case AMDGPU::sub1: return 1; |
| 892 | case AMDGPU::sub2: return 2; |
| 893 | case AMDGPU::sub3: return 3; |
| 894 | } |
| 895 | } |
| 896 | |
| 897 | /// \brief Adjust the writemask of MIMG instructions |
| 898 | void SITargetLowering::adjustWritemask(MachineSDNode *&Node, |
| 899 | SelectionDAG &DAG) const { |
| 900 | SDNode *Users[4] = { }; |
Christian Konig | 8b1ed28 | 2013-04-10 08:39:16 +0000 | [diff] [blame] | 901 | unsigned Writemask = 0, Lane = 0; |
Christian Konig | 8e06e2a | 2013-04-10 08:39:08 +0000 | [diff] [blame] | 902 | |
| 903 | // Try to figure out the used register components |
| 904 | for (SDNode::use_iterator I = Node->use_begin(), E = Node->use_end(); |
| 905 | I != E; ++I) { |
| 906 | |
| 907 | // Abort if we can't understand the usage |
| 908 | if (!I->isMachineOpcode() || |
| 909 | I->getMachineOpcode() != TargetOpcode::EXTRACT_SUBREG) |
| 910 | return; |
| 911 | |
Christian Konig | 8b1ed28 | 2013-04-10 08:39:16 +0000 | [diff] [blame] | 912 | Lane = SubIdx2Lane(I->getConstantOperandVal(1)); |
Christian Konig | 8e06e2a | 2013-04-10 08:39:08 +0000 | [diff] [blame] | 913 | |
| 914 | // Abort if we have more than one user per component |
| 915 | if (Users[Lane]) |
| 916 | return; |
| 917 | |
| 918 | Users[Lane] = *I; |
| 919 | Writemask |= 1 << Lane; |
| 920 | } |
| 921 | |
| 922 | // Abort if all components are used |
| 923 | if (Writemask == 0xf) |
| 924 | return; |
| 925 | |
| 926 | // Adjust the writemask in the node |
| 927 | std::vector<SDValue> Ops; |
| 928 | Ops.push_back(DAG.getTargetConstant(Writemask, MVT::i32)); |
| 929 | for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) |
| 930 | Ops.push_back(Node->getOperand(i)); |
| 931 | Node = (MachineSDNode*)DAG.UpdateNodeOperands(Node, Ops.data(), Ops.size()); |
| 932 | |
Christian Konig | 8b1ed28 | 2013-04-10 08:39:16 +0000 | [diff] [blame] | 933 | // If we only got one lane, replace it with a copy |
| 934 | if (Writemask == (1U << Lane)) { |
| 935 | SDValue RC = DAG.getTargetConstant(AMDGPU::VReg_32RegClassID, MVT::i32); |
| 936 | SDNode *Copy = DAG.getMachineNode(TargetOpcode::COPY_TO_REGCLASS, |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 937 | SDLoc(), Users[Lane]->getValueType(0), |
Christian Konig | 8b1ed28 | 2013-04-10 08:39:16 +0000 | [diff] [blame] | 938 | SDValue(Node, 0), RC); |
| 939 | DAG.ReplaceAllUsesWith(Users[Lane], Copy); |
| 940 | return; |
| 941 | } |
| 942 | |
Christian Konig | 8e06e2a | 2013-04-10 08:39:08 +0000 | [diff] [blame] | 943 | // Update the users of the node with the new indices |
| 944 | for (unsigned i = 0, Idx = AMDGPU::sub0; i < 4; ++i) { |
| 945 | |
| 946 | SDNode *User = Users[i]; |
| 947 | if (!User) |
| 948 | continue; |
| 949 | |
| 950 | SDValue Op = DAG.getTargetConstant(Idx, MVT::i32); |
| 951 | DAG.UpdateNodeOperands(User, User->getOperand(0), Op); |
| 952 | |
| 953 | switch (Idx) { |
| 954 | default: break; |
| 955 | case AMDGPU::sub0: Idx = AMDGPU::sub1; break; |
| 956 | case AMDGPU::sub1: Idx = AMDGPU::sub2; break; |
| 957 | case AMDGPU::sub2: Idx = AMDGPU::sub3; break; |
| 958 | } |
| 959 | } |
| 960 | } |
| 961 | |
| 962 | /// \brief Fold the instructions after slecting them |
| 963 | SDNode *SITargetLowering::PostISelFolding(MachineSDNode *Node, |
| 964 | SelectionDAG &DAG) const { |
Tom Stellard | 0518ff8 | 2013-06-03 17:39:58 +0000 | [diff] [blame] | 965 | Node = AdjustRegClass(Node, DAG); |
Christian Konig | 8e06e2a | 2013-04-10 08:39:08 +0000 | [diff] [blame] | 966 | |
| 967 | if (AMDGPU::isMIMG(Node->getMachineOpcode()) != -1) |
| 968 | adjustWritemask(Node, DAG); |
| 969 | |
| 970 | return foldOperands(Node, DAG); |
| 971 | } |
Christian Konig | 8b1ed28 | 2013-04-10 08:39:16 +0000 | [diff] [blame] | 972 | |
| 973 | /// \brief Assign the register class depending on the number of |
| 974 | /// bits set in the writemask |
| 975 | void SITargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI, |
| 976 | SDNode *Node) const { |
| 977 | if (AMDGPU::isMIMG(MI->getOpcode()) == -1) |
| 978 | return; |
| 979 | |
| 980 | unsigned VReg = MI->getOperand(0).getReg(); |
| 981 | unsigned Writemask = MI->getOperand(1).getImm(); |
| 982 | unsigned BitsSet = 0; |
| 983 | for (unsigned i = 0; i < 4; ++i) |
| 984 | BitsSet += Writemask & (1 << i) ? 1 : 0; |
| 985 | |
| 986 | const TargetRegisterClass *RC; |
| 987 | switch (BitsSet) { |
| 988 | default: return; |
| 989 | case 1: RC = &AMDGPU::VReg_32RegClass; break; |
| 990 | case 2: RC = &AMDGPU::VReg_64RegClass; break; |
| 991 | case 3: RC = &AMDGPU::VReg_96RegClass; break; |
| 992 | } |
| 993 | |
| 994 | MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo(); |
| 995 | MRI.setRegClass(VReg, RC); |
| 996 | } |
Tom Stellard | 0518ff8 | 2013-06-03 17:39:58 +0000 | [diff] [blame] | 997 | |
| 998 | MachineSDNode *SITargetLowering::AdjustRegClass(MachineSDNode *N, |
| 999 | SelectionDAG &DAG) const { |
| 1000 | |
| 1001 | SDLoc DL(N); |
| 1002 | unsigned NewOpcode = N->getMachineOpcode(); |
| 1003 | |
| 1004 | switch (N->getMachineOpcode()) { |
| 1005 | default: return N; |
| 1006 | case AMDGPU::REG_SEQUENCE: { |
| 1007 | // MVT::i128 only use SGPRs, so i128 REG_SEQUENCEs don't need to be |
| 1008 | // rewritten. |
| 1009 | if (N->getValueType(0) == MVT::i128) { |
| 1010 | return N; |
| 1011 | } |
| 1012 | const SDValue Ops[] = { |
| 1013 | DAG.getTargetConstant(AMDGPU::VReg_64RegClassID, MVT::i32), |
| 1014 | N->getOperand(1) , N->getOperand(2), |
| 1015 | N->getOperand(3), N->getOperand(4) |
| 1016 | }; |
| 1017 | return DAG.getMachineNode(AMDGPU::REG_SEQUENCE, DL, MVT::i64, Ops); |
| 1018 | } |
| 1019 | |
| 1020 | case AMDGPU::S_LOAD_DWORD_IMM: |
| 1021 | NewOpcode = AMDGPU::BUFFER_LOAD_DWORD_ADDR64; |
| 1022 | // Fall-through |
| 1023 | case AMDGPU::S_LOAD_DWORDX2_SGPR: |
| 1024 | if (NewOpcode == N->getMachineOpcode()) { |
| 1025 | NewOpcode = AMDGPU::BUFFER_LOAD_DWORDX2_ADDR64; |
| 1026 | } |
| 1027 | // Fall-through |
| 1028 | case AMDGPU::S_LOAD_DWORDX4_IMM: |
| 1029 | case AMDGPU::S_LOAD_DWORDX4_SGPR: { |
| 1030 | if (NewOpcode == N->getMachineOpcode()) { |
| 1031 | NewOpcode = AMDGPU::BUFFER_LOAD_DWORDX4_ADDR64; |
| 1032 | } |
| 1033 | if (fitsRegClass(DAG, N->getOperand(0), AMDGPU::SReg_64RegClassID)) { |
| 1034 | return N; |
| 1035 | } |
| 1036 | ConstantSDNode *Offset = cast<ConstantSDNode>(N->getOperand(1)); |
| 1037 | SDValue Ops[] = { |
| 1038 | SDValue(DAG.getMachineNode(AMDGPU::SI_ADDR64_RSRC, DL, MVT::i128, |
| 1039 | DAG.getConstant(0, MVT::i64)), 0), |
| 1040 | N->getOperand(0), |
| 1041 | DAG.getConstant(Offset->getSExtValue() << 2, MVT::i32) |
| 1042 | }; |
| 1043 | return DAG.getMachineNode(NewOpcode, DL, N->getVTList(), Ops); |
| 1044 | } |
| 1045 | } |
| 1046 | } |
Tom Stellard | 94593ee | 2013-06-03 17:40:18 +0000 | [diff] [blame] | 1047 | |
| 1048 | SDValue SITargetLowering::CreateLiveInRegister(SelectionDAG &DAG, |
| 1049 | const TargetRegisterClass *RC, |
| 1050 | unsigned Reg, EVT VT) const { |
| 1051 | SDValue VReg = AMDGPUTargetLowering::CreateLiveInRegister(DAG, RC, Reg, VT); |
| 1052 | |
| 1053 | return DAG.getCopyFromReg(DAG.getEntryNode(), SDLoc(DAG.getEntryNode()), |
| 1054 | cast<RegisterSDNode>(VReg)->getReg(), VT); |
| 1055 | } |