Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1 | //===-- SPUISelLowering.cpp - Cell SPU DAG Lowering Implementation --------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the SPUTargetLowering class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "SPURegisterNames.h" |
| 15 | #include "SPUISelLowering.h" |
| 16 | #include "SPUTargetMachine.h" |
Scott Michel | 203b2d6 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 17 | #include "SPUFrameInfo.h" |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/APInt.h" |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/VectorExtras.h" |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 20 | #include "llvm/CallingConv.h" |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/CallingConvLower.h" |
| 22 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 23 | #include "llvm/CodeGen/MachineFunction.h" |
| 24 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/SelectionDAG.h" |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 27 | #include "llvm/Constants.h" |
| 28 | #include "llvm/Function.h" |
| 29 | #include "llvm/Intrinsics.h" |
| 30 | #include "llvm/Support/Debug.h" |
| 31 | #include "llvm/Support/MathExtras.h" |
| 32 | #include "llvm/Target/TargetOptions.h" |
| 33 | |
| 34 | #include <map> |
| 35 | |
| 36 | using namespace llvm; |
| 37 | |
| 38 | // Used in getTargetNodeName() below |
| 39 | namespace { |
| 40 | std::map<unsigned, const char *> node_names; |
| 41 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 42 | //! MVT mapping to useful data for Cell SPU |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 43 | struct valtype_map_s { |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 44 | const MVT valtype; |
| 45 | const int prefslot_byte; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 46 | }; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 47 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 48 | const valtype_map_s valtype_map[] = { |
| 49 | { MVT::i1, 3 }, |
| 50 | { MVT::i8, 3 }, |
| 51 | { MVT::i16, 2 }, |
| 52 | { MVT::i32, 0 }, |
| 53 | { MVT::f32, 0 }, |
| 54 | { MVT::i64, 0 }, |
| 55 | { MVT::f64, 0 }, |
| 56 | { MVT::i128, 0 } |
| 57 | }; |
| 58 | |
| 59 | const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]); |
| 60 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 61 | const valtype_map_s *getValueTypeMapEntry(MVT VT) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 62 | const valtype_map_s *retval = 0; |
| 63 | |
| 64 | for (size_t i = 0; i < n_valtype_map; ++i) { |
| 65 | if (valtype_map[i].valtype == VT) { |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 66 | retval = valtype_map + i; |
| 67 | break; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 68 | } |
| 69 | } |
| 70 | |
| 71 | #ifndef NDEBUG |
| 72 | if (retval == 0) { |
| 73 | cerr << "getValueTypeMapEntry returns NULL for " |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 74 | << VT.getMVTString() |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 75 | << "\n"; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 76 | abort(); |
| 77 | } |
| 78 | #endif |
| 79 | |
| 80 | return retval; |
| 81 | } |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 82 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 83 | //! Expand a library call into an actual call DAG node |
| 84 | /*! |
| 85 | \note |
| 86 | This code is taken from SelectionDAGLegalize, since it is not exposed as |
| 87 | part of the LLVM SelectionDAG API. |
| 88 | */ |
| 89 | |
| 90 | SDValue |
| 91 | ExpandLibCall(RTLIB::Libcall LC, SDValue Op, SelectionDAG &DAG, |
| 92 | bool isSigned, SDValue &Hi, SPUTargetLowering &TLI) { |
| 93 | // The input chain to this libcall is the entry node of the function. |
| 94 | // Legalizing the call will automatically add the previous call to the |
| 95 | // dependence. |
| 96 | SDValue InChain = DAG.getEntryNode(); |
| 97 | |
| 98 | TargetLowering::ArgListTy Args; |
| 99 | TargetLowering::ArgListEntry Entry; |
| 100 | for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) { |
| 101 | MVT ArgVT = Op.getOperand(i).getValueType(); |
| 102 | const Type *ArgTy = ArgVT.getTypeForMVT(); |
| 103 | Entry.Node = Op.getOperand(i); |
| 104 | Entry.Ty = ArgTy; |
| 105 | Entry.isSExt = isSigned; |
| 106 | Entry.isZExt = !isSigned; |
| 107 | Args.push_back(Entry); |
| 108 | } |
| 109 | SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), |
| 110 | TLI.getPointerTy()); |
| 111 | |
| 112 | // Splice the libcall in wherever FindInputOutputChains tells us to. |
| 113 | const Type *RetTy = Op.getNode()->getValueType(0).getTypeForMVT(); |
| 114 | std::pair<SDValue, SDValue> CallInfo = |
| 115 | TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false, |
| 116 | CallingConv::C, false, Callee, Args, DAG); |
| 117 | |
| 118 | return CallInfo.first; |
| 119 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | SPUTargetLowering::SPUTargetLowering(SPUTargetMachine &TM) |
| 123 | : TargetLowering(TM), |
| 124 | SPUTM(TM) |
| 125 | { |
| 126 | // Fold away setcc operations if possible. |
| 127 | setPow2DivIsCheap(); |
| 128 | |
| 129 | // Use _setjmp/_longjmp instead of setjmp/longjmp. |
| 130 | setUseUnderscoreSetJmp(true); |
| 131 | setUseUnderscoreLongJmp(true); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 132 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 133 | // Set RTLIB libcall names as used by SPU: |
| 134 | setLibcallName(RTLIB::DIV_F64, "__fast_divdf3"); |
| 135 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 136 | // Set up the SPU's register classes: |
Scott Michel | 504c369 | 2007-12-17 22:32:34 +0000 | [diff] [blame] | 137 | addRegisterClass(MVT::i8, SPU::R8CRegisterClass); |
| 138 | addRegisterClass(MVT::i16, SPU::R16CRegisterClass); |
| 139 | addRegisterClass(MVT::i32, SPU::R32CRegisterClass); |
| 140 | addRegisterClass(MVT::i64, SPU::R64CRegisterClass); |
| 141 | addRegisterClass(MVT::f32, SPU::R32FPRegisterClass); |
| 142 | addRegisterClass(MVT::f64, SPU::R64FPRegisterClass); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 143 | addRegisterClass(MVT::i128, SPU::GPRCRegisterClass); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 144 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 145 | // SPU has no sign or zero extended loads for i1, i8, i16: |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 146 | setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote); |
| 147 | setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote); |
| 148 | setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 149 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 150 | setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand); |
| 151 | setLoadExtAction(ISD::EXTLOAD, MVT::f64, Expand); |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 152 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 153 | // SPU constant load actions are custom lowered: |
Nate Begeman | ccef580 | 2008-02-14 18:43:04 +0000 | [diff] [blame] | 154 | setOperationAction(ISD::ConstantFP, MVT::f32, Legal); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 155 | setOperationAction(ISD::ConstantFP, MVT::f64, Custom); |
| 156 | |
| 157 | // SPU's loads and stores have to be custom lowered: |
Scott Michel | dd95009 | 2009-01-06 03:36:14 +0000 | [diff] [blame] | 158 | for (unsigned sctype = (unsigned) MVT::i8; sctype < (unsigned) MVT::i128; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 159 | ++sctype) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 160 | MVT VT = (MVT::SimpleValueType)sctype; |
| 161 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 162 | setOperationAction(ISD::LOAD, VT, Custom); |
| 163 | setOperationAction(ISD::STORE, VT, Custom); |
| 164 | setLoadExtAction(ISD::EXTLOAD, VT, Custom); |
| 165 | setLoadExtAction(ISD::ZEXTLOAD, VT, Custom); |
| 166 | setLoadExtAction(ISD::SEXTLOAD, VT, Custom); |
| 167 | |
| 168 | for (unsigned stype = sctype - 1; stype >= (unsigned) MVT::i8; --stype) { |
| 169 | MVT StoreVT = (MVT::SimpleValueType) stype; |
| 170 | setTruncStoreAction(VT, StoreVT, Expand); |
| 171 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 172 | } |
| 173 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 174 | for (unsigned sctype = (unsigned) MVT::f32; sctype < (unsigned) MVT::f64; |
| 175 | ++sctype) { |
| 176 | MVT VT = (MVT::SimpleValueType) sctype; |
| 177 | |
| 178 | setOperationAction(ISD::LOAD, VT, Custom); |
| 179 | setOperationAction(ISD::STORE, VT, Custom); |
| 180 | |
| 181 | for (unsigned stype = sctype - 1; stype >= (unsigned) MVT::f32; --stype) { |
| 182 | MVT StoreVT = (MVT::SimpleValueType) stype; |
| 183 | setTruncStoreAction(VT, StoreVT, Expand); |
| 184 | } |
| 185 | } |
| 186 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 187 | // Expand the jumptable branches |
| 188 | setOperationAction(ISD::BR_JT, MVT::Other, Expand); |
| 189 | setOperationAction(ISD::BR_CC, MVT::Other, Expand); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 190 | |
| 191 | // Custom lower SELECT_CC for most cases, but expand by default |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 192 | setOperationAction(ISD::SELECT_CC, MVT::Other, Expand); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 193 | setOperationAction(ISD::SELECT_CC, MVT::i8, Custom); |
| 194 | setOperationAction(ISD::SELECT_CC, MVT::i16, Custom); |
| 195 | setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); |
| 196 | setOperationAction(ISD::SELECT_CC, MVT::i64, Custom); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 197 | |
| 198 | // SPU has no intrinsics for these particular operations: |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 199 | setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand); |
| 200 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 201 | // SPU has no SREM/UREM instructions |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 202 | setOperationAction(ISD::SREM, MVT::i32, Expand); |
| 203 | setOperationAction(ISD::UREM, MVT::i32, Expand); |
| 204 | setOperationAction(ISD::SREM, MVT::i64, Expand); |
| 205 | setOperationAction(ISD::UREM, MVT::i64, Expand); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 206 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 207 | // We don't support sin/cos/sqrt/fmod |
| 208 | setOperationAction(ISD::FSIN , MVT::f64, Expand); |
| 209 | setOperationAction(ISD::FCOS , MVT::f64, Expand); |
| 210 | setOperationAction(ISD::FREM , MVT::f64, Expand); |
| 211 | setOperationAction(ISD::FSIN , MVT::f32, Expand); |
| 212 | setOperationAction(ISD::FCOS , MVT::f32, Expand); |
| 213 | setOperationAction(ISD::FREM , MVT::f32, Expand); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 214 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 215 | // Expand fsqrt to the appropriate libcall (NOTE: should use h/w fsqrt |
| 216 | // for f32!) |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 217 | setOperationAction(ISD::FSQRT, MVT::f64, Expand); |
| 218 | setOperationAction(ISD::FSQRT, MVT::f32, Expand); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 219 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 220 | setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); |
| 221 | setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); |
| 222 | |
| 223 | // SPU can do rotate right and left, so legalize it... but customize for i8 |
| 224 | // because instructions don't exist. |
Bill Wendling | 9440e35 | 2008-08-31 02:59:23 +0000 | [diff] [blame] | 225 | |
| 226 | // FIXME: Change from "expand" to appropriate type once ROTR is supported in |
| 227 | // .td files. |
| 228 | setOperationAction(ISD::ROTR, MVT::i32, Expand /*Legal*/); |
| 229 | setOperationAction(ISD::ROTR, MVT::i16, Expand /*Legal*/); |
| 230 | setOperationAction(ISD::ROTR, MVT::i8, Expand /*Custom*/); |
| 231 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 232 | setOperationAction(ISD::ROTL, MVT::i32, Legal); |
| 233 | setOperationAction(ISD::ROTL, MVT::i16, Legal); |
| 234 | setOperationAction(ISD::ROTL, MVT::i8, Custom); |
Scott Michel | dc91bea | 2008-11-20 16:36:33 +0000 | [diff] [blame] | 235 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 236 | // SPU has no native version of shift left/right for i8 |
| 237 | setOperationAction(ISD::SHL, MVT::i8, Custom); |
| 238 | setOperationAction(ISD::SRL, MVT::i8, Custom); |
| 239 | setOperationAction(ISD::SRA, MVT::i8, Custom); |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 240 | |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 241 | // Make these operations legal and handle them during instruction selection: |
| 242 | setOperationAction(ISD::SHL, MVT::i64, Legal); |
| 243 | setOperationAction(ISD::SRL, MVT::i64, Legal); |
| 244 | setOperationAction(ISD::SRA, MVT::i64, Legal); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 245 | |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 246 | // Custom lower i8, i32 and i64 multiplications |
| 247 | setOperationAction(ISD::MUL, MVT::i8, Custom); |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 248 | setOperationAction(ISD::MUL, MVT::i32, Legal); |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 249 | setOperationAction(ISD::MUL, MVT::i64, Legal); |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 250 | |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 251 | // Need to custom handle (some) common i8, i64 math ops |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 252 | setOperationAction(ISD::ADD, MVT::i8, Custom); |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 253 | setOperationAction(ISD::ADD, MVT::i64, Legal); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 254 | setOperationAction(ISD::SUB, MVT::i8, Custom); |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 255 | setOperationAction(ISD::SUB, MVT::i64, Legal); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 256 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 257 | // SPU does not have BSWAP. It does have i32 support CTLZ. |
| 258 | // CTPOP has to be custom lowered. |
| 259 | setOperationAction(ISD::BSWAP, MVT::i32, Expand); |
| 260 | setOperationAction(ISD::BSWAP, MVT::i64, Expand); |
| 261 | |
| 262 | setOperationAction(ISD::CTPOP, MVT::i8, Custom); |
| 263 | setOperationAction(ISD::CTPOP, MVT::i16, Custom); |
| 264 | setOperationAction(ISD::CTPOP, MVT::i32, Custom); |
| 265 | setOperationAction(ISD::CTPOP, MVT::i64, Custom); |
| 266 | |
| 267 | setOperationAction(ISD::CTTZ , MVT::i32, Expand); |
| 268 | setOperationAction(ISD::CTTZ , MVT::i64, Expand); |
| 269 | |
| 270 | setOperationAction(ISD::CTLZ , MVT::i32, Legal); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 271 | |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 272 | // SPU has a version of select that implements (a&~c)|(b&c), just like |
Scott Michel | 405fba1 | 2008-03-10 23:49:09 +0000 | [diff] [blame] | 273 | // select ought to work: |
Scott Michel | 78c47fa | 2008-03-10 16:58:52 +0000 | [diff] [blame] | 274 | setOperationAction(ISD::SELECT, MVT::i8, Legal); |
Scott Michel | ad2715e | 2008-03-05 23:02:02 +0000 | [diff] [blame] | 275 | setOperationAction(ISD::SELECT, MVT::i16, Legal); |
| 276 | setOperationAction(ISD::SELECT, MVT::i32, Legal); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 277 | setOperationAction(ISD::SELECT, MVT::i64, Legal); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 278 | |
Scott Michel | 78c47fa | 2008-03-10 16:58:52 +0000 | [diff] [blame] | 279 | setOperationAction(ISD::SETCC, MVT::i8, Legal); |
| 280 | setOperationAction(ISD::SETCC, MVT::i16, Legal); |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 281 | setOperationAction(ISD::SETCC, MVT::i32, Legal); |
| 282 | setOperationAction(ISD::SETCC, MVT::i64, Legal); |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 283 | setOperationAction(ISD::SETCC, MVT::f64, Custom); |
Scott Michel | ad2715e | 2008-03-05 23:02:02 +0000 | [diff] [blame] | 284 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 285 | // Custom lower i128 -> i64 truncates |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 286 | setOperationAction(ISD::TRUNCATE, MVT::i64, Custom); |
| 287 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 288 | // SPU has a legal FP -> signed INT instruction for f32, but for f64, need |
| 289 | // to expand to a libcall, hence the custom lowering: |
| 290 | setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom); |
| 291 | setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 292 | |
| 293 | // FDIV on SPU requires custom lowering |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 294 | setOperationAction(ISD::FDIV, MVT::f64, Expand); // to libcall |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 295 | |
Scott Michel | 9de57a9 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 296 | // SPU has [U|S]INT_TO_FP for f32->i32, but not for f64->i32, f64->i64: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 297 | setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 298 | setOperationAction(ISD::SINT_TO_FP, MVT::i16, Promote); |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 299 | setOperationAction(ISD::SINT_TO_FP, MVT::i8, Promote); |
| 300 | setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 301 | setOperationAction(ISD::UINT_TO_FP, MVT::i16, Promote); |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 302 | setOperationAction(ISD::UINT_TO_FP, MVT::i8, Promote); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 303 | setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom); |
| 304 | setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom); |
| 305 | |
Scott Michel | 86c041f | 2007-12-20 00:44:13 +0000 | [diff] [blame] | 306 | setOperationAction(ISD::BIT_CONVERT, MVT::i32, Legal); |
| 307 | setOperationAction(ISD::BIT_CONVERT, MVT::f32, Legal); |
| 308 | setOperationAction(ISD::BIT_CONVERT, MVT::i64, Legal); |
| 309 | setOperationAction(ISD::BIT_CONVERT, MVT::f64, Legal); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 310 | |
| 311 | // We cannot sextinreg(i1). Expand to shifts. |
| 312 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 313 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 314 | // Support label based line numbers. |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 315 | setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 316 | setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 317 | |
| 318 | // We want to legalize GlobalAddress and ConstantPool nodes into the |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 319 | // appropriate instructions to materialize the address. |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 320 | for (unsigned sctype = (unsigned) MVT::i8; sctype < (unsigned) MVT::f128; |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 321 | ++sctype) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 322 | MVT VT = (MVT::SimpleValueType)sctype; |
| 323 | |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 324 | setOperationAction(ISD::GlobalAddress, VT, Custom); |
| 325 | setOperationAction(ISD::ConstantPool, VT, Custom); |
| 326 | setOperationAction(ISD::JumpTable, VT, Custom); |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 327 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 328 | |
| 329 | // RET must be custom lowered, to meet ABI requirements |
| 330 | setOperationAction(ISD::RET, MVT::Other, Custom); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 331 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 332 | // VASTART needs to be custom lowered to use the VarArgsFrameIndex |
| 333 | setOperationAction(ISD::VASTART , MVT::Other, Custom); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 334 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 335 | // Use the default implementation. |
| 336 | setOperationAction(ISD::VAARG , MVT::Other, Expand); |
| 337 | setOperationAction(ISD::VACOPY , MVT::Other, Expand); |
| 338 | setOperationAction(ISD::VAEND , MVT::Other, Expand); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 339 | setOperationAction(ISD::STACKSAVE , MVT::Other, Expand); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 340 | setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand); |
| 341 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Expand); |
| 342 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Expand); |
| 343 | |
| 344 | // Cell SPU has instructions for converting between i64 and fp. |
| 345 | setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom); |
| 346 | setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 347 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 348 | // To take advantage of the above i64 FP_TO_SINT, promote i32 FP_TO_UINT |
| 349 | setOperationAction(ISD::FP_TO_UINT, MVT::i32, Promote); |
| 350 | |
| 351 | // BUILD_PAIR can't be handled natively, and should be expanded to shl/or |
| 352 | setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand); |
| 353 | |
| 354 | // First set operation action for all vector types to expand. Then we |
| 355 | // will selectively turn on ones that can be effectively codegen'd. |
| 356 | addRegisterClass(MVT::v16i8, SPU::VECREGRegisterClass); |
| 357 | addRegisterClass(MVT::v8i16, SPU::VECREGRegisterClass); |
| 358 | addRegisterClass(MVT::v4i32, SPU::VECREGRegisterClass); |
| 359 | addRegisterClass(MVT::v2i64, SPU::VECREGRegisterClass); |
| 360 | addRegisterClass(MVT::v4f32, SPU::VECREGRegisterClass); |
| 361 | addRegisterClass(MVT::v2f64, SPU::VECREGRegisterClass); |
| 362 | |
Scott Michel | 21213e7 | 2009-01-06 23:10:38 +0000 | [diff] [blame] | 363 | // "Odd size" vector classes that we're willing to support: |
| 364 | addRegisterClass(MVT::v2i32, SPU::VECREGRegisterClass); |
| 365 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 366 | for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE; |
| 367 | i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) { |
| 368 | MVT VT = (MVT::SimpleValueType)i; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 369 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 370 | // add/sub are legal for all supported vector VT's. |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 371 | setOperationAction(ISD::ADD, VT, Legal); |
| 372 | setOperationAction(ISD::SUB, VT, Legal); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 373 | // mul has to be custom lowered. |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 374 | setOperationAction(ISD::MUL, VT, Legal); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 375 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 376 | setOperationAction(ISD::AND, VT, Legal); |
| 377 | setOperationAction(ISD::OR, VT, Legal); |
| 378 | setOperationAction(ISD::XOR, VT, Legal); |
| 379 | setOperationAction(ISD::LOAD, VT, Legal); |
| 380 | setOperationAction(ISD::SELECT, VT, Legal); |
| 381 | setOperationAction(ISD::STORE, VT, Legal); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 382 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 383 | // These operations need to be expanded: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 384 | setOperationAction(ISD::SDIV, VT, Expand); |
| 385 | setOperationAction(ISD::SREM, VT, Expand); |
| 386 | setOperationAction(ISD::UDIV, VT, Expand); |
| 387 | setOperationAction(ISD::UREM, VT, Expand); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 388 | |
| 389 | // Custom lower build_vector, constant pool spills, insert and |
| 390 | // extract vector elements: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 391 | setOperationAction(ISD::BUILD_VECTOR, VT, Custom); |
| 392 | setOperationAction(ISD::ConstantPool, VT, Custom); |
| 393 | setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom); |
| 394 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom); |
| 395 | setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom); |
| 396 | setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 397 | } |
| 398 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 399 | setOperationAction(ISD::AND, MVT::v16i8, Custom); |
| 400 | setOperationAction(ISD::OR, MVT::v16i8, Custom); |
| 401 | setOperationAction(ISD::XOR, MVT::v16i8, Custom); |
| 402 | setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 403 | |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 404 | setOperationAction(ISD::FDIV, MVT::v4f32, Legal); |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 405 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 406 | setShiftAmountType(MVT::i32); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 407 | setBooleanContents(ZeroOrNegativeOneBooleanContent); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 408 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 409 | setStackPointerRegisterToSaveRestore(SPU::R1); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 410 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 411 | // We have target-specific dag combine patterns for the following nodes: |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 412 | setTargetDAGCombine(ISD::ADD); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 413 | setTargetDAGCombine(ISD::ZERO_EXTEND); |
| 414 | setTargetDAGCombine(ISD::SIGN_EXTEND); |
| 415 | setTargetDAGCombine(ISD::ANY_EXTEND); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 416 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 417 | computeRegisterProperties(); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 418 | |
Scott Michel | e07d3de | 2008-12-09 03:37:19 +0000 | [diff] [blame] | 419 | // Set pre-RA register scheduler default to BURR, which produces slightly |
| 420 | // better code than the default (could also be TDRR, but TargetLowering.h |
| 421 | // needs a mod to support that model): |
| 422 | setSchedulingPreference(SchedulingForRegPressure); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | const char * |
| 426 | SPUTargetLowering::getTargetNodeName(unsigned Opcode) const |
| 427 | { |
| 428 | if (node_names.empty()) { |
| 429 | node_names[(unsigned) SPUISD::RET_FLAG] = "SPUISD::RET_FLAG"; |
| 430 | node_names[(unsigned) SPUISD::Hi] = "SPUISD::Hi"; |
| 431 | node_names[(unsigned) SPUISD::Lo] = "SPUISD::Lo"; |
| 432 | node_names[(unsigned) SPUISD::PCRelAddr] = "SPUISD::PCRelAddr"; |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 433 | node_names[(unsigned) SPUISD::AFormAddr] = "SPUISD::AFormAddr"; |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 434 | node_names[(unsigned) SPUISD::IndirectAddr] = "SPUISD::IndirectAddr"; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 435 | node_names[(unsigned) SPUISD::LDRESULT] = "SPUISD::LDRESULT"; |
| 436 | node_names[(unsigned) SPUISD::CALL] = "SPUISD::CALL"; |
| 437 | node_names[(unsigned) SPUISD::SHUFB] = "SPUISD::SHUFB"; |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 438 | node_names[(unsigned) SPUISD::SHUFFLE_MASK] = "SPUISD::SHUFFLE_MASK"; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 439 | node_names[(unsigned) SPUISD::CNTB] = "SPUISD::CNTB"; |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 440 | node_names[(unsigned) SPUISD::PREFSLOT2VEC] = "SPUISD::PREFSLOT2VEC"; |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 441 | node_names[(unsigned) SPUISD::VEC2PREFSLOT] = "SPUISD::VEC2PREFSLOT"; |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 442 | node_names[(unsigned) SPUISD::SHLQUAD_L_BITS] = "SPUISD::SHLQUAD_L_BITS"; |
| 443 | node_names[(unsigned) SPUISD::SHLQUAD_L_BYTES] = "SPUISD::SHLQUAD_L_BYTES"; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 444 | node_names[(unsigned) SPUISD::VEC_SHL] = "SPUISD::VEC_SHL"; |
| 445 | node_names[(unsigned) SPUISD::VEC_SRL] = "SPUISD::VEC_SRL"; |
| 446 | node_names[(unsigned) SPUISD::VEC_SRA] = "SPUISD::VEC_SRA"; |
| 447 | node_names[(unsigned) SPUISD::VEC_ROTL] = "SPUISD::VEC_ROTL"; |
| 448 | node_names[(unsigned) SPUISD::VEC_ROTR] = "SPUISD::VEC_ROTR"; |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 449 | node_names[(unsigned) SPUISD::ROTBYTES_LEFT] = "SPUISD::ROTBYTES_LEFT"; |
| 450 | node_names[(unsigned) SPUISD::ROTBYTES_LEFT_BITS] = |
| 451 | "SPUISD::ROTBYTES_LEFT_BITS"; |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 452 | node_names[(unsigned) SPUISD::SELECT_MASK] = "SPUISD::SELECT_MASK"; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 453 | node_names[(unsigned) SPUISD::SELB] = "SPUISD::SELB"; |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 454 | node_names[(unsigned) SPUISD::ADD64_MARKER] = "SPUISD::ADD64_MARKER"; |
| 455 | node_names[(unsigned) SPUISD::SUB64_MARKER] = "SPUISD::SUB64_MARKER"; |
| 456 | node_names[(unsigned) SPUISD::MUL64_MARKER] = "SPUISD::MUL64_MARKER"; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | std::map<unsigned, const char *>::iterator i = node_names.find(Opcode); |
| 460 | |
| 461 | return ((i != node_names.end()) ? i->second : 0); |
| 462 | } |
| 463 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 464 | //===----------------------------------------------------------------------===// |
| 465 | // Return the Cell SPU's SETCC result type |
| 466 | //===----------------------------------------------------------------------===// |
| 467 | |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 468 | MVT SPUTargetLowering::getSetCCResultType(MVT VT) const { |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 469 | // i16 and i32 are valid SETCC result types |
| 470 | return ((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) ? VT : MVT::i32); |
Scott Michel | 78c47fa | 2008-03-10 16:58:52 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 473 | //===----------------------------------------------------------------------===// |
| 474 | // Calling convention code: |
| 475 | //===----------------------------------------------------------------------===// |
| 476 | |
| 477 | #include "SPUGenCallingConv.inc" |
| 478 | |
| 479 | //===----------------------------------------------------------------------===// |
| 480 | // LowerOperation implementation |
| 481 | //===----------------------------------------------------------------------===// |
| 482 | |
| 483 | /// Custom lower loads for CellSPU |
| 484 | /*! |
| 485 | All CellSPU loads and stores are aligned to 16-byte boundaries, so for elements |
| 486 | within a 16-byte block, we have to rotate to extract the requested element. |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 487 | |
| 488 | For extending loads, we also want to ensure that the following sequence is |
| 489 | emitted, e.g. for MVT::f32 extending load to MVT::f64: |
| 490 | |
| 491 | \verbatim |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 492 | %1 v16i8,ch = load |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 493 | %2 v16i8,ch = rotate %1 |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 494 | %3 v4f8, ch = bitconvert %2 |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 495 | %4 f32 = vec2perfslot %3 |
| 496 | %5 f64 = fp_extend %4 |
| 497 | \endverbatim |
| 498 | */ |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 499 | static SDValue |
| 500 | LowerLOAD(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 501 | LoadSDNode *LN = cast<LoadSDNode>(Op); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 502 | SDValue the_chain = LN->getChain(); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 503 | MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 504 | MVT InVT = LN->getMemoryVT(); |
| 505 | MVT OutVT = Op.getValueType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 506 | ISD::LoadExtType ExtType = LN->getExtensionType(); |
| 507 | unsigned alignment = LN->getAlignment(); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 508 | const valtype_map_s *vtm = getValueTypeMapEntry(InVT); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 509 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 510 | switch (LN->getAddressingMode()) { |
| 511 | case ISD::UNINDEXED: { |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 512 | SDValue result; |
| 513 | SDValue basePtr = LN->getBasePtr(); |
| 514 | SDValue rotate; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 515 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 516 | if (alignment == 16) { |
| 517 | ConstantSDNode *CN; |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 518 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 519 | // Special cases for a known aligned load to simplify the base pointer |
| 520 | // and the rotation amount: |
| 521 | if (basePtr.getOpcode() == ISD::ADD |
| 522 | && (CN = dyn_cast<ConstantSDNode > (basePtr.getOperand(1))) != 0) { |
| 523 | // Known offset into basePtr |
| 524 | int64_t offset = CN->getSExtValue(); |
| 525 | int64_t rotamt = int64_t((offset & 0xf) - vtm->prefslot_byte); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 526 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 527 | if (rotamt < 0) |
| 528 | rotamt += 16; |
| 529 | |
| 530 | rotate = DAG.getConstant(rotamt, MVT::i16); |
| 531 | |
| 532 | // Simplify the base pointer for this case: |
| 533 | basePtr = basePtr.getOperand(0); |
| 534 | if ((offset & ~0xf) > 0) { |
| 535 | basePtr = DAG.getNode(SPUISD::IndirectAddr, PtrVT, |
| 536 | basePtr, |
| 537 | DAG.getConstant((offset & ~0xf), PtrVT)); |
| 538 | } |
| 539 | } else if ((basePtr.getOpcode() == SPUISD::AFormAddr) |
| 540 | || (basePtr.getOpcode() == SPUISD::IndirectAddr |
| 541 | && basePtr.getOperand(0).getOpcode() == SPUISD::Hi |
| 542 | && basePtr.getOperand(1).getOpcode() == SPUISD::Lo)) { |
| 543 | // Plain aligned a-form address: rotate into preferred slot |
| 544 | // Same for (SPUindirect (SPUhi ...), (SPUlo ...)) |
| 545 | int64_t rotamt = -vtm->prefslot_byte; |
| 546 | if (rotamt < 0) |
| 547 | rotamt += 16; |
| 548 | rotate = DAG.getConstant(rotamt, MVT::i16); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 549 | } else { |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 550 | // Offset the rotate amount by the basePtr and the preferred slot |
| 551 | // byte offset |
| 552 | int64_t rotamt = -vtm->prefslot_byte; |
| 553 | if (rotamt < 0) |
| 554 | rotamt += 16; |
| 555 | rotate = DAG.getNode(ISD::ADD, PtrVT, |
| 556 | basePtr, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 557 | DAG.getConstant(rotamt, PtrVT)); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 558 | } |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 559 | } else { |
| 560 | // Unaligned load: must be more pessimistic about addressing modes: |
| 561 | if (basePtr.getOpcode() == ISD::ADD) { |
| 562 | MachineFunction &MF = DAG.getMachineFunction(); |
| 563 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 564 | unsigned VReg = RegInfo.createVirtualRegister(&SPU::R32CRegClass); |
| 565 | SDValue Flag; |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 566 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 567 | SDValue Op0 = basePtr.getOperand(0); |
| 568 | SDValue Op1 = basePtr.getOperand(1); |
| 569 | |
| 570 | if (isa<ConstantSDNode>(Op1)) { |
| 571 | // Convert the (add <ptr>, <const>) to an indirect address contained |
| 572 | // in a register. Note that this is done because we need to avoid |
| 573 | // creating a 0(reg) d-form address due to the SPU's block loads. |
| 574 | basePtr = DAG.getNode(SPUISD::IndirectAddr, PtrVT, Op0, Op1); |
| 575 | the_chain = DAG.getCopyToReg(the_chain, VReg, basePtr, Flag); |
| 576 | basePtr = DAG.getCopyFromReg(the_chain, VReg, PtrVT); |
| 577 | } else { |
| 578 | // Convert the (add <arg1>, <arg2>) to an indirect address, which |
| 579 | // will likely be lowered as a reg(reg) x-form address. |
| 580 | basePtr = DAG.getNode(SPUISD::IndirectAddr, PtrVT, Op0, Op1); |
| 581 | } |
| 582 | } else { |
| 583 | basePtr = DAG.getNode(SPUISD::IndirectAddr, PtrVT, |
| 584 | basePtr, |
| 585 | DAG.getConstant(0, PtrVT)); |
| 586 | } |
| 587 | |
| 588 | // Offset the rotate amount by the basePtr and the preferred slot |
| 589 | // byte offset |
| 590 | rotate = DAG.getNode(ISD::ADD, PtrVT, |
| 591 | basePtr, |
| 592 | DAG.getConstant(-vtm->prefslot_byte, PtrVT)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 593 | } |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 594 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 595 | // Re-emit as a v16i8 vector load |
| 596 | result = DAG.getLoad(MVT::v16i8, the_chain, basePtr, |
| 597 | LN->getSrcValue(), LN->getSrcValueOffset(), |
| 598 | LN->isVolatile(), 16); |
| 599 | |
| 600 | // Update the chain |
| 601 | the_chain = result.getValue(1); |
| 602 | |
| 603 | // Rotate into the preferred slot: |
| 604 | result = DAG.getNode(SPUISD::ROTBYTES_LEFT, MVT::v16i8, |
| 605 | result.getValue(0), rotate); |
| 606 | |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 607 | // Convert the loaded v16i8 vector to the appropriate vector type |
| 608 | // specified by the operand: |
| 609 | MVT vecVT = MVT::getVectorVT(InVT, (128 / InVT.getSizeInBits())); |
| 610 | result = DAG.getNode(SPUISD::VEC2PREFSLOT, InVT, |
Scott Michel | 19c10e6 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 611 | DAG.getNode(ISD::BIT_CONVERT, vecVT, result)); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 612 | |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 613 | // Handle extending loads by extending the scalar result: |
| 614 | if (ExtType == ISD::SEXTLOAD) { |
| 615 | result = DAG.getNode(ISD::SIGN_EXTEND, OutVT, result); |
| 616 | } else if (ExtType == ISD::ZEXTLOAD) { |
| 617 | result = DAG.getNode(ISD::ZERO_EXTEND, OutVT, result); |
| 618 | } else if (ExtType == ISD::EXTLOAD) { |
| 619 | unsigned NewOpc = ISD::ANY_EXTEND; |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 620 | |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 621 | if (OutVT.isFloatingPoint()) |
Scott Michel | 19c10e6 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 622 | NewOpc = ISD::FP_EXTEND; |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 623 | |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 624 | result = DAG.getNode(NewOpc, OutVT, result); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 627 | SDVTList retvts = DAG.getVTList(OutVT, MVT::Other); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 628 | SDValue retops[2] = { |
Scott Michel | 58c5818 | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 629 | result, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 630 | the_chain |
Scott Michel | 58c5818 | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 631 | }; |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 632 | |
Scott Michel | 58c5818 | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 633 | result = DAG.getNode(SPUISD::LDRESULT, retvts, |
| 634 | retops, sizeof(retops) / sizeof(retops[0])); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 635 | return result; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 636 | } |
| 637 | case ISD::PRE_INC: |
| 638 | case ISD::PRE_DEC: |
| 639 | case ISD::POST_INC: |
| 640 | case ISD::POST_DEC: |
| 641 | case ISD::LAST_INDEXED_MODE: |
| 642 | cerr << "LowerLOAD: Got a LoadSDNode with an addr mode other than " |
| 643 | "UNINDEXED\n"; |
| 644 | cerr << (unsigned) LN->getAddressingMode() << "\n"; |
| 645 | abort(); |
| 646 | /*NOTREACHED*/ |
| 647 | } |
| 648 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 649 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | /// Custom lower stores for CellSPU |
| 653 | /*! |
| 654 | All CellSPU stores are aligned to 16-byte boundaries, so for elements |
| 655 | within a 16-byte block, we have to generate a shuffle to insert the |
| 656 | requested element into its place, then store the resulting block. |
| 657 | */ |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 658 | static SDValue |
| 659 | LowerSTORE(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 660 | StoreSDNode *SN = cast<StoreSDNode>(Op); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 661 | SDValue Value = SN->getValue(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 662 | MVT VT = Value.getValueType(); |
| 663 | MVT StVT = (!SN->isTruncatingStore() ? VT : SN->getMemoryVT()); |
| 664 | MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 665 | unsigned alignment = SN->getAlignment(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 666 | |
| 667 | switch (SN->getAddressingMode()) { |
| 668 | case ISD::UNINDEXED: { |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 669 | // The vector type we really want to load from the 16-byte chunk. |
Scott Michel | 719b0e1 | 2008-11-19 17:45:08 +0000 | [diff] [blame] | 670 | MVT vecVT = MVT::getVectorVT(VT, (128 / VT.getSizeInBits())), |
| 671 | stVecVT = MVT::getVectorVT(StVT, (128 / StVT.getSizeInBits())); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 672 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 673 | SDValue alignLoadVec; |
| 674 | SDValue basePtr = SN->getBasePtr(); |
| 675 | SDValue the_chain = SN->getChain(); |
| 676 | SDValue insertEltOffs; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 677 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 678 | if (alignment == 16) { |
| 679 | ConstantSDNode *CN; |
| 680 | |
| 681 | // Special cases for a known aligned load to simplify the base pointer |
| 682 | // and insertion byte: |
| 683 | if (basePtr.getOpcode() == ISD::ADD |
| 684 | && (CN = dyn_cast<ConstantSDNode>(basePtr.getOperand(1))) != 0) { |
| 685 | // Known offset into basePtr |
| 686 | int64_t offset = CN->getSExtValue(); |
| 687 | |
| 688 | // Simplify the base pointer for this case: |
| 689 | basePtr = basePtr.getOperand(0); |
| 690 | insertEltOffs = DAG.getNode(SPUISD::IndirectAddr, PtrVT, |
| 691 | basePtr, |
| 692 | DAG.getConstant((offset & 0xf), PtrVT)); |
| 693 | |
| 694 | if ((offset & ~0xf) > 0) { |
| 695 | basePtr = DAG.getNode(SPUISD::IndirectAddr, PtrVT, |
| 696 | basePtr, |
| 697 | DAG.getConstant((offset & ~0xf), PtrVT)); |
| 698 | } |
| 699 | } else { |
| 700 | // Otherwise, assume it's at byte 0 of basePtr |
| 701 | insertEltOffs = DAG.getNode(SPUISD::IndirectAddr, PtrVT, |
| 702 | basePtr, |
| 703 | DAG.getConstant(0, PtrVT)); |
| 704 | } |
| 705 | } else { |
| 706 | // Unaligned load: must be more pessimistic about addressing modes: |
| 707 | if (basePtr.getOpcode() == ISD::ADD) { |
| 708 | MachineFunction &MF = DAG.getMachineFunction(); |
| 709 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 710 | unsigned VReg = RegInfo.createVirtualRegister(&SPU::R32CRegClass); |
| 711 | SDValue Flag; |
| 712 | |
| 713 | SDValue Op0 = basePtr.getOperand(0); |
| 714 | SDValue Op1 = basePtr.getOperand(1); |
| 715 | |
| 716 | if (isa<ConstantSDNode>(Op1)) { |
| 717 | // Convert the (add <ptr>, <const>) to an indirect address contained |
| 718 | // in a register. Note that this is done because we need to avoid |
| 719 | // creating a 0(reg) d-form address due to the SPU's block loads. |
| 720 | basePtr = DAG.getNode(SPUISD::IndirectAddr, PtrVT, Op0, Op1); |
| 721 | the_chain = DAG.getCopyToReg(the_chain, VReg, basePtr, Flag); |
| 722 | basePtr = DAG.getCopyFromReg(the_chain, VReg, PtrVT); |
| 723 | } else { |
| 724 | // Convert the (add <arg1>, <arg2>) to an indirect address, which |
| 725 | // will likely be lowered as a reg(reg) x-form address. |
| 726 | basePtr = DAG.getNode(SPUISD::IndirectAddr, PtrVT, Op0, Op1); |
| 727 | } |
| 728 | } else { |
| 729 | basePtr = DAG.getNode(SPUISD::IndirectAddr, PtrVT, |
| 730 | basePtr, |
| 731 | DAG.getConstant(0, PtrVT)); |
| 732 | } |
| 733 | |
| 734 | // Insertion point is solely determined by basePtr's contents |
| 735 | insertEltOffs = DAG.getNode(ISD::ADD, PtrVT, |
| 736 | basePtr, |
| 737 | DAG.getConstant(0, PtrVT)); |
| 738 | } |
| 739 | |
| 740 | // Re-emit as a v16i8 vector load |
| 741 | alignLoadVec = DAG.getLoad(MVT::v16i8, the_chain, basePtr, |
| 742 | SN->getSrcValue(), SN->getSrcValueOffset(), |
| 743 | SN->isVolatile(), 16); |
| 744 | |
| 745 | // Update the chain |
| 746 | the_chain = alignLoadVec.getValue(1); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 747 | |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 748 | LoadSDNode *LN = cast<LoadSDNode>(alignLoadVec); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 749 | SDValue theValue = SN->getValue(); |
| 750 | SDValue result; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 751 | |
| 752 | if (StVT != VT |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 753 | && (theValue.getOpcode() == ISD::AssertZext |
| 754 | || theValue.getOpcode() == ISD::AssertSext)) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 755 | // Drill down and get the value for zero- and sign-extended |
| 756 | // quantities |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 757 | theValue = theValue.getOperand(0); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 758 | } |
| 759 | |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 760 | // If the base pointer is already a D-form address, then just create |
| 761 | // a new D-form address with a slot offset and the orignal base pointer. |
| 762 | // Otherwise generate a D-form address with the slot offset relative |
| 763 | // to the stack pointer, which is always aligned. |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 764 | #if !defined(NDEBUG) |
| 765 | if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { |
| 766 | cerr << "CellSPU LowerSTORE: basePtr = "; |
| 767 | basePtr.getNode()->dump(&DAG); |
| 768 | cerr << "\n"; |
| 769 | } |
| 770 | #endif |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 771 | |
Scott Michel | 430a555 | 2008-11-19 15:24:16 +0000 | [diff] [blame] | 772 | SDValue insertEltOp = |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 773 | DAG.getNode(SPUISD::SHUFFLE_MASK, vecVT, insertEltOffs); |
Scott Michel | 719b0e1 | 2008-11-19 17:45:08 +0000 | [diff] [blame] | 774 | SDValue vectorizeOp = |
| 775 | DAG.getNode(ISD::SCALAR_TO_VECTOR, vecVT, theValue); |
Scott Michel | 430a555 | 2008-11-19 15:24:16 +0000 | [diff] [blame] | 776 | |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 777 | result = DAG.getNode(SPUISD::SHUFB, vecVT, |
Scott Michel | 19c10e6 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 778 | vectorizeOp, alignLoadVec, |
| 779 | DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, insertEltOp)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 780 | |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 781 | result = DAG.getStore(the_chain, result, basePtr, |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 782 | LN->getSrcValue(), LN->getSrcValueOffset(), |
| 783 | LN->isVolatile(), LN->getAlignment()); |
| 784 | |
Scott Michel | 23f2ff7 | 2008-12-04 17:16:59 +0000 | [diff] [blame] | 785 | #if 0 && !defined(NDEBUG) |
Scott Michel | 430a555 | 2008-11-19 15:24:16 +0000 | [diff] [blame] | 786 | if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { |
| 787 | const SDValue ¤tRoot = DAG.getRoot(); |
| 788 | |
| 789 | DAG.setRoot(result); |
| 790 | cerr << "------- CellSPU:LowerStore result:\n"; |
| 791 | DAG.dump(); |
| 792 | cerr << "-------\n"; |
| 793 | DAG.setRoot(currentRoot); |
| 794 | } |
| 795 | #endif |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 796 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 797 | return result; |
| 798 | /*UNREACHED*/ |
| 799 | } |
| 800 | case ISD::PRE_INC: |
| 801 | case ISD::PRE_DEC: |
| 802 | case ISD::POST_INC: |
| 803 | case ISD::POST_DEC: |
| 804 | case ISD::LAST_INDEXED_MODE: |
| 805 | cerr << "LowerLOAD: Got a LoadSDNode with an addr mode other than " |
| 806 | "UNINDEXED\n"; |
| 807 | cerr << (unsigned) SN->getAddressingMode() << "\n"; |
| 808 | abort(); |
| 809 | /*NOTREACHED*/ |
| 810 | } |
| 811 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 812 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 813 | } |
| 814 | |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 815 | //! Generate the address of a constant pool entry. |
| 816 | SDValue |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 817 | LowerConstantPool(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 818 | MVT PtrVT = Op.getValueType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 819 | ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); |
| 820 | Constant *C = CP->getConstVal(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 821 | SDValue CPI = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment()); |
| 822 | SDValue Zero = DAG.getConstant(0, PtrVT); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 823 | const TargetMachine &TM = DAG.getTarget(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 824 | |
| 825 | if (TM.getRelocationModel() == Reloc::Static) { |
| 826 | if (!ST->usingLargeMem()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 827 | // Just return the SDValue with the constant pool address in it. |
Scott Michel | 58c5818 | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 828 | return DAG.getNode(SPUISD::AFormAddr, PtrVT, CPI, Zero); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 829 | } else { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 830 | SDValue Hi = DAG.getNode(SPUISD::Hi, PtrVT, CPI, Zero); |
| 831 | SDValue Lo = DAG.getNode(SPUISD::Lo, PtrVT, CPI, Zero); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 832 | return DAG.getNode(SPUISD::IndirectAddr, PtrVT, Hi, Lo); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 833 | } |
| 834 | } |
| 835 | |
| 836 | assert(0 && |
Gabor Greif | 93c53e5 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 837 | "LowerConstantPool: Relocation model other than static" |
| 838 | " not supported."); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 839 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 840 | } |
| 841 | |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 842 | //! Alternate entry point for generating the address of a constant pool entry |
| 843 | SDValue |
| 844 | SPU::LowerConstantPool(SDValue Op, SelectionDAG &DAG, const SPUTargetMachine &TM) { |
| 845 | return ::LowerConstantPool(Op, DAG, TM.getSubtargetImpl()); |
| 846 | } |
| 847 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 848 | static SDValue |
| 849 | LowerJumpTable(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 850 | MVT PtrVT = Op.getValueType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 851 | JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 852 | SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT); |
| 853 | SDValue Zero = DAG.getConstant(0, PtrVT); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 854 | const TargetMachine &TM = DAG.getTarget(); |
| 855 | |
| 856 | if (TM.getRelocationModel() == Reloc::Static) { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 857 | if (!ST->usingLargeMem()) { |
| 858 | return DAG.getNode(SPUISD::AFormAddr, PtrVT, JTI, Zero); |
| 859 | } else { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 860 | SDValue Hi = DAG.getNode(SPUISD::Hi, PtrVT, JTI, Zero); |
| 861 | SDValue Lo = DAG.getNode(SPUISD::Lo, PtrVT, JTI, Zero); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 862 | return DAG.getNode(SPUISD::IndirectAddr, PtrVT, Hi, Lo); |
| 863 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | assert(0 && |
| 867 | "LowerJumpTable: Relocation model other than static not supported."); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 868 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 869 | } |
| 870 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 871 | static SDValue |
| 872 | LowerGlobalAddress(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 873 | MVT PtrVT = Op.getValueType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 874 | GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op); |
| 875 | GlobalValue *GV = GSDN->getGlobal(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 876 | SDValue GA = DAG.getTargetGlobalAddress(GV, PtrVT, GSDN->getOffset()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 877 | const TargetMachine &TM = DAG.getTarget(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 878 | SDValue Zero = DAG.getConstant(0, PtrVT); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 879 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 880 | if (TM.getRelocationModel() == Reloc::Static) { |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 881 | if (!ST->usingLargeMem()) { |
| 882 | return DAG.getNode(SPUISD::AFormAddr, PtrVT, GA, Zero); |
| 883 | } else { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 884 | SDValue Hi = DAG.getNode(SPUISD::Hi, PtrVT, GA, Zero); |
| 885 | SDValue Lo = DAG.getNode(SPUISD::Lo, PtrVT, GA, Zero); |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 886 | return DAG.getNode(SPUISD::IndirectAddr, PtrVT, Hi, Lo); |
| 887 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 888 | } else { |
| 889 | cerr << "LowerGlobalAddress: Relocation model other than static not " |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 890 | << "supported.\n"; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 891 | abort(); |
| 892 | /*NOTREACHED*/ |
| 893 | } |
| 894 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 895 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 896 | } |
| 897 | |
Nate Begeman | ccef580 | 2008-02-14 18:43:04 +0000 | [diff] [blame] | 898 | //! Custom lower double precision floating point constants |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 899 | static SDValue |
| 900 | LowerConstantFP(SDValue Op, SelectionDAG &DAG) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 901 | MVT VT = Op.getValueType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 902 | |
Nate Begeman | ccef580 | 2008-02-14 18:43:04 +0000 | [diff] [blame] | 903 | if (VT == MVT::f64) { |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 904 | ConstantFPSDNode *FP = cast<ConstantFPSDNode>(Op.getNode()); |
| 905 | |
| 906 | assert((FP != 0) && |
| 907 | "LowerConstantFP: Node is not ConstantFPSDNode"); |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 908 | |
Scott Michel | 170783a | 2007-12-19 20:15:47 +0000 | [diff] [blame] | 909 | uint64_t dbits = DoubleToBits(FP->getValueAPF().convertToDouble()); |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 910 | SDValue T = DAG.getConstant(dbits, MVT::i64); |
| 911 | SDValue Tvec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i64, T, T); |
| 912 | return DAG.getNode(SPUISD::VEC2PREFSLOT, VT, |
| 913 | DAG.getNode(ISD::BIT_CONVERT, MVT::v2f64, Tvec)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 914 | } |
| 915 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 916 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 917 | } |
| 918 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 919 | static SDValue |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 920 | LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG, int &VarArgsFrameIndex) |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 921 | { |
| 922 | MachineFunction &MF = DAG.getMachineFunction(); |
| 923 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 924 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 925 | SmallVector<SDValue, 48> ArgValues; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 926 | SDValue Root = Op.getOperand(0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 927 | bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 928 | |
| 929 | const unsigned *ArgRegs = SPURegisterInfo::getArgRegs(); |
| 930 | const unsigned NumArgRegs = SPURegisterInfo::getNumArgRegs(); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 931 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 932 | unsigned ArgOffset = SPUFrameInfo::minStackSize(); |
| 933 | unsigned ArgRegIdx = 0; |
| 934 | unsigned StackSlotSize = SPUFrameInfo::stackSlotSize(); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 935 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 936 | MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 937 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 938 | // Add DAG nodes to load the arguments or copy them out of registers. |
Gabor Greif | 93c53e5 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 939 | for (unsigned ArgNo = 0, e = Op.getNode()->getNumValues() - 1; |
| 940 | ArgNo != e; ++ArgNo) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 941 | MVT ObjectVT = Op.getValue(ArgNo).getValueType(); |
| 942 | unsigned ObjSize = ObjectVT.getSizeInBits()/8; |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 943 | SDValue ArgVal; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 944 | |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 945 | if (ArgRegIdx < NumArgRegs) { |
| 946 | const TargetRegisterClass *ArgRegClass; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 947 | |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 948 | switch (ObjectVT.getSimpleVT()) { |
| 949 | default: { |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 950 | cerr << "LowerFORMAL_ARGUMENTS Unhandled argument type: " |
| 951 | << ObjectVT.getMVTString() |
| 952 | << "\n"; |
| 953 | abort(); |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 954 | } |
| 955 | case MVT::i8: |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 956 | ArgRegClass = &SPU::R8CRegClass; |
| 957 | break; |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 958 | case MVT::i16: |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 959 | ArgRegClass = &SPU::R16CRegClass; |
| 960 | break; |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 961 | case MVT::i32: |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 962 | ArgRegClass = &SPU::R32CRegClass; |
| 963 | break; |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 964 | case MVT::i64: |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 965 | ArgRegClass = &SPU::R64CRegClass; |
| 966 | break; |
Scott Michel | dd95009 | 2009-01-06 03:36:14 +0000 | [diff] [blame] | 967 | case MVT::i128: |
| 968 | ArgRegClass = &SPU::GPRCRegClass; |
| 969 | break; |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 970 | case MVT::f32: |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 971 | ArgRegClass = &SPU::R32FPRegClass; |
| 972 | break; |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 973 | case MVT::f64: |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 974 | ArgRegClass = &SPU::R64FPRegClass; |
| 975 | break; |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 976 | case MVT::v2f64: |
| 977 | case MVT::v4f32: |
| 978 | case MVT::v2i64: |
| 979 | case MVT::v4i32: |
| 980 | case MVT::v8i16: |
| 981 | case MVT::v16i8: |
Scott Michel | 9c0c6b2 | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 982 | ArgRegClass = &SPU::VECREGRegClass; |
| 983 | break; |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | unsigned VReg = RegInfo.createVirtualRegister(ArgRegClass); |
| 987 | RegInfo.addLiveIn(ArgRegs[ArgRegIdx], VReg); |
| 988 | ArgVal = DAG.getCopyFromReg(Root, VReg, ObjectVT); |
| 989 | ++ArgRegIdx; |
| 990 | } else { |
| 991 | // We need to load the argument to a virtual register if we determined |
| 992 | // above that we ran out of physical registers of the appropriate type |
| 993 | // or we're forced to do vararg |
Chris Lattner | 9f72d1a | 2008-02-13 07:35:30 +0000 | [diff] [blame] | 994 | int FI = MFI->CreateFixedObject(ObjSize, ArgOffset); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 995 | SDValue FIN = DAG.getFrameIndex(FI, PtrVT); |
Chris Lattner | 9f72d1a | 2008-02-13 07:35:30 +0000 | [diff] [blame] | 996 | ArgVal = DAG.getLoad(ObjectVT, Root, FIN, NULL, 0); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 997 | ArgOffset += StackSlotSize; |
| 998 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 999 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1000 | ArgValues.push_back(ArgVal); |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 1001 | // Update the chain |
| 1002 | Root = ArgVal.getOperand(0); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1003 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1004 | |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 1005 | // vararg handling: |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1006 | if (isVarArg) { |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 1007 | // unsigned int ptr_size = PtrVT.getSizeInBits() / 8; |
| 1008 | // We will spill (79-3)+1 registers to the stack |
| 1009 | SmallVector<SDValue, 79-3+1> MemOps; |
| 1010 | |
| 1011 | // Create the frame slot |
| 1012 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1013 | for (; ArgRegIdx != NumArgRegs; ++ArgRegIdx) { |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 1014 | VarArgsFrameIndex = MFI->CreateFixedObject(StackSlotSize, ArgOffset); |
| 1015 | SDValue FIN = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT); |
| 1016 | SDValue ArgVal = DAG.getRegister(ArgRegs[ArgRegIdx], MVT::v16i8); |
| 1017 | SDValue Store = DAG.getStore(Root, ArgVal, FIN, NULL, 0); |
| 1018 | Root = Store.getOperand(0); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1019 | MemOps.push_back(Store); |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 1020 | |
| 1021 | // Increment address by stack slot size for the next stored argument |
| 1022 | ArgOffset += StackSlotSize; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1023 | } |
| 1024 | if (!MemOps.empty()) |
Scott Michel | d976c21 | 2008-10-30 01:51:48 +0000 | [diff] [blame] | 1025 | Root = DAG.getNode(ISD::TokenFactor,MVT::Other,&MemOps[0],MemOps.size()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1026 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1027 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1028 | ArgValues.push_back(Root); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1029 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1030 | // Return the new list of results. |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 1031 | return DAG.getNode(ISD::MERGE_VALUES, Op.getNode()->getVTList(), |
| 1032 | &ArgValues[0], ArgValues.size()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
| 1035 | /// isLSAAddress - Return the immediate to use if the specified |
| 1036 | /// value is representable as a LSA address. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1037 | static SDNode *isLSAAddress(SDValue Op, SelectionDAG &DAG) { |
Scott Michel | 19fd42a | 2008-11-11 03:06:06 +0000 | [diff] [blame] | 1038 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1039 | if (!C) return 0; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1040 | |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1041 | int Addr = C->getZExtValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1042 | if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero. |
| 1043 | (Addr << 14 >> 14) != Addr) |
| 1044 | return 0; // Top 14 bits have to be sext of immediate. |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1045 | |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1046 | return DAG.getConstant((int)C->getZExtValue() >> 2, MVT::i32).getNode(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1047 | } |
| 1048 | |
Scott Michel | 21213e7 | 2009-01-06 23:10:38 +0000 | [diff] [blame] | 1049 | static SDValue |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1050 | LowerCALL(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1051 | CallSDNode *TheCall = cast<CallSDNode>(Op.getNode()); |
| 1052 | SDValue Chain = TheCall->getChain(); |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1053 | SDValue Callee = TheCall->getCallee(); |
| 1054 | unsigned NumOps = TheCall->getNumArgs(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1055 | unsigned StackSlotSize = SPUFrameInfo::stackSlotSize(); |
| 1056 | const unsigned *ArgRegs = SPURegisterInfo::getArgRegs(); |
| 1057 | const unsigned NumArgRegs = SPURegisterInfo::getNumArgRegs(); |
| 1058 | |
| 1059 | // Handy pointer type |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1060 | MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1061 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1062 | // Accumulate how many bytes are to be pushed on the stack, including the |
| 1063 | // linkage area, and parameter passing area. According to the SPU ABI, |
| 1064 | // we minimally need space for [LR] and [SP] |
| 1065 | unsigned NumStackBytes = SPUFrameInfo::minStackSize(); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1066 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1067 | // Set up a copy of the stack pointer for use loading and storing any |
| 1068 | // arguments that may not fit in the registers available for argument |
| 1069 | // passing. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1070 | SDValue StackPtr = DAG.getRegister(SPU::R1, MVT::i32); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1071 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1072 | // Figure out which arguments are going to go in registers, and which in |
| 1073 | // memory. |
| 1074 | unsigned ArgOffset = SPUFrameInfo::minStackSize(); // Just below [LR] |
| 1075 | unsigned ArgRegIdx = 0; |
| 1076 | |
| 1077 | // Keep track of registers passing arguments |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1078 | std::vector<std::pair<unsigned, SDValue> > RegsToPass; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1079 | // And the arguments passed on the stack |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1080 | SmallVector<SDValue, 8> MemOpChains; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1081 | |
| 1082 | for (unsigned i = 0; i != NumOps; ++i) { |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1083 | SDValue Arg = TheCall->getArg(i); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1084 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1085 | // PtrOff will be used to store the current argument to the stack if a |
| 1086 | // register cannot be found for it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1087 | SDValue PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1088 | PtrOff = DAG.getNode(ISD::ADD, PtrVT, StackPtr, PtrOff); |
| 1089 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1090 | switch (Arg.getValueType().getSimpleVT()) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1091 | default: assert(0 && "Unexpected ValueType for argument!"); |
Scott Michel | dd95009 | 2009-01-06 03:36:14 +0000 | [diff] [blame] | 1092 | case MVT::i8: |
| 1093 | case MVT::i16: |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1094 | case MVT::i32: |
| 1095 | case MVT::i64: |
| 1096 | case MVT::i128: |
| 1097 | if (ArgRegIdx != NumArgRegs) { |
| 1098 | RegsToPass.push_back(std::make_pair(ArgRegs[ArgRegIdx++], Arg)); |
| 1099 | } else { |
| 1100 | MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0)); |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1101 | ArgOffset += StackSlotSize; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1102 | } |
| 1103 | break; |
| 1104 | case MVT::f32: |
| 1105 | case MVT::f64: |
| 1106 | if (ArgRegIdx != NumArgRegs) { |
| 1107 | RegsToPass.push_back(std::make_pair(ArgRegs[ArgRegIdx++], Arg)); |
| 1108 | } else { |
| 1109 | MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0)); |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1110 | ArgOffset += StackSlotSize; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1111 | } |
| 1112 | break; |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1113 | case MVT::v2i64: |
| 1114 | case MVT::v2f64: |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1115 | case MVT::v4f32: |
| 1116 | case MVT::v4i32: |
| 1117 | case MVT::v8i16: |
| 1118 | case MVT::v16i8: |
| 1119 | if (ArgRegIdx != NumArgRegs) { |
| 1120 | RegsToPass.push_back(std::make_pair(ArgRegs[ArgRegIdx++], Arg)); |
| 1121 | } else { |
| 1122 | MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0)); |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1123 | ArgOffset += StackSlotSize; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1124 | } |
| 1125 | break; |
| 1126 | } |
| 1127 | } |
| 1128 | |
| 1129 | // Update number of stack bytes actually used, insert a call sequence start |
| 1130 | NumStackBytes = (ArgOffset - SPUFrameInfo::minStackSize()); |
Chris Lattner | e563bbc | 2008-10-11 22:08:30 +0000 | [diff] [blame] | 1131 | Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumStackBytes, |
| 1132 | true)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1133 | |
| 1134 | if (!MemOpChains.empty()) { |
| 1135 | // Adjust the stack pointer for the stack arguments. |
| 1136 | Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 1137 | &MemOpChains[0], MemOpChains.size()); |
| 1138 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1139 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1140 | // Build a sequence of copy-to-reg nodes chained together with token chain |
| 1141 | // and flag operands which copy the outgoing args into the appropriate regs. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1142 | SDValue InFlag; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1143 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { |
| 1144 | Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second, |
| 1145 | InFlag); |
| 1146 | InFlag = Chain.getValue(1); |
| 1147 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1148 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1149 | SmallVector<SDValue, 8> Ops; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1150 | unsigned CallOpc = SPUISD::CALL; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1151 | |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 1152 | // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every |
| 1153 | // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol |
| 1154 | // node so that legalize doesn't hack it. |
Scott Michel | 19fd42a | 2008-11-11 03:06:06 +0000 | [diff] [blame] | 1155 | if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1156 | GlobalValue *GV = G->getGlobal(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1157 | MVT CalleeVT = Callee.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1158 | SDValue Zero = DAG.getConstant(0, PtrVT); |
| 1159 | SDValue GA = DAG.getTargetGlobalAddress(GV, CalleeVT); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1160 | |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 1161 | if (!ST->usingLargeMem()) { |
| 1162 | // Turn calls to targets that are defined (i.e., have bodies) into BRSL |
| 1163 | // style calls, otherwise, external symbols are BRASL calls. This assumes |
| 1164 | // that declared/defined symbols are in the same compilation unit and can |
| 1165 | // be reached through PC-relative jumps. |
| 1166 | // |
| 1167 | // NOTE: |
| 1168 | // This may be an unsafe assumption for JIT and really large compilation |
| 1169 | // units. |
| 1170 | if (GV->isDeclaration()) { |
| 1171 | Callee = DAG.getNode(SPUISD::AFormAddr, CalleeVT, GA, Zero); |
| 1172 | } else { |
| 1173 | Callee = DAG.getNode(SPUISD::PCRelAddr, CalleeVT, GA, Zero); |
| 1174 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1175 | } else { |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 1176 | // "Large memory" mode: Turn all calls into indirect calls with a X-form |
| 1177 | // address pairs: |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 1178 | Callee = DAG.getNode(SPUISD::IndirectAddr, PtrVT, GA, Zero); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1179 | } |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 1180 | } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) { |
| 1181 | MVT CalleeVT = Callee.getValueType(); |
| 1182 | SDValue Zero = DAG.getConstant(0, PtrVT); |
| 1183 | SDValue ExtSym = DAG.getTargetExternalSymbol(S->getSymbol(), |
| 1184 | Callee.getValueType()); |
| 1185 | |
| 1186 | if (!ST->usingLargeMem()) { |
| 1187 | Callee = DAG.getNode(SPUISD::AFormAddr, CalleeVT, ExtSym, Zero); |
| 1188 | } else { |
| 1189 | Callee = DAG.getNode(SPUISD::IndirectAddr, PtrVT, ExtSym, Zero); |
| 1190 | } |
| 1191 | } else if (SDNode *Dest = isLSAAddress(Callee, DAG)) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1192 | // If this is an absolute destination address that appears to be a legal |
| 1193 | // local store address, use the munged value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1194 | Callee = SDValue(Dest, 0); |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 1195 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1196 | |
| 1197 | Ops.push_back(Chain); |
| 1198 | Ops.push_back(Callee); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1199 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1200 | // Add argument registers to the end of the list so that they are known live |
| 1201 | // into the call. |
| 1202 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1203 | Ops.push_back(DAG.getRegister(RegsToPass[i].first, |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1204 | RegsToPass[i].second.getValueType())); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1205 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1206 | if (InFlag.getNode()) |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1207 | Ops.push_back(InFlag); |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 1208 | // Returns a chain and a flag for retval copy to use. |
| 1209 | Chain = DAG.getNode(CallOpc, DAG.getVTList(MVT::Other, MVT::Flag), |
| 1210 | &Ops[0], Ops.size()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1211 | InFlag = Chain.getValue(1); |
| 1212 | |
Chris Lattner | e563bbc | 2008-10-11 22:08:30 +0000 | [diff] [blame] | 1213 | Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumStackBytes, true), |
| 1214 | DAG.getIntPtrConstant(0, true), InFlag); |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1215 | if (TheCall->getValueType(0) != MVT::Other) |
Evan Cheng | ebaaa91 | 2008-02-05 22:44:06 +0000 | [diff] [blame] | 1216 | InFlag = Chain.getValue(1); |
| 1217 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1218 | SDValue ResultVals[3]; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1219 | unsigned NumResults = 0; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1220 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1221 | // If the call has results, copy the values out of the ret val registers. |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1222 | switch (TheCall->getValueType(0).getSimpleVT()) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1223 | default: assert(0 && "Unexpected ret value!"); |
| 1224 | case MVT::Other: break; |
| 1225 | case MVT::i32: |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1226 | if (TheCall->getValueType(1) == MVT::i32) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1227 | Chain = DAG.getCopyFromReg(Chain, SPU::R4, MVT::i32, InFlag).getValue(1); |
| 1228 | ResultVals[0] = Chain.getValue(0); |
| 1229 | Chain = DAG.getCopyFromReg(Chain, SPU::R3, MVT::i32, |
| 1230 | Chain.getValue(2)).getValue(1); |
| 1231 | ResultVals[1] = Chain.getValue(0); |
| 1232 | NumResults = 2; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1233 | } else { |
| 1234 | Chain = DAG.getCopyFromReg(Chain, SPU::R3, MVT::i32, InFlag).getValue(1); |
| 1235 | ResultVals[0] = Chain.getValue(0); |
| 1236 | NumResults = 1; |
| 1237 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1238 | break; |
| 1239 | case MVT::i64: |
| 1240 | Chain = DAG.getCopyFromReg(Chain, SPU::R3, MVT::i64, InFlag).getValue(1); |
| 1241 | ResultVals[0] = Chain.getValue(0); |
| 1242 | NumResults = 1; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1243 | break; |
Scott Michel | dd95009 | 2009-01-06 03:36:14 +0000 | [diff] [blame] | 1244 | case MVT::i128: |
| 1245 | Chain = DAG.getCopyFromReg(Chain, SPU::R3, MVT::i128, InFlag).getValue(1); |
| 1246 | ResultVals[0] = Chain.getValue(0); |
| 1247 | NumResults = 1; |
| 1248 | break; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1249 | case MVT::f32: |
| 1250 | case MVT::f64: |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1251 | Chain = DAG.getCopyFromReg(Chain, SPU::R3, TheCall->getValueType(0), |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1252 | InFlag).getValue(1); |
| 1253 | ResultVals[0] = Chain.getValue(0); |
| 1254 | NumResults = 1; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1255 | break; |
| 1256 | case MVT::v2f64: |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1257 | case MVT::v2i64: |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1258 | case MVT::v4f32: |
| 1259 | case MVT::v4i32: |
| 1260 | case MVT::v8i16: |
| 1261 | case MVT::v16i8: |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1262 | Chain = DAG.getCopyFromReg(Chain, SPU::R3, TheCall->getValueType(0), |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1263 | InFlag).getValue(1); |
| 1264 | ResultVals[0] = Chain.getValue(0); |
| 1265 | NumResults = 1; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1266 | break; |
| 1267 | } |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 1268 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1269 | // If the function returns void, just return the chain. |
| 1270 | if (NumResults == 0) |
| 1271 | return Chain; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1272 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1273 | // Otherwise, merge everything together with a MERGE_VALUES node. |
| 1274 | ResultVals[NumResults++] = Chain; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1275 | SDValue Res = DAG.getMergeValues(ResultVals, NumResults); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1276 | return Res.getValue(Op.getResNo()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1279 | static SDValue |
| 1280 | LowerRET(SDValue Op, SelectionDAG &DAG, TargetMachine &TM) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1281 | SmallVector<CCValAssign, 16> RVLocs; |
| 1282 | unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv(); |
| 1283 | bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg(); |
| 1284 | CCState CCInfo(CC, isVarArg, TM, RVLocs); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1285 | CCInfo.AnalyzeReturn(Op.getNode(), RetCC_SPU); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1286 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1287 | // If this is the first return lowered for this function, add the regs to the |
| 1288 | // liveout set for the function. |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 1289 | if (DAG.getMachineFunction().getRegInfo().liveout_empty()) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1290 | for (unsigned i = 0; i != RVLocs.size(); ++i) |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 1291 | DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1292 | } |
| 1293 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1294 | SDValue Chain = Op.getOperand(0); |
| 1295 | SDValue Flag; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1296 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1297 | // Copy the result values into the output registers. |
| 1298 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
| 1299 | CCValAssign &VA = RVLocs[i]; |
| 1300 | assert(VA.isRegLoc() && "Can only return in registers!"); |
| 1301 | Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), Op.getOperand(i*2+1), Flag); |
| 1302 | Flag = Chain.getValue(1); |
| 1303 | } |
| 1304 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1305 | if (Flag.getNode()) |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1306 | return DAG.getNode(SPUISD::RET_FLAG, MVT::Other, Chain, Flag); |
| 1307 | else |
| 1308 | return DAG.getNode(SPUISD::RET_FLAG, MVT::Other, Chain); |
| 1309 | } |
| 1310 | |
| 1311 | |
| 1312 | //===----------------------------------------------------------------------===// |
| 1313 | // Vector related lowering: |
| 1314 | //===----------------------------------------------------------------------===// |
| 1315 | |
| 1316 | static ConstantSDNode * |
| 1317 | getVecImm(SDNode *N) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1318 | SDValue OpVal(0, 0); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1319 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1320 | // Check to see if this buildvec has a single non-undef value in its elements. |
| 1321 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { |
| 1322 | if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1323 | if (OpVal.getNode() == 0) |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1324 | OpVal = N->getOperand(i); |
| 1325 | else if (OpVal != N->getOperand(i)) |
| 1326 | return 0; |
| 1327 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1328 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1329 | if (OpVal.getNode() != 0) { |
Scott Michel | 19fd42a | 2008-11-11 03:06:06 +0000 | [diff] [blame] | 1330 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1331 | return CN; |
| 1332 | } |
| 1333 | } |
| 1334 | |
| 1335 | return 0; // All UNDEF: use implicit def.; not Constant node |
| 1336 | } |
| 1337 | |
| 1338 | /// get_vec_i18imm - Test if this vector is a vector filled with the same value |
| 1339 | /// and the value fits into an unsigned 18-bit constant, and if so, return the |
| 1340 | /// constant |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1341 | SDValue SPU::get_vec_u18imm(SDNode *N, SelectionDAG &DAG, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1342 | MVT ValueType) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1343 | if (ConstantSDNode *CN = getVecImm(N)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1344 | uint64_t Value = CN->getZExtValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1345 | if (ValueType == MVT::i64) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1346 | uint64_t UValue = CN->getZExtValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1347 | uint32_t upper = uint32_t(UValue >> 32); |
| 1348 | uint32_t lower = uint32_t(UValue); |
| 1349 | if (upper != lower) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1350 | return SDValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1351 | Value = Value >> 32; |
| 1352 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1353 | if (Value <= 0x3ffff) |
Dan Gohman | fa210d8 | 2008-11-05 02:06:09 +0000 | [diff] [blame] | 1354 | return DAG.getTargetConstant(Value, ValueType); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1355 | } |
| 1356 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1357 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1358 | } |
| 1359 | |
| 1360 | /// get_vec_i16imm - Test if this vector is a vector filled with the same value |
| 1361 | /// and the value fits into a signed 16-bit constant, and if so, return the |
| 1362 | /// constant |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1363 | SDValue SPU::get_vec_i16imm(SDNode *N, SelectionDAG &DAG, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1364 | MVT ValueType) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1365 | if (ConstantSDNode *CN = getVecImm(N)) { |
Dan Gohman | 7810bfe | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 1366 | int64_t Value = CN->getSExtValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1367 | if (ValueType == MVT::i64) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1368 | uint64_t UValue = CN->getZExtValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1369 | uint32_t upper = uint32_t(UValue >> 32); |
| 1370 | uint32_t lower = uint32_t(UValue); |
| 1371 | if (upper != lower) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1372 | return SDValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1373 | Value = Value >> 32; |
| 1374 | } |
Scott Michel | ad2715e | 2008-03-05 23:02:02 +0000 | [diff] [blame] | 1375 | if (Value >= -(1 << 15) && Value <= ((1 << 15) - 1)) { |
Dan Gohman | fa210d8 | 2008-11-05 02:06:09 +0000 | [diff] [blame] | 1376 | return DAG.getTargetConstant(Value, ValueType); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1377 | } |
| 1378 | } |
| 1379 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1380 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1381 | } |
| 1382 | |
| 1383 | /// get_vec_i10imm - Test if this vector is a vector filled with the same value |
| 1384 | /// and the value fits into a signed 10-bit constant, and if so, return the |
| 1385 | /// constant |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1386 | SDValue SPU::get_vec_i10imm(SDNode *N, SelectionDAG &DAG, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1387 | MVT ValueType) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1388 | if (ConstantSDNode *CN = getVecImm(N)) { |
Dan Gohman | 7810bfe | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 1389 | int64_t Value = CN->getSExtValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1390 | if (ValueType == MVT::i64) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1391 | uint64_t UValue = CN->getZExtValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1392 | uint32_t upper = uint32_t(UValue >> 32); |
| 1393 | uint32_t lower = uint32_t(UValue); |
| 1394 | if (upper != lower) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1395 | return SDValue(); |
Scott Michel | 4cb8bd8 | 2008-03-06 04:02:54 +0000 | [diff] [blame] | 1396 | Value = Value >> 32; |
| 1397 | } |
Scott Michel | ad2715e | 2008-03-05 23:02:02 +0000 | [diff] [blame] | 1398 | if (isS10Constant(Value)) |
Dan Gohman | fa210d8 | 2008-11-05 02:06:09 +0000 | [diff] [blame] | 1399 | return DAG.getTargetConstant(Value, ValueType); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1400 | } |
| 1401 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1402 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | /// get_vec_i8imm - Test if this vector is a vector filled with the same value |
| 1406 | /// and the value fits into a signed 8-bit constant, and if so, return the |
| 1407 | /// constant. |
| 1408 | /// |
| 1409 | /// @note: The incoming vector is v16i8 because that's the only way we can load |
| 1410 | /// constant vectors. Thus, we test to see if the upper and lower bytes are the |
| 1411 | /// same value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1412 | SDValue SPU::get_vec_i8imm(SDNode *N, SelectionDAG &DAG, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1413 | MVT ValueType) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1414 | if (ConstantSDNode *CN = getVecImm(N)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1415 | int Value = (int) CN->getZExtValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1416 | if (ValueType == MVT::i16 |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1417 | && Value <= 0xffff /* truncated from uint64_t */ |
| 1418 | && ((short) Value >> 8) == ((short) Value & 0xff)) |
Dan Gohman | fa210d8 | 2008-11-05 02:06:09 +0000 | [diff] [blame] | 1419 | return DAG.getTargetConstant(Value & 0xff, ValueType); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1420 | else if (ValueType == MVT::i8 |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1421 | && (Value & 0xff) == Value) |
Dan Gohman | fa210d8 | 2008-11-05 02:06:09 +0000 | [diff] [blame] | 1422 | return DAG.getTargetConstant(Value, ValueType); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1423 | } |
| 1424 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1425 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1426 | } |
| 1427 | |
| 1428 | /// get_ILHUvec_imm - Test if this vector is a vector filled with the same value |
| 1429 | /// and the value fits into a signed 16-bit constant, and if so, return the |
| 1430 | /// constant |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1431 | SDValue SPU::get_ILHUvec_imm(SDNode *N, SelectionDAG &DAG, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1432 | MVT ValueType) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1433 | if (ConstantSDNode *CN = getVecImm(N)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1434 | uint64_t Value = CN->getZExtValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1435 | if ((ValueType == MVT::i32 |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1436 | && ((unsigned) Value & 0xffff0000) == (unsigned) Value) |
| 1437 | || (ValueType == MVT::i64 && (Value & 0xffff0000) == Value)) |
Dan Gohman | fa210d8 | 2008-11-05 02:06:09 +0000 | [diff] [blame] | 1438 | return DAG.getTargetConstant(Value >> 16, ValueType); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1439 | } |
| 1440 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1441 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | /// get_v4i32_imm - Catch-all for general 32-bit constant vectors |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1445 | SDValue SPU::get_v4i32_imm(SDNode *N, SelectionDAG &DAG) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1446 | if (ConstantSDNode *CN = getVecImm(N)) { |
Dan Gohman | fa210d8 | 2008-11-05 02:06:09 +0000 | [diff] [blame] | 1447 | return DAG.getTargetConstant((unsigned) CN->getZExtValue(), MVT::i32); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1448 | } |
| 1449 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1450 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1451 | } |
| 1452 | |
| 1453 | /// get_v4i32_imm - Catch-all for general 64-bit constant vectors |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1454 | SDValue SPU::get_v2i64_imm(SDNode *N, SelectionDAG &DAG) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1455 | if (ConstantSDNode *CN = getVecImm(N)) { |
Dan Gohman | fa210d8 | 2008-11-05 02:06:09 +0000 | [diff] [blame] | 1456 | return DAG.getTargetConstant((unsigned) CN->getZExtValue(), MVT::i64); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1457 | } |
| 1458 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1459 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1460 | } |
| 1461 | |
| 1462 | // If this is a vector of constants or undefs, get the bits. A bit in |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1463 | // UndefBits is set if the corresponding element of the vector is an |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1464 | // ISD::UNDEF value. For undefs, the corresponding VectorBits values are |
| 1465 | // zero. Return true if this is not an array of constants, false if it is. |
| 1466 | // |
| 1467 | static bool GetConstantBuildVectorBits(SDNode *BV, uint64_t VectorBits[2], |
| 1468 | uint64_t UndefBits[2]) { |
| 1469 | // Start with zero'd results. |
| 1470 | VectorBits[0] = VectorBits[1] = UndefBits[0] = UndefBits[1] = 0; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1471 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1472 | unsigned EltBitSize = BV->getOperand(0).getValueType().getSizeInBits(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1473 | for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1474 | SDValue OpVal = BV->getOperand(i); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1475 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1476 | unsigned PartNo = i >= e/2; // In the upper 128 bits? |
| 1477 | unsigned SlotNo = e/2 - (i & (e/2-1))-1; // Which subpiece of the uint64_t. |
| 1478 | |
| 1479 | uint64_t EltBits = 0; |
| 1480 | if (OpVal.getOpcode() == ISD::UNDEF) { |
| 1481 | uint64_t EltUndefBits = ~0ULL >> (64-EltBitSize); |
| 1482 | UndefBits[PartNo] |= EltUndefBits << (SlotNo*EltBitSize); |
| 1483 | continue; |
Scott Michel | 19fd42a | 2008-11-11 03:06:06 +0000 | [diff] [blame] | 1484 | } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1485 | EltBits = CN->getZExtValue() & (~0ULL >> (64-EltBitSize)); |
Scott Michel | 19fd42a | 2008-11-11 03:06:06 +0000 | [diff] [blame] | 1486 | } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1487 | const APFloat &apf = CN->getValueAPF(); |
| 1488 | EltBits = (CN->getValueType(0) == MVT::f32 |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1489 | ? FloatToBits(apf.convertToFloat()) |
| 1490 | : DoubleToBits(apf.convertToDouble())); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1491 | } else { |
| 1492 | // Nonconstant element. |
| 1493 | return true; |
| 1494 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1495 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1496 | VectorBits[PartNo] |= EltBits << (SlotNo*EltBitSize); |
| 1497 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1498 | |
| 1499 | //printf("%llx %llx %llx %llx\n", |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1500 | // VectorBits[0], VectorBits[1], UndefBits[0], UndefBits[1]); |
| 1501 | return false; |
| 1502 | } |
| 1503 | |
| 1504 | /// If this is a splat (repetition) of a value across the whole vector, return |
| 1505 | /// the smallest size that splats it. For example, "0x01010101010101..." is a |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1506 | /// splat of 0x01, 0x0101, and 0x01010101. We return SplatBits = 0x01 and |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1507 | /// SplatSize = 1 byte. |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1508 | static bool isConstantSplat(const uint64_t Bits128[2], |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1509 | const uint64_t Undef128[2], |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1510 | int MinSplatBits, |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1511 | uint64_t &SplatBits, uint64_t &SplatUndef, |
| 1512 | int &SplatSize) { |
| 1513 | // Don't let undefs prevent splats from matching. See if the top 64-bits are |
| 1514 | // the same as the lower 64-bits, ignoring undefs. |
| 1515 | uint64_t Bits64 = Bits128[0] | Bits128[1]; |
| 1516 | uint64_t Undef64 = Undef128[0] & Undef128[1]; |
| 1517 | uint32_t Bits32 = uint32_t(Bits64) | uint32_t(Bits64 >> 32); |
| 1518 | uint32_t Undef32 = uint32_t(Undef64) & uint32_t(Undef64 >> 32); |
| 1519 | uint16_t Bits16 = uint16_t(Bits32) | uint16_t(Bits32 >> 16); |
| 1520 | uint16_t Undef16 = uint16_t(Undef32) & uint16_t(Undef32 >> 16); |
| 1521 | |
| 1522 | if ((Bits128[0] & ~Undef128[1]) == (Bits128[1] & ~Undef128[0])) { |
| 1523 | if (MinSplatBits < 64) { |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1524 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1525 | // Check that the top 32-bits are the same as the lower 32-bits, ignoring |
| 1526 | // undefs. |
| 1527 | if ((Bits64 & (~Undef64 >> 32)) == ((Bits64 >> 32) & ~Undef64)) { |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1528 | if (MinSplatBits < 32) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1529 | |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1530 | // If the top 16-bits are different than the lower 16-bits, ignoring |
| 1531 | // undefs, we have an i32 splat. |
| 1532 | if ((Bits32 & (~Undef32 >> 16)) == ((Bits32 >> 16) & ~Undef32)) { |
| 1533 | if (MinSplatBits < 16) { |
| 1534 | // If the top 8-bits are different than the lower 8-bits, ignoring |
| 1535 | // undefs, we have an i16 splat. |
Gabor Greif | 93c53e5 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 1536 | if ((Bits16 & (uint16_t(~Undef16) >> 8)) |
| 1537 | == ((Bits16 >> 8) & ~Undef16)) { |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1538 | // Otherwise, we have an 8-bit splat. |
| 1539 | SplatBits = uint8_t(Bits16) | uint8_t(Bits16 >> 8); |
| 1540 | SplatUndef = uint8_t(Undef16) & uint8_t(Undef16 >> 8); |
| 1541 | SplatSize = 1; |
| 1542 | return true; |
| 1543 | } |
| 1544 | } else { |
| 1545 | SplatBits = Bits16; |
| 1546 | SplatUndef = Undef16; |
| 1547 | SplatSize = 2; |
| 1548 | return true; |
| 1549 | } |
| 1550 | } |
| 1551 | } else { |
| 1552 | SplatBits = Bits32; |
| 1553 | SplatUndef = Undef32; |
| 1554 | SplatSize = 4; |
| 1555 | return true; |
| 1556 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1557 | } |
| 1558 | } else { |
| 1559 | SplatBits = Bits128[0]; |
| 1560 | SplatUndef = Undef128[0]; |
| 1561 | SplatSize = 8; |
| 1562 | return true; |
| 1563 | } |
| 1564 | } |
| 1565 | |
| 1566 | return false; // Can't be a splat if two pieces don't match. |
| 1567 | } |
| 1568 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 1569 | //! Lower a BUILD_VECTOR instruction creatively: |
| 1570 | SDValue |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1571 | LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1572 | MVT VT = Op.getValueType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1573 | // If this is a vector of constants or undefs, get the bits. A bit in |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1574 | // UndefBits is set if the corresponding element of the vector is an |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1575 | // ISD::UNDEF value. For undefs, the corresponding VectorBits values are |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1576 | // zero. |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1577 | uint64_t VectorBits[2]; |
| 1578 | uint64_t UndefBits[2]; |
| 1579 | uint64_t SplatBits, SplatUndef; |
| 1580 | int SplatSize; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1581 | if (GetConstantBuildVectorBits(Op.getNode(), VectorBits, UndefBits) |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1582 | || !isConstantSplat(VectorBits, UndefBits, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1583 | VT.getVectorElementType().getSizeInBits(), |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1584 | SplatBits, SplatUndef, SplatSize)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1585 | return SDValue(); // Not a constant vector, not a splat. |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1586 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1587 | switch (VT.getSimpleVT()) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1588 | default: |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 1589 | cerr << "CellSPU: Unhandled VT in LowerBUILD_VECTOR, VT = " |
| 1590 | << VT.getMVTString() |
| 1591 | << "\n"; |
| 1592 | abort(); |
| 1593 | /*NOTREACHED*/ |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1594 | case MVT::v4f32: { |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1595 | uint32_t Value32 = uint32_t(SplatBits); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1596 | assert(SplatSize == 4 |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1597 | && "LowerBUILD_VECTOR: Unexpected floating point vector element."); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1598 | // NOTE: pretend the constant is an integer. LLVM won't load FP constants |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1599 | SDValue T = DAG.getConstant(Value32, MVT::i32); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1600 | return DAG.getNode(ISD::BIT_CONVERT, MVT::v4f32, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1601 | DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, T, T, T, T)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1602 | break; |
| 1603 | } |
| 1604 | case MVT::v2f64: { |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1605 | uint64_t f64val = uint64_t(SplatBits); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1606 | assert(SplatSize == 8 |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 1607 | && "LowerBUILD_VECTOR: 64-bit float vector size > 8 bytes."); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1608 | // NOTE: pretend the constant is an integer. LLVM won't load FP constants |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1609 | SDValue T = DAG.getConstant(f64val, MVT::i64); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1610 | return DAG.getNode(ISD::BIT_CONVERT, MVT::v2f64, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1611 | DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i64, T, T)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1612 | break; |
| 1613 | } |
| 1614 | case MVT::v16i8: { |
| 1615 | // 8-bit constants have to be expanded to 16-bits |
| 1616 | unsigned short Value16 = SplatBits | (SplatBits << 8); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1617 | SDValue Ops[8]; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1618 | for (int i = 0; i < 8; ++i) |
| 1619 | Ops[i] = DAG.getConstant(Value16, MVT::i16); |
| 1620 | return DAG.getNode(ISD::BIT_CONVERT, VT, |
| 1621 | DAG.getNode(ISD::BUILD_VECTOR, MVT::v8i16, Ops, 8)); |
| 1622 | } |
| 1623 | case MVT::v8i16: { |
| 1624 | unsigned short Value16; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1625 | if (SplatSize == 2) |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1626 | Value16 = (unsigned short) (SplatBits & 0xffff); |
| 1627 | else |
| 1628 | Value16 = (unsigned short) (SplatBits | (SplatBits << 8)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1629 | SDValue T = DAG.getConstant(Value16, VT.getVectorElementType()); |
| 1630 | SDValue Ops[8]; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1631 | for (int i = 0; i < 8; ++i) Ops[i] = T; |
| 1632 | return DAG.getNode(ISD::BUILD_VECTOR, VT, Ops, 8); |
| 1633 | } |
| 1634 | case MVT::v4i32: { |
| 1635 | unsigned int Value = SplatBits; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1636 | SDValue T = DAG.getConstant(Value, VT.getVectorElementType()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1637 | return DAG.getNode(ISD::BUILD_VECTOR, VT, T, T, T, T); |
| 1638 | } |
Scott Michel | 21213e7 | 2009-01-06 23:10:38 +0000 | [diff] [blame] | 1639 | case MVT::v2i32: { |
| 1640 | unsigned int Value = SplatBits; |
| 1641 | SDValue T = DAG.getConstant(Value, VT.getVectorElementType()); |
| 1642 | return DAG.getNode(ISD::BUILD_VECTOR, VT, T, T); |
| 1643 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1644 | case MVT::v2i64: { |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1645 | return SPU::LowerSplat_v2i64(VT, DAG, SplatBits); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1646 | } |
| 1647 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1648 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1649 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1650 | } |
| 1651 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1652 | SDValue |
| 1653 | SPU::LowerSplat_v2i64(MVT OpVT, SelectionDAG& DAG, uint64_t SplatVal) { |
| 1654 | uint32_t upper = uint32_t(SplatVal >> 32); |
| 1655 | uint32_t lower = uint32_t(SplatVal); |
| 1656 | |
| 1657 | if (upper == lower) { |
| 1658 | // Magic constant that can be matched by IL, ILA, et. al. |
| 1659 | SDValue Val = DAG.getTargetConstant(upper, MVT::i32); |
| 1660 | return DAG.getNode(ISD::BIT_CONVERT, OpVT, |
| 1661 | DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, |
| 1662 | Val, Val, Val, Val)); |
| 1663 | } else { |
| 1664 | SDValue LO32; |
| 1665 | SDValue HI32; |
| 1666 | SmallVector<SDValue, 16> ShufBytes; |
| 1667 | SDValue Result; |
| 1668 | bool upper_special, lower_special; |
| 1669 | |
| 1670 | // NOTE: This code creates common-case shuffle masks that can be easily |
| 1671 | // detected as common expressions. It is not attempting to create highly |
| 1672 | // specialized masks to replace any and all 0's, 0xff's and 0x80's. |
| 1673 | |
| 1674 | // Detect if the upper or lower half is a special shuffle mask pattern: |
| 1675 | upper_special = (upper == 0 || upper == 0xffffffff || upper == 0x80000000); |
| 1676 | lower_special = (lower == 0 || lower == 0xffffffff || lower == 0x80000000); |
| 1677 | |
| 1678 | // Create lower vector if not a special pattern |
| 1679 | if (!lower_special) { |
| 1680 | SDValue LO32C = DAG.getConstant(lower, MVT::i32); |
| 1681 | LO32 = DAG.getNode(ISD::BIT_CONVERT, OpVT, |
| 1682 | DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, |
| 1683 | LO32C, LO32C, LO32C, LO32C)); |
| 1684 | } |
| 1685 | |
| 1686 | // Create upper vector if not a special pattern |
| 1687 | if (!upper_special) { |
| 1688 | SDValue HI32C = DAG.getConstant(upper, MVT::i32); |
| 1689 | HI32 = DAG.getNode(ISD::BIT_CONVERT, OpVT, |
| 1690 | DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, |
| 1691 | HI32C, HI32C, HI32C, HI32C)); |
| 1692 | } |
| 1693 | |
| 1694 | // If either upper or lower are special, then the two input operands are |
| 1695 | // the same (basically, one of them is a "don't care") |
| 1696 | if (lower_special) |
| 1697 | LO32 = HI32; |
| 1698 | if (upper_special) |
| 1699 | HI32 = LO32; |
| 1700 | if (lower_special && upper_special) { |
| 1701 | // Unhappy situation... both upper and lower are special, so punt with |
| 1702 | // a target constant: |
| 1703 | SDValue Zero = DAG.getConstant(0, MVT::i32); |
| 1704 | HI32 = LO32 = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Zero, Zero, |
| 1705 | Zero, Zero); |
| 1706 | } |
| 1707 | |
| 1708 | for (int i = 0; i < 4; ++i) { |
| 1709 | uint64_t val = 0; |
| 1710 | for (int j = 0; j < 4; ++j) { |
| 1711 | SDValue V; |
| 1712 | bool process_upper, process_lower; |
| 1713 | val <<= 8; |
| 1714 | process_upper = (upper_special && (i & 1) == 0); |
| 1715 | process_lower = (lower_special && (i & 1) == 1); |
| 1716 | |
| 1717 | if (process_upper || process_lower) { |
| 1718 | if ((process_upper && upper == 0) |
| 1719 | || (process_lower && lower == 0)) |
| 1720 | val |= 0x80; |
| 1721 | else if ((process_upper && upper == 0xffffffff) |
| 1722 | || (process_lower && lower == 0xffffffff)) |
| 1723 | val |= 0xc0; |
| 1724 | else if ((process_upper && upper == 0x80000000) |
| 1725 | || (process_lower && lower == 0x80000000)) |
| 1726 | val |= (j == 0 ? 0xe0 : 0x80); |
| 1727 | } else |
| 1728 | val |= i * 4 + j + ((i & 1) * 16); |
| 1729 | } |
| 1730 | |
| 1731 | ShufBytes.push_back(DAG.getConstant(val, MVT::i32)); |
| 1732 | } |
| 1733 | |
| 1734 | return DAG.getNode(SPUISD::SHUFB, OpVT, HI32, LO32, |
| 1735 | DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, |
| 1736 | &ShufBytes[0], ShufBytes.size())); |
| 1737 | } |
| 1738 | } |
| 1739 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1740 | /// LowerVECTOR_SHUFFLE - Lower a vector shuffle (V1, V2, V3) to something on |
| 1741 | /// which the Cell can operate. The code inspects V3 to ascertain whether the |
| 1742 | /// permutation vector, V3, is monotonically increasing with one "exception" |
| 1743 | /// element, e.g., (0, 1, _, 3). If this is the case, then generate a |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1744 | /// SHUFFLE_MASK synthetic instruction. Otherwise, spill V3 to the constant pool. |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1745 | /// In either case, the net result is going to eventually invoke SHUFB to |
| 1746 | /// permute/shuffle the bytes from V1 and V2. |
| 1747 | /// \note |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1748 | /// SHUFFLE_MASK is eventually selected as one of the C*D instructions, generate |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1749 | /// control word for byte/halfword/word insertion. This takes care of a single |
| 1750 | /// element move from V2 into V1. |
| 1751 | /// \note |
| 1752 | /// SPUISD::SHUFB is eventually selected as Cell's <i>shufb</i> instructions. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1753 | static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) { |
| 1754 | SDValue V1 = Op.getOperand(0); |
| 1755 | SDValue V2 = Op.getOperand(1); |
| 1756 | SDValue PermMask = Op.getOperand(2); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1757 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1758 | if (V2.getOpcode() == ISD::UNDEF) V2 = V1; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1759 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1760 | // If we have a single element being moved from V1 to V2, this can be handled |
| 1761 | // using the C*[DX] compute mask instructions, but the vector elements have |
| 1762 | // to be monotonically increasing with one exception element. |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1763 | MVT VecVT = V1.getValueType(); |
| 1764 | MVT EltVT = VecVT.getVectorElementType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1765 | unsigned EltsFromV2 = 0; |
| 1766 | unsigned V2Elt = 0; |
| 1767 | unsigned V2EltIdx0 = 0; |
| 1768 | unsigned CurrElt = 0; |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1769 | unsigned MaxElts = VecVT.getVectorNumElements(); |
| 1770 | unsigned PrevElt = 0; |
| 1771 | unsigned V0Elt = 0; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1772 | bool monotonic = true; |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1773 | bool rotate = true; |
| 1774 | |
| 1775 | if (EltVT == MVT::i8) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1776 | V2EltIdx0 = 16; |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1777 | } else if (EltVT == MVT::i16) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1778 | V2EltIdx0 = 8; |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1779 | } else if (EltVT == MVT::i32 || EltVT == MVT::f32) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1780 | V2EltIdx0 = 4; |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1781 | } else if (EltVT == MVT::i64 || EltVT == MVT::f64) { |
| 1782 | V2EltIdx0 = 2; |
| 1783 | } else |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1784 | assert(0 && "Unhandled vector type in LowerVECTOR_SHUFFLE"); |
| 1785 | |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1786 | for (unsigned i = 0; i != PermMask.getNumOperands(); ++i) { |
| 1787 | if (PermMask.getOperand(i).getOpcode() != ISD::UNDEF) { |
| 1788 | unsigned SrcElt = cast<ConstantSDNode > (PermMask.getOperand(i))->getZExtValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1789 | |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1790 | if (monotonic) { |
| 1791 | if (SrcElt >= V2EltIdx0) { |
| 1792 | if (1 >= (++EltsFromV2)) { |
| 1793 | V2Elt = (V2EltIdx0 - SrcElt) << 2; |
| 1794 | } |
| 1795 | } else if (CurrElt != SrcElt) { |
| 1796 | monotonic = false; |
| 1797 | } |
| 1798 | |
| 1799 | ++CurrElt; |
| 1800 | } |
| 1801 | |
| 1802 | if (rotate) { |
| 1803 | if (PrevElt > 0 && SrcElt < MaxElts) { |
| 1804 | if ((PrevElt == SrcElt - 1) |
| 1805 | || (PrevElt == MaxElts - 1 && SrcElt == 0)) { |
| 1806 | PrevElt = SrcElt; |
| 1807 | if (SrcElt == 0) |
| 1808 | V0Elt = i; |
| 1809 | } else { |
| 1810 | rotate = false; |
| 1811 | } |
| 1812 | } else if (PrevElt == 0) { |
| 1813 | // First time through, need to keep track of previous element |
| 1814 | PrevElt = SrcElt; |
| 1815 | } else { |
| 1816 | // This isn't a rotation, takes elements from vector 2 |
| 1817 | rotate = false; |
| 1818 | } |
| 1819 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1820 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1821 | } |
| 1822 | |
| 1823 | if (EltsFromV2 == 1 && monotonic) { |
| 1824 | // Compute mask and shuffle |
| 1825 | MachineFunction &MF = DAG.getMachineFunction(); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 1826 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 1827 | unsigned VReg = RegInfo.createVirtualRegister(&SPU::R32CRegClass); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1828 | MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1829 | // Initialize temporary register to 0 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1830 | SDValue InitTempReg = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1831 | DAG.getCopyToReg(DAG.getEntryNode(), VReg, DAG.getConstant(0, PtrVT)); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1832 | // Copy register's contents as index in SHUFFLE_MASK: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1833 | SDValue ShufMaskOp = |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 1834 | DAG.getNode(SPUISD::SHUFFLE_MASK, MVT::v4i32, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1835 | DAG.getTargetConstant(V2Elt, MVT::i32), |
| 1836 | DAG.getCopyFromReg(InitTempReg, VReg, PtrVT)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1837 | // Use shuffle mask in SHUFB synthetic instruction: |
| 1838 | return DAG.getNode(SPUISD::SHUFB, V1.getValueType(), V2, V1, ShufMaskOp); |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1839 | } else if (rotate) { |
| 1840 | int rotamt = (MaxElts - V0Elt) * EltVT.getSizeInBits()/8; |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 1841 | |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1842 | return DAG.getNode(SPUISD::ROTBYTES_LEFT, V1.getValueType(), |
| 1843 | V1, DAG.getConstant(rotamt, MVT::i16)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1844 | } else { |
Gabor Greif | 93c53e5 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 1845 | // Convert the SHUFFLE_VECTOR mask's input element units to the |
| 1846 | // actual bytes. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1847 | unsigned BytesPerElement = EltVT.getSizeInBits()/8; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1848 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1849 | SmallVector<SDValue, 16> ResultMask; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1850 | for (unsigned i = 0, e = PermMask.getNumOperands(); i != e; ++i) { |
| 1851 | unsigned SrcElt; |
| 1852 | if (PermMask.getOperand(i).getOpcode() == ISD::UNDEF) |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1853 | SrcElt = 0; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1854 | else |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1855 | SrcElt = cast<ConstantSDNode>(PermMask.getOperand(i))->getZExtValue(); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1856 | |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 1857 | for (unsigned j = 0; j < BytesPerElement; ++j) { |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1858 | ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j, |
| 1859 | MVT::i8)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1860 | } |
| 1861 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 1862 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1863 | SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v16i8, |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 1864 | &ResultMask[0], ResultMask.size()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1865 | return DAG.getNode(SPUISD::SHUFB, V1.getValueType(), V1, V2, VPermMask); |
| 1866 | } |
| 1867 | } |
| 1868 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1869 | static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) { |
| 1870 | SDValue Op0 = Op.getOperand(0); // Op0 = the scalar |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1871 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1872 | if (Op0.getNode()->getOpcode() == ISD::Constant) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1873 | // For a constant, build the appropriate constant vector, which will |
| 1874 | // eventually simplify to a vector register load. |
| 1875 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1876 | ConstantSDNode *CN = cast<ConstantSDNode>(Op0.getNode()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1877 | SmallVector<SDValue, 16> ConstVecValues; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1878 | MVT VT; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1879 | size_t n_copies; |
| 1880 | |
| 1881 | // Create a constant vector: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1882 | switch (Op.getValueType().getSimpleVT()) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1883 | default: assert(0 && "Unexpected constant value type in " |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1884 | "LowerSCALAR_TO_VECTOR"); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1885 | case MVT::v16i8: n_copies = 16; VT = MVT::i8; break; |
| 1886 | case MVT::v8i16: n_copies = 8; VT = MVT::i16; break; |
| 1887 | case MVT::v4i32: n_copies = 4; VT = MVT::i32; break; |
| 1888 | case MVT::v4f32: n_copies = 4; VT = MVT::f32; break; |
| 1889 | case MVT::v2i64: n_copies = 2; VT = MVT::i64; break; |
| 1890 | case MVT::v2f64: n_copies = 2; VT = MVT::f64; break; |
| 1891 | } |
| 1892 | |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1893 | SDValue CValue = DAG.getConstant(CN->getZExtValue(), VT); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1894 | for (size_t j = 0; j < n_copies; ++j) |
| 1895 | ConstVecValues.push_back(CValue); |
| 1896 | |
| 1897 | return DAG.getNode(ISD::BUILD_VECTOR, Op.getValueType(), |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 1898 | &ConstVecValues[0], ConstVecValues.size()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1899 | } else { |
| 1900 | // Otherwise, copy the value from one register to another: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1901 | switch (Op0.getValueType().getSimpleVT()) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1902 | default: assert(0 && "Unexpected value type in LowerSCALAR_TO_VECTOR"); |
| 1903 | case MVT::i8: |
| 1904 | case MVT::i16: |
| 1905 | case MVT::i32: |
| 1906 | case MVT::i64: |
| 1907 | case MVT::f32: |
| 1908 | case MVT::f64: |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 1909 | return DAG.getNode(SPUISD::PREFSLOT2VEC, Op.getValueType(), Op0, Op0); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1910 | } |
| 1911 | } |
| 1912 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1913 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1914 | } |
| 1915 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1916 | static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1917 | MVT VT = Op.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1918 | SDValue N = Op.getOperand(0); |
| 1919 | SDValue Elt = Op.getOperand(1); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1920 | SDValue retval; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1921 | |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1922 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) { |
| 1923 | // Constant argument: |
| 1924 | int EltNo = (int) C->getZExtValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1925 | |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1926 | // sanity checks: |
| 1927 | if (VT == MVT::i8 && EltNo >= 16) |
| 1928 | assert(0 && "SPU LowerEXTRACT_VECTOR_ELT: i8 extraction slot > 15"); |
| 1929 | else if (VT == MVT::i16 && EltNo >= 8) |
| 1930 | assert(0 && "SPU LowerEXTRACT_VECTOR_ELT: i16 extraction slot > 7"); |
| 1931 | else if (VT == MVT::i32 && EltNo >= 4) |
| 1932 | assert(0 && "SPU LowerEXTRACT_VECTOR_ELT: i32 extraction slot > 4"); |
| 1933 | else if (VT == MVT::i64 && EltNo >= 2) |
| 1934 | assert(0 && "SPU LowerEXTRACT_VECTOR_ELT: i64 extraction slot > 2"); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1935 | |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1936 | if (EltNo == 0 && (VT == MVT::i32 || VT == MVT::i64)) { |
| 1937 | // i32 and i64: Element 0 is the preferred slot |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 1938 | return DAG.getNode(SPUISD::VEC2PREFSLOT, VT, N); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1939 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1940 | |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1941 | // Need to generate shuffle mask and extract: |
| 1942 | int prefslot_begin = -1, prefslot_end = -1; |
| 1943 | int elt_byte = EltNo * VT.getSizeInBits() / 8; |
| 1944 | |
| 1945 | switch (VT.getSimpleVT()) { |
| 1946 | default: |
| 1947 | assert(false && "Invalid value type!"); |
| 1948 | case MVT::i8: { |
| 1949 | prefslot_begin = prefslot_end = 3; |
| 1950 | break; |
| 1951 | } |
| 1952 | case MVT::i16: { |
| 1953 | prefslot_begin = 2; prefslot_end = 3; |
| 1954 | break; |
| 1955 | } |
| 1956 | case MVT::i32: |
| 1957 | case MVT::f32: { |
| 1958 | prefslot_begin = 0; prefslot_end = 3; |
| 1959 | break; |
| 1960 | } |
| 1961 | case MVT::i64: |
| 1962 | case MVT::f64: { |
| 1963 | prefslot_begin = 0; prefslot_end = 7; |
| 1964 | break; |
| 1965 | } |
| 1966 | } |
| 1967 | |
| 1968 | assert(prefslot_begin != -1 && prefslot_end != -1 && |
| 1969 | "LowerEXTRACT_VECTOR_ELT: preferred slots uninitialized"); |
| 1970 | |
| 1971 | unsigned int ShufBytes[16]; |
| 1972 | for (int i = 0; i < 16; ++i) { |
| 1973 | // zero fill uppper part of preferred slot, don't care about the |
| 1974 | // other slots: |
| 1975 | unsigned int mask_val; |
| 1976 | if (i <= prefslot_end) { |
| 1977 | mask_val = |
| 1978 | ((i < prefslot_begin) |
| 1979 | ? 0x80 |
| 1980 | : elt_byte + (i - prefslot_begin)); |
| 1981 | |
| 1982 | ShufBytes[i] = mask_val; |
| 1983 | } else |
| 1984 | ShufBytes[i] = ShufBytes[i % (prefslot_end + 1)]; |
| 1985 | } |
| 1986 | |
| 1987 | SDValue ShufMask[4]; |
| 1988 | for (unsigned i = 0; i < sizeof(ShufMask)/sizeof(ShufMask[0]); ++i) { |
Scott Michel | cc18827 | 2008-12-04 21:01:44 +0000 | [diff] [blame] | 1989 | unsigned bidx = i * 4; |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 1990 | unsigned int bits = ((ShufBytes[bidx] << 24) | |
| 1991 | (ShufBytes[bidx+1] << 16) | |
| 1992 | (ShufBytes[bidx+2] << 8) | |
| 1993 | ShufBytes[bidx+3]); |
| 1994 | ShufMask[i] = DAG.getConstant(bits, MVT::i32); |
| 1995 | } |
| 1996 | |
| 1997 | SDValue ShufMaskVec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, |
| 1998 | &ShufMask[0], |
| 1999 | sizeof(ShufMask) / sizeof(ShufMask[0])); |
| 2000 | |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2001 | retval = DAG.getNode(SPUISD::VEC2PREFSLOT, VT, |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2002 | DAG.getNode(SPUISD::SHUFB, N.getValueType(), |
| 2003 | N, N, ShufMaskVec)); |
| 2004 | } else { |
| 2005 | // Variable index: Rotate the requested element into slot 0, then replicate |
| 2006 | // slot 0 across the vector |
| 2007 | MVT VecVT = N.getValueType(); |
| 2008 | if (!VecVT.isSimple() || !VecVT.isVector() || !VecVT.is128BitVector()) { |
| 2009 | cerr << "LowerEXTRACT_VECTOR_ELT: Must have a simple, 128-bit vector type!\n"; |
| 2010 | abort(); |
| 2011 | } |
| 2012 | |
| 2013 | // Make life easier by making sure the index is zero-extended to i32 |
| 2014 | if (Elt.getValueType() != MVT::i32) |
| 2015 | Elt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Elt); |
| 2016 | |
| 2017 | // Scale the index to a bit/byte shift quantity |
| 2018 | APInt scaleFactor = |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2019 | APInt(32, uint64_t(16 / N.getValueType().getVectorNumElements()), false); |
| 2020 | unsigned scaleShift = scaleFactor.logBase2(); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2021 | SDValue vecShift; |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2022 | |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2023 | if (scaleShift > 0) { |
| 2024 | // Scale the shift factor: |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2025 | Elt = DAG.getNode(ISD::SHL, MVT::i32, Elt, |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 2026 | DAG.getConstant(scaleShift, MVT::i32)); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2027 | } |
| 2028 | |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2029 | vecShift = DAG.getNode(SPUISD::SHLQUAD_L_BYTES, VecVT, N, Elt); |
| 2030 | |
| 2031 | // Replicate the bytes starting at byte 0 across the entire vector (for |
| 2032 | // consistency with the notion of a unified register set) |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2033 | SDValue replicate; |
| 2034 | |
| 2035 | switch (VT.getSimpleVT()) { |
| 2036 | default: |
| 2037 | cerr << "LowerEXTRACT_VECTOR_ELT(varable): Unhandled vector type\n"; |
| 2038 | abort(); |
| 2039 | /*NOTREACHED*/ |
| 2040 | case MVT::i8: { |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2041 | SDValue factor = DAG.getConstant(0x00000000, MVT::i32); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2042 | replicate = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, factor, factor, |
| 2043 | factor, factor); |
| 2044 | break; |
| 2045 | } |
| 2046 | case MVT::i16: { |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2047 | SDValue factor = DAG.getConstant(0x00010001, MVT::i32); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2048 | replicate = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, factor, factor, |
| 2049 | factor, factor); |
| 2050 | break; |
| 2051 | } |
| 2052 | case MVT::i32: |
| 2053 | case MVT::f32: { |
| 2054 | SDValue factor = DAG.getConstant(0x00010203, MVT::i32); |
| 2055 | replicate = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, factor, factor, |
| 2056 | factor, factor); |
| 2057 | break; |
| 2058 | } |
| 2059 | case MVT::i64: |
| 2060 | case MVT::f64: { |
| 2061 | SDValue loFactor = DAG.getConstant(0x00010203, MVT::i32); |
| 2062 | SDValue hiFactor = DAG.getConstant(0x04050607, MVT::i32); |
| 2063 | replicate = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, loFactor, hiFactor, |
| 2064 | loFactor, hiFactor); |
| 2065 | break; |
| 2066 | } |
| 2067 | } |
| 2068 | |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2069 | retval = DAG.getNode(SPUISD::VEC2PREFSLOT, VT, |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 2070 | DAG.getNode(SPUISD::SHUFB, VecVT, |
| 2071 | vecShift, vecShift, replicate)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2072 | } |
| 2073 | |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2074 | return retval; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2075 | } |
| 2076 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2077 | static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) { |
| 2078 | SDValue VecOp = Op.getOperand(0); |
| 2079 | SDValue ValOp = Op.getOperand(1); |
| 2080 | SDValue IdxOp = Op.getOperand(2); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2081 | MVT VT = Op.getValueType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2082 | |
| 2083 | ConstantSDNode *CN = cast<ConstantSDNode>(IdxOp); |
| 2084 | assert(CN != 0 && "LowerINSERT_VECTOR_ELT: Index is not constant!"); |
| 2085 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2086 | MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 2087 | // Use $sp ($1) because it's always 16-byte aligned and it's available: |
| 2088 | SDValue Pointer = DAG.getNode(SPUISD::IndirectAddr, PtrVT, |
| 2089 | DAG.getRegister(SPU::R1, PtrVT), |
| 2090 | DAG.getConstant(CN->getSExtValue(), PtrVT)); |
| 2091 | SDValue ShufMask = DAG.getNode(SPUISD::SHUFFLE_MASK, VT, Pointer); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2092 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2093 | SDValue result = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2094 | DAG.getNode(SPUISD::SHUFB, VT, |
| 2095 | DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, ValOp), |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 2096 | VecOp, |
Scott Michel | 19c10e6 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 2097 | DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, ShufMask)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2098 | |
| 2099 | return result; |
| 2100 | } |
| 2101 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2102 | static SDValue LowerI8Math(SDValue Op, SelectionDAG &DAG, unsigned Opc, |
| 2103 | const TargetLowering &TLI) |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2104 | { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2105 | SDValue N0 = Op.getOperand(0); // Everything has at least one operand |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2106 | MVT ShiftVT = TLI.getShiftAmountTy(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2107 | |
| 2108 | assert(Op.getValueType() == MVT::i8); |
| 2109 | switch (Opc) { |
| 2110 | default: |
| 2111 | assert(0 && "Unhandled i8 math operator"); |
| 2112 | /*NOTREACHED*/ |
| 2113 | break; |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 2114 | case ISD::ADD: { |
| 2115 | // 8-bit addition: Promote the arguments up to 16-bits and truncate |
| 2116 | // the result: |
| 2117 | SDValue N1 = Op.getOperand(1); |
| 2118 | N0 = DAG.getNode(ISD::SIGN_EXTEND, MVT::i16, N0); |
| 2119 | N1 = DAG.getNode(ISD::SIGN_EXTEND, MVT::i16, N1); |
| 2120 | return DAG.getNode(ISD::TRUNCATE, MVT::i8, |
| 2121 | DAG.getNode(Opc, MVT::i16, N0, N1)); |
| 2122 | |
| 2123 | } |
| 2124 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2125 | case ISD::SUB: { |
| 2126 | // 8-bit subtraction: Promote the arguments up to 16-bits and truncate |
| 2127 | // the result: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2128 | SDValue N1 = Op.getOperand(1); |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 2129 | N0 = DAG.getNode(ISD::SIGN_EXTEND, MVT::i16, N0); |
| 2130 | N1 = DAG.getNode(ISD::SIGN_EXTEND, MVT::i16, N1); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2131 | return DAG.getNode(ISD::TRUNCATE, MVT::i8, |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2132 | DAG.getNode(Opc, MVT::i16, N0, N1)); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2133 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2134 | case ISD::ROTR: |
| 2135 | case ISD::ROTL: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2136 | SDValue N1 = Op.getOperand(1); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2137 | unsigned N1Opc; |
| 2138 | N0 = (N0.getOpcode() != ISD::Constant |
| 2139 | ? DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, N0) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2140 | : DAG.getConstant(cast<ConstantSDNode>(N0)->getZExtValue(), |
| 2141 | MVT::i16)); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2142 | N1Opc = N1.getValueType().bitsLT(ShiftVT) |
Gabor Greif | 93c53e5 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 2143 | ? ISD::ZERO_EXTEND |
| 2144 | : ISD::TRUNCATE; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2145 | N1 = (N1.getOpcode() != ISD::Constant |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2146 | ? DAG.getNode(N1Opc, ShiftVT, N1) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2147 | : DAG.getConstant(cast<ConstantSDNode>(N1)->getZExtValue(), |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2148 | TLI.getShiftAmountTy())); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2149 | SDValue ExpandArg = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2150 | DAG.getNode(ISD::OR, MVT::i16, N0, |
| 2151 | DAG.getNode(ISD::SHL, MVT::i16, |
Duncan Sands | fa7935f | 2008-10-30 19:24:28 +0000 | [diff] [blame] | 2152 | N0, DAG.getConstant(8, MVT::i32))); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2153 | return DAG.getNode(ISD::TRUNCATE, MVT::i8, |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2154 | DAG.getNode(Opc, MVT::i16, ExpandArg, N1)); |
| 2155 | } |
| 2156 | case ISD::SRL: |
| 2157 | case ISD::SHL: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2158 | SDValue N1 = Op.getOperand(1); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2159 | unsigned N1Opc; |
| 2160 | N0 = (N0.getOpcode() != ISD::Constant |
| 2161 | ? DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, N0) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2162 | : DAG.getConstant(cast<ConstantSDNode>(N0)->getZExtValue(), |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2163 | MVT::i32)); |
| 2164 | N1Opc = N1.getValueType().bitsLT(ShiftVT) |
Gabor Greif | 93c53e5 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 2165 | ? ISD::ZERO_EXTEND |
| 2166 | : ISD::TRUNCATE; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2167 | N1 = (N1.getOpcode() != ISD::Constant |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2168 | ? DAG.getNode(N1Opc, ShiftVT, N1) |
| 2169 | : DAG.getConstant(cast<ConstantSDNode>(N1)->getZExtValue(), ShiftVT)); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2170 | return DAG.getNode(ISD::TRUNCATE, MVT::i8, |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2171 | DAG.getNode(Opc, MVT::i16, N0, N1)); |
| 2172 | } |
| 2173 | case ISD::SRA: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2174 | SDValue N1 = Op.getOperand(1); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2175 | unsigned N1Opc; |
| 2176 | N0 = (N0.getOpcode() != ISD::Constant |
| 2177 | ? DAG.getNode(ISD::SIGN_EXTEND, MVT::i16, N0) |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2178 | : DAG.getConstant(cast<ConstantSDNode>(N0)->getSExtValue(), |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2179 | MVT::i16)); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2180 | N1Opc = N1.getValueType().bitsLT(ShiftVT) |
Gabor Greif | 93c53e5 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 2181 | ? ISD::SIGN_EXTEND |
| 2182 | : ISD::TRUNCATE; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2183 | N1 = (N1.getOpcode() != ISD::Constant |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2184 | ? DAG.getNode(N1Opc, ShiftVT, N1) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2185 | : DAG.getConstant(cast<ConstantSDNode>(N1)->getZExtValue(), |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2186 | ShiftVT)); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2187 | return DAG.getNode(ISD::TRUNCATE, MVT::i8, |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2188 | DAG.getNode(Opc, MVT::i16, N0, N1)); |
| 2189 | } |
| 2190 | case ISD::MUL: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2191 | SDValue N1 = Op.getOperand(1); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2192 | unsigned N1Opc; |
| 2193 | N0 = (N0.getOpcode() != ISD::Constant |
| 2194 | ? DAG.getNode(ISD::SIGN_EXTEND, MVT::i16, N0) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2195 | : DAG.getConstant(cast<ConstantSDNode>(N0)->getZExtValue(), |
| 2196 | MVT::i16)); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 2197 | N1Opc = N1.getValueType().bitsLT(MVT::i16) ? ISD::SIGN_EXTEND : ISD::TRUNCATE; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2198 | N1 = (N1.getOpcode() != ISD::Constant |
| 2199 | ? DAG.getNode(N1Opc, MVT::i16, N1) |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2200 | : DAG.getConstant(cast<ConstantSDNode>(N1)->getSExtValue(), |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2201 | MVT::i16)); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2202 | return DAG.getNode(ISD::TRUNCATE, MVT::i8, |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2203 | DAG.getNode(Opc, MVT::i16, N0, N1)); |
| 2204 | break; |
| 2205 | } |
| 2206 | } |
| 2207 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2208 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2209 | } |
| 2210 | |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 2211 | //! Generate the carry-generate shuffle mask. |
| 2212 | SDValue SPU::getCarryGenerateShufMask(SelectionDAG &DAG) { |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2213 | SmallVector<SDValue, 16 > ShufBytes; |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2214 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2215 | // Create the shuffle mask for "rotating" the borrow up one register slot |
| 2216 | // once the borrow is generated. |
| 2217 | ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32)); |
| 2218 | ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32)); |
| 2219 | ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32)); |
| 2220 | ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32)); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2221 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2222 | return DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, |
| 2223 | &ShufBytes[0], ShufBytes.size()); |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 2224 | } |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2225 | |
Scott Michel | 94bd57e | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 2226 | //! Generate the borrow-generate shuffle mask |
| 2227 | SDValue SPU::getBorrowGenerateShufMask(SelectionDAG &DAG) { |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2228 | SmallVector<SDValue, 16 > ShufBytes; |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2229 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2230 | // Create the shuffle mask for "rotating" the borrow up one register slot |
| 2231 | // once the borrow is generated. |
| 2232 | ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32)); |
| 2233 | ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32)); |
| 2234 | ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32)); |
| 2235 | ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32)); |
Scott Michel | 045a145 | 2008-11-24 18:20:46 +0000 | [diff] [blame] | 2236 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2237 | return DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, |
| 2238 | &ShufBytes[0], ShufBytes.size()); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2239 | } |
| 2240 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2241 | //! Lower byte immediate operations for v16i8 vectors: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2242 | static SDValue |
| 2243 | LowerByteImmed(SDValue Op, SelectionDAG &DAG) { |
| 2244 | SDValue ConstVec; |
| 2245 | SDValue Arg; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2246 | MVT VT = Op.getValueType(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2247 | |
| 2248 | ConstVec = Op.getOperand(0); |
| 2249 | Arg = Op.getOperand(1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2250 | if (ConstVec.getNode()->getOpcode() != ISD::BUILD_VECTOR) { |
| 2251 | if (ConstVec.getNode()->getOpcode() == ISD::BIT_CONVERT) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2252 | ConstVec = ConstVec.getOperand(0); |
| 2253 | } else { |
| 2254 | ConstVec = Op.getOperand(1); |
| 2255 | Arg = Op.getOperand(0); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2256 | if (ConstVec.getNode()->getOpcode() == ISD::BIT_CONVERT) { |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2257 | ConstVec = ConstVec.getOperand(0); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2258 | } |
| 2259 | } |
| 2260 | } |
| 2261 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2262 | if (ConstVec.getNode()->getOpcode() == ISD::BUILD_VECTOR) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2263 | uint64_t VectorBits[2]; |
| 2264 | uint64_t UndefBits[2]; |
| 2265 | uint64_t SplatBits, SplatUndef; |
| 2266 | int SplatSize; |
| 2267 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2268 | if (!GetConstantBuildVectorBits(ConstVec.getNode(), VectorBits, UndefBits) |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2269 | && isConstantSplat(VectorBits, UndefBits, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2270 | VT.getVectorElementType().getSizeInBits(), |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2271 | SplatBits, SplatUndef, SplatSize)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2272 | SDValue tcVec[16]; |
| 2273 | SDValue tc = DAG.getTargetConstant(SplatBits & 0xff, MVT::i8); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2274 | const size_t tcVecSize = sizeof(tcVec) / sizeof(tcVec[0]); |
| 2275 | |
| 2276 | // Turn the BUILD_VECTOR into a set of target constants: |
| 2277 | for (size_t i = 0; i < tcVecSize; ++i) |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2278 | tcVec[i] = tc; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2279 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2280 | return DAG.getNode(Op.getNode()->getOpcode(), VT, Arg, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2281 | DAG.getNode(ISD::BUILD_VECTOR, VT, tcVec, tcVecSize)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2282 | } |
| 2283 | } |
Scott Michel | 9de57a9 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 2284 | |
Nate Begeman | 24dc346 | 2008-07-29 19:07:27 +0000 | [diff] [blame] | 2285 | // These operations (AND, OR, XOR) are legal, they just couldn't be custom |
| 2286 | // lowered. Return the operation, rather than a null SDValue. |
| 2287 | return Op; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2288 | } |
| 2289 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2290 | //! Custom lowering for CTPOP (count population) |
| 2291 | /*! |
| 2292 | Custom lowering code that counts the number ones in the input |
| 2293 | operand. SPU has such an instruction, but it counts the number of |
| 2294 | ones per byte, which then have to be accumulated. |
| 2295 | */ |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2296 | static SDValue LowerCTPOP(SDValue Op, SelectionDAG &DAG) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2297 | MVT VT = Op.getValueType(); |
| 2298 | MVT vecVT = MVT::getVectorVT(VT, (128 / VT.getSizeInBits())); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2299 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2300 | switch (VT.getSimpleVT()) { |
| 2301 | default: |
| 2302 | assert(false && "Invalid value type!"); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2303 | case MVT::i8: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2304 | SDValue N = Op.getOperand(0); |
| 2305 | SDValue Elt0 = DAG.getConstant(0, MVT::i32); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2306 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2307 | SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, vecVT, N, N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2308 | SDValue CNTB = DAG.getNode(SPUISD::CNTB, vecVT, Promote); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2309 | |
| 2310 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i8, CNTB, Elt0); |
| 2311 | } |
| 2312 | |
| 2313 | case MVT::i16: { |
| 2314 | MachineFunction &MF = DAG.getMachineFunction(); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 2315 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2316 | |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 2317 | unsigned CNTB_reg = RegInfo.createVirtualRegister(&SPU::R16CRegClass); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2318 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2319 | SDValue N = Op.getOperand(0); |
| 2320 | SDValue Elt0 = DAG.getConstant(0, MVT::i16); |
| 2321 | SDValue Mask0 = DAG.getConstant(0x0f, MVT::i16); |
Duncan Sands | fa7935f | 2008-10-30 19:24:28 +0000 | [diff] [blame] | 2322 | SDValue Shift1 = DAG.getConstant(8, MVT::i32); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2323 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2324 | SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, vecVT, N, N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2325 | SDValue CNTB = DAG.getNode(SPUISD::CNTB, vecVT, Promote); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2326 | |
| 2327 | // CNTB_result becomes the chain to which all of the virtual registers |
| 2328 | // CNTB_reg, SUM1_reg become associated: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2329 | SDValue CNTB_result = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2330 | DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, CNTB, Elt0); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2331 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2332 | SDValue CNTB_rescopy = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2333 | DAG.getCopyToReg(CNTB_result, CNTB_reg, CNTB_result); |
| 2334 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2335 | SDValue Tmp1 = DAG.getCopyFromReg(CNTB_rescopy, CNTB_reg, MVT::i16); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2336 | |
| 2337 | return DAG.getNode(ISD::AND, MVT::i16, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2338 | DAG.getNode(ISD::ADD, MVT::i16, |
| 2339 | DAG.getNode(ISD::SRL, MVT::i16, |
| 2340 | Tmp1, Shift1), |
| 2341 | Tmp1), |
| 2342 | Mask0); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2343 | } |
| 2344 | |
| 2345 | case MVT::i32: { |
| 2346 | MachineFunction &MF = DAG.getMachineFunction(); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 2347 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2348 | |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 2349 | unsigned CNTB_reg = RegInfo.createVirtualRegister(&SPU::R32CRegClass); |
| 2350 | unsigned SUM1_reg = RegInfo.createVirtualRegister(&SPU::R32CRegClass); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2351 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2352 | SDValue N = Op.getOperand(0); |
| 2353 | SDValue Elt0 = DAG.getConstant(0, MVT::i32); |
| 2354 | SDValue Mask0 = DAG.getConstant(0xff, MVT::i32); |
| 2355 | SDValue Shift1 = DAG.getConstant(16, MVT::i32); |
| 2356 | SDValue Shift2 = DAG.getConstant(8, MVT::i32); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2357 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2358 | SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, vecVT, N, N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2359 | SDValue CNTB = DAG.getNode(SPUISD::CNTB, vecVT, Promote); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2360 | |
| 2361 | // CNTB_result becomes the chain to which all of the virtual registers |
| 2362 | // CNTB_reg, SUM1_reg become associated: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2363 | SDValue CNTB_result = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2364 | DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32, CNTB, Elt0); |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2365 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2366 | SDValue CNTB_rescopy = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2367 | DAG.getCopyToReg(CNTB_result, CNTB_reg, CNTB_result); |
| 2368 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2369 | SDValue Comp1 = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2370 | DAG.getNode(ISD::SRL, MVT::i32, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2371 | DAG.getCopyFromReg(CNTB_rescopy, CNTB_reg, MVT::i32), Shift1); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2372 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2373 | SDValue Sum1 = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2374 | DAG.getNode(ISD::ADD, MVT::i32, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2375 | Comp1, DAG.getCopyFromReg(CNTB_rescopy, CNTB_reg, MVT::i32)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2376 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2377 | SDValue Sum1_rescopy = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2378 | DAG.getCopyToReg(CNTB_result, SUM1_reg, Sum1); |
| 2379 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2380 | SDValue Comp2 = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2381 | DAG.getNode(ISD::SRL, MVT::i32, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2382 | DAG.getCopyFromReg(Sum1_rescopy, SUM1_reg, MVT::i32), |
| 2383 | Shift2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2384 | SDValue Sum2 = |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2385 | DAG.getNode(ISD::ADD, MVT::i32, Comp2, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 2386 | DAG.getCopyFromReg(Sum1_rescopy, SUM1_reg, MVT::i32)); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2387 | |
| 2388 | return DAG.getNode(ISD::AND, MVT::i32, Sum2, Mask0); |
| 2389 | } |
| 2390 | |
| 2391 | case MVT::i64: |
| 2392 | break; |
| 2393 | } |
| 2394 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2395 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2396 | } |
| 2397 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2398 | //! Lower ISD::FP_TO_SINT, ISD::FP_TO_UINT for i32 |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2399 | /*! |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2400 | f32->i32 passes through unchanged, whereas f64->i32 expands to a libcall. |
| 2401 | All conversions to i64 are expanded to a libcall. |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2402 | */ |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2403 | static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG, |
| 2404 | SPUTargetLowering &TLI) { |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2405 | MVT OpVT = Op.getValueType(); |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2406 | SDValue Op0 = Op.getOperand(0); |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2407 | MVT Op0VT = Op0.getValueType(); |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2408 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2409 | if ((OpVT == MVT::i32 && Op0VT == MVT::f64) |
| 2410 | || OpVT == MVT::i64) { |
| 2411 | // Convert f32 / f64 to i32 / i64 via libcall. |
| 2412 | RTLIB::Libcall LC = |
| 2413 | (Op.getOpcode() == ISD::FP_TO_SINT) |
| 2414 | ? RTLIB::getFPTOSINT(Op0VT, OpVT) |
| 2415 | : RTLIB::getFPTOUINT(Op0VT, OpVT); |
| 2416 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!"); |
| 2417 | SDValue Dummy; |
| 2418 | return ExpandLibCall(LC, Op, DAG, false, Dummy, TLI); |
| 2419 | } |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2420 | |
Scott Michel | 9de57a9 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 2421 | return Op; // return unmolested, legalized op |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2422 | } |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2423 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2424 | //! Lower ISD::SINT_TO_FP, ISD::UINT_TO_FP for i32 |
| 2425 | /*! |
| 2426 | i32->f32 passes through unchanged, whereas i32->f64 is expanded to a libcall. |
| 2427 | All conversions from i64 are expanded to a libcall. |
| 2428 | */ |
| 2429 | static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG, |
| 2430 | SPUTargetLowering &TLI) { |
| 2431 | MVT OpVT = Op.getValueType(); |
| 2432 | SDValue Op0 = Op.getOperand(0); |
| 2433 | MVT Op0VT = Op0.getValueType(); |
| 2434 | |
| 2435 | if ((OpVT == MVT::f64 && Op0VT == MVT::i32) |
| 2436 | || Op0VT == MVT::i64) { |
| 2437 | // Convert i32, i64 to f64 via libcall: |
| 2438 | RTLIB::Libcall LC = |
| 2439 | (Op.getOpcode() == ISD::SINT_TO_FP) |
| 2440 | ? RTLIB::getSINTTOFP(Op0VT, OpVT) |
| 2441 | : RTLIB::getUINTTOFP(Op0VT, OpVT); |
| 2442 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd int-to-fp conversion!"); |
| 2443 | SDValue Dummy; |
| 2444 | return ExpandLibCall(LC, Op, DAG, false, Dummy, TLI); |
| 2445 | } |
| 2446 | |
Scott Michel | 9de57a9 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 2447 | return Op; // return unmolested, legalized |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2448 | } |
| 2449 | |
| 2450 | //! Lower ISD::SETCC |
| 2451 | /*! |
| 2452 | This handles MVT::f64 (double floating point) condition lowering |
| 2453 | */ |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2454 | static SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG, |
| 2455 | const TargetLowering &TLI) { |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2456 | CondCodeSDNode *CC = dyn_cast<CondCodeSDNode>(Op.getOperand(2)); |
| 2457 | assert(CC != 0 && "LowerSETCC: CondCodeSDNode should not be null here!\n"); |
| 2458 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2459 | SDValue lhs = Op.getOperand(0); |
| 2460 | SDValue rhs = Op.getOperand(1); |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2461 | MVT lhsVT = lhs.getValueType(); |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2462 | assert(lhsVT == MVT::f64 && "LowerSETCC: type other than MVT::64\n"); |
| 2463 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2464 | MVT ccResultVT = TLI.getSetCCResultType(lhs.getValueType()); |
| 2465 | APInt ccResultOnes = APInt::getAllOnesValue(ccResultVT.getSizeInBits()); |
| 2466 | MVT IntVT(MVT::i64); |
| 2467 | |
| 2468 | // Take advantage of the fact that (truncate (sra arg, 32)) is efficiently |
| 2469 | // selected to a NOP: |
| 2470 | SDValue i64lhs = DAG.getNode(ISD::BIT_CONVERT, IntVT, lhs); |
| 2471 | SDValue lhsHi32 = |
| 2472 | DAG.getNode(ISD::TRUNCATE, MVT::i32, |
| 2473 | DAG.getNode(ISD::SRL, IntVT, |
| 2474 | i64lhs, DAG.getConstant(32, MVT::i32))); |
| 2475 | SDValue lhsHi32abs = |
| 2476 | DAG.getNode(ISD::AND, MVT::i32, |
| 2477 | lhsHi32, DAG.getConstant(0x7fffffff, MVT::i32)); |
| 2478 | SDValue lhsLo32 = |
| 2479 | DAG.getNode(ISD::TRUNCATE, MVT::i32, i64lhs); |
| 2480 | |
| 2481 | // SETO and SETUO only use the lhs operand: |
| 2482 | if (CC->get() == ISD::SETO) { |
| 2483 | // Evaluates to true if Op0 is not [SQ]NaN - lowers to the inverse of |
| 2484 | // SETUO |
| 2485 | APInt ccResultAllOnes = APInt::getAllOnesValue(ccResultVT.getSizeInBits()); |
| 2486 | return DAG.getNode(ISD::XOR, ccResultVT, |
| 2487 | DAG.getSetCC(ccResultVT, |
| 2488 | lhs, DAG.getConstantFP(0.0, lhsVT), |
| 2489 | ISD::SETUO), |
| 2490 | DAG.getConstant(ccResultAllOnes, ccResultVT)); |
| 2491 | } else if (CC->get() == ISD::SETUO) { |
| 2492 | // Evaluates to true if Op0 is [SQ]NaN |
| 2493 | return DAG.getNode(ISD::AND, ccResultVT, |
| 2494 | DAG.getSetCC(ccResultVT, |
| 2495 | lhsHi32abs, |
| 2496 | DAG.getConstant(0x7ff00000, MVT::i32), |
| 2497 | ISD::SETGE), |
| 2498 | DAG.getSetCC(ccResultVT, |
| 2499 | lhsLo32, |
| 2500 | DAG.getConstant(0, MVT::i32), |
| 2501 | ISD::SETGT)); |
| 2502 | } |
| 2503 | |
| 2504 | SDValue i64rhs = DAG.getNode(ISD::BIT_CONVERT, IntVT, rhs); |
| 2505 | SDValue rhsHi32 = |
| 2506 | DAG.getNode(ISD::TRUNCATE, MVT::i32, |
| 2507 | DAG.getNode(ISD::SRL, IntVT, |
| 2508 | i64rhs, DAG.getConstant(32, MVT::i32))); |
| 2509 | |
| 2510 | // If a value is negative, subtract from the sign magnitude constant: |
| 2511 | SDValue signMag2TC = DAG.getConstant(0x8000000000000000ULL, IntVT); |
| 2512 | |
| 2513 | // Convert the sign-magnitude representation into 2's complement: |
| 2514 | SDValue lhsSelectMask = DAG.getNode(ISD::SRA, ccResultVT, |
| 2515 | lhsHi32, DAG.getConstant(31, MVT::i32)); |
| 2516 | SDValue lhsSignMag2TC = DAG.getNode(ISD::SUB, IntVT, signMag2TC, i64lhs); |
| 2517 | SDValue lhsSelect = |
| 2518 | DAG.getNode(ISD::SELECT, IntVT, |
| 2519 | lhsSelectMask, lhsSignMag2TC, i64lhs); |
| 2520 | |
| 2521 | SDValue rhsSelectMask = DAG.getNode(ISD::SRA, ccResultVT, |
| 2522 | rhsHi32, DAG.getConstant(31, MVT::i32)); |
| 2523 | SDValue rhsSignMag2TC = DAG.getNode(ISD::SUB, IntVT, signMag2TC, i64rhs); |
| 2524 | SDValue rhsSelect = |
| 2525 | DAG.getNode(ISD::SELECT, IntVT, |
| 2526 | rhsSelectMask, rhsSignMag2TC, i64rhs); |
| 2527 | |
| 2528 | unsigned compareOp; |
| 2529 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2530 | switch (CC->get()) { |
| 2531 | case ISD::SETOEQ: |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2532 | case ISD::SETUEQ: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2533 | compareOp = ISD::SETEQ; break; |
| 2534 | case ISD::SETOGT: |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2535 | case ISD::SETUGT: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2536 | compareOp = ISD::SETGT; break; |
| 2537 | case ISD::SETOGE: |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2538 | case ISD::SETUGE: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2539 | compareOp = ISD::SETGE; break; |
| 2540 | case ISD::SETOLT: |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2541 | case ISD::SETULT: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2542 | compareOp = ISD::SETLT; break; |
| 2543 | case ISD::SETOLE: |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2544 | case ISD::SETULE: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2545 | compareOp = ISD::SETLE; break; |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2546 | case ISD::SETUNE: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2547 | case ISD::SETONE: |
| 2548 | compareOp = ISD::SETNE; break; |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2549 | default: |
| 2550 | cerr << "CellSPU ISel Select: unimplemented f64 condition\n"; |
| 2551 | abort(); |
| 2552 | break; |
| 2553 | } |
| 2554 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2555 | SDValue result = |
| 2556 | DAG.getSetCC(ccResultVT, lhsSelect, rhsSelect, (ISD::CondCode) compareOp); |
| 2557 | |
| 2558 | if ((CC->get() & 0x8) == 0) { |
| 2559 | // Ordered comparison: |
| 2560 | SDValue lhsNaN = DAG.getSetCC(ccResultVT, |
| 2561 | lhs, DAG.getConstantFP(0.0, MVT::f64), |
| 2562 | ISD::SETO); |
| 2563 | SDValue rhsNaN = DAG.getSetCC(ccResultVT, |
| 2564 | rhs, DAG.getConstantFP(0.0, MVT::f64), |
| 2565 | ISD::SETO); |
| 2566 | SDValue ordered = DAG.getNode(ISD::AND, ccResultVT, lhsNaN, rhsNaN); |
| 2567 | |
| 2568 | result = DAG.getNode(ISD::AND, ccResultVT, ordered, result); |
| 2569 | } |
| 2570 | |
| 2571 | return result; |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2572 | } |
| 2573 | |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2574 | //! Lower ISD::SELECT_CC |
| 2575 | /*! |
| 2576 | ISD::SELECT_CC can (generally) be implemented directly on the SPU using the |
| 2577 | SELB instruction. |
| 2578 | |
| 2579 | \note Need to revisit this in the future: if the code path through the true |
| 2580 | and false value computations is longer than the latency of a branch (6 |
| 2581 | cycles), then it would be more advantageous to branch and insert a new basic |
| 2582 | block and branch on the condition. However, this code does not make that |
| 2583 | assumption, given the simplisitc uses so far. |
| 2584 | */ |
| 2585 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2586 | static SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG, |
| 2587 | const TargetLowering &TLI) { |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2588 | MVT VT = Op.getValueType(); |
| 2589 | SDValue lhs = Op.getOperand(0); |
| 2590 | SDValue rhs = Op.getOperand(1); |
| 2591 | SDValue trueval = Op.getOperand(2); |
| 2592 | SDValue falseval = Op.getOperand(3); |
| 2593 | SDValue condition = Op.getOperand(4); |
| 2594 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2595 | // NOTE: SELB's arguments: $rA, $rB, $mask |
| 2596 | // |
| 2597 | // SELB selects bits from $rA where bits in $mask are 0, bits from $rB |
| 2598 | // where bits in $mask are 1. CCond will be inverted, having 1s where the |
| 2599 | // condition was true and 0s where the condition was false. Hence, the |
| 2600 | // arguments to SELB get reversed. |
| 2601 | |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2602 | // Note: Really should be ISD::SELECT instead of SPUISD::SELB, but LLVM's |
| 2603 | // legalizer insists on combining SETCC/SELECT into SELECT_CC, so we end up |
| 2604 | // with another "cannot select select_cc" assert: |
| 2605 | |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 2606 | SDValue compare = DAG.getNode(ISD::SETCC, |
| 2607 | TLI.getSetCCResultType(Op.getValueType()), |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2608 | lhs, rhs, condition); |
| 2609 | return DAG.getNode(SPUISD::SELB, VT, falseval, trueval, compare); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2610 | } |
| 2611 | |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 2612 | //! Custom lower ISD::TRUNCATE |
| 2613 | static SDValue LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) |
| 2614 | { |
| 2615 | MVT VT = Op.getValueType(); |
| 2616 | MVT::SimpleValueType simpleVT = VT.getSimpleVT(); |
| 2617 | MVT VecVT = MVT::getVectorVT(VT, (128 / VT.getSizeInBits())); |
| 2618 | |
| 2619 | SDValue Op0 = Op.getOperand(0); |
| 2620 | MVT Op0VT = Op0.getValueType(); |
| 2621 | MVT Op0VecVT = MVT::getVectorVT(Op0VT, (128 / Op0VT.getSizeInBits())); |
| 2622 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2623 | if (Op0VT.getSimpleVT() == MVT::i128 && simpleVT == MVT::i64) { |
Scott Michel | 52d0001 | 2009-01-03 00:27:53 +0000 | [diff] [blame] | 2624 | // Create shuffle mask, least significant doubleword of quadword |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2625 | unsigned maskHigh = 0x08090a0b; |
| 2626 | unsigned maskLow = 0x0c0d0e0f; |
| 2627 | // Use a shuffle to perform the truncation |
| 2628 | SDValue shufMask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, |
| 2629 | DAG.getConstant(maskHigh, MVT::i32), |
| 2630 | DAG.getConstant(maskLow, MVT::i32), |
| 2631 | DAG.getConstant(maskHigh, MVT::i32), |
| 2632 | DAG.getConstant(maskLow, MVT::i32)); |
| 2633 | |
| 2634 | |
| 2635 | SDValue PromoteScalar = DAG.getNode(SPUISD::PREFSLOT2VEC, Op0VecVT, Op0); |
| 2636 | |
| 2637 | SDValue truncShuffle = DAG.getNode(SPUISD::SHUFB, Op0VecVT, |
| 2638 | PromoteScalar, PromoteScalar, shufMask); |
| 2639 | |
| 2640 | return DAG.getNode(SPUISD::VEC2PREFSLOT, VT, |
| 2641 | DAG.getNode(ISD::BIT_CONVERT, VecVT, truncShuffle)); |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 2642 | } |
| 2643 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2644 | return SDValue(); // Leave the truncate unmolested |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 2645 | } |
| 2646 | |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2647 | //! Custom (target-specific) lowering entry point |
| 2648 | /*! |
| 2649 | This is where LLVM's DAG selection process calls to do target-specific |
| 2650 | lowering of nodes. |
| 2651 | */ |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2652 | SDValue |
| 2653 | SPUTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2654 | { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2655 | unsigned Opc = (unsigned) Op.getOpcode(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2656 | MVT VT = Op.getValueType(); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2657 | |
| 2658 | switch (Opc) { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2659 | default: { |
| 2660 | cerr << "SPUTargetLowering::LowerOperation(): need to lower this!\n"; |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2661 | cerr << "Op.getOpcode() = " << Opc << "\n"; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2662 | cerr << "*Op.getNode():\n"; |
| 2663 | Op.getNode()->dump(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2664 | abort(); |
| 2665 | } |
| 2666 | case ISD::LOAD: |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 2667 | case ISD::EXTLOAD: |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2668 | case ISD::SEXTLOAD: |
| 2669 | case ISD::ZEXTLOAD: |
| 2670 | return LowerLOAD(Op, DAG, SPUTM.getSubtargetImpl()); |
| 2671 | case ISD::STORE: |
| 2672 | return LowerSTORE(Op, DAG, SPUTM.getSubtargetImpl()); |
| 2673 | case ISD::ConstantPool: |
| 2674 | return LowerConstantPool(Op, DAG, SPUTM.getSubtargetImpl()); |
| 2675 | case ISD::GlobalAddress: |
| 2676 | return LowerGlobalAddress(Op, DAG, SPUTM.getSubtargetImpl()); |
| 2677 | case ISD::JumpTable: |
| 2678 | return LowerJumpTable(Op, DAG, SPUTM.getSubtargetImpl()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2679 | case ISD::ConstantFP: |
| 2680 | return LowerConstantFP(Op, DAG); |
| 2681 | case ISD::FORMAL_ARGUMENTS: |
Scott Michel | 58c5818 | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 2682 | return LowerFORMAL_ARGUMENTS(Op, DAG, VarArgsFrameIndex); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2683 | case ISD::CALL: |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 2684 | return LowerCALL(Op, DAG, SPUTM.getSubtargetImpl()); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2685 | case ISD::RET: |
| 2686 | return LowerRET(Op, DAG, getTargetMachine()); |
| 2687 | |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 2688 | // i8, i64 math ops: |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 2689 | case ISD::ADD: |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2690 | case ISD::SUB: |
| 2691 | case ISD::ROTR: |
| 2692 | case ISD::ROTL: |
| 2693 | case ISD::SRL: |
| 2694 | case ISD::SHL: |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 2695 | case ISD::SRA: { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2696 | if (VT == MVT::i8) |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2697 | return LowerI8Math(Op, DAG, Opc, *this); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2698 | break; |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 2699 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2700 | |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2701 | case ISD::FP_TO_SINT: |
| 2702 | case ISD::FP_TO_UINT: |
| 2703 | return LowerFP_TO_INT(Op, DAG, *this); |
| 2704 | |
| 2705 | case ISD::SINT_TO_FP: |
| 2706 | case ISD::UINT_TO_FP: |
| 2707 | return LowerINT_TO_FP(Op, DAG, *this); |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2708 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2709 | // Vector-related lowering. |
| 2710 | case ISD::BUILD_VECTOR: |
Scott Michel | c9c8b2a | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 2711 | return LowerBUILD_VECTOR(Op, DAG); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2712 | case ISD::SCALAR_TO_VECTOR: |
| 2713 | return LowerSCALAR_TO_VECTOR(Op, DAG); |
| 2714 | case ISD::VECTOR_SHUFFLE: |
| 2715 | return LowerVECTOR_SHUFFLE(Op, DAG); |
| 2716 | case ISD::EXTRACT_VECTOR_ELT: |
| 2717 | return LowerEXTRACT_VECTOR_ELT(Op, DAG); |
| 2718 | case ISD::INSERT_VECTOR_ELT: |
| 2719 | return LowerINSERT_VECTOR_ELT(Op, DAG); |
| 2720 | |
| 2721 | // Look for ANDBI, ORBI and XORBI opportunities and lower appropriately: |
| 2722 | case ISD::AND: |
| 2723 | case ISD::OR: |
| 2724 | case ISD::XOR: |
| 2725 | return LowerByteImmed(Op, DAG); |
| 2726 | |
| 2727 | // Vector and i8 multiply: |
| 2728 | case ISD::MUL: |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 2729 | if (VT == MVT::i8) |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2730 | return LowerI8Math(Op, DAG, Opc, *this); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2731 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2732 | case ISD::CTPOP: |
| 2733 | return LowerCTPOP(Op, DAG); |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 2734 | |
| 2735 | case ISD::SELECT_CC: |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2736 | return LowerSELECT_CC(Op, DAG, *this); |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 2737 | |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2738 | case ISD::SETCC: |
| 2739 | return LowerSETCC(Op, DAG, *this); |
| 2740 | |
Scott Michel | b30e8f6 | 2008-12-02 19:53:53 +0000 | [diff] [blame] | 2741 | case ISD::TRUNCATE: |
| 2742 | return LowerTRUNCATE(Op, DAG); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2743 | } |
| 2744 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2745 | return SDValue(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2746 | } |
| 2747 | |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 2748 | void SPUTargetLowering::ReplaceNodeResults(SDNode *N, |
| 2749 | SmallVectorImpl<SDValue>&Results, |
| 2750 | SelectionDAG &DAG) |
Scott Michel | 73ce1c5 | 2008-11-10 23:43:06 +0000 | [diff] [blame] | 2751 | { |
| 2752 | #if 0 |
| 2753 | unsigned Opc = (unsigned) N->getOpcode(); |
| 2754 | MVT OpVT = N->getValueType(0); |
| 2755 | |
| 2756 | switch (Opc) { |
| 2757 | default: { |
| 2758 | cerr << "SPUTargetLowering::ReplaceNodeResults(): need to fix this!\n"; |
| 2759 | cerr << "Op.getOpcode() = " << Opc << "\n"; |
| 2760 | cerr << "*Op.getNode():\n"; |
| 2761 | N->dump(); |
| 2762 | abort(); |
| 2763 | /*NOTREACHED*/ |
| 2764 | } |
| 2765 | } |
| 2766 | #endif |
| 2767 | |
| 2768 | /* Otherwise, return unchanged */ |
Scott Michel | 73ce1c5 | 2008-11-10 23:43:06 +0000 | [diff] [blame] | 2769 | } |
| 2770 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2771 | //===----------------------------------------------------------------------===// |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2772 | // Target Optimization Hooks |
| 2773 | //===----------------------------------------------------------------------===// |
| 2774 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2775 | SDValue |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2776 | SPUTargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const |
| 2777 | { |
| 2778 | #if 0 |
| 2779 | TargetMachine &TM = getTargetMachine(); |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 2780 | #endif |
| 2781 | const SPUSubtarget *ST = SPUTM.getSubtargetImpl(); |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2782 | SelectionDAG &DAG = DCI.DAG; |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 2783 | SDValue Op0 = N->getOperand(0); // everything has at least one operand |
| 2784 | MVT NodeVT = N->getValueType(0); // The node's value type |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2785 | MVT Op0VT = Op0.getValueType(); // The first operand's result |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 2786 | SDValue Result; // Initially, empty result |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2787 | |
| 2788 | switch (N->getOpcode()) { |
| 2789 | default: break; |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 2790 | case ISD::ADD: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2791 | SDValue Op1 = N->getOperand(1); |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 2792 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2793 | if (Op0.getOpcode() == SPUISD::IndirectAddr |
| 2794 | || Op1.getOpcode() == SPUISD::IndirectAddr) { |
| 2795 | // Normalize the operands to reduce repeated code |
| 2796 | SDValue IndirectArg = Op0, AddArg = Op1; |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 2797 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2798 | if (Op1.getOpcode() == SPUISD::IndirectAddr) { |
| 2799 | IndirectArg = Op1; |
| 2800 | AddArg = Op0; |
| 2801 | } |
| 2802 | |
| 2803 | if (isa<ConstantSDNode>(AddArg)) { |
| 2804 | ConstantSDNode *CN0 = cast<ConstantSDNode > (AddArg); |
| 2805 | SDValue IndOp1 = IndirectArg.getOperand(1); |
| 2806 | |
| 2807 | if (CN0->isNullValue()) { |
| 2808 | // (add (SPUindirect <arg>, <arg>), 0) -> |
| 2809 | // (SPUindirect <arg>, <arg>) |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 2810 | |
Scott Michel | 23f2ff7 | 2008-12-04 17:16:59 +0000 | [diff] [blame] | 2811 | #if !defined(NDEBUG) |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2812 | if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 2813 | cerr << "\n" |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2814 | << "Replace: (add (SPUindirect <arg>, <arg>), 0)\n" |
| 2815 | << "With: (SPUindirect <arg>, <arg>)\n"; |
| 2816 | } |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 2817 | #endif |
| 2818 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2819 | return IndirectArg; |
| 2820 | } else if (isa<ConstantSDNode>(IndOp1)) { |
| 2821 | // (add (SPUindirect <arg>, <const>), <const>) -> |
| 2822 | // (SPUindirect <arg>, <const + const>) |
| 2823 | ConstantSDNode *CN1 = cast<ConstantSDNode > (IndOp1); |
| 2824 | int64_t combinedConst = CN0->getSExtValue() + CN1->getSExtValue(); |
| 2825 | SDValue combinedValue = DAG.getConstant(combinedConst, Op0VT); |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 2826 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2827 | #if !defined(NDEBUG) |
| 2828 | if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { |
| 2829 | cerr << "\n" |
| 2830 | << "Replace: (add (SPUindirect <arg>, " << CN1->getSExtValue() |
| 2831 | << "), " << CN0->getSExtValue() << ")\n" |
| 2832 | << "With: (SPUindirect <arg>, " |
| 2833 | << combinedConst << ")\n"; |
| 2834 | } |
| 2835 | #endif |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 2836 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2837 | return DAG.getNode(SPUISD::IndirectAddr, Op0VT, |
| 2838 | IndirectArg, combinedValue); |
| 2839 | } |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 2840 | } |
| 2841 | } |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2842 | break; |
| 2843 | } |
| 2844 | case ISD::SIGN_EXTEND: |
| 2845 | case ISD::ZERO_EXTEND: |
| 2846 | case ISD::ANY_EXTEND: { |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 2847 | if (Op0.getOpcode() == SPUISD::VEC2PREFSLOT && NodeVT == Op0VT) { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2848 | // (any_extend (SPUextract_elt0 <arg>)) -> |
| 2849 | // (SPUextract_elt0 <arg>) |
| 2850 | // Types must match, however... |
Scott Michel | 23f2ff7 | 2008-12-04 17:16:59 +0000 | [diff] [blame] | 2851 | #if !defined(NDEBUG) |
| 2852 | if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 2853 | cerr << "\nReplace: "; |
| 2854 | N->dump(&DAG); |
| 2855 | cerr << "\nWith: "; |
| 2856 | Op0.getNode()->dump(&DAG); |
| 2857 | cerr << "\n"; |
Scott Michel | 23f2ff7 | 2008-12-04 17:16:59 +0000 | [diff] [blame] | 2858 | } |
Scott Michel | 30ee7df | 2008-12-04 03:02:42 +0000 | [diff] [blame] | 2859 | #endif |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2860 | |
| 2861 | return Op0; |
| 2862 | } |
| 2863 | break; |
| 2864 | } |
| 2865 | case SPUISD::IndirectAddr: { |
| 2866 | if (!ST->usingLargeMem() && Op0.getOpcode() == SPUISD::AFormAddr) { |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2867 | ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 2868 | if (CN != 0 && CN->getZExtValue() == 0) { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2869 | // (SPUindirect (SPUaform <addr>, 0), 0) -> |
| 2870 | // (SPUaform <addr>, 0) |
| 2871 | |
| 2872 | DEBUG(cerr << "Replace: "); |
| 2873 | DEBUG(N->dump(&DAG)); |
| 2874 | DEBUG(cerr << "\nWith: "); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2875 | DEBUG(Op0.getNode()->dump(&DAG)); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2876 | DEBUG(cerr << "\n"); |
| 2877 | |
| 2878 | return Op0; |
| 2879 | } |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2880 | } else if (Op0.getOpcode() == ISD::ADD) { |
| 2881 | SDValue Op1 = N->getOperand(1); |
| 2882 | if (ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(Op1)) { |
| 2883 | // (SPUindirect (add <arg>, <arg>), 0) -> |
| 2884 | // (SPUindirect <arg>, <arg>) |
| 2885 | if (CN1->isNullValue()) { |
| 2886 | |
| 2887 | #if !defined(NDEBUG) |
| 2888 | if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { |
| 2889 | cerr << "\n" |
| 2890 | << "Replace: (SPUindirect (add <arg>, <arg>), 0)\n" |
| 2891 | << "With: (SPUindirect <arg>, <arg>)\n"; |
| 2892 | } |
| 2893 | #endif |
| 2894 | |
| 2895 | return DAG.getNode(SPUISD::IndirectAddr, Op0VT, |
| 2896 | Op0.getOperand(0), Op0.getOperand(1)); |
| 2897 | } |
| 2898 | } |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2899 | } |
| 2900 | break; |
| 2901 | } |
| 2902 | case SPUISD::SHLQUAD_L_BITS: |
| 2903 | case SPUISD::SHLQUAD_L_BYTES: |
| 2904 | case SPUISD::VEC_SHL: |
| 2905 | case SPUISD::VEC_SRL: |
| 2906 | case SPUISD::VEC_SRA: |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2907 | case SPUISD::ROTBYTES_LEFT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2908 | SDValue Op1 = N->getOperand(1); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2909 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2910 | // Kill degenerate vector shifts: |
| 2911 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1)) { |
| 2912 | if (CN->isNullValue()) { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2913 | Result = Op0; |
| 2914 | } |
| 2915 | } |
| 2916 | break; |
| 2917 | } |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 2918 | case SPUISD::PREFSLOT2VEC: { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2919 | switch (Op0.getOpcode()) { |
| 2920 | default: |
| 2921 | break; |
| 2922 | case ISD::ANY_EXTEND: |
| 2923 | case ISD::ZERO_EXTEND: |
| 2924 | case ISD::SIGN_EXTEND: { |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 2925 | // (SPUprefslot2vec (any|zero|sign_extend (SPUvec2prefslot <arg>))) -> |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2926 | // <arg> |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 2927 | // but only if the SPUprefslot2vec and <arg> types match. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2928 | SDValue Op00 = Op0.getOperand(0); |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2929 | if (Op00.getOpcode() == SPUISD::VEC2PREFSLOT) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2930 | SDValue Op000 = Op00.getOperand(0); |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 2931 | if (Op000.getValueType() == NodeVT) { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2932 | Result = Op000; |
| 2933 | } |
| 2934 | } |
| 2935 | break; |
| 2936 | } |
Scott Michel | 104de43 | 2008-11-24 17:11:17 +0000 | [diff] [blame] | 2937 | case SPUISD::VEC2PREFSLOT: { |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 2938 | // (SPUprefslot2vec (SPUvec2prefslot <arg>)) -> |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2939 | // <arg> |
| 2940 | Result = Op0.getOperand(0); |
| 2941 | break; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2942 | } |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2943 | } |
| 2944 | break; |
Scott Michel | 053c1da | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 2945 | } |
| 2946 | } |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 2947 | |
Scott Michel | 58c5818 | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 2948 | // Otherwise, return unchanged. |
Scott Michel | 1a6cdb6 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 2949 | #ifndef NDEBUG |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2950 | if (Result.getNode()) { |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2951 | DEBUG(cerr << "\nReplace.SPU: "); |
| 2952 | DEBUG(N->dump(&DAG)); |
| 2953 | DEBUG(cerr << "\nWith: "); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2954 | DEBUG(Result.getNode()->dump(&DAG)); |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 2955 | DEBUG(cerr << "\n"); |
| 2956 | } |
| 2957 | #endif |
| 2958 | |
| 2959 | return Result; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2960 | } |
| 2961 | |
| 2962 | //===----------------------------------------------------------------------===// |
| 2963 | // Inline Assembly Support |
| 2964 | //===----------------------------------------------------------------------===// |
| 2965 | |
| 2966 | /// getConstraintType - Given a constraint letter, return the type of |
| 2967 | /// constraint it is for this target. |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2968 | SPUTargetLowering::ConstraintType |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2969 | SPUTargetLowering::getConstraintType(const std::string &ConstraintLetter) const { |
| 2970 | if (ConstraintLetter.size() == 1) { |
| 2971 | switch (ConstraintLetter[0]) { |
| 2972 | default: break; |
| 2973 | case 'b': |
| 2974 | case 'r': |
| 2975 | case 'f': |
| 2976 | case 'v': |
| 2977 | case 'y': |
| 2978 | return C_RegisterClass; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2979 | } |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2980 | } |
| 2981 | return TargetLowering::getConstraintType(ConstraintLetter); |
| 2982 | } |
| 2983 | |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 2984 | std::pair<unsigned, const TargetRegisterClass*> |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2985 | SPUTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2986 | MVT VT) const |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2987 | { |
| 2988 | if (Constraint.size() == 1) { |
| 2989 | // GCC RS6000 Constraint Letters |
| 2990 | switch (Constraint[0]) { |
| 2991 | case 'b': // R1-R31 |
| 2992 | case 'r': // R0-R31 |
| 2993 | if (VT == MVT::i64) |
| 2994 | return std::make_pair(0U, SPU::R64CRegisterClass); |
| 2995 | return std::make_pair(0U, SPU::R32CRegisterClass); |
| 2996 | case 'f': |
| 2997 | if (VT == MVT::f32) |
| 2998 | return std::make_pair(0U, SPU::R32FPRegisterClass); |
| 2999 | else if (VT == MVT::f64) |
| 3000 | return std::make_pair(0U, SPU::R64FPRegisterClass); |
| 3001 | break; |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 3002 | case 'v': |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 3003 | return std::make_pair(0U, SPU::GPRCRegisterClass); |
| 3004 | } |
| 3005 | } |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 3006 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 3007 | return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); |
| 3008 | } |
| 3009 | |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 3010 | //! Compute used/known bits for a SPU operand |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 3011 | void |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3012 | SPUTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op, |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 3013 | const APInt &Mask, |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 3014 | APInt &KnownZero, |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 3015 | APInt &KnownOne, |
Scott Michel | 7f9ba9b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 3016 | const SelectionDAG &DAG, |
| 3017 | unsigned Depth ) const { |
Scott Michel | 203b2d6 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 3018 | #if 0 |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 3019 | const uint64_t uint64_sizebits = sizeof(uint64_t) * 8; |
| 3020 | |
| 3021 | switch (Op.getOpcode()) { |
| 3022 | default: |
| 3023 | // KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); |
| 3024 | break; |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 3025 | case CALL: |
| 3026 | case SHUFB: |
Scott Michel | 7a1c9e9 | 2008-11-22 23:50:42 +0000 | [diff] [blame] | 3027 | case SHUFFLE_MASK: |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 3028 | case CNTB: |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 3029 | case SPUISD::PREFSLOT2VEC: |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 3030 | case SPUISD::LDRESULT: |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 3031 | case SPUISD::VEC2PREFSLOT: |
Scott Michel | 203b2d6 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 3032 | case SPUISD::SHLQUAD_L_BITS: |
| 3033 | case SPUISD::SHLQUAD_L_BYTES: |
| 3034 | case SPUISD::VEC_SHL: |
| 3035 | case SPUISD::VEC_SRL: |
| 3036 | case SPUISD::VEC_SRA: |
| 3037 | case SPUISD::VEC_ROTL: |
| 3038 | case SPUISD::VEC_ROTR: |
Scott Michel | 203b2d6 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 3039 | case SPUISD::ROTBYTES_LEFT: |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 3040 | case SPUISD::SELECT_MASK: |
| 3041 | case SPUISD::SELB: |
Scott Michel | a59d469 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 3042 | } |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 3043 | #endif |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 3044 | } |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 3045 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 3046 | unsigned |
| 3047 | SPUTargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op, |
| 3048 | unsigned Depth) const { |
| 3049 | switch (Op.getOpcode()) { |
| 3050 | default: |
| 3051 | return 1; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 3052 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 3053 | case ISD::SETCC: { |
| 3054 | MVT VT = Op.getValueType(); |
| 3055 | |
| 3056 | if (VT != MVT::i8 && VT != MVT::i16 && VT != MVT::i32) { |
| 3057 | VT = MVT::i32; |
| 3058 | } |
| 3059 | return VT.getSizeInBits(); |
| 3060 | } |
| 3061 | } |
| 3062 | } |
Scott Michel | 1df30c4 | 2008-12-29 03:23:36 +0000 | [diff] [blame] | 3063 | |
Scott Michel | 203b2d6 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 3064 | // LowerAsmOperandForConstraint |
| 3065 | void |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3066 | SPUTargetLowering::LowerAsmOperandForConstraint(SDValue Op, |
Scott Michel | 203b2d6 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 3067 | char ConstraintLetter, |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 3068 | bool hasMemory, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3069 | std::vector<SDValue> &Ops, |
Scott Michel | 203b2d6 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 3070 | SelectionDAG &DAG) const { |
| 3071 | // Default, for the time being, to the base class handler |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 3072 | TargetLowering::LowerAsmOperandForConstraint(Op, ConstraintLetter, hasMemory, |
| 3073 | Ops, DAG); |
Scott Michel | 203b2d6 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 3074 | } |
| 3075 | |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 3076 | /// isLegalAddressImmediate - Return true if the integer value can be used |
| 3077 | /// as the offset of the target addressing mode. |
Gabor Greif | 93c53e5 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 3078 | bool SPUTargetLowering::isLegalAddressImmediate(int64_t V, |
| 3079 | const Type *Ty) const { |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 3080 | // SPU's addresses are 256K: |
| 3081 | return (V > -(1 << 18) && V < (1 << 18) - 1); |
| 3082 | } |
| 3083 | |
| 3084 | bool SPUTargetLowering::isLegalAddressImmediate(llvm::GlobalValue* GV) const { |
Scott Michel | 5af8f0e | 2008-07-16 17:17:29 +0000 | [diff] [blame] | 3085 | return false; |
Scott Michel | 266bc8f | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 3086 | } |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 3087 | |
| 3088 | bool |
| 3089 | SPUTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { |
| 3090 | // The SPU target isn't yet aware of offsets. |
| 3091 | return false; |
| 3092 | } |