Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 1 | //===-- SPUISelDAGToDAG.cpp - CellSPU pattern matching inst selector ------===// |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 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 | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines a pattern matching instruction selector for the Cell SPU, |
| 11 | // converting from a legalized dag to a SPU-target dag. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "SPU.h" |
| 16 | #include "SPUTargetMachine.h" |
| 17 | #include "SPUISelLowering.h" |
| 18 | #include "SPUHazardRecognizers.h" |
| 19 | #include "SPUFrameInfo.h" |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 20 | #include "SPURegisterNames.h" |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 21 | #include "SPUTargetMachine.h" |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 23 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 24 | #include "llvm/CodeGen/MachineFunction.h" |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/SelectionDAG.h" |
| 26 | #include "llvm/CodeGen/SelectionDAGISel.h" |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetOptions.h" |
| 29 | #include "llvm/ADT/Statistic.h" |
| 30 | #include "llvm/Constants.h" |
| 31 | #include "llvm/GlobalValue.h" |
| 32 | #include "llvm/Intrinsics.h" |
Owen Anderson | 6361f97 | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 33 | #include "llvm/LLVMContext.h" |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Debug.h" |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 35 | #include "llvm/Support/ErrorHandling.h" |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 36 | #include "llvm/Support/MathExtras.h" |
| 37 | #include "llvm/Support/Compiler.h" |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 38 | #include "llvm/Support/raw_ostream.h" |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 39 | |
| 40 | using namespace llvm; |
| 41 | |
| 42 | namespace { |
| 43 | //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates |
| 44 | bool |
| 45 | isI64IntS10Immediate(ConstantSDNode *CN) |
| 46 | { |
Dan Gohman | 4068673 | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 47 | return isS10Constant(CN->getSExtValue()); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates |
| 51 | bool |
| 52 | isI32IntS10Immediate(ConstantSDNode *CN) |
| 53 | { |
Dan Gohman | 4068673 | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 54 | return isS10Constant(CN->getSExtValue()); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Scott Michel | 438be25 | 2007-12-17 22:32:34 +0000 | [diff] [blame] | 57 | //! ConstantSDNode predicate for i32 unsigned 10-bit immediate values |
| 58 | bool |
| 59 | isI32IntU10Immediate(ConstantSDNode *CN) |
| 60 | { |
Dan Gohman | 4068673 | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 61 | return isU10Constant(CN->getSExtValue()); |
Scott Michel | 438be25 | 2007-12-17 22:32:34 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 64 | //! ConstantSDNode predicate for i16 sign-extended, 10-bit immediate values |
| 65 | bool |
| 66 | isI16IntS10Immediate(ConstantSDNode *CN) |
| 67 | { |
Dan Gohman | 4068673 | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 68 | return isS10Constant(CN->getSExtValue()); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | //! SDNode predicate for i16 sign-extended, 10-bit immediate values |
| 72 | bool |
| 73 | isI16IntS10Immediate(SDNode *N) |
| 74 | { |
Scott Michel | c899a12 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 75 | ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); |
| 76 | return (CN != 0 && isI16IntS10Immediate(CN)); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 77 | } |
| 78 | |
Scott Michel | 7b5f7ed | 2007-12-15 00:38:50 +0000 | [diff] [blame] | 79 | //! ConstantSDNode predicate for i16 unsigned 10-bit immediate values |
| 80 | bool |
| 81 | isI16IntU10Immediate(ConstantSDNode *CN) |
| 82 | { |
Dan Gohman | faeb4a3 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 83 | return isU10Constant((short) CN->getZExtValue()); |
Scott Michel | 7b5f7ed | 2007-12-15 00:38:50 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | //! SDNode predicate for i16 sign-extended, 10-bit immediate values |
| 87 | bool |
| 88 | isI16IntU10Immediate(SDNode *N) |
| 89 | { |
| 90 | return (N->getOpcode() == ISD::Constant |
| 91 | && isI16IntU10Immediate(cast<ConstantSDNode>(N))); |
| 92 | } |
| 93 | |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 94 | //! ConstantSDNode predicate for signed 16-bit values |
| 95 | /*! |
| 96 | \arg CN The constant SelectionDAG node holding the value |
| 97 | \arg Imm The returned 16-bit value, if returning true |
| 98 | |
| 99 | This predicate tests the value in \a CN to see whether it can be |
| 100 | represented as a 16-bit, sign-extended quantity. Returns true if |
| 101 | this is the case. |
| 102 | */ |
| 103 | bool |
| 104 | isIntS16Immediate(ConstantSDNode *CN, short &Imm) |
| 105 | { |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 106 | EVT vt = CN->getValueType(0); |
Dan Gohman | faeb4a3 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 107 | Imm = (short) CN->getZExtValue(); |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 108 | if (vt.getSimpleVT() >= MVT::i1 && vt.getSimpleVT() <= MVT::i16) { |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 109 | return true; |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 110 | } else if (vt == MVT::i32) { |
Dan Gohman | faeb4a3 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 111 | int32_t i_val = (int32_t) CN->getZExtValue(); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 112 | short s_val = (short) i_val; |
| 113 | return i_val == s_val; |
| 114 | } else { |
Dan Gohman | faeb4a3 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 115 | int64_t i_val = (int64_t) CN->getZExtValue(); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 116 | short s_val = (short) i_val; |
| 117 | return i_val == s_val; |
| 118 | } |
| 119 | |
| 120 | return false; |
| 121 | } |
| 122 | |
| 123 | //! SDNode predicate for signed 16-bit values. |
| 124 | bool |
| 125 | isIntS16Immediate(SDNode *N, short &Imm) |
| 126 | { |
| 127 | return (N->getOpcode() == ISD::Constant |
| 128 | && isIntS16Immediate(cast<ConstantSDNode>(N), Imm)); |
| 129 | } |
| 130 | |
| 131 | //! ConstantFPSDNode predicate for representing floats as 16-bit sign ext. |
| 132 | static bool |
| 133 | isFPS16Immediate(ConstantFPSDNode *FPN, short &Imm) |
| 134 | { |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 135 | EVT vt = FPN->getValueType(0); |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 136 | if (vt == MVT::f32) { |
Chris Lattner | a2ed760 | 2007-12-22 22:45:38 +0000 | [diff] [blame] | 137 | int val = FloatToBits(FPN->getValueAPF().convertToFloat()); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 138 | int sval = (int) ((val << 16) >> 16); |
| 139 | Imm = (short) val; |
| 140 | return val == sval; |
| 141 | } |
| 142 | |
| 143 | return false; |
| 144 | } |
| 145 | |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 146 | bool |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 147 | isHighLow(const SDValue &Op) |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 148 | { |
| 149 | return (Op.getOpcode() == SPUISD::IndirectAddr |
| 150 | && ((Op.getOperand(0).getOpcode() == SPUISD::Hi |
| 151 | && Op.getOperand(1).getOpcode() == SPUISD::Lo) |
| 152 | || (Op.getOperand(0).getOpcode() == SPUISD::Lo |
| 153 | && Op.getOperand(1).getOpcode() == SPUISD::Hi))); |
| 154 | } |
| 155 | |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 156 | //===------------------------------------------------------------------===// |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 157 | //! EVT to "useful stuff" mapping structure: |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 158 | |
| 159 | struct valtype_map_s { |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 160 | EVT VT; |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 161 | unsigned ldresult_ins; /// LDRESULT instruction (0 = undefined) |
Scott Michel | 97872d3 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 162 | bool ldresult_imm; /// LDRESULT instruction requires immediate? |
Scott Michel | 06eabde | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 163 | unsigned lrinst; /// LR instruction |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 164 | }; |
| 165 | |
| 166 | const valtype_map_s valtype_map[] = { |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 167 | { MVT::i8, SPU::ORBIr8, true, SPU::LRr8 }, |
| 168 | { MVT::i16, SPU::ORHIr16, true, SPU::LRr16 }, |
| 169 | { MVT::i32, SPU::ORIr32, true, SPU::LRr32 }, |
| 170 | { MVT::i64, SPU::ORr64, false, SPU::LRr64 }, |
| 171 | { MVT::f32, SPU::ORf32, false, SPU::LRf32 }, |
| 172 | { MVT::f64, SPU::ORf64, false, SPU::LRf64 }, |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 173 | // vector types... (sigh!) |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 174 | { MVT::v16i8, 0, false, SPU::LRv16i8 }, |
| 175 | { MVT::v8i16, 0, false, SPU::LRv8i16 }, |
| 176 | { MVT::v4i32, 0, false, SPU::LRv4i32 }, |
| 177 | { MVT::v2i64, 0, false, SPU::LRv2i64 }, |
| 178 | { MVT::v4f32, 0, false, SPU::LRv4f32 }, |
| 179 | { MVT::v2f64, 0, false, SPU::LRv2f64 } |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 180 | }; |
| 181 | |
| 182 | const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]); |
| 183 | |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 184 | const valtype_map_s *getValueTypeMapEntry(EVT VT) |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 185 | { |
| 186 | const valtype_map_s *retval = 0; |
| 187 | for (size_t i = 0; i < n_valtype_map; ++i) { |
| 188 | if (valtype_map[i].VT == VT) { |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 189 | retval = valtype_map + i; |
| 190 | break; |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 191 | } |
| 192 | } |
| 193 | |
| 194 | |
| 195 | #ifndef NDEBUG |
| 196 | if (retval == 0) { |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 197 | std::string msg; |
| 198 | raw_string_ostream Msg(msg); |
| 199 | Msg << "SPUISelDAGToDAG.cpp: getValueTypeMapEntry returns NULL for " |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 200 | << VT.getEVTString(); |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 201 | llvm_report_error(Msg.str()); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 202 | } |
| 203 | #endif |
| 204 | |
| 205 | return retval; |
| 206 | } |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 207 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 208 | //! Generate the carry-generate shuffle mask. |
| 209 | SDValue getCarryGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) { |
| 210 | SmallVector<SDValue, 16 > ShufBytes; |
Dan Gohman | 089efff | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 211 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 212 | // Create the shuffle mask for "rotating" the borrow up one register slot |
| 213 | // once the borrow is generated. |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 214 | ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32)); |
| 215 | ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32)); |
| 216 | ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32)); |
| 217 | ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32)); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 218 | |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 219 | return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 220 | &ShufBytes[0], ShufBytes.size()); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 221 | } |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 222 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 223 | //! Generate the borrow-generate shuffle mask |
| 224 | SDValue getBorrowGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) { |
| 225 | SmallVector<SDValue, 16 > ShufBytes; |
| 226 | |
| 227 | // Create the shuffle mask for "rotating" the borrow up one register slot |
| 228 | // once the borrow is generated. |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 229 | ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32)); |
| 230 | ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32)); |
| 231 | ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32)); |
| 232 | ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32)); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 233 | |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 234 | return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 235 | &ShufBytes[0], ShufBytes.size()); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 236 | } |
| 237 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 238 | //===------------------------------------------------------------------===// |
| 239 | /// SPUDAGToDAGISel - Cell SPU-specific code to select SPU machine |
| 240 | /// instructions for SelectionDAG operations. |
| 241 | /// |
| 242 | class SPUDAGToDAGISel : |
| 243 | public SelectionDAGISel |
| 244 | { |
| 245 | SPUTargetMachine &TM; |
| 246 | SPUTargetLowering &SPUtli; |
| 247 | unsigned GlobalBaseReg; |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 248 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 249 | public: |
| 250 | explicit SPUDAGToDAGISel(SPUTargetMachine &tm) : |
| 251 | SelectionDAGISel(tm), |
| 252 | TM(tm), |
| 253 | SPUtli(*tm.getTargetLowering()) |
| 254 | { } |
| 255 | |
Dan Gohman | fdf9ee2 | 2009-07-31 18:16:33 +0000 | [diff] [blame] | 256 | virtual bool runOnMachineFunction(MachineFunction &MF) { |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 257 | // Make sure we re-emit a set of the global base reg if necessary |
| 258 | GlobalBaseReg = 0; |
Dan Gohman | fdf9ee2 | 2009-07-31 18:16:33 +0000 | [diff] [blame] | 259 | SelectionDAGISel::runOnMachineFunction(MF); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 260 | return true; |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 261 | } |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 262 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 263 | /// getI32Imm - Return a target constant with the specified value, of type |
| 264 | /// i32. |
| 265 | inline SDValue getI32Imm(uint32_t Imm) { |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 266 | return CurDAG->getTargetConstant(Imm, MVT::i32); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 269 | /// getI64Imm - Return a target constant with the specified value, of type |
| 270 | /// i64. |
| 271 | inline SDValue getI64Imm(uint64_t Imm) { |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 272 | return CurDAG->getTargetConstant(Imm, MVT::i64); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 273 | } |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 274 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 275 | /// getSmallIPtrImm - Return a target constant of pointer type. |
| 276 | inline SDValue getSmallIPtrImm(unsigned Imm) { |
| 277 | return CurDAG->getTargetConstant(Imm, SPUtli.getPointerTy()); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 278 | } |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 279 | |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 280 | SDNode *emitBuildVector(SDNode *bvNode) { |
| 281 | EVT vecVT = bvNode->getValueType(0); |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 282 | EVT eltVT = vecVT.getVectorElementType(); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 283 | DebugLoc dl = bvNode->getDebugLoc(); |
| 284 | |
| 285 | // Check to see if this vector can be represented as a CellSPU immediate |
| 286 | // constant by invoking all of the instruction selection predicates: |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 287 | if (((vecVT == MVT::v8i16) && |
| 288 | (SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i16).getNode() != 0)) || |
| 289 | ((vecVT == MVT::v4i32) && |
| 290 | ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) || |
| 291 | (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) || |
| 292 | (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) || |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 293 | (SPU::get_v4i32_imm(bvNode, *CurDAG).getNode() != 0))) || |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 294 | ((vecVT == MVT::v2i64) && |
| 295 | ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) || |
| 296 | (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) || |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 297 | (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i64).getNode() != 0)))) { |
| 298 | HandleSDNode Dummy(SDValue(bvNode, 0)); |
| 299 | if (SDNode *N = Select(bvNode)) |
| 300 | return N; |
| 301 | return Dummy.getValue().getNode(); |
| 302 | } |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 303 | |
| 304 | // No, need to emit a constant pool spill: |
| 305 | std::vector<Constant*> CV; |
| 306 | |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 307 | for (size_t i = 0; i < bvNode->getNumOperands(); ++i) { |
| 308 | ConstantSDNode *V = dyn_cast<ConstantSDNode > (bvNode->getOperand(i)); |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 309 | CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue())); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 310 | } |
| 311 | |
Owen Anderson | 2f422e0 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 312 | Constant *CP = ConstantVector::get(CV); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 313 | SDValue CPIdx = CurDAG->getConstantPool(CP, SPUtli.getPointerTy()); |
| 314 | unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); |
| 315 | SDValue CGPoolOffset = |
| 316 | SPU::LowerConstantPool(CPIdx, *CurDAG, |
| 317 | SPUtli.getSPUTargetMachine()); |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 318 | |
| 319 | HandleSDNode Dummy(CurDAG->getLoad(vecVT, dl, |
| 320 | CurDAG->getEntryNode(), CGPoolOffset, |
| 321 | PseudoSourceValue::getConstantPool(),0, |
| 322 | false, false, Alignment)); |
| 323 | CurDAG->ReplaceAllUsesWith(SDValue(bvNode, 0), Dummy.getValue()); |
| 324 | if (SDNode *N = SelectCode(Dummy.getValue().getNode())) |
| 325 | return N; |
| 326 | return Dummy.getValue().getNode(); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 327 | } |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 328 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 329 | /// Select - Convert the specified operand from a target-independent to a |
| 330 | /// target-specific node if it hasn't already been changed. |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 331 | SDNode *Select(SDNode *N); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 332 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 333 | //! Emit the instruction sequence for i64 shl |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 334 | SDNode *SelectSHLi64(SDNode *N, EVT OpVT); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 335 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 336 | //! Emit the instruction sequence for i64 srl |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 337 | SDNode *SelectSRLi64(SDNode *N, EVT OpVT); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 338 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 339 | //! Emit the instruction sequence for i64 sra |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 340 | SDNode *SelectSRAi64(SDNode *N, EVT OpVT); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 341 | |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 342 | //! Emit the necessary sequence for loading i64 constants: |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 343 | SDNode *SelectI64Constant(SDNode *N, EVT OpVT, DebugLoc dl); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 344 | |
| 345 | //! Alternate instruction emit sequence for loading i64 constants |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 346 | SDNode *SelectI64Constant(uint64_t i64const, EVT OpVT, DebugLoc dl); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 347 | |
| 348 | //! Returns true if the address N is an A-form (local store) address |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 349 | bool SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 350 | SDValue &Index); |
| 351 | |
| 352 | //! D-form address predicate |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 353 | bool SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 354 | SDValue &Index); |
| 355 | |
| 356 | /// Alternate D-form address using i7 offset predicate |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 357 | bool SelectDForm2Addr(SDNode *Op, SDValue N, SDValue &Disp, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 358 | SDValue &Base); |
| 359 | |
| 360 | /// D-form address selection workhorse |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 361 | bool DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Disp, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 362 | SDValue &Base, int minOffset, int maxOffset); |
| 363 | |
| 364 | //! Address predicate if N can be expressed as an indexed [r+r] operation. |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 365 | bool SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 366 | SDValue &Index); |
| 367 | |
| 368 | /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for |
| 369 | /// inline asm expressions. |
| 370 | virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op, |
| 371 | char ConstraintCode, |
| 372 | std::vector<SDValue> &OutOps) { |
| 373 | SDValue Op0, Op1; |
| 374 | switch (ConstraintCode) { |
| 375 | default: return true; |
| 376 | case 'm': // memory |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 377 | if (!SelectDFormAddr(Op.getNode(), Op, Op0, Op1) |
| 378 | && !SelectAFormAddr(Op.getNode(), Op, Op0, Op1)) |
| 379 | SelectXFormAddr(Op.getNode(), Op, Op0, Op1); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 380 | break; |
| 381 | case 'o': // offsetable |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 382 | if (!SelectDFormAddr(Op.getNode(), Op, Op0, Op1) |
| 383 | && !SelectAFormAddr(Op.getNode(), Op, Op0, Op1)) { |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 384 | Op0 = Op; |
| 385 | Op1 = getSmallIPtrImm(0); |
| 386 | } |
| 387 | break; |
| 388 | case 'v': // not offsetable |
| 389 | #if 1 |
Edwin Török | bd448e3 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 390 | llvm_unreachable("InlineAsmMemoryOperand 'v' constraint not handled."); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 391 | #else |
| 392 | SelectAddrIdxOnly(Op, Op, Op0, Op1); |
| 393 | #endif |
| 394 | break; |
| 395 | } |
| 396 | |
| 397 | OutOps.push_back(Op0); |
| 398 | OutOps.push_back(Op1); |
| 399 | return false; |
| 400 | } |
| 401 | |
| 402 | /// InstructionSelect - This callback is invoked by |
| 403 | /// SelectionDAGISel when it has created a SelectionDAG for us to codegen. |
| 404 | virtual void InstructionSelect(); |
| 405 | |
| 406 | virtual const char *getPassName() const { |
| 407 | return "Cell SPU DAG->DAG Pattern Instruction Selection"; |
| 408 | } |
| 409 | |
| 410 | /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for |
| 411 | /// this target when scheduling the DAG. |
| 412 | virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() { |
| 413 | const TargetInstrInfo *II = TM.getInstrInfo(); |
| 414 | assert(II && "No InstrInfo?"); |
| 415 | return new SPUHazardRecognizer(*II); |
| 416 | } |
| 417 | |
| 418 | // Include the pieces autogenerated from the target description. |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 419 | #include "SPUGenDAGISel.inc" |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 420 | }; |
Dan Gohman | 089efff | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 421 | } |
| 422 | |
Evan Cheng | 34fd4f3 | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 423 | /// InstructionSelect - This callback is invoked by |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 424 | /// SelectionDAGISel when it has created a SelectionDAG for us to codegen. |
| 425 | void |
Dan Gohman | 14a6644 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 426 | SPUDAGToDAGISel::InstructionSelect() |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 427 | { |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 428 | // Select target instructions for the DAG. |
David Greene | 932618b | 2008-10-27 21:56:29 +0000 | [diff] [blame] | 429 | SelectRoot(*CurDAG); |
Dan Gohman | 14a6644 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 430 | CurDAG->RemoveDeadNodes(); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 431 | } |
| 432 | |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 433 | /*! |
Scott Michel | c899a12 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 434 | \arg Op The ISD instruction operand |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 435 | \arg N The address to be tested |
| 436 | \arg Base The base address |
| 437 | \arg Index The base address index |
| 438 | */ |
| 439 | bool |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 440 | SPUDAGToDAGISel::SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base, |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 441 | SDValue &Index) { |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 442 | // These match the addr256k operand type: |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 443 | EVT OffsVT = MVT::i16; |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 444 | SDValue Zero = CurDAG->getTargetConstant(0, OffsVT); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 445 | |
| 446 | switch (N.getOpcode()) { |
| 447 | case ISD::Constant: |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 448 | case ISD::ConstantPool: |
| 449 | case ISD::GlobalAddress: |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 450 | llvm_report_error("SPU SelectAFormAddr: Constant/Pool/Global not lowered."); |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 451 | /*NOTREACHED*/ |
| 452 | |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 453 | case ISD::TargetConstant: |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 454 | case ISD::TargetGlobalAddress: |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 455 | case ISD::TargetJumpTable: |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 456 | llvm_report_error("SPUSelectAFormAddr: Target Constant/Pool/Global " |
| 457 | "not wrapped as A-form address."); |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 458 | /*NOTREACHED*/ |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 459 | |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 460 | case SPUISD::AFormAddr: |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 461 | // Just load from memory if there's only a single use of the location, |
| 462 | // otherwise, this will get handled below with D-form offset addresses |
| 463 | if (N.hasOneUse()) { |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 464 | SDValue Op0 = N.getOperand(0); |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 465 | switch (Op0.getOpcode()) { |
| 466 | case ISD::TargetConstantPool: |
| 467 | case ISD::TargetJumpTable: |
| 468 | Base = Op0; |
| 469 | Index = Zero; |
| 470 | return true; |
| 471 | |
| 472 | case ISD::TargetGlobalAddress: { |
| 473 | GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op0); |
| 474 | GlobalValue *GV = GSDN->getGlobal(); |
| 475 | if (GV->getAlignment() == 16) { |
| 476 | Base = Op0; |
| 477 | Index = Zero; |
| 478 | return true; |
| 479 | } |
| 480 | break; |
| 481 | } |
| 482 | } |
| 483 | } |
| 484 | break; |
| 485 | } |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 486 | return false; |
| 487 | } |
| 488 | |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 489 | bool |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 490 | SPUDAGToDAGISel::SelectDForm2Addr(SDNode *Op, SDValue N, SDValue &Disp, |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 491 | SDValue &Base) { |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 492 | const int minDForm2Offset = -(1 << 7); |
| 493 | const int maxDForm2Offset = (1 << 7) - 1; |
| 494 | return DFormAddressPredicate(Op, N, Disp, Base, minDForm2Offset, |
| 495 | maxDForm2Offset); |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 496 | } |
| 497 | |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 498 | /*! |
| 499 | \arg Op The ISD instruction (ignored) |
| 500 | \arg N The address to be tested |
| 501 | \arg Base Base address register/pointer |
| 502 | \arg Index Base address index |
| 503 | |
| 504 | Examine the input address by a base register plus a signed 10-bit |
| 505 | displacement, [r+I10] (D-form address). |
| 506 | |
| 507 | \return true if \a N is a D-form address with \a Base and \a Index set |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 508 | to non-empty SDValue instances. |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 509 | */ |
| 510 | bool |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 511 | SPUDAGToDAGISel::SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base, |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 512 | SDValue &Index) { |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 513 | return DFormAddressPredicate(Op, N, Base, Index, |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 514 | SPUFrameInfo::minFrameOffset(), |
| 515 | SPUFrameInfo::maxFrameOffset()); |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | bool |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 519 | SPUDAGToDAGISel::DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Base, |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 520 | SDValue &Index, int minOffset, |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 521 | int maxOffset) { |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 522 | unsigned Opc = N.getOpcode(); |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 523 | EVT PtrTy = SPUtli.getPointerTy(); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 524 | |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 525 | if (Opc == ISD::FrameIndex) { |
| 526 | // Stack frame index must be less than 512 (divided by 16): |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 527 | FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(N); |
| 528 | int FI = int(FIN->getIndex()); |
Chris Lattner | 36eef82 | 2009-08-23 07:05:07 +0000 | [diff] [blame] | 529 | DEBUG(errs() << "SelectDFormAddr: ISD::FrameIndex = " |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 530 | << FI << "\n"); |
| 531 | if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) { |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 532 | Base = CurDAG->getTargetConstant(0, PtrTy); |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 533 | Index = CurDAG->getTargetFrameIndex(FI, PtrTy); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 534 | return true; |
| 535 | } |
| 536 | } else if (Opc == ISD::ADD) { |
| 537 | // Generated by getelementptr |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 538 | const SDValue Op0 = N.getOperand(0); |
| 539 | const SDValue Op1 = N.getOperand(1); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 540 | |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 541 | if ((Op0.getOpcode() == SPUISD::Hi && Op1.getOpcode() == SPUISD::Lo) |
| 542 | || (Op1.getOpcode() == SPUISD::Hi && Op0.getOpcode() == SPUISD::Lo)) { |
| 543 | Base = CurDAG->getTargetConstant(0, PtrTy); |
| 544 | Index = N; |
| 545 | return true; |
| 546 | } else if (Op1.getOpcode() == ISD::Constant |
| 547 | || Op1.getOpcode() == ISD::TargetConstant) { |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 548 | ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1); |
Dan Gohman | 4068673 | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 549 | int32_t offset = int32_t(CN->getSExtValue()); |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 550 | |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 551 | if (Op0.getOpcode() == ISD::FrameIndex) { |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 552 | FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op0); |
| 553 | int FI = int(FIN->getIndex()); |
Chris Lattner | 36eef82 | 2009-08-23 07:05:07 +0000 | [diff] [blame] | 554 | DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 555 | << " frame index = " << FI << "\n"); |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 556 | |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 557 | if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) { |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 558 | Base = CurDAG->getTargetConstant(offset, PtrTy); |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 559 | Index = CurDAG->getTargetFrameIndex(FI, PtrTy); |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 560 | return true; |
| 561 | } |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 562 | } else if (offset > minOffset && offset < maxOffset) { |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 563 | Base = CurDAG->getTargetConstant(offset, PtrTy); |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 564 | Index = Op0; |
| 565 | return true; |
| 566 | } |
| 567 | } else if (Op0.getOpcode() == ISD::Constant |
| 568 | || Op0.getOpcode() == ISD::TargetConstant) { |
| 569 | ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0); |
Dan Gohman | 4068673 | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 570 | int32_t offset = int32_t(CN->getSExtValue()); |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 571 | |
| 572 | if (Op1.getOpcode() == ISD::FrameIndex) { |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 573 | FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op1); |
| 574 | int FI = int(FIN->getIndex()); |
Chris Lattner | 36eef82 | 2009-08-23 07:05:07 +0000 | [diff] [blame] | 575 | DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 576 | << " frame index = " << FI << "\n"); |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 577 | |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 578 | if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) { |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 579 | Base = CurDAG->getTargetConstant(offset, PtrTy); |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 580 | Index = CurDAG->getTargetFrameIndex(FI, PtrTy); |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 581 | return true; |
| 582 | } |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 583 | } else if (offset > minOffset && offset < maxOffset) { |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 584 | Base = CurDAG->getTargetConstant(offset, PtrTy); |
| 585 | Index = Op1; |
| 586 | return true; |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 587 | } |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 588 | } |
| 589 | } else if (Opc == SPUISD::IndirectAddr) { |
| 590 | // Indirect with constant offset -> D-Form address |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 591 | const SDValue Op0 = N.getOperand(0); |
| 592 | const SDValue Op1 = N.getOperand(1); |
Scott Michel | abc5824 | 2008-01-11 21:01:19 +0000 | [diff] [blame] | 593 | |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 594 | if (Op0.getOpcode() == SPUISD::Hi |
| 595 | && Op1.getOpcode() == SPUISD::Lo) { |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 596 | // (SPUindirect (SPUhi <arg>, 0), (SPUlo <arg>, 0)) |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 597 | Base = CurDAG->getTargetConstant(0, PtrTy); |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 598 | Index = N; |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 599 | return true; |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 600 | } else if (isa<ConstantSDNode>(Op0) || isa<ConstantSDNode>(Op1)) { |
| 601 | int32_t offset = 0; |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 602 | SDValue idxOp; |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 603 | |
| 604 | if (isa<ConstantSDNode>(Op1)) { |
| 605 | ConstantSDNode *CN = cast<ConstantSDNode>(Op1); |
Dan Gohman | 4068673 | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 606 | offset = int32_t(CN->getSExtValue()); |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 607 | idxOp = Op0; |
| 608 | } else if (isa<ConstantSDNode>(Op0)) { |
| 609 | ConstantSDNode *CN = cast<ConstantSDNode>(Op0); |
Dan Gohman | 4068673 | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 610 | offset = int32_t(CN->getSExtValue()); |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 611 | idxOp = Op1; |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 612 | } |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 613 | |
| 614 | if (offset >= minOffset && offset <= maxOffset) { |
| 615 | Base = CurDAG->getTargetConstant(offset, PtrTy); |
| 616 | Index = idxOp; |
| 617 | return true; |
| 618 | } |
Scott Michel | dbac4cf | 2008-01-11 02:53:15 +0000 | [diff] [blame] | 619 | } |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 620 | } else if (Opc == SPUISD::AFormAddr) { |
| 621 | Base = CurDAG->getTargetConstant(0, N.getValueType()); |
| 622 | Index = N; |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 623 | return true; |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 624 | } else if (Opc == SPUISD::LDRESULT) { |
| 625 | Base = CurDAG->getTargetConstant(0, N.getValueType()); |
| 626 | Index = N; |
| 627 | return true; |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 628 | } else if (Opc == ISD::Register || Opc == ISD::CopyFromReg) { |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 629 | unsigned OpOpc = Op->getOpcode(); |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 630 | |
| 631 | if (OpOpc == ISD::STORE || OpOpc == ISD::LOAD) { |
| 632 | // Direct load/store without getelementptr |
| 633 | SDValue Addr, Offs; |
| 634 | |
| 635 | // Get the register from CopyFromReg |
| 636 | if (Opc == ISD::CopyFromReg) |
| 637 | Addr = N.getOperand(1); |
| 638 | else |
| 639 | Addr = N; // Register |
| 640 | |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 641 | Offs = ((OpOpc == ISD::STORE) ? Op->getOperand(3) : Op->getOperand(2)); |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 642 | |
| 643 | if (Offs.getOpcode() == ISD::Constant || Offs.getOpcode() == ISD::UNDEF) { |
| 644 | if (Offs.getOpcode() == ISD::UNDEF) |
| 645 | Offs = CurDAG->getTargetConstant(0, Offs.getValueType()); |
| 646 | |
| 647 | Base = Offs; |
| 648 | Index = Addr; |
| 649 | return true; |
| 650 | } |
Scott Michel | 61895fe | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 651 | } else { |
| 652 | /* If otherwise unadorned, default to D-form address with 0 offset: */ |
| 653 | if (Opc == ISD::CopyFromReg) { |
pingbak | b891334 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 654 | Index = N.getOperand(1); |
Scott Michel | 61895fe | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 655 | } else { |
pingbak | b891334 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 656 | Index = N; |
Scott Michel | 61895fe | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | Base = CurDAG->getTargetConstant(0, Index.getValueType()); |
| 660 | return true; |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 661 | } |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 662 | } |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 663 | |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 664 | return false; |
| 665 | } |
| 666 | |
| 667 | /*! |
| 668 | \arg Op The ISD instruction operand |
| 669 | \arg N The address operand |
| 670 | \arg Base The base pointer operand |
| 671 | \arg Index The offset/index operand |
| 672 | |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 673 | If the address \a N can be expressed as an A-form or D-form address, returns |
| 674 | false. Otherwise, creates two operands, Base and Index that will become the |
| 675 | (r)(r) X-form address. |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 676 | */ |
| 677 | bool |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 678 | SPUDAGToDAGISel::SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base, |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 679 | SDValue &Index) { |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 680 | if (!SelectAFormAddr(Op, N, Base, Index) |
| 681 | && !SelectDFormAddr(Op, N, Base, Index)) { |
Scott Michel | 3573be3 | 2008-11-25 17:29:43 +0000 | [diff] [blame] | 682 | // If the address is neither A-form or D-form, punt and use an X-form |
| 683 | // address: |
Scott Michel | 0718cd8 | 2008-12-01 17:56:02 +0000 | [diff] [blame] | 684 | Base = N.getOperand(1); |
| 685 | Index = N.getOperand(0); |
Scott Michel | b6c3235 | 2008-11-25 04:03:47 +0000 | [diff] [blame] | 686 | return true; |
Scott Michel | 33d73eb | 2008-11-21 02:56:16 +0000 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | return false; |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 690 | } |
| 691 | |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 692 | //! Convert the operand from a target-independent to a target-specific node |
| 693 | /*! |
| 694 | */ |
| 695 | SDNode * |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 696 | SPUDAGToDAGISel::Select(SDNode *N) { |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 697 | unsigned Opc = N->getOpcode(); |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 698 | int n_ops = -1; |
| 699 | unsigned NewOpc; |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 700 | EVT OpVT = N->getValueType(0); |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 701 | SDValue Ops[8]; |
Dale Johannesen | 913ba76 | 2009-02-06 01:31:28 +0000 | [diff] [blame] | 702 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 703 | |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 704 | if (N->isMachineOpcode()) |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 705 | return NULL; // Already selected. |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 706 | |
| 707 | if (Opc == ISD::FrameIndex) { |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 708 | int FI = cast<FrameIndexSDNode>(N)->getIndex(); |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 709 | SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0)); |
| 710 | SDValue Imm0 = CurDAG->getTargetConstant(0, N->getValueType(0)); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 711 | |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 712 | if (FI < 128) { |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 713 | NewOpc = SPU::AIr32; |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 714 | Ops[0] = TFI; |
| 715 | Ops[1] = Imm0; |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 716 | n_ops = 2; |
| 717 | } else { |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 718 | NewOpc = SPU::Ar32; |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 719 | Ops[0] = CurDAG->getRegister(SPU::R1, N->getValueType(0)); |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 720 | Ops[1] = SDValue(CurDAG->getMachineNode(SPU::ILAr32, dl, |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 721 | N->getValueType(0), TFI, Imm0), |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 722 | 0); |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 723 | n_ops = 2; |
Scott Michel | bc5fbc1 | 2008-04-30 00:30:08 +0000 | [diff] [blame] | 724 | } |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 725 | } else if (Opc == ISD::Constant && OpVT == MVT::i64) { |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 726 | // Catch the i64 constants that end up here. Note: The backend doesn't |
| 727 | // attempt to legalize the constant (it's useless because DAGCombiner |
| 728 | // will insert 64-bit constants and we can't stop it). |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 729 | return SelectI64Constant(N, OpVT, N->getDebugLoc()); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 730 | } else if ((Opc == ISD::ZERO_EXTEND || Opc == ISD::ANY_EXTEND) |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 731 | && OpVT == MVT::i64) { |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 732 | SDValue Op0 = N->getOperand(0); |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 733 | EVT Op0VT = Op0.getValueType(); |
Owen Anderson | 77f4eb5 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 734 | EVT Op0VecVT = EVT::getVectorVT(*CurDAG->getContext(), |
| 735 | Op0VT, (128 / Op0VT.getSizeInBits())); |
| 736 | EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(), |
| 737 | OpVT, (128 / OpVT.getSizeInBits())); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 738 | SDValue shufMask; |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 739 | |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 740 | switch (Op0VT.getSimpleVT().SimpleTy) { |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 741 | default: |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 742 | llvm_report_error("CellSPU Select: Unhandled zero/any extend EVT"); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 743 | /*NOTREACHED*/ |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 744 | case MVT::i32: |
| 745 | shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, |
| 746 | CurDAG->getConstant(0x80808080, MVT::i32), |
| 747 | CurDAG->getConstant(0x00010203, MVT::i32), |
| 748 | CurDAG->getConstant(0x80808080, MVT::i32), |
| 749 | CurDAG->getConstant(0x08090a0b, MVT::i32)); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 750 | break; |
| 751 | |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 752 | case MVT::i16: |
| 753 | shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, |
| 754 | CurDAG->getConstant(0x80808080, MVT::i32), |
| 755 | CurDAG->getConstant(0x80800203, MVT::i32), |
| 756 | CurDAG->getConstant(0x80808080, MVT::i32), |
| 757 | CurDAG->getConstant(0x80800a0b, MVT::i32)); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 758 | break; |
| 759 | |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 760 | case MVT::i8: |
| 761 | shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, |
| 762 | CurDAG->getConstant(0x80808080, MVT::i32), |
| 763 | CurDAG->getConstant(0x80808003, MVT::i32), |
| 764 | CurDAG->getConstant(0x80808080, MVT::i32), |
| 765 | CurDAG->getConstant(0x8080800b, MVT::i32)); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 766 | break; |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 767 | } |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 768 | |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 769 | SDNode *shufMaskLoad = emitBuildVector(shufMask.getNode()); |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 770 | |
| 771 | HandleSDNode PromoteScalar(CurDAG->getNode(SPUISD::PREFSLOT2VEC, dl, |
| 772 | Op0VecVT, Op0)); |
| 773 | |
| 774 | SDValue PromScalar; |
| 775 | if (SDNode *N = SelectCode(PromoteScalar.getValue().getNode())) |
| 776 | PromScalar = SDValue(N, 0); |
| 777 | else |
| 778 | PromScalar = PromoteScalar.getValue(); |
| 779 | |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 780 | SDValue zextShuffle = |
Dale Johannesen | 913ba76 | 2009-02-06 01:31:28 +0000 | [diff] [blame] | 781 | CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT, |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 782 | PromScalar, PromScalar, |
Scott Michel | 8c67fa4 | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 783 | SDValue(shufMaskLoad, 0)); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 784 | |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 785 | HandleSDNode Dummy2(zextShuffle); |
| 786 | if (SDNode *N = SelectCode(Dummy2.getValue().getNode())) |
| 787 | zextShuffle = SDValue(N, 0); |
| 788 | else |
| 789 | zextShuffle = Dummy2.getValue(); |
| 790 | HandleSDNode Dummy(CurDAG->getNode(SPUISD::VEC2PREFSLOT, dl, OpVT, |
| 791 | zextShuffle)); |
| 792 | |
| 793 | CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode()); |
| 794 | SelectCode(Dummy.getValue().getNode()); |
| 795 | return Dummy.getValue().getNode(); |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 796 | } else if (Opc == ISD::ADD && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) { |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 797 | SDNode *CGLoad = |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 798 | emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl).getNode()); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 799 | |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 800 | HandleSDNode Dummy(CurDAG->getNode(SPUISD::ADD64_MARKER, dl, OpVT, |
| 801 | N->getOperand(0), N->getOperand(1), |
| 802 | SDValue(CGLoad, 0))); |
| 803 | |
| 804 | CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode()); |
| 805 | if (SDNode *N = SelectCode(Dummy.getValue().getNode())) |
| 806 | return N; |
| 807 | return Dummy.getValue().getNode(); |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 808 | } else if (Opc == ISD::SUB && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) { |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 809 | SDNode *CGLoad = |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 810 | emitBuildVector(getBorrowGenerateShufMask(*CurDAG, dl).getNode()); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 811 | |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 812 | HandleSDNode Dummy(CurDAG->getNode(SPUISD::SUB64_MARKER, dl, OpVT, |
| 813 | N->getOperand(0), N->getOperand(1), |
| 814 | SDValue(CGLoad, 0))); |
| 815 | |
| 816 | CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode()); |
| 817 | if (SDNode *N = SelectCode(Dummy.getValue().getNode())) |
| 818 | return N; |
| 819 | return Dummy.getValue().getNode(); |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 820 | } else if (Opc == ISD::MUL && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) { |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 821 | SDNode *CGLoad = |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 822 | emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl).getNode()); |
Scott Michel | 750b93f | 2009-01-15 04:41:47 +0000 | [diff] [blame] | 823 | |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 824 | HandleSDNode Dummy(CurDAG->getNode(SPUISD::MUL64_MARKER, dl, OpVT, |
| 825 | N->getOperand(0), N->getOperand(1), |
| 826 | SDValue(CGLoad, 0))); |
| 827 | CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode()); |
| 828 | if (SDNode *N = SelectCode(Dummy.getValue().getNode())) |
| 829 | return N; |
| 830 | return Dummy.getValue().getNode(); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 831 | } else if (Opc == ISD::TRUNCATE) { |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 832 | SDValue Op0 = N->getOperand(0); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 833 | if ((Op0.getOpcode() == ISD::SRA || Op0.getOpcode() == ISD::SRL) |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 834 | && OpVT == MVT::i32 |
| 835 | && Op0.getValueType() == MVT::i64) { |
Scott Michel | c899a12 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 836 | // Catch (truncate:i32 ([sra|srl]:i64 arg, c), where c >= 32 |
| 837 | // |
| 838 | // Take advantage of the fact that the upper 32 bits are in the |
| 839 | // i32 preferred slot and avoid shuffle gymnastics: |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 840 | ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0.getOperand(1)); |
| 841 | if (CN != 0) { |
| 842 | unsigned shift_amt = unsigned(CN->getZExtValue()); |
Scott Michel | 8c67fa4 | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 843 | |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 844 | if (shift_amt >= 32) { |
| 845 | SDNode *hi32 = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 846 | CurDAG->getMachineNode(SPU::ORr32_r64, dl, OpVT, |
| 847 | Op0.getOperand(0)); |
Scott Michel | 8c67fa4 | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 848 | |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 849 | shift_amt -= 32; |
| 850 | if (shift_amt > 0) { |
| 851 | // Take care of the additional shift, if present: |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 852 | SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 853 | unsigned Opc = SPU::ROTMAIr32_i32; |
Scott Michel | c899a12 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 854 | |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 855 | if (Op0.getOpcode() == ISD::SRL) |
| 856 | Opc = SPU::ROTMr32; |
Scott Michel | 8c67fa4 | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 857 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 858 | hi32 = CurDAG->getMachineNode(Opc, dl, OpVT, SDValue(hi32, 0), |
| 859 | shift); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 860 | } |
| 861 | |
| 862 | return hi32; |
| 863 | } |
| 864 | } |
| 865 | } |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 866 | } else if (Opc == ISD::SHL) { |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 867 | if (OpVT == MVT::i64) |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 868 | return SelectSHLi64(N, OpVT); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 869 | } else if (Opc == ISD::SRL) { |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 870 | if (OpVT == MVT::i64) |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 871 | return SelectSRLi64(N, OpVT); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 872 | } else if (Opc == ISD::SRA) { |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 873 | if (OpVT == MVT::i64) |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 874 | return SelectSRAi64(N, OpVT); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 875 | } else if (Opc == ISD::FNEG |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 876 | && (OpVT == MVT::f64 || OpVT == MVT::v2f64)) { |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 877 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 878 | // Check if the pattern is a special form of DFNMS: |
| 879 | // (fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC)) |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 880 | SDValue Op0 = N->getOperand(0); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 881 | if (Op0.getOpcode() == ISD::FSUB) { |
| 882 | SDValue Op00 = Op0.getOperand(0); |
| 883 | if (Op00.getOpcode() == ISD::FMUL) { |
| 884 | unsigned Opc = SPU::DFNMSf64; |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 885 | if (OpVT == MVT::v2f64) |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 886 | Opc = SPU::DFNMSv2f64; |
| 887 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 888 | return CurDAG->getMachineNode(Opc, dl, OpVT, |
| 889 | Op00.getOperand(0), |
| 890 | Op00.getOperand(1), |
| 891 | Op0.getOperand(1)); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 892 | } |
| 893 | } |
| 894 | |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 895 | SDValue negConst = CurDAG->getConstant(0x8000000000000000ULL, MVT::i64); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 896 | SDNode *signMask = 0; |
Scott Michel | e13d839 | 2009-03-17 16:45:16 +0000 | [diff] [blame] | 897 | unsigned Opc = SPU::XORfneg64; |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 898 | |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 899 | if (OpVT == MVT::f64) { |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 900 | signMask = SelectI64Constant(negConst.getNode(), MVT::i64, dl); |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 901 | } else if (OpVT == MVT::v2f64) { |
Scott Michel | e13d839 | 2009-03-17 16:45:16 +0000 | [diff] [blame] | 902 | Opc = SPU::XORfnegvec; |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 903 | signMask = emitBuildVector(CurDAG->getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 904 | MVT::v2i64, |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 905 | negConst, negConst).getNode()); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 906 | } |
| 907 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 908 | return CurDAG->getMachineNode(Opc, dl, OpVT, |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 909 | N->getOperand(0), SDValue(signMask, 0)); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 910 | } else if (Opc == ISD::FABS) { |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 911 | if (OpVT == MVT::f64) { |
| 912 | SDNode *signMask = SelectI64Constant(0x7fffffffffffffffULL, MVT::i64, dl); |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 913 | return CurDAG->getMachineNode(SPU::ANDfabs64, dl, OpVT, |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 914 | N->getOperand(0), SDValue(signMask, 0)); |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 915 | } else if (OpVT == MVT::v2f64) { |
| 916 | SDValue absConst = CurDAG->getConstant(0x7fffffffffffffffULL, MVT::i64); |
| 917 | SDValue absVec = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 918 | absConst, absConst); |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 919 | SDNode *signMask = emitBuildVector(absVec.getNode()); |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 920 | return CurDAG->getMachineNode(SPU::ANDfabsvec, dl, OpVT, |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 921 | N->getOperand(0), SDValue(signMask, 0)); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 922 | } |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 923 | } else if (Opc == SPUISD::LDRESULT) { |
| 924 | // Custom select instructions for LDRESULT |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 925 | EVT VT = N->getValueType(0); |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 926 | SDValue Arg = N->getOperand(0); |
| 927 | SDValue Chain = N->getOperand(1); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 928 | SDNode *Result; |
Scott Michel | 97872d3 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 929 | const valtype_map_s *vtm = getValueTypeMapEntry(VT); |
| 930 | |
| 931 | if (vtm->ldresult_ins == 0) { |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 932 | std::string msg; |
| 933 | raw_string_ostream Msg(msg); |
| 934 | Msg << "LDRESULT for unsupported type: " |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 935 | << VT.getEVTString(); |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 936 | llvm_report_error(Msg.str()); |
Scott Michel | 97872d3 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 937 | } |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 938 | |
Scott Michel | 97872d3 | 2008-02-23 18:41:37 +0000 | [diff] [blame] | 939 | Opc = vtm->ldresult_ins; |
| 940 | if (vtm->ldresult_imm) { |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 941 | SDValue Zero = CurDAG->getTargetConstant(0, VT); |
Scott Michel | 754d866 | 2007-12-20 00:44:13 +0000 | [diff] [blame] | 942 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 943 | Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Zero, Chain); |
Scott Michel | 754d866 | 2007-12-20 00:44:13 +0000 | [diff] [blame] | 944 | } else { |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 945 | Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Arg, Chain); |
Scott Michel | 754d866 | 2007-12-20 00:44:13 +0000 | [diff] [blame] | 946 | } |
| 947 | |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 948 | return Result; |
Scott Michel | f9f42e6 | 2008-01-29 02:16:57 +0000 | [diff] [blame] | 949 | } else if (Opc == SPUISD::IndirectAddr) { |
Scott Michel | 06eabde | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 950 | // Look at the operands: SelectCode() will catch the cases that aren't |
| 951 | // specifically handled here. |
| 952 | // |
| 953 | // SPUInstrInfo catches the following patterns: |
| 954 | // (SPUindirect (SPUhi ...), (SPUlo ...)) |
| 955 | // (SPUindirect $sp, imm) |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 956 | EVT VT = N->getValueType(0); |
Scott Michel | 06eabde | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 957 | SDValue Op0 = N->getOperand(0); |
| 958 | SDValue Op1 = N->getOperand(1); |
| 959 | RegisterSDNode *RN; |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 960 | |
Scott Michel | 06eabde | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 961 | if ((Op0.getOpcode() != SPUISD::Hi && Op1.getOpcode() != SPUISD::Lo) |
| 962 | || (Op0.getOpcode() == ISD::Register |
| 963 | && ((RN = dyn_cast<RegisterSDNode>(Op0.getNode())) != 0 |
| 964 | && RN->getReg() != SPU::R1))) { |
| 965 | NewOpc = SPU::Ar32; |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 966 | if (Op1.getOpcode() == ISD::Constant) { |
| 967 | ConstantSDNode *CN = cast<ConstantSDNode>(Op1); |
Scott Michel | 06eabde | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 968 | Op1 = CurDAG->getTargetConstant(CN->getSExtValue(), VT); |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 969 | NewOpc = (isI32IntS10Immediate(CN) ? SPU::AIr32 : SPU::Ar32); |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 970 | } |
Scott Michel | 06eabde | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 971 | Ops[0] = Op0; |
| 972 | Ops[1] = Op1; |
| 973 | n_ops = 2; |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 974 | } |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 975 | } |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 976 | |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 977 | if (n_ops > 0) { |
| 978 | if (N->hasOneUse()) |
| 979 | return CurDAG->SelectNodeTo(N, NewOpc, OpVT, Ops, n_ops); |
| 980 | else |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 981 | return CurDAG->getMachineNode(NewOpc, dl, OpVT, Ops, n_ops); |
Scott Michel | 394e26d | 2008-01-17 20:38:41 +0000 | [diff] [blame] | 982 | } else |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 983 | return SelectCode(N); |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 984 | } |
| 985 | |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 986 | /*! |
| 987 | * Emit the instruction sequence for i64 left shifts. The basic algorithm |
| 988 | * is to fill the bottom two word slots with zeros so that zeros are shifted |
| 989 | * in as the entire quadword is shifted left. |
| 990 | * |
| 991 | * \note This code could also be used to implement v2i64 shl. |
| 992 | * |
| 993 | * @param Op The shl operand |
| 994 | * @param OpVT Op's machine value value type (doesn't need to be passed, but |
| 995 | * makes life easier.) |
| 996 | * @return The SDNode with the entire instruction sequence |
| 997 | */ |
| 998 | SDNode * |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 999 | SPUDAGToDAGISel::SelectSHLi64(SDNode *N, EVT OpVT) { |
| 1000 | SDValue Op0 = N->getOperand(0); |
Owen Anderson | 77f4eb5 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 1001 | EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(), |
| 1002 | OpVT, (128 / OpVT.getSizeInBits())); |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1003 | SDValue ShiftAmt = N->getOperand(1); |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1004 | EVT ShiftAmtVT = ShiftAmt.getValueType(); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1005 | SDNode *VecOp0, *SelMask, *ZeroFill, *Shift = 0; |
| 1006 | SDValue SelMaskVal; |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1007 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1008 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1009 | VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0); |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1010 | SelMaskVal = CurDAG->getTargetConstant(0xff00ULL, MVT::i16); |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1011 | SelMask = CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT, SelMaskVal); |
| 1012 | ZeroFill = CurDAG->getMachineNode(SPU::ILv2i64, dl, VecVT, |
| 1013 | CurDAG->getTargetConstant(0, OpVT)); |
| 1014 | VecOp0 = CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT, |
| 1015 | SDValue(ZeroFill, 0), |
| 1016 | SDValue(VecOp0, 0), |
| 1017 | SDValue(SelMask, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1018 | |
| 1019 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) { |
| 1020 | unsigned bytes = unsigned(CN->getZExtValue()) >> 3; |
| 1021 | unsigned bits = unsigned(CN->getZExtValue()) & 7; |
| 1022 | |
| 1023 | if (bytes > 0) { |
| 1024 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1025 | CurDAG->getMachineNode(SPU::SHLQBYIv2i64, dl, VecVT, |
| 1026 | SDValue(VecOp0, 0), |
| 1027 | CurDAG->getTargetConstant(bytes, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1028 | } |
| 1029 | |
| 1030 | if (bits > 0) { |
| 1031 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1032 | CurDAG->getMachineNode(SPU::SHLQBIIv2i64, dl, VecVT, |
| 1033 | SDValue((Shift != 0 ? Shift : VecOp0), 0), |
| 1034 | CurDAG->getTargetConstant(bits, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1035 | } |
| 1036 | } else { |
| 1037 | SDNode *Bytes = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1038 | CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT, |
| 1039 | ShiftAmt, |
| 1040 | CurDAG->getTargetConstant(3, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1041 | SDNode *Bits = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1042 | CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT, |
| 1043 | ShiftAmt, |
| 1044 | CurDAG->getTargetConstant(7, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1045 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1046 | CurDAG->getMachineNode(SPU::SHLQBYv2i64, dl, VecVT, |
| 1047 | SDValue(VecOp0, 0), SDValue(Bytes, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1048 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1049 | CurDAG->getMachineNode(SPU::SHLQBIv2i64, dl, VecVT, |
| 1050 | SDValue(Shift, 0), SDValue(Bits, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1051 | } |
| 1052 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1053 | return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1054 | } |
| 1055 | |
| 1056 | /*! |
| 1057 | * Emit the instruction sequence for i64 logical right shifts. |
| 1058 | * |
| 1059 | * @param Op The shl operand |
| 1060 | * @param OpVT Op's machine value value type (doesn't need to be passed, but |
| 1061 | * makes life easier.) |
| 1062 | * @return The SDNode with the entire instruction sequence |
| 1063 | */ |
| 1064 | SDNode * |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1065 | SPUDAGToDAGISel::SelectSRLi64(SDNode *N, EVT OpVT) { |
| 1066 | SDValue Op0 = N->getOperand(0); |
Owen Anderson | 77f4eb5 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 1067 | EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(), |
| 1068 | OpVT, (128 / OpVT.getSizeInBits())); |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1069 | SDValue ShiftAmt = N->getOperand(1); |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1070 | EVT ShiftAmtVT = ShiftAmt.getValueType(); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1071 | SDNode *VecOp0, *Shift = 0; |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1072 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1073 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1074 | VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1075 | |
| 1076 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) { |
| 1077 | unsigned bytes = unsigned(CN->getZExtValue()) >> 3; |
| 1078 | unsigned bits = unsigned(CN->getZExtValue()) & 7; |
| 1079 | |
| 1080 | if (bytes > 0) { |
| 1081 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1082 | CurDAG->getMachineNode(SPU::ROTQMBYIv2i64, dl, VecVT, |
| 1083 | SDValue(VecOp0, 0), |
| 1084 | CurDAG->getTargetConstant(bytes, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | if (bits > 0) { |
| 1088 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1089 | CurDAG->getMachineNode(SPU::ROTQMBIIv2i64, dl, VecVT, |
| 1090 | SDValue((Shift != 0 ? Shift : VecOp0), 0), |
| 1091 | CurDAG->getTargetConstant(bits, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1092 | } |
| 1093 | } else { |
| 1094 | SDNode *Bytes = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1095 | CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT, |
| 1096 | ShiftAmt, |
| 1097 | CurDAG->getTargetConstant(3, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1098 | SDNode *Bits = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1099 | CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT, |
| 1100 | ShiftAmt, |
| 1101 | CurDAG->getTargetConstant(7, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1102 | |
| 1103 | // Ensure that the shift amounts are negated! |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1104 | Bytes = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT, |
| 1105 | SDValue(Bytes, 0), |
| 1106 | CurDAG->getTargetConstant(0, ShiftAmtVT)); |
| 1107 | |
| 1108 | Bits = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT, |
| 1109 | SDValue(Bits, 0), |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1110 | CurDAG->getTargetConstant(0, ShiftAmtVT)); |
| 1111 | |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1112 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1113 | CurDAG->getMachineNode(SPU::ROTQMBYv2i64, dl, VecVT, |
| 1114 | SDValue(VecOp0, 0), SDValue(Bytes, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1115 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1116 | CurDAG->getMachineNode(SPU::ROTQMBIv2i64, dl, VecVT, |
| 1117 | SDValue(Shift, 0), SDValue(Bits, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1120 | return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1121 | } |
| 1122 | |
| 1123 | /*! |
| 1124 | * Emit the instruction sequence for i64 arithmetic right shifts. |
| 1125 | * |
| 1126 | * @param Op The shl operand |
| 1127 | * @param OpVT Op's machine value value type (doesn't need to be passed, but |
| 1128 | * makes life easier.) |
| 1129 | * @return The SDNode with the entire instruction sequence |
| 1130 | */ |
| 1131 | SDNode * |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1132 | SPUDAGToDAGISel::SelectSRAi64(SDNode *N, EVT OpVT) { |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1133 | // Promote Op0 to vector |
Owen Anderson | 77f4eb5 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 1134 | EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(), |
| 1135 | OpVT, (128 / OpVT.getSizeInBits())); |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1136 | SDValue ShiftAmt = N->getOperand(1); |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1137 | EVT ShiftAmtVT = ShiftAmt.getValueType(); |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1138 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1139 | |
| 1140 | SDNode *VecOp0 = |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1141 | CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, N->getOperand(0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1142 | |
| 1143 | SDValue SignRotAmt = CurDAG->getTargetConstant(31, ShiftAmtVT); |
| 1144 | SDNode *SignRot = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1145 | CurDAG->getMachineNode(SPU::ROTMAIv2i64_i32, dl, MVT::v2i64, |
| 1146 | SDValue(VecOp0, 0), SignRotAmt); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1147 | SDNode *UpperHalfSign = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1148 | CurDAG->getMachineNode(SPU::ORi32_v4i32, dl, MVT::i32, SDValue(SignRot, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1149 | |
| 1150 | SDNode *UpperHalfSignMask = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1151 | CurDAG->getMachineNode(SPU::FSM64r32, dl, VecVT, SDValue(UpperHalfSign, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1152 | SDNode *UpperLowerMask = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1153 | CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT, |
| 1154 | CurDAG->getTargetConstant(0xff00ULL, MVT::i16)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1155 | SDNode *UpperLowerSelect = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1156 | CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT, |
| 1157 | SDValue(UpperHalfSignMask, 0), |
| 1158 | SDValue(VecOp0, 0), |
| 1159 | SDValue(UpperLowerMask, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1160 | |
| 1161 | SDNode *Shift = 0; |
| 1162 | |
| 1163 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) { |
| 1164 | unsigned bytes = unsigned(CN->getZExtValue()) >> 3; |
| 1165 | unsigned bits = unsigned(CN->getZExtValue()) & 7; |
| 1166 | |
| 1167 | if (bytes > 0) { |
| 1168 | bytes = 31 - bytes; |
| 1169 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1170 | CurDAG->getMachineNode(SPU::ROTQBYIv2i64, dl, VecVT, |
| 1171 | SDValue(UpperLowerSelect, 0), |
| 1172 | CurDAG->getTargetConstant(bytes, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | if (bits > 0) { |
| 1176 | bits = 8 - bits; |
| 1177 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1178 | CurDAG->getMachineNode(SPU::ROTQBIIv2i64, dl, VecVT, |
| 1179 | SDValue((Shift != 0 ? Shift : UpperLowerSelect), 0), |
| 1180 | CurDAG->getTargetConstant(bits, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1181 | } |
| 1182 | } else { |
| 1183 | SDNode *NegShift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1184 | CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT, |
| 1185 | ShiftAmt, CurDAG->getTargetConstant(0, ShiftAmtVT)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1186 | |
| 1187 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1188 | CurDAG->getMachineNode(SPU::ROTQBYBIv2i64_r32, dl, VecVT, |
| 1189 | SDValue(UpperLowerSelect, 0), SDValue(NegShift, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1190 | Shift = |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1191 | CurDAG->getMachineNode(SPU::ROTQBIv2i64, dl, VecVT, |
| 1192 | SDValue(Shift, 0), SDValue(NegShift, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1193 | } |
| 1194 | |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1195 | return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0)); |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1196 | } |
| 1197 | |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1198 | /*! |
| 1199 | Do the necessary magic necessary to load a i64 constant |
| 1200 | */ |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1201 | SDNode *SPUDAGToDAGISel::SelectI64Constant(SDNode *N, EVT OpVT, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 1202 | DebugLoc dl) { |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1203 | ConstantSDNode *CN = cast<ConstantSDNode>(N); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 1204 | return SelectI64Constant(CN->getZExtValue(), OpVT, dl); |
| 1205 | } |
| 1206 | |
Owen Anderson | ac9de03 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1207 | SDNode *SPUDAGToDAGISel::SelectI64Constant(uint64_t Value64, EVT OpVT, |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 1208 | DebugLoc dl) { |
Owen Anderson | 77f4eb5 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 1209 | EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(), OpVT, 2); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1210 | SDValue i64vec = |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 1211 | SPU::LowerV2I64Splat(OpVecVT, *CurDAG, Value64, dl); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1212 | |
| 1213 | // Here's where it gets interesting, because we have to parse out the |
| 1214 | // subtree handed back in i64vec: |
| 1215 | |
| 1216 | if (i64vec.getOpcode() == ISD::BIT_CONVERT) { |
| 1217 | // The degenerate case where the upper and lower bits in the splat are |
| 1218 | // identical: |
| 1219 | SDValue Op0 = i64vec.getOperand(0); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1220 | |
Scott Michel | c899a12 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 1221 | ReplaceUses(i64vec, Op0); |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1222 | return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1223 | SDValue(emitBuildVector(Op0.getNode()), 0)); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1224 | } else if (i64vec.getOpcode() == SPUISD::SHUFB) { |
| 1225 | SDValue lhs = i64vec.getOperand(0); |
| 1226 | SDValue rhs = i64vec.getOperand(1); |
| 1227 | SDValue shufmask = i64vec.getOperand(2); |
| 1228 | |
| 1229 | if (lhs.getOpcode() == ISD::BIT_CONVERT) { |
| 1230 | ReplaceUses(lhs, lhs.getOperand(0)); |
| 1231 | lhs = lhs.getOperand(0); |
| 1232 | } |
| 1233 | |
| 1234 | SDNode *lhsNode = (lhs.getNode()->isMachineOpcode() |
| 1235 | ? lhs.getNode() |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1236 | : emitBuildVector(lhs.getNode())); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1237 | |
| 1238 | if (rhs.getOpcode() == ISD::BIT_CONVERT) { |
| 1239 | ReplaceUses(rhs, rhs.getOperand(0)); |
| 1240 | rhs = rhs.getOperand(0); |
| 1241 | } |
| 1242 | |
| 1243 | SDNode *rhsNode = (rhs.getNode()->isMachineOpcode() |
| 1244 | ? rhs.getNode() |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1245 | : emitBuildVector(rhs.getNode())); |
Scott Michel | c899a12 | 2009-01-26 22:33:37 +0000 | [diff] [blame] | 1246 | |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1247 | if (shufmask.getOpcode() == ISD::BIT_CONVERT) { |
| 1248 | ReplaceUses(shufmask, shufmask.getOperand(0)); |
| 1249 | shufmask = shufmask.getOperand(0); |
| 1250 | } |
| 1251 | |
| 1252 | SDNode *shufMaskNode = (shufmask.getNode()->isMachineOpcode() |
| 1253 | ? shufmask.getNode() |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1254 | : emitBuildVector(shufmask.getNode())); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1255 | |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 1256 | SDValue shufNode = |
| 1257 | CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT, |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1258 | SDValue(lhsNode, 0), SDValue(rhsNode, 0), |
Chris Lattner | 15f92b9 | 2010-02-23 05:30:43 +0000 | [diff] [blame^] | 1259 | SDValue(shufMaskNode, 0)); |
| 1260 | HandleSDNode Dummy(shufNode); |
| 1261 | SDNode *SN = SelectCode(Dummy.getValue().getNode()); |
| 1262 | if (SN == 0) SN = Dummy.getValue().getNode(); |
| 1263 | |
| 1264 | return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(SN, 0)); |
Scott Michel | 0d5eae0 | 2009-03-17 01:15:45 +0000 | [diff] [blame] | 1265 | } else if (i64vec.getOpcode() == ISD::BUILD_VECTOR) { |
Dan Gohman | 61fda0d | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 1266 | return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1267 | SDValue(emitBuildVector(i64vec.getNode()), 0)); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1268 | } else { |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 1269 | llvm_report_error("SPUDAGToDAGISel::SelectI64Constant: Unhandled i64vec" |
| 1270 | "condition"); |
pingbak | 2f387e8 | 2009-01-26 03:31:40 +0000 | [diff] [blame] | 1271 | } |
| 1272 | } |
| 1273 | |
Scott Michel | 4d07fb7 | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 1274 | /// createSPUISelDag - This pass converts a legalized DAG into a |
Scott Michel | 8efdca4 | 2007-12-04 22:23:35 +0000 | [diff] [blame] | 1275 | /// SPU-specific DAG, ready for instruction scheduling. |
| 1276 | /// |
| 1277 | FunctionPass *llvm::createSPUISelDag(SPUTargetMachine &TM) { |
| 1278 | return new SPUDAGToDAGISel(TM); |
| 1279 | } |