blob: 8f704ecaa5bb7c359fd8b7a00e8ac69c3efda71d [file] [log] [blame]
Chris Lattner4ee451d2007-12-29 20:36:04 +00001//===-- SPUISelDAGToDAG.cpp - CellSPU pattern matching inst selector ------===//
Scott Michel266bc8f2007-12-04 22:23:35 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Scott Michel266bc8f2007-12-04 22:23:35 +00007//
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 Michel203b2d62008-04-30 00:30:08 +000020#include "SPURegisterNames.h"
Scott Michel94bd57e2009-01-15 04:41:47 +000021#include "SPUTargetMachine.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000022#include "llvm/CodeGen/MachineConstantPool.h"
23#include "llvm/CodeGen/MachineInstrBuilder.h"
24#include "llvm/CodeGen/MachineFunction.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000025#include "llvm/CodeGen/SelectionDAG.h"
26#include "llvm/CodeGen/SelectionDAGISel.h"
Scott Michel94bd57e2009-01-15 04:41:47 +000027#include "llvm/CodeGen/PseudoSourceValue.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000028#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"
33#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000035#include "llvm/Support/MathExtras.h"
36#include "llvm/Support/Compiler.h"
Torok Edwindac237e2009-07-08 20:53:28 +000037#include "llvm/Support/raw_ostream.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000038
39using namespace llvm;
40
41namespace {
42 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
43 bool
44 isI64IntS10Immediate(ConstantSDNode *CN)
45 {
Dan Gohman7810bfe2008-09-26 21:54:37 +000046 return isS10Constant(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000047 }
48
49 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
50 bool
51 isI32IntS10Immediate(ConstantSDNode *CN)
52 {
Dan Gohman7810bfe2008-09-26 21:54:37 +000053 return isS10Constant(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000054 }
55
Scott Michel504c3692007-12-17 22:32:34 +000056 //! ConstantSDNode predicate for i32 unsigned 10-bit immediate values
57 bool
58 isI32IntU10Immediate(ConstantSDNode *CN)
59 {
Dan Gohman7810bfe2008-09-26 21:54:37 +000060 return isU10Constant(CN->getSExtValue());
Scott Michel504c3692007-12-17 22:32:34 +000061 }
62
Scott Michel266bc8f2007-12-04 22:23:35 +000063 //! ConstantSDNode predicate for i16 sign-extended, 10-bit immediate values
64 bool
65 isI16IntS10Immediate(ConstantSDNode *CN)
66 {
Dan Gohman7810bfe2008-09-26 21:54:37 +000067 return isS10Constant(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000068 }
69
70 //! SDNode predicate for i16 sign-extended, 10-bit immediate values
71 bool
72 isI16IntS10Immediate(SDNode *N)
73 {
Scott Michel9de57a92009-01-26 22:33:37 +000074 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
75 return (CN != 0 && isI16IntS10Immediate(CN));
Scott Michel266bc8f2007-12-04 22:23:35 +000076 }
77
Scott Michelec2a08f2007-12-15 00:38:50 +000078 //! ConstantSDNode predicate for i16 unsigned 10-bit immediate values
79 bool
80 isI16IntU10Immediate(ConstantSDNode *CN)
81 {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000082 return isU10Constant((short) CN->getZExtValue());
Scott Michelec2a08f2007-12-15 00:38:50 +000083 }
84
85 //! SDNode predicate for i16 sign-extended, 10-bit immediate values
86 bool
87 isI16IntU10Immediate(SDNode *N)
88 {
89 return (N->getOpcode() == ISD::Constant
90 && isI16IntU10Immediate(cast<ConstantSDNode>(N)));
91 }
92
Scott Michel266bc8f2007-12-04 22:23:35 +000093 //! ConstantSDNode predicate for signed 16-bit values
94 /*!
95 \arg CN The constant SelectionDAG node holding the value
96 \arg Imm The returned 16-bit value, if returning true
97
98 This predicate tests the value in \a CN to see whether it can be
99 represented as a 16-bit, sign-extended quantity. Returns true if
100 this is the case.
101 */
102 bool
103 isIntS16Immediate(ConstantSDNode *CN, short &Imm)
104 {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000105 MVT vt = CN->getValueType(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000106 Imm = (short) CN->getZExtValue();
Duncan Sands8e4eb092008-06-08 20:54:56 +0000107 if (vt.getSimpleVT() >= MVT::i1 && vt.getSimpleVT() <= MVT::i16) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000108 return true;
109 } else if (vt == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000110 int32_t i_val = (int32_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +0000111 short s_val = (short) i_val;
112 return i_val == s_val;
113 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000114 int64_t i_val = (int64_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +0000115 short s_val = (short) i_val;
116 return i_val == s_val;
117 }
118
119 return false;
120 }
121
122 //! SDNode predicate for signed 16-bit values.
123 bool
124 isIntS16Immediate(SDNode *N, short &Imm)
125 {
126 return (N->getOpcode() == ISD::Constant
127 && isIntS16Immediate(cast<ConstantSDNode>(N), Imm));
128 }
129
130 //! ConstantFPSDNode predicate for representing floats as 16-bit sign ext.
131 static bool
132 isFPS16Immediate(ConstantFPSDNode *FPN, short &Imm)
133 {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000134 MVT vt = FPN->getValueType(0);
Scott Michel266bc8f2007-12-04 22:23:35 +0000135 if (vt == MVT::f32) {
Chris Lattnerd3ada752007-12-22 22:45:38 +0000136 int val = FloatToBits(FPN->getValueAPF().convertToFloat());
Scott Michel266bc8f2007-12-04 22:23:35 +0000137 int sval = (int) ((val << 16) >> 16);
138 Imm = (short) val;
139 return val == sval;
140 }
141
142 return false;
143 }
144
Scott Michel053c1da2008-01-29 02:16:57 +0000145 bool
Scott Michel02d711b2008-12-30 23:28:25 +0000146 isHighLow(const SDValue &Op)
Scott Michel053c1da2008-01-29 02:16:57 +0000147 {
148 return (Op.getOpcode() == SPUISD::IndirectAddr
149 && ((Op.getOperand(0).getOpcode() == SPUISD::Hi
150 && Op.getOperand(1).getOpcode() == SPUISD::Lo)
151 || (Op.getOperand(0).getOpcode() == SPUISD::Lo
152 && Op.getOperand(1).getOpcode() == SPUISD::Hi)));
153 }
154
Scott Michel266bc8f2007-12-04 22:23:35 +0000155 //===------------------------------------------------------------------===//
Duncan Sands83ec4b62008-06-06 12:08:01 +0000156 //! MVT to "useful stuff" mapping structure:
Scott Michel266bc8f2007-12-04 22:23:35 +0000157
158 struct valtype_map_s {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000159 MVT VT;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000160 unsigned ldresult_ins; /// LDRESULT instruction (0 = undefined)
Scott Michela59d4692008-02-23 18:41:37 +0000161 bool ldresult_imm; /// LDRESULT instruction requires immediate?
Scott Michelf0569be2008-12-27 04:51:36 +0000162 unsigned lrinst; /// LR instruction
Scott Michel266bc8f2007-12-04 22:23:35 +0000163 };
164
165 const valtype_map_s valtype_map[] = {
Scott Michelf0569be2008-12-27 04:51:36 +0000166 { MVT::i8, SPU::ORBIr8, true, SPU::LRr8 },
167 { MVT::i16, SPU::ORHIr16, true, SPU::LRr16 },
168 { MVT::i32, SPU::ORIr32, true, SPU::LRr32 },
169 { MVT::i64, SPU::ORr64, false, SPU::LRr64 },
170 { MVT::f32, SPU::ORf32, false, SPU::LRf32 },
171 { MVT::f64, SPU::ORf64, false, SPU::LRf64 },
Scott Michel58c58182008-01-17 20:38:41 +0000172 // vector types... (sigh!)
Scott Michelf0569be2008-12-27 04:51:36 +0000173 { MVT::v16i8, 0, false, SPU::LRv16i8 },
174 { MVT::v8i16, 0, false, SPU::LRv8i16 },
175 { MVT::v4i32, 0, false, SPU::LRv4i32 },
176 { MVT::v2i64, 0, false, SPU::LRv2i64 },
177 { MVT::v4f32, 0, false, SPU::LRv4f32 },
178 { MVT::v2f64, 0, false, SPU::LRv2f64 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000179 };
180
181 const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]);
182
Duncan Sands83ec4b62008-06-06 12:08:01 +0000183 const valtype_map_s *getValueTypeMapEntry(MVT VT)
Scott Michel266bc8f2007-12-04 22:23:35 +0000184 {
185 const valtype_map_s *retval = 0;
186 for (size_t i = 0; i < n_valtype_map; ++i) {
187 if (valtype_map[i].VT == VT) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000188 retval = valtype_map + i;
189 break;
Scott Michel266bc8f2007-12-04 22:23:35 +0000190 }
191 }
192
193
194#ifndef NDEBUG
195 if (retval == 0) {
Torok Edwindac237e2009-07-08 20:53:28 +0000196 std::string msg;
197 raw_string_ostream Msg(msg);
198 Msg << "SPUISelDAGToDAG.cpp: getValueTypeMapEntry returns NULL for "
199 << VT.getMVTString();
200 llvm_report_error(Msg.str());
Scott Michel266bc8f2007-12-04 22:23:35 +0000201 }
202#endif
203
204 return retval;
205 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000206
Scott Michel7ea02ff2009-03-17 01:15:45 +0000207 //! Generate the carry-generate shuffle mask.
208 SDValue getCarryGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
209 SmallVector<SDValue, 16 > ShufBytes;
Dan Gohman844731a2008-05-13 00:00:25 +0000210
Scott Michel7ea02ff2009-03-17 01:15:45 +0000211 // Create the shuffle mask for "rotating" the borrow up one register slot
212 // once the borrow is generated.
213 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
214 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
215 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
216 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
Scott Michel266bc8f2007-12-04 22:23:35 +0000217
Scott Michel7ea02ff2009-03-17 01:15:45 +0000218 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
219 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000220 }
Scott Michel02d711b2008-12-30 23:28:25 +0000221
Scott Michel7ea02ff2009-03-17 01:15:45 +0000222 //! Generate the borrow-generate shuffle mask
223 SDValue getBorrowGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
224 SmallVector<SDValue, 16 > ShufBytes;
225
226 // Create the shuffle mask for "rotating" the borrow up one register slot
227 // once the borrow is generated.
228 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
229 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
230 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
231 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
232
233 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
234 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000235 }
236
Scott Michel7ea02ff2009-03-17 01:15:45 +0000237 //===------------------------------------------------------------------===//
238 /// SPUDAGToDAGISel - Cell SPU-specific code to select SPU machine
239 /// instructions for SelectionDAG operations.
240 ///
241 class SPUDAGToDAGISel :
242 public SelectionDAGISel
243 {
244 SPUTargetMachine &TM;
245 SPUTargetLowering &SPUtli;
246 unsigned GlobalBaseReg;
Scott Michel02d711b2008-12-30 23:28:25 +0000247
Scott Michel7ea02ff2009-03-17 01:15:45 +0000248 public:
249 explicit SPUDAGToDAGISel(SPUTargetMachine &tm) :
250 SelectionDAGISel(tm),
251 TM(tm),
252 SPUtli(*tm.getTargetLowering())
253 { }
254
255 virtual bool runOnFunction(Function &Fn) {
256 // Make sure we re-emit a set of the global base reg if necessary
257 GlobalBaseReg = 0;
258 SelectionDAGISel::runOnFunction(Fn);
259 return true;
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000260 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000261
Scott Michel7ea02ff2009-03-17 01:15:45 +0000262 /// getI32Imm - Return a target constant with the specified value, of type
263 /// i32.
264 inline SDValue getI32Imm(uint32_t Imm) {
265 return CurDAG->getTargetConstant(Imm, MVT::i32);
Scott Michel94bd57e2009-01-15 04:41:47 +0000266 }
267
Scott Michel7ea02ff2009-03-17 01:15:45 +0000268 /// getI64Imm - Return a target constant with the specified value, of type
269 /// i64.
270 inline SDValue getI64Imm(uint64_t Imm) {
271 return CurDAG->getTargetConstant(Imm, MVT::i64);
272 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000273
Scott Michel7ea02ff2009-03-17 01:15:45 +0000274 /// getSmallIPtrImm - Return a target constant of pointer type.
275 inline SDValue getSmallIPtrImm(unsigned Imm) {
276 return CurDAG->getTargetConstant(Imm, SPUtli.getPointerTy());
Scott Michel266bc8f2007-12-04 22:23:35 +0000277 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000278
279 SDNode *emitBuildVector(SDValue build_vec) {
280 MVT vecVT = build_vec.getValueType();
281 MVT eltVT = vecVT.getVectorElementType();
282 SDNode *bvNode = build_vec.getNode();
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:
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) ||
293 (SPU::get_v4i32_imm(bvNode, *CurDAG).getNode() != 0))) ||
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) ||
297 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i64).getNode() != 0))))
298 return Select(build_vec);
299
300 // No, need to emit a constant pool spill:
301 std::vector<Constant*> CV;
302
303 for (size_t i = 0; i < build_vec.getNumOperands(); ++i) {
304 ConstantSDNode *V = dyn_cast<ConstantSDNode > (build_vec.getOperand(i));
305 CV.push_back(const_cast<ConstantInt *> (V->getConstantIntValue()));
306 }
307
308 Constant *CP = ConstantVector::get(CV);
309 SDValue CPIdx = CurDAG->getConstantPool(CP, SPUtli.getPointerTy());
310 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
311 SDValue CGPoolOffset =
312 SPU::LowerConstantPool(CPIdx, *CurDAG,
313 SPUtli.getSPUTargetMachine());
314 return SelectCode(CurDAG->getLoad(build_vec.getValueType(), dl,
315 CurDAG->getEntryNode(), CGPoolOffset,
316 PseudoSourceValue::getConstantPool(), 0,
317 false, Alignment));
Scott Michel266bc8f2007-12-04 22:23:35 +0000318 }
Scott Michel02d711b2008-12-30 23:28:25 +0000319
Scott Michel7ea02ff2009-03-17 01:15:45 +0000320 /// Select - Convert the specified operand from a target-independent to a
321 /// target-specific node if it hasn't already been changed.
322 SDNode *Select(SDValue Op);
Scott Michel266bc8f2007-12-04 22:23:35 +0000323
Scott Michel7ea02ff2009-03-17 01:15:45 +0000324 //! Emit the instruction sequence for i64 shl
325 SDNode *SelectSHLi64(SDValue &Op, MVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000326
Scott Michel7ea02ff2009-03-17 01:15:45 +0000327 //! Emit the instruction sequence for i64 srl
328 SDNode *SelectSRLi64(SDValue &Op, MVT OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000329
Scott Michel7ea02ff2009-03-17 01:15:45 +0000330 //! Emit the instruction sequence for i64 sra
331 SDNode *SelectSRAi64(SDValue &Op, MVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000332
Scott Michel7ea02ff2009-03-17 01:15:45 +0000333 //! Emit the necessary sequence for loading i64 constants:
334 SDNode *SelectI64Constant(SDValue &Op, MVT OpVT, DebugLoc dl);
335
336 //! Alternate instruction emit sequence for loading i64 constants
337 SDNode *SelectI64Constant(uint64_t i64const, MVT OpVT, DebugLoc dl);
338
339 //! Returns true if the address N is an A-form (local store) address
340 bool SelectAFormAddr(SDValue Op, SDValue N, SDValue &Base,
341 SDValue &Index);
342
343 //! D-form address predicate
344 bool SelectDFormAddr(SDValue Op, SDValue N, SDValue &Base,
345 SDValue &Index);
346
347 /// Alternate D-form address using i7 offset predicate
348 bool SelectDForm2Addr(SDValue Op, SDValue N, SDValue &Disp,
349 SDValue &Base);
350
351 /// D-form address selection workhorse
352 bool DFormAddressPredicate(SDValue Op, SDValue N, SDValue &Disp,
353 SDValue &Base, int minOffset, int maxOffset);
354
355 //! Address predicate if N can be expressed as an indexed [r+r] operation.
356 bool SelectXFormAddr(SDValue Op, SDValue N, SDValue &Base,
357 SDValue &Index);
358
359 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
360 /// inline asm expressions.
361 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
362 char ConstraintCode,
363 std::vector<SDValue> &OutOps) {
364 SDValue Op0, Op1;
365 switch (ConstraintCode) {
366 default: return true;
367 case 'm': // memory
368 if (!SelectDFormAddr(Op, Op, Op0, Op1)
369 && !SelectAFormAddr(Op, Op, Op0, Op1))
370 SelectXFormAddr(Op, Op, Op0, Op1);
371 break;
372 case 'o': // offsetable
373 if (!SelectDFormAddr(Op, Op, Op0, Op1)
374 && !SelectAFormAddr(Op, Op, Op0, Op1)) {
375 Op0 = Op;
376 Op1 = getSmallIPtrImm(0);
377 }
378 break;
379 case 'v': // not offsetable
380#if 1
Torok Edwinc23197a2009-07-14 16:55:14 +0000381 llvm_unreachable("InlineAsmMemoryOperand 'v' constraint not handled.");
Scott Michel7ea02ff2009-03-17 01:15:45 +0000382#else
383 SelectAddrIdxOnly(Op, Op, Op0, Op1);
384#endif
385 break;
386 }
387
388 OutOps.push_back(Op0);
389 OutOps.push_back(Op1);
390 return false;
391 }
392
393 /// InstructionSelect - This callback is invoked by
394 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
395 virtual void InstructionSelect();
396
397 virtual const char *getPassName() const {
398 return "Cell SPU DAG->DAG Pattern Instruction Selection";
399 }
400
401 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
402 /// this target when scheduling the DAG.
403 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
404 const TargetInstrInfo *II = TM.getInstrInfo();
405 assert(II && "No InstrInfo?");
406 return new SPUHazardRecognizer(*II);
407 }
408
409 // Include the pieces autogenerated from the target description.
Scott Michel266bc8f2007-12-04 22:23:35 +0000410#include "SPUGenDAGISel.inc"
Scott Michel7ea02ff2009-03-17 01:15:45 +0000411 };
Dan Gohman844731a2008-05-13 00:00:25 +0000412}
413
Evan Chengdb8d56b2008-06-30 20:45:06 +0000414/// InstructionSelect - This callback is invoked by
Scott Michel266bc8f2007-12-04 22:23:35 +0000415/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
416void
Dan Gohmanf350b272008-08-23 02:25:05 +0000417SPUDAGToDAGISel::InstructionSelect()
Scott Michel266bc8f2007-12-04 22:23:35 +0000418{
419 DEBUG(BB->dump());
420
421 // Select target instructions for the DAG.
David Greene8ad4c002008-10-27 21:56:29 +0000422 SelectRoot(*CurDAG);
Dan Gohmanf350b272008-08-23 02:25:05 +0000423 CurDAG->RemoveDeadNodes();
Scott Michel266bc8f2007-12-04 22:23:35 +0000424}
425
Scott Michel266bc8f2007-12-04 22:23:35 +0000426/*!
Scott Michel9de57a92009-01-26 22:33:37 +0000427 \arg Op The ISD instruction operand
Scott Michel266bc8f2007-12-04 22:23:35 +0000428 \arg N The address to be tested
429 \arg Base The base address
430 \arg Index The base address index
431 */
432bool
Dan Gohman475871a2008-07-27 21:46:04 +0000433SPUDAGToDAGISel::SelectAFormAddr(SDValue Op, SDValue N, SDValue &Base,
434 SDValue &Index) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000435 // These match the addr256k operand type:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000436 MVT OffsVT = MVT::i16;
Dan Gohman475871a2008-07-27 21:46:04 +0000437 SDValue Zero = CurDAG->getTargetConstant(0, OffsVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000438
439 switch (N.getOpcode()) {
440 case ISD::Constant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000441 case ISD::ConstantPool:
442 case ISD::GlobalAddress:
Torok Edwindac237e2009-07-08 20:53:28 +0000443 llvm_report_error("SPU SelectAFormAddr: Constant/Pool/Global not lowered.");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000444 /*NOTREACHED*/
445
Scott Michel053c1da2008-01-29 02:16:57 +0000446 case ISD::TargetConstant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000447 case ISD::TargetGlobalAddress:
Scott Michel053c1da2008-01-29 02:16:57 +0000448 case ISD::TargetJumpTable:
Torok Edwindac237e2009-07-08 20:53:28 +0000449 llvm_report_error("SPUSelectAFormAddr: Target Constant/Pool/Global "
450 "not wrapped as A-form address.");
Scott Michel053c1da2008-01-29 02:16:57 +0000451 /*NOTREACHED*/
Scott Michel266bc8f2007-12-04 22:23:35 +0000452
Scott Michel02d711b2008-12-30 23:28:25 +0000453 case SPUISD::AFormAddr:
Scott Michel053c1da2008-01-29 02:16:57 +0000454 // Just load from memory if there's only a single use of the location,
455 // otherwise, this will get handled below with D-form offset addresses
456 if (N.hasOneUse()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000457 SDValue Op0 = N.getOperand(0);
Scott Michel053c1da2008-01-29 02:16:57 +0000458 switch (Op0.getOpcode()) {
459 case ISD::TargetConstantPool:
460 case ISD::TargetJumpTable:
461 Base = Op0;
462 Index = Zero;
463 return true;
464
465 case ISD::TargetGlobalAddress: {
466 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op0);
467 GlobalValue *GV = GSDN->getGlobal();
468 if (GV->getAlignment() == 16) {
469 Base = Op0;
470 Index = Zero;
471 return true;
472 }
473 break;
474 }
475 }
476 }
477 break;
478 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000479 return false;
480}
481
Scott Michel02d711b2008-12-30 23:28:25 +0000482bool
Dan Gohman475871a2008-07-27 21:46:04 +0000483SPUDAGToDAGISel::SelectDForm2Addr(SDValue Op, SDValue N, SDValue &Disp,
484 SDValue &Base) {
Scott Michel203b2d62008-04-30 00:30:08 +0000485 const int minDForm2Offset = -(1 << 7);
486 const int maxDForm2Offset = (1 << 7) - 1;
487 return DFormAddressPredicate(Op, N, Disp, Base, minDForm2Offset,
488 maxDForm2Offset);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000489}
490
Scott Michel266bc8f2007-12-04 22:23:35 +0000491/*!
492 \arg Op The ISD instruction (ignored)
493 \arg N The address to be tested
494 \arg Base Base address register/pointer
495 \arg Index Base address index
496
497 Examine the input address by a base register plus a signed 10-bit
498 displacement, [r+I10] (D-form address).
499
500 \return true if \a N is a D-form address with \a Base and \a Index set
Dan Gohman475871a2008-07-27 21:46:04 +0000501 to non-empty SDValue instances.
Scott Michel266bc8f2007-12-04 22:23:35 +0000502*/
503bool
Dan Gohman475871a2008-07-27 21:46:04 +0000504SPUDAGToDAGISel::SelectDFormAddr(SDValue Op, SDValue N, SDValue &Base,
505 SDValue &Index) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000506 return DFormAddressPredicate(Op, N, Base, Index,
Scott Michel9c0c6b22008-11-21 02:56:16 +0000507 SPUFrameInfo::minFrameOffset(),
508 SPUFrameInfo::maxFrameOffset());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000509}
510
511bool
Dan Gohman475871a2008-07-27 21:46:04 +0000512SPUDAGToDAGISel::DFormAddressPredicate(SDValue Op, SDValue N, SDValue &Base,
513 SDValue &Index, int minOffset,
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000514 int maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000515 unsigned Opc = N.getOpcode();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000516 MVT PtrTy = SPUtli.getPointerTy();
Scott Michel266bc8f2007-12-04 22:23:35 +0000517
Scott Michel053c1da2008-01-29 02:16:57 +0000518 if (Opc == ISD::FrameIndex) {
519 // Stack frame index must be less than 512 (divided by 16):
Scott Michel203b2d62008-04-30 00:30:08 +0000520 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(N);
521 int FI = int(FIN->getIndex());
Scott Michel266bc8f2007-12-04 22:23:35 +0000522 DEBUG(cerr << "SelectDFormAddr: ISD::FrameIndex = "
Scott Michel203b2d62008-04-30 00:30:08 +0000523 << FI << "\n");
524 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000525 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000526 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel266bc8f2007-12-04 22:23:35 +0000527 return true;
528 }
529 } else if (Opc == ISD::ADD) {
530 // Generated by getelementptr
Dan Gohman475871a2008-07-27 21:46:04 +0000531 const SDValue Op0 = N.getOperand(0);
532 const SDValue Op1 = N.getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000533
Scott Michel053c1da2008-01-29 02:16:57 +0000534 if ((Op0.getOpcode() == SPUISD::Hi && Op1.getOpcode() == SPUISD::Lo)
535 || (Op1.getOpcode() == SPUISD::Hi && Op0.getOpcode() == SPUISD::Lo)) {
536 Base = CurDAG->getTargetConstant(0, PtrTy);
537 Index = N;
538 return true;
539 } else if (Op1.getOpcode() == ISD::Constant
540 || Op1.getOpcode() == ISD::TargetConstant) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000541 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000542 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel9de5d0d2008-01-11 02:53:15 +0000543
Scott Michel053c1da2008-01-29 02:16:57 +0000544 if (Op0.getOpcode() == ISD::FrameIndex) {
Scott Michel203b2d62008-04-30 00:30:08 +0000545 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op0);
546 int FI = int(FIN->getIndex());
Scott Michel9de5d0d2008-01-11 02:53:15 +0000547 DEBUG(cerr << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000548 << " frame index = " << FI << "\n");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000549
Scott Michel203b2d62008-04-30 00:30:08 +0000550 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000551 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000552 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000553 return true;
554 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000555 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000556 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000557 Index = Op0;
558 return true;
559 }
560 } else if (Op0.getOpcode() == ISD::Constant
561 || Op0.getOpcode() == ISD::TargetConstant) {
562 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000563 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel053c1da2008-01-29 02:16:57 +0000564
565 if (Op1.getOpcode() == ISD::FrameIndex) {
Scott Michel203b2d62008-04-30 00:30:08 +0000566 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op1);
567 int FI = int(FIN->getIndex());
Scott Michel053c1da2008-01-29 02:16:57 +0000568 DEBUG(cerr << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000569 << " frame index = " << FI << "\n");
Scott Michel053c1da2008-01-29 02:16:57 +0000570
Scott Michel203b2d62008-04-30 00:30:08 +0000571 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000572 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000573 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000574 return true;
575 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000576 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000577 Base = CurDAG->getTargetConstant(offset, PtrTy);
578 Index = Op1;
579 return true;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000580 }
Scott Michel053c1da2008-01-29 02:16:57 +0000581 }
582 } else if (Opc == SPUISD::IndirectAddr) {
583 // Indirect with constant offset -> D-Form address
Dan Gohman475871a2008-07-27 21:46:04 +0000584 const SDValue Op0 = N.getOperand(0);
585 const SDValue Op1 = N.getOperand(1);
Scott Michel497e8882008-01-11 21:01:19 +0000586
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000587 if (Op0.getOpcode() == SPUISD::Hi
588 && Op1.getOpcode() == SPUISD::Lo) {
Scott Michel053c1da2008-01-29 02:16:57 +0000589 // (SPUindirect (SPUhi <arg>, 0), (SPUlo <arg>, 0))
Scott Michel9de5d0d2008-01-11 02:53:15 +0000590 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000591 Index = N;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000592 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000593 } else if (isa<ConstantSDNode>(Op0) || isa<ConstantSDNode>(Op1)) {
594 int32_t offset = 0;
Dan Gohman475871a2008-07-27 21:46:04 +0000595 SDValue idxOp;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000596
597 if (isa<ConstantSDNode>(Op1)) {
598 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000599 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000600 idxOp = Op0;
601 } else if (isa<ConstantSDNode>(Op0)) {
602 ConstantSDNode *CN = cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000603 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000604 idxOp = Op1;
Scott Michel02d711b2008-12-30 23:28:25 +0000605 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000606
607 if (offset >= minOffset && offset <= maxOffset) {
608 Base = CurDAG->getTargetConstant(offset, PtrTy);
609 Index = idxOp;
610 return true;
611 }
Scott Michel9de5d0d2008-01-11 02:53:15 +0000612 }
Scott Michel053c1da2008-01-29 02:16:57 +0000613 } else if (Opc == SPUISD::AFormAddr) {
614 Base = CurDAG->getTargetConstant(0, N.getValueType());
615 Index = N;
Scott Michel58c58182008-01-17 20:38:41 +0000616 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000617 } else if (Opc == SPUISD::LDRESULT) {
618 Base = CurDAG->getTargetConstant(0, N.getValueType());
619 Index = N;
620 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000621 } else if (Opc == ISD::Register || Opc == ISD::CopyFromReg) {
622 unsigned OpOpc = Op.getOpcode();
623
624 if (OpOpc == ISD::STORE || OpOpc == ISD::LOAD) {
625 // Direct load/store without getelementptr
626 SDValue Addr, Offs;
627
628 // Get the register from CopyFromReg
629 if (Opc == ISD::CopyFromReg)
630 Addr = N.getOperand(1);
631 else
632 Addr = N; // Register
633
Scott Michelaedc6372008-12-10 00:15:19 +0000634 Offs = ((OpOpc == ISD::STORE) ? Op.getOperand(3) : Op.getOperand(2));
Scott Michel9c0c6b22008-11-21 02:56:16 +0000635
636 if (Offs.getOpcode() == ISD::Constant || Offs.getOpcode() == ISD::UNDEF) {
637 if (Offs.getOpcode() == ISD::UNDEF)
638 Offs = CurDAG->getTargetConstant(0, Offs.getValueType());
639
640 Base = Offs;
641 Index = Addr;
642 return true;
643 }
Scott Michelaedc6372008-12-10 00:15:19 +0000644 } else {
645 /* If otherwise unadorned, default to D-form address with 0 offset: */
646 if (Opc == ISD::CopyFromReg) {
Scott Michel19c10e62009-01-26 03:37:41 +0000647 Index = N.getOperand(1);
Scott Michelaedc6372008-12-10 00:15:19 +0000648 } else {
Scott Michel19c10e62009-01-26 03:37:41 +0000649 Index = N;
Scott Michelaedc6372008-12-10 00:15:19 +0000650 }
651
652 Base = CurDAG->getTargetConstant(0, Index.getValueType());
653 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000654 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000655 }
Scott Michel9c0c6b22008-11-21 02:56:16 +0000656
Scott Michel266bc8f2007-12-04 22:23:35 +0000657 return false;
658}
659
660/*!
661 \arg Op The ISD instruction operand
662 \arg N The address operand
663 \arg Base The base pointer operand
664 \arg Index The offset/index operand
665
Scott Michel9c0c6b22008-11-21 02:56:16 +0000666 If the address \a N can be expressed as an A-form or D-form address, returns
667 false. Otherwise, creates two operands, Base and Index that will become the
668 (r)(r) X-form address.
Scott Michel266bc8f2007-12-04 22:23:35 +0000669*/
670bool
Dan Gohman475871a2008-07-27 21:46:04 +0000671SPUDAGToDAGISel::SelectXFormAddr(SDValue Op, SDValue N, SDValue &Base,
672 SDValue &Index) {
Scott Michel9c0c6b22008-11-21 02:56:16 +0000673 if (!SelectAFormAddr(Op, N, Base, Index)
674 && !SelectDFormAddr(Op, N, Base, Index)) {
Scott Michel18fae692008-11-25 17:29:43 +0000675 // If the address is neither A-form or D-form, punt and use an X-form
676 // address:
Scott Michel1a6cdb62008-12-01 17:56:02 +0000677 Base = N.getOperand(1);
678 Index = N.getOperand(0);
Scott Michel50843c02008-11-25 04:03:47 +0000679 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000680 }
681
682 return false;
Scott Michel58c58182008-01-17 20:38:41 +0000683}
684
Scott Michel266bc8f2007-12-04 22:23:35 +0000685//! Convert the operand from a target-independent to a target-specific node
686/*!
687 */
688SDNode *
Dan Gohman475871a2008-07-27 21:46:04 +0000689SPUDAGToDAGISel::Select(SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000690 SDNode *N = Op.getNode();
Scott Michel266bc8f2007-12-04 22:23:35 +0000691 unsigned Opc = N->getOpcode();
Scott Michel58c58182008-01-17 20:38:41 +0000692 int n_ops = -1;
693 unsigned NewOpc;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000694 MVT OpVT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +0000695 SDValue Ops[8];
Dale Johannesened2eee62009-02-06 01:31:28 +0000696 DebugLoc dl = N->getDebugLoc();
Scott Michel266bc8f2007-12-04 22:23:35 +0000697
Dan Gohmane8be6c62008-07-17 19:10:17 +0000698 if (N->isMachineOpcode()) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000699 return NULL; // Already selected.
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000700 }
701
702 if (Opc == ISD::FrameIndex) {
Scott Michel02d711b2008-12-30 23:28:25 +0000703 int FI = cast<FrameIndexSDNode>(N)->getIndex();
704 SDValue TFI = CurDAG->getTargetFrameIndex(FI, Op.getValueType());
705 SDValue Imm0 = CurDAG->getTargetConstant(0, Op.getValueType());
Scott Michel266bc8f2007-12-04 22:23:35 +0000706
Scott Michel02d711b2008-12-30 23:28:25 +0000707 if (FI < 128) {
Scott Michel203b2d62008-04-30 00:30:08 +0000708 NewOpc = SPU::AIr32;
Scott Michel02d711b2008-12-30 23:28:25 +0000709 Ops[0] = TFI;
710 Ops[1] = Imm0;
Scott Michel203b2d62008-04-30 00:30:08 +0000711 n_ops = 2;
712 } else {
Scott Michel203b2d62008-04-30 00:30:08 +0000713 NewOpc = SPU::Ar32;
Scott Michel02d711b2008-12-30 23:28:25 +0000714 Ops[0] = CurDAG->getRegister(SPU::R1, Op.getValueType());
Dale Johannesened2eee62009-02-06 01:31:28 +0000715 Ops[1] = SDValue(CurDAG->getTargetNode(SPU::ILAr32, dl, Op.getValueType(),
Scott Michel02d711b2008-12-30 23:28:25 +0000716 TFI, Imm0), 0);
Scott Michel203b2d62008-04-30 00:30:08 +0000717 n_ops = 2;
Scott Michel203b2d62008-04-30 00:30:08 +0000718 }
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000719 } else if (Opc == ISD::Constant && OpVT == MVT::i64) {
720 // Catch the i64 constants that end up here. Note: The backend doesn't
721 // attempt to legalize the constant (it's useless because DAGCombiner
722 // will insert 64-bit constants and we can't stop it).
Scott Michel7ea02ff2009-03-17 01:15:45 +0000723 return SelectI64Constant(Op, OpVT, Op.getDebugLoc());
Scott Michel94bd57e2009-01-15 04:41:47 +0000724 } else if ((Opc == ISD::ZERO_EXTEND || Opc == ISD::ANY_EXTEND)
725 && OpVT == MVT::i64) {
726 SDValue Op0 = Op.getOperand(0);
727 MVT Op0VT = Op0.getValueType();
728 MVT Op0VecVT = MVT::getVectorVT(Op0VT, (128 / Op0VT.getSizeInBits()));
729 MVT OpVecVT = MVT::getVectorVT(OpVT, (128 / OpVT.getSizeInBits()));
730 SDValue shufMask;
Scott Michel58c58182008-01-17 20:38:41 +0000731
Scott Michel94bd57e2009-01-15 04:41:47 +0000732 switch (Op0VT.getSimpleVT()) {
733 default:
Torok Edwindac237e2009-07-08 20:53:28 +0000734 llvm_report_error("CellSPU Select: Unhandled zero/any extend MVT");
Scott Michel94bd57e2009-01-15 04:41:47 +0000735 /*NOTREACHED*/
Scott Michel94bd57e2009-01-15 04:41:47 +0000736 case MVT::i32:
Evan Chenga87008d2009-02-25 22:49:59 +0000737 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000738 CurDAG->getConstant(0x80808080, MVT::i32),
739 CurDAG->getConstant(0x00010203, MVT::i32),
740 CurDAG->getConstant(0x80808080, MVT::i32),
741 CurDAG->getConstant(0x08090a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000742 break;
743
744 case MVT::i16:
Evan Chenga87008d2009-02-25 22:49:59 +0000745 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000746 CurDAG->getConstant(0x80808080, MVT::i32),
747 CurDAG->getConstant(0x80800203, MVT::i32),
748 CurDAG->getConstant(0x80808080, MVT::i32),
749 CurDAG->getConstant(0x80800a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000750 break;
751
752 case MVT::i8:
Evan Chenga87008d2009-02-25 22:49:59 +0000753 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000754 CurDAG->getConstant(0x80808080, MVT::i32),
755 CurDAG->getConstant(0x80808003, MVT::i32),
756 CurDAG->getConstant(0x80808080, MVT::i32),
757 CurDAG->getConstant(0x8080800b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000758 break;
Scott Michel58c58182008-01-17 20:38:41 +0000759 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000760
761 SDNode *shufMaskLoad = emitBuildVector(shufMask);
762 SDNode *PromoteScalar =
Dale Johannesened2eee62009-02-06 01:31:28 +0000763 SelectCode(CurDAG->getNode(SPUISD::PREFSLOT2VEC, dl, Op0VecVT, Op0));
Scott Michel94bd57e2009-01-15 04:41:47 +0000764
765 SDValue zextShuffle =
Dale Johannesened2eee62009-02-06 01:31:28 +0000766 CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000767 SDValue(PromoteScalar, 0),
768 SDValue(PromoteScalar, 0),
769 SDValue(shufMaskLoad, 0));
Scott Michel94bd57e2009-01-15 04:41:47 +0000770
771 // N.B.: BIT_CONVERT replaces and updates the zextShuffle node, so we
772 // re-use it in the VEC2PREFSLOT selection without needing to explicitly
773 // call SelectCode (it's already done for us.)
Dale Johannesen04692802009-02-07 00:56:46 +0000774 SelectCode(CurDAG->getNode(ISD::BIT_CONVERT, dl, OpVecVT, zextShuffle));
Dale Johannesened2eee62009-02-06 01:31:28 +0000775 return SelectCode(CurDAG->getNode(SPUISD::VEC2PREFSLOT, dl, OpVT,
Scott Michel94bd57e2009-01-15 04:41:47 +0000776 zextShuffle));
777 } else if (Opc == ISD::ADD && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
778 SDNode *CGLoad =
Scott Michel7ea02ff2009-03-17 01:15:45 +0000779 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl));
Scott Michel94bd57e2009-01-15 04:41:47 +0000780
Dale Johannesened2eee62009-02-06 01:31:28 +0000781 return SelectCode(CurDAG->getNode(SPUISD::ADD64_MARKER, dl, OpVT,
Scott Michel94bd57e2009-01-15 04:41:47 +0000782 Op.getOperand(0), Op.getOperand(1),
783 SDValue(CGLoad, 0)));
784 } else if (Opc == ISD::SUB && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
785 SDNode *CGLoad =
Scott Michel7ea02ff2009-03-17 01:15:45 +0000786 emitBuildVector(getBorrowGenerateShufMask(*CurDAG, dl));
Scott Michel94bd57e2009-01-15 04:41:47 +0000787
Dale Johannesened2eee62009-02-06 01:31:28 +0000788 return SelectCode(CurDAG->getNode(SPUISD::SUB64_MARKER, dl, OpVT,
Scott Michel94bd57e2009-01-15 04:41:47 +0000789 Op.getOperand(0), Op.getOperand(1),
790 SDValue(CGLoad, 0)));
791 } else if (Opc == ISD::MUL && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
792 SDNode *CGLoad =
Scott Michel7ea02ff2009-03-17 01:15:45 +0000793 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl));
Scott Michel94bd57e2009-01-15 04:41:47 +0000794
Dale Johannesened2eee62009-02-06 01:31:28 +0000795 return SelectCode(CurDAG->getNode(SPUISD::MUL64_MARKER, dl, OpVT,
Scott Michel94bd57e2009-01-15 04:41:47 +0000796 Op.getOperand(0), Op.getOperand(1),
797 SDValue(CGLoad, 0)));
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000798 } else if (Opc == ISD::TRUNCATE) {
799 SDValue Op0 = Op.getOperand(0);
800 if ((Op0.getOpcode() == ISD::SRA || Op0.getOpcode() == ISD::SRL)
801 && OpVT == MVT::i32
802 && Op0.getValueType() == MVT::i64) {
Scott Michel9de57a92009-01-26 22:33:37 +0000803 // Catch (truncate:i32 ([sra|srl]:i64 arg, c), where c >= 32
804 //
805 // Take advantage of the fact that the upper 32 bits are in the
806 // i32 preferred slot and avoid shuffle gymnastics:
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000807 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
808 if (CN != 0) {
809 unsigned shift_amt = unsigned(CN->getZExtValue());
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000810
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000811 if (shift_amt >= 32) {
812 SDNode *hi32 =
Dale Johannesened2eee62009-02-06 01:31:28 +0000813 CurDAG->getTargetNode(SPU::ORr32_r64, dl, OpVT,
814 Op0.getOperand(0));
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000815
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000816 shift_amt -= 32;
817 if (shift_amt > 0) {
818 // Take care of the additional shift, if present:
819 SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32);
820 unsigned Opc = SPU::ROTMAIr32_i32;
Scott Michel9de57a92009-01-26 22:33:37 +0000821
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000822 if (Op0.getOpcode() == ISD::SRL)
823 Opc = SPU::ROTMr32;
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000824
Dale Johannesened2eee62009-02-06 01:31:28 +0000825 hi32 = CurDAG->getTargetNode(Opc, dl, OpVT, SDValue(hi32, 0),
826 shift);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000827 }
828
829 return hi32;
830 }
831 }
832 }
Scott Michel02d711b2008-12-30 23:28:25 +0000833 } else if (Opc == ISD::SHL) {
834 if (OpVT == MVT::i64) {
835 return SelectSHLi64(Op, OpVT);
836 }
837 } else if (Opc == ISD::SRL) {
838 if (OpVT == MVT::i64) {
839 return SelectSRLi64(Op, OpVT);
840 }
841 } else if (Opc == ISD::SRA) {
842 if (OpVT == MVT::i64) {
843 return SelectSRAi64(Op, OpVT);
844 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000845 } else if (Opc == ISD::FNEG
846 && (OpVT == MVT::f64 || OpVT == MVT::v2f64)) {
847 DebugLoc dl = Op.getDebugLoc();
848 // Check if the pattern is a special form of DFNMS:
849 // (fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC))
850 SDValue Op0 = Op.getOperand(0);
851 if (Op0.getOpcode() == ISD::FSUB) {
852 SDValue Op00 = Op0.getOperand(0);
853 if (Op00.getOpcode() == ISD::FMUL) {
854 unsigned Opc = SPU::DFNMSf64;
855 if (OpVT == MVT::v2f64)
856 Opc = SPU::DFNMSv2f64;
857
858 return CurDAG->getTargetNode(Opc, dl, OpVT,
859 Op00.getOperand(0),
860 Op00.getOperand(1),
861 Op0.getOperand(1));
862 }
863 }
864
865 SDValue negConst = CurDAG->getConstant(0x8000000000000000ULL, MVT::i64);
866 SDNode *signMask = 0;
Scott Michela82d3f72009-03-17 16:45:16 +0000867 unsigned Opc = SPU::XORfneg64;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000868
869 if (OpVT == MVT::f64) {
870 signMask = SelectI64Constant(negConst, MVT::i64, dl);
871 } else if (OpVT == MVT::v2f64) {
Scott Michela82d3f72009-03-17 16:45:16 +0000872 Opc = SPU::XORfnegvec;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000873 signMask = emitBuildVector(CurDAG->getNode(ISD::BUILD_VECTOR, dl,
Bill Wendling51b16f42009-05-30 01:09:53 +0000874 MVT::v2i64,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000875 negConst, negConst));
876 }
877
878 return CurDAG->getTargetNode(Opc, dl, OpVT,
Bill Wendling51b16f42009-05-30 01:09:53 +0000879 Op.getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000880 } else if (Opc == ISD::FABS) {
881 if (OpVT == MVT::f64) {
882 SDNode *signMask = SelectI64Constant(0x7fffffffffffffffULL, MVT::i64, dl);
883 return CurDAG->getTargetNode(SPU::ANDfabs64, dl, OpVT,
884 Op.getOperand(0), SDValue(signMask, 0));
885 } else if (OpVT == MVT::v2f64) {
886 SDValue absConst = CurDAG->getConstant(0x7fffffffffffffffULL, MVT::i64);
887 SDValue absVec = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64,
888 absConst, absConst);
889 SDNode *signMask = emitBuildVector(absVec);
890 return CurDAG->getTargetNode(SPU::ANDfabsvec, dl, OpVT,
891 Op.getOperand(0), SDValue(signMask, 0));
892 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000893 } else if (Opc == SPUISD::LDRESULT) {
894 // Custom select instructions for LDRESULT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000895 MVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000896 SDValue Arg = N->getOperand(0);
897 SDValue Chain = N->getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000898 SDNode *Result;
Scott Michela59d4692008-02-23 18:41:37 +0000899 const valtype_map_s *vtm = getValueTypeMapEntry(VT);
900
901 if (vtm->ldresult_ins == 0) {
Torok Edwindac237e2009-07-08 20:53:28 +0000902 std::string msg;
903 raw_string_ostream Msg(msg);
904 Msg << "LDRESULT for unsupported type: "
905 << VT.getMVTString();
906 llvm_report_error(Msg.str());
Scott Michela59d4692008-02-23 18:41:37 +0000907 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000908
Scott Michela59d4692008-02-23 18:41:37 +0000909 Opc = vtm->ldresult_ins;
910 if (vtm->ldresult_imm) {
Dan Gohman475871a2008-07-27 21:46:04 +0000911 SDValue Zero = CurDAG->getTargetConstant(0, VT);
Scott Michel86c041f2007-12-20 00:44:13 +0000912
Dale Johannesened2eee62009-02-06 01:31:28 +0000913 Result = CurDAG->getTargetNode(Opc, dl, VT, MVT::Other, Arg, Zero, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000914 } else {
Dale Johannesened2eee62009-02-06 01:31:28 +0000915 Result = CurDAG->getTargetNode(Opc, dl, VT, MVT::Other, Arg, Arg, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000916 }
917
Scott Michel266bc8f2007-12-04 22:23:35 +0000918 return Result;
Scott Michel053c1da2008-01-29 02:16:57 +0000919 } else if (Opc == SPUISD::IndirectAddr) {
Scott Michelf0569be2008-12-27 04:51:36 +0000920 // Look at the operands: SelectCode() will catch the cases that aren't
921 // specifically handled here.
922 //
923 // SPUInstrInfo catches the following patterns:
924 // (SPUindirect (SPUhi ...), (SPUlo ...))
925 // (SPUindirect $sp, imm)
926 MVT VT = Op.getValueType();
927 SDValue Op0 = N->getOperand(0);
928 SDValue Op1 = N->getOperand(1);
929 RegisterSDNode *RN;
Scott Michel58c58182008-01-17 20:38:41 +0000930
Scott Michelf0569be2008-12-27 04:51:36 +0000931 if ((Op0.getOpcode() != SPUISD::Hi && Op1.getOpcode() != SPUISD::Lo)
932 || (Op0.getOpcode() == ISD::Register
933 && ((RN = dyn_cast<RegisterSDNode>(Op0.getNode())) != 0
934 && RN->getReg() != SPU::R1))) {
935 NewOpc = SPU::Ar32;
Scott Michel58c58182008-01-17 20:38:41 +0000936 if (Op1.getOpcode() == ISD::Constant) {
937 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Scott Michelf0569be2008-12-27 04:51:36 +0000938 Op1 = CurDAG->getTargetConstant(CN->getSExtValue(), VT);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000939 NewOpc = (isI32IntS10Immediate(CN) ? SPU::AIr32 : SPU::Ar32);
Scott Michel58c58182008-01-17 20:38:41 +0000940 }
Scott Michelf0569be2008-12-27 04:51:36 +0000941 Ops[0] = Op0;
942 Ops[1] = Op1;
943 n_ops = 2;
Scott Michel58c58182008-01-17 20:38:41 +0000944 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000945 }
Scott Michel02d711b2008-12-30 23:28:25 +0000946
Scott Michel58c58182008-01-17 20:38:41 +0000947 if (n_ops > 0) {
948 if (N->hasOneUse())
949 return CurDAG->SelectNodeTo(N, NewOpc, OpVT, Ops, n_ops);
950 else
Dale Johannesened2eee62009-02-06 01:31:28 +0000951 return CurDAG->getTargetNode(NewOpc, dl, OpVT, Ops, n_ops);
Scott Michel58c58182008-01-17 20:38:41 +0000952 } else
953 return SelectCode(Op);
Scott Michel266bc8f2007-12-04 22:23:35 +0000954}
955
Scott Michel02d711b2008-12-30 23:28:25 +0000956/*!
957 * Emit the instruction sequence for i64 left shifts. The basic algorithm
958 * is to fill the bottom two word slots with zeros so that zeros are shifted
959 * in as the entire quadword is shifted left.
960 *
961 * \note This code could also be used to implement v2i64 shl.
962 *
963 * @param Op The shl operand
964 * @param OpVT Op's machine value value type (doesn't need to be passed, but
965 * makes life easier.)
966 * @return The SDNode with the entire instruction sequence
967 */
968SDNode *
969SPUDAGToDAGISel::SelectSHLi64(SDValue &Op, MVT OpVT) {
970 SDValue Op0 = Op.getOperand(0);
971 MVT VecVT = MVT::getVectorVT(OpVT, (128 / OpVT.getSizeInBits()));
972 SDValue ShiftAmt = Op.getOperand(1);
973 MVT ShiftAmtVT = ShiftAmt.getValueType();
974 SDNode *VecOp0, *SelMask, *ZeroFill, *Shift = 0;
975 SDValue SelMaskVal;
Dale Johannesened2eee62009-02-06 01:31:28 +0000976 DebugLoc dl = Op.getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +0000977
Dale Johannesened2eee62009-02-06 01:31:28 +0000978 VecOp0 = CurDAG->getTargetNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Scott Michel02d711b2008-12-30 23:28:25 +0000979 SelMaskVal = CurDAG->getTargetConstant(0xff00ULL, MVT::i16);
Dale Johannesened2eee62009-02-06 01:31:28 +0000980 SelMask = CurDAG->getTargetNode(SPU::FSMBIv2i64, dl, VecVT, SelMaskVal);
981 ZeroFill = CurDAG->getTargetNode(SPU::ILv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +0000982 CurDAG->getTargetConstant(0, OpVT));
Dale Johannesened2eee62009-02-06 01:31:28 +0000983 VecOp0 = CurDAG->getTargetNode(SPU::SELBv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +0000984 SDValue(ZeroFill, 0),
985 SDValue(VecOp0, 0),
986 SDValue(SelMask, 0));
987
988 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
989 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
990 unsigned bits = unsigned(CN->getZExtValue()) & 7;
991
992 if (bytes > 0) {
993 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +0000994 CurDAG->getTargetNode(SPU::SHLQBYIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +0000995 SDValue(VecOp0, 0),
996 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
997 }
998
999 if (bits > 0) {
1000 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001001 CurDAG->getTargetNode(SPU::SHLQBIIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001002 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1003 CurDAG->getTargetConstant(bits, ShiftAmtVT));
1004 }
1005 } else {
1006 SDNode *Bytes =
Dale Johannesened2eee62009-02-06 01:31:28 +00001007 CurDAG->getTargetNode(SPU::ROTMIr32, dl, ShiftAmtVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001008 ShiftAmt,
1009 CurDAG->getTargetConstant(3, ShiftAmtVT));
1010 SDNode *Bits =
Dale Johannesened2eee62009-02-06 01:31:28 +00001011 CurDAG->getTargetNode(SPU::ANDIr32, dl, ShiftAmtVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001012 ShiftAmt,
1013 CurDAG->getTargetConstant(7, ShiftAmtVT));
1014 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001015 CurDAG->getTargetNode(SPU::SHLQBYv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001016 SDValue(VecOp0, 0), SDValue(Bytes, 0));
1017 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001018 CurDAG->getTargetNode(SPU::SHLQBIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001019 SDValue(Shift, 0), SDValue(Bits, 0));
1020 }
1021
Dale Johannesened2eee62009-02-06 01:31:28 +00001022 return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001023}
1024
1025/*!
1026 * Emit the instruction sequence for i64 logical right shifts.
1027 *
1028 * @param Op The shl operand
1029 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1030 * makes life easier.)
1031 * @return The SDNode with the entire instruction sequence
1032 */
1033SDNode *
1034SPUDAGToDAGISel::SelectSRLi64(SDValue &Op, MVT OpVT) {
1035 SDValue Op0 = Op.getOperand(0);
1036 MVT VecVT = MVT::getVectorVT(OpVT, (128 / OpVT.getSizeInBits()));
1037 SDValue ShiftAmt = Op.getOperand(1);
1038 MVT ShiftAmtVT = ShiftAmt.getValueType();
1039 SDNode *VecOp0, *Shift = 0;
Dale Johannesened2eee62009-02-06 01:31:28 +00001040 DebugLoc dl = Op.getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001041
Dale Johannesened2eee62009-02-06 01:31:28 +00001042 VecOp0 = CurDAG->getTargetNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Scott Michel02d711b2008-12-30 23:28:25 +00001043
1044 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1045 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1046 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1047
1048 if (bytes > 0) {
1049 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001050 CurDAG->getTargetNode(SPU::ROTQMBYIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001051 SDValue(VecOp0, 0),
1052 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
1053 }
1054
1055 if (bits > 0) {
1056 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001057 CurDAG->getTargetNode(SPU::ROTQMBIIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001058 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1059 CurDAG->getTargetConstant(bits, ShiftAmtVT));
1060 }
1061 } else {
1062 SDNode *Bytes =
Dale Johannesened2eee62009-02-06 01:31:28 +00001063 CurDAG->getTargetNode(SPU::ROTMIr32, dl, ShiftAmtVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001064 ShiftAmt,
1065 CurDAG->getTargetConstant(3, ShiftAmtVT));
1066 SDNode *Bits =
Dale Johannesened2eee62009-02-06 01:31:28 +00001067 CurDAG->getTargetNode(SPU::ANDIr32, dl, ShiftAmtVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001068 ShiftAmt,
1069 CurDAG->getTargetConstant(7, ShiftAmtVT));
1070
1071 // Ensure that the shift amounts are negated!
Dale Johannesened2eee62009-02-06 01:31:28 +00001072 Bytes = CurDAG->getTargetNode(SPU::SFIr32, dl, ShiftAmtVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001073 SDValue(Bytes, 0),
1074 CurDAG->getTargetConstant(0, ShiftAmtVT));
1075
Dale Johannesened2eee62009-02-06 01:31:28 +00001076 Bits = CurDAG->getTargetNode(SPU::SFIr32, dl, ShiftAmtVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001077 SDValue(Bits, 0),
1078 CurDAG->getTargetConstant(0, ShiftAmtVT));
1079
1080 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001081 CurDAG->getTargetNode(SPU::ROTQMBYv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001082 SDValue(VecOp0, 0), SDValue(Bytes, 0));
1083 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001084 CurDAG->getTargetNode(SPU::ROTQMBIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001085 SDValue(Shift, 0), SDValue(Bits, 0));
1086 }
1087
Dale Johannesened2eee62009-02-06 01:31:28 +00001088 return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001089}
1090
1091/*!
1092 * Emit the instruction sequence for i64 arithmetic right shifts.
1093 *
1094 * @param Op The shl operand
1095 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1096 * makes life easier.)
1097 * @return The SDNode with the entire instruction sequence
1098 */
1099SDNode *
1100SPUDAGToDAGISel::SelectSRAi64(SDValue &Op, MVT OpVT) {
1101 // Promote Op0 to vector
1102 MVT VecVT = MVT::getVectorVT(OpVT, (128 / OpVT.getSizeInBits()));
1103 SDValue ShiftAmt = Op.getOperand(1);
1104 MVT ShiftAmtVT = ShiftAmt.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00001105 DebugLoc dl = Op.getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001106
1107 SDNode *VecOp0 =
Dale Johannesened2eee62009-02-06 01:31:28 +00001108 CurDAG->getTargetNode(SPU::ORv2i64_i64, dl, VecVT, Op.getOperand(0));
Scott Michel02d711b2008-12-30 23:28:25 +00001109
1110 SDValue SignRotAmt = CurDAG->getTargetConstant(31, ShiftAmtVT);
1111 SDNode *SignRot =
Dale Johannesened2eee62009-02-06 01:31:28 +00001112 CurDAG->getTargetNode(SPU::ROTMAIv2i64_i32, dl, MVT::v2i64,
Scott Michel02d711b2008-12-30 23:28:25 +00001113 SDValue(VecOp0, 0), SignRotAmt);
1114 SDNode *UpperHalfSign =
Dale Johannesened2eee62009-02-06 01:31:28 +00001115 CurDAG->getTargetNode(SPU::ORi32_v4i32, dl, MVT::i32, SDValue(SignRot, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001116
1117 SDNode *UpperHalfSignMask =
Dale Johannesened2eee62009-02-06 01:31:28 +00001118 CurDAG->getTargetNode(SPU::FSM64r32, dl, VecVT, SDValue(UpperHalfSign, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001119 SDNode *UpperLowerMask =
Dale Johannesened2eee62009-02-06 01:31:28 +00001120 CurDAG->getTargetNode(SPU::FSMBIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001121 CurDAG->getTargetConstant(0xff00ULL, MVT::i16));
1122 SDNode *UpperLowerSelect =
Dale Johannesened2eee62009-02-06 01:31:28 +00001123 CurDAG->getTargetNode(SPU::SELBv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001124 SDValue(UpperHalfSignMask, 0),
1125 SDValue(VecOp0, 0),
1126 SDValue(UpperLowerMask, 0));
1127
1128 SDNode *Shift = 0;
1129
1130 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1131 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1132 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1133
1134 if (bytes > 0) {
1135 bytes = 31 - bytes;
1136 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001137 CurDAG->getTargetNode(SPU::ROTQBYIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001138 SDValue(UpperLowerSelect, 0),
1139 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
1140 }
1141
1142 if (bits > 0) {
1143 bits = 8 - bits;
1144 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001145 CurDAG->getTargetNode(SPU::ROTQBIIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001146 SDValue((Shift != 0 ? Shift : UpperLowerSelect), 0),
1147 CurDAG->getTargetConstant(bits, ShiftAmtVT));
1148 }
1149 } else {
1150 SDNode *NegShift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001151 CurDAG->getTargetNode(SPU::SFIr32, dl, ShiftAmtVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001152 ShiftAmt, CurDAG->getTargetConstant(0, ShiftAmtVT));
1153
1154 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001155 CurDAG->getTargetNode(SPU::ROTQBYBIv2i64_r32, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001156 SDValue(UpperLowerSelect, 0), SDValue(NegShift, 0));
1157 Shift =
Dale Johannesened2eee62009-02-06 01:31:28 +00001158 CurDAG->getTargetNode(SPU::ROTQBIv2i64, dl, VecVT,
Scott Michel02d711b2008-12-30 23:28:25 +00001159 SDValue(Shift, 0), SDValue(NegShift, 0));
1160 }
1161
Dale Johannesened2eee62009-02-06 01:31:28 +00001162 return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001163}
1164
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001165/*!
1166 Do the necessary magic necessary to load a i64 constant
1167 */
Scott Michel7ea02ff2009-03-17 01:15:45 +00001168SDNode *SPUDAGToDAGISel::SelectI64Constant(SDValue& Op, MVT OpVT,
1169 DebugLoc dl) {
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001170 ConstantSDNode *CN = cast<ConstantSDNode>(Op.getNode());
Scott Michel7ea02ff2009-03-17 01:15:45 +00001171 return SelectI64Constant(CN->getZExtValue(), OpVT, dl);
1172}
1173
1174SDNode *SPUDAGToDAGISel::SelectI64Constant(uint64_t Value64, MVT OpVT,
1175 DebugLoc dl) {
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001176 MVT OpVecVT = MVT::getVectorVT(OpVT, 2);
1177 SDValue i64vec =
Scott Michel7ea02ff2009-03-17 01:15:45 +00001178 SPU::LowerV2I64Splat(OpVecVT, *CurDAG, Value64, dl);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001179
1180 // Here's where it gets interesting, because we have to parse out the
1181 // subtree handed back in i64vec:
1182
1183 if (i64vec.getOpcode() == ISD::BIT_CONVERT) {
1184 // The degenerate case where the upper and lower bits in the splat are
1185 // identical:
1186 SDValue Op0 = i64vec.getOperand(0);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001187
Scott Michel9de57a92009-01-26 22:33:37 +00001188 ReplaceUses(i64vec, Op0);
Dale Johannesened2eee62009-02-06 01:31:28 +00001189 return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT,
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001190 SDValue(emitBuildVector(Op0), 0));
1191 } else if (i64vec.getOpcode() == SPUISD::SHUFB) {
1192 SDValue lhs = i64vec.getOperand(0);
1193 SDValue rhs = i64vec.getOperand(1);
1194 SDValue shufmask = i64vec.getOperand(2);
1195
1196 if (lhs.getOpcode() == ISD::BIT_CONVERT) {
1197 ReplaceUses(lhs, lhs.getOperand(0));
1198 lhs = lhs.getOperand(0);
1199 }
1200
1201 SDNode *lhsNode = (lhs.getNode()->isMachineOpcode()
1202 ? lhs.getNode()
1203 : emitBuildVector(lhs));
1204
1205 if (rhs.getOpcode() == ISD::BIT_CONVERT) {
1206 ReplaceUses(rhs, rhs.getOperand(0));
1207 rhs = rhs.getOperand(0);
1208 }
1209
1210 SDNode *rhsNode = (rhs.getNode()->isMachineOpcode()
1211 ? rhs.getNode()
1212 : emitBuildVector(rhs));
Scott Michel9de57a92009-01-26 22:33:37 +00001213
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001214 if (shufmask.getOpcode() == ISD::BIT_CONVERT) {
1215 ReplaceUses(shufmask, shufmask.getOperand(0));
1216 shufmask = shufmask.getOperand(0);
1217 }
1218
1219 SDNode *shufMaskNode = (shufmask.getNode()->isMachineOpcode()
1220 ? shufmask.getNode()
1221 : emitBuildVector(shufmask));
1222
1223 SDNode *shufNode =
Dale Johannesened2eee62009-02-06 01:31:28 +00001224 Select(CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001225 SDValue(lhsNode, 0), SDValue(rhsNode, 0),
1226 SDValue(shufMaskNode, 0)));
1227
Scott Michel7ea02ff2009-03-17 01:15:45 +00001228 return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT,
Dale Johannesened2eee62009-02-06 01:31:28 +00001229 SDValue(shufNode, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +00001230 } else if (i64vec.getOpcode() == ISD::BUILD_VECTOR) {
1231 return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT,
1232 SDValue(emitBuildVector(i64vec), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001233 } else {
Torok Edwindac237e2009-07-08 20:53:28 +00001234 llvm_report_error("SPUDAGToDAGISel::SelectI64Constant: Unhandled i64vec"
1235 "condition");
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001236 }
1237}
1238
Scott Michel02d711b2008-12-30 23:28:25 +00001239/// createSPUISelDag - This pass converts a legalized DAG into a
Scott Michel266bc8f2007-12-04 22:23:35 +00001240/// SPU-specific DAG, ready for instruction scheduling.
1241///
1242FunctionPass *llvm::createSPUISelDag(SPUTargetMachine &TM) {
1243 return new SPUDAGToDAGISel(TM);
1244}