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