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