blob: 1f9e5fcc4a7fa23999a703e27c57b0271a953ff4 [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"
Owen Andersona90b3dc2009-07-15 21:51:10 +000033#include "llvm/LLVMContext.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000034#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000035#include "llvm/Support/ErrorHandling.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000036#include "llvm/Support/MathExtras.h"
37#include "llvm/Support/Compiler.h"
Torok Edwindac237e2009-07-08 20:53:28 +000038#include "llvm/Support/raw_ostream.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000039
40using namespace llvm;
41
42namespace {
43 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
44 bool
45 isI64IntS10Immediate(ConstantSDNode *CN)
46 {
Dan Gohman7810bfe2008-09-26 21:54:37 +000047 return isS10Constant(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000048 }
49
50 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
51 bool
52 isI32IntS10Immediate(ConstantSDNode *CN)
53 {
Dan Gohman7810bfe2008-09-26 21:54:37 +000054 return isS10Constant(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000055 }
56
Scott Michel504c3692007-12-17 22:32:34 +000057 //! ConstantSDNode predicate for i32 unsigned 10-bit immediate values
58 bool
59 isI32IntU10Immediate(ConstantSDNode *CN)
60 {
Dan Gohman7810bfe2008-09-26 21:54:37 +000061 return isU10Constant(CN->getSExtValue());
Scott Michel504c3692007-12-17 22:32:34 +000062 }
63
Scott Michel266bc8f2007-12-04 22:23:35 +000064 //! ConstantSDNode predicate for i16 sign-extended, 10-bit immediate values
65 bool
66 isI16IntS10Immediate(ConstantSDNode *CN)
67 {
Dan Gohman7810bfe2008-09-26 21:54:37 +000068 return isS10Constant(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000069 }
70
71 //! SDNode predicate for i16 sign-extended, 10-bit immediate values
72 bool
73 isI16IntS10Immediate(SDNode *N)
74 {
Scott Michel9de57a92009-01-26 22:33:37 +000075 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
76 return (CN != 0 && isI16IntS10Immediate(CN));
Scott Michel266bc8f2007-12-04 22:23:35 +000077 }
78
Scott Michelec2a08f2007-12-15 00:38:50 +000079 //! ConstantSDNode predicate for i16 unsigned 10-bit immediate values
80 bool
81 isI16IntU10Immediate(ConstantSDNode *CN)
82 {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000083 return isU10Constant((short) CN->getZExtValue());
Scott Michelec2a08f2007-12-15 00:38:50 +000084 }
85
86 //! SDNode predicate for i16 sign-extended, 10-bit immediate values
87 bool
88 isI16IntU10Immediate(SDNode *N)
89 {
90 return (N->getOpcode() == ISD::Constant
91 && isI16IntU10Immediate(cast<ConstantSDNode>(N)));
92 }
93
Scott Michel266bc8f2007-12-04 22:23:35 +000094 //! ConstantSDNode predicate for signed 16-bit values
95 /*!
96 \arg CN The constant SelectionDAG node holding the value
97 \arg Imm The returned 16-bit value, if returning true
98
99 This predicate tests the value in \a CN to see whether it can be
100 represented as a 16-bit, sign-extended quantity. Returns true if
101 this is the case.
102 */
103 bool
104 isIntS16Immediate(ConstantSDNode *CN, short &Imm)
105 {
Owen Andersone50ed302009-08-10 22:56:29 +0000106 EVT vt = CN->getValueType(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000107 Imm = (short) CN->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000108 if (vt.getSimpleVT() >= MVT::i1 && vt.getSimpleVT() <= MVT::i16) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000109 return true;
Owen Anderson825b72b2009-08-11 20:47:22 +0000110 } else if (vt == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000111 int32_t i_val = (int32_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +0000112 short s_val = (short) i_val;
113 return i_val == s_val;
114 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000115 int64_t i_val = (int64_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +0000116 short s_val = (short) i_val;
117 return i_val == s_val;
118 }
119
120 return false;
121 }
122
123 //! SDNode predicate for signed 16-bit values.
124 bool
125 isIntS16Immediate(SDNode *N, short &Imm)
126 {
127 return (N->getOpcode() == ISD::Constant
128 && isIntS16Immediate(cast<ConstantSDNode>(N), Imm));
129 }
130
131 //! ConstantFPSDNode predicate for representing floats as 16-bit sign ext.
132 static bool
133 isFPS16Immediate(ConstantFPSDNode *FPN, short &Imm)
134 {
Owen Andersone50ed302009-08-10 22:56:29 +0000135 EVT vt = FPN->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000136 if (vt == MVT::f32) {
Chris Lattnerd3ada752007-12-22 22:45:38 +0000137 int val = FloatToBits(FPN->getValueAPF().convertToFloat());
Scott Michel266bc8f2007-12-04 22:23:35 +0000138 int sval = (int) ((val << 16) >> 16);
139 Imm = (short) val;
140 return val == sval;
141 }
142
143 return false;
144 }
145
Scott Michel053c1da2008-01-29 02:16:57 +0000146 bool
Scott Michel02d711b2008-12-30 23:28:25 +0000147 isHighLow(const SDValue &Op)
Scott Michel053c1da2008-01-29 02:16:57 +0000148 {
149 return (Op.getOpcode() == SPUISD::IndirectAddr
150 && ((Op.getOperand(0).getOpcode() == SPUISD::Hi
151 && Op.getOperand(1).getOpcode() == SPUISD::Lo)
152 || (Op.getOperand(0).getOpcode() == SPUISD::Lo
153 && Op.getOperand(1).getOpcode() == SPUISD::Hi)));
154 }
155
Scott Michel266bc8f2007-12-04 22:23:35 +0000156 //===------------------------------------------------------------------===//
Owen Andersone50ed302009-08-10 22:56:29 +0000157 //! EVT to "useful stuff" mapping structure:
Scott Michel266bc8f2007-12-04 22:23:35 +0000158
159 struct valtype_map_s {
Owen Andersone50ed302009-08-10 22:56:29 +0000160 EVT VT;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000161 unsigned ldresult_ins; /// LDRESULT instruction (0 = undefined)
Scott Michela59d4692008-02-23 18:41:37 +0000162 bool ldresult_imm; /// LDRESULT instruction requires immediate?
Scott Michelf0569be2008-12-27 04:51:36 +0000163 unsigned lrinst; /// LR instruction
Scott Michel266bc8f2007-12-04 22:23:35 +0000164 };
165
166 const valtype_map_s valtype_map[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +0000167 { MVT::i8, SPU::ORBIr8, true, SPU::LRr8 },
168 { MVT::i16, SPU::ORHIr16, true, SPU::LRr16 },
169 { MVT::i32, SPU::ORIr32, true, SPU::LRr32 },
170 { MVT::i64, SPU::ORr64, false, SPU::LRr64 },
171 { MVT::f32, SPU::ORf32, false, SPU::LRf32 },
172 { MVT::f64, SPU::ORf64, false, SPU::LRf64 },
Scott Michel58c58182008-01-17 20:38:41 +0000173 // vector types... (sigh!)
Owen Anderson825b72b2009-08-11 20:47:22 +0000174 { MVT::v16i8, 0, false, SPU::LRv16i8 },
175 { MVT::v8i16, 0, false, SPU::LRv8i16 },
176 { MVT::v4i32, 0, false, SPU::LRv4i32 },
177 { MVT::v2i64, 0, false, SPU::LRv2i64 },
178 { MVT::v4f32, 0, false, SPU::LRv4f32 },
179 { MVT::v2f64, 0, false, SPU::LRv2f64 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000180 };
181
182 const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]);
183
Owen Andersone50ed302009-08-10 22:56:29 +0000184 const valtype_map_s *getValueTypeMapEntry(EVT VT)
Scott Michel266bc8f2007-12-04 22:23:35 +0000185 {
186 const valtype_map_s *retval = 0;
187 for (size_t i = 0; i < n_valtype_map; ++i) {
188 if (valtype_map[i].VT == VT) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000189 retval = valtype_map + i;
190 break;
Scott Michel266bc8f2007-12-04 22:23:35 +0000191 }
192 }
193
194
195#ifndef NDEBUG
196 if (retval == 0) {
Torok Edwindac237e2009-07-08 20:53:28 +0000197 std::string msg;
198 raw_string_ostream Msg(msg);
199 Msg << "SPUISelDAGToDAG.cpp: getValueTypeMapEntry returns NULL for "
Owen Andersone50ed302009-08-10 22:56:29 +0000200 << VT.getEVTString();
Torok Edwindac237e2009-07-08 20:53:28 +0000201 llvm_report_error(Msg.str());
Scott Michel266bc8f2007-12-04 22:23:35 +0000202 }
203#endif
204
205 return retval;
206 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000207
Scott Michel7ea02ff2009-03-17 01:15:45 +0000208 //! Generate the carry-generate shuffle mask.
209 SDValue getCarryGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
210 SmallVector<SDValue, 16 > ShufBytes;
Dan Gohman844731a2008-05-13 00:00:25 +0000211
Scott Michel7ea02ff2009-03-17 01:15:45 +0000212 // Create the shuffle mask for "rotating" the borrow up one register slot
213 // once the borrow is generated.
Owen Anderson825b72b2009-08-11 20:47:22 +0000214 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
215 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
216 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
217 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
Scott Michel266bc8f2007-12-04 22:23:35 +0000218
Owen Anderson825b72b2009-08-11 20:47:22 +0000219 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000220 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000221 }
Scott Michel02d711b2008-12-30 23:28:25 +0000222
Scott Michel7ea02ff2009-03-17 01:15:45 +0000223 //! Generate the borrow-generate shuffle mask
224 SDValue getBorrowGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
225 SmallVector<SDValue, 16 > ShufBytes;
226
227 // Create the shuffle mask for "rotating" the borrow up one register slot
228 // once the borrow is generated.
Owen Anderson825b72b2009-08-11 20:47:22 +0000229 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
230 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
231 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
232 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000233
Owen Anderson825b72b2009-08-11 20:47:22 +0000234 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000235 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000236 }
237
Scott Michel7ea02ff2009-03-17 01:15:45 +0000238 //===------------------------------------------------------------------===//
239 /// SPUDAGToDAGISel - Cell SPU-specific code to select SPU machine
240 /// instructions for SelectionDAG operations.
241 ///
242 class SPUDAGToDAGISel :
243 public SelectionDAGISel
244 {
245 SPUTargetMachine &TM;
246 SPUTargetLowering &SPUtli;
247 unsigned GlobalBaseReg;
Scott Michel02d711b2008-12-30 23:28:25 +0000248
Scott Michel7ea02ff2009-03-17 01:15:45 +0000249 public:
250 explicit SPUDAGToDAGISel(SPUTargetMachine &tm) :
251 SelectionDAGISel(tm),
252 TM(tm),
253 SPUtli(*tm.getTargetLowering())
254 { }
255
Dan Gohmanad2afc22009-07-31 18:16:33 +0000256 virtual bool runOnMachineFunction(MachineFunction &MF) {
Scott Michel7ea02ff2009-03-17 01:15:45 +0000257 // Make sure we re-emit a set of the global base reg if necessary
258 GlobalBaseReg = 0;
Dan Gohmanad2afc22009-07-31 18:16:33 +0000259 SelectionDAGISel::runOnMachineFunction(MF);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000260 return true;
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000261 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000262
Scott Michel7ea02ff2009-03-17 01:15:45 +0000263 /// getI32Imm - Return a target constant with the specified value, of type
264 /// i32.
265 inline SDValue getI32Imm(uint32_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 return CurDAG->getTargetConstant(Imm, MVT::i32);
Scott Michel94bd57e2009-01-15 04:41:47 +0000267 }
268
Scott Michel7ea02ff2009-03-17 01:15:45 +0000269 /// getI64Imm - Return a target constant with the specified value, of type
270 /// i64.
271 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 return CurDAG->getTargetConstant(Imm, MVT::i64);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000273 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000274
Scott Michel7ea02ff2009-03-17 01:15:45 +0000275 /// getSmallIPtrImm - Return a target constant of pointer type.
276 inline SDValue getSmallIPtrImm(unsigned Imm) {
277 return CurDAG->getTargetConstant(Imm, SPUtli.getPointerTy());
Scott Michel266bc8f2007-12-04 22:23:35 +0000278 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000279
280 SDNode *emitBuildVector(SDValue build_vec) {
Owen Andersone50ed302009-08-10 22:56:29 +0000281 EVT vecVT = build_vec.getValueType();
282 EVT eltVT = vecVT.getVectorElementType();
Scott Michel7ea02ff2009-03-17 01:15:45 +0000283 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:
Owen Anderson825b72b2009-08-11 20:47:22 +0000288 if (((vecVT == MVT::v8i16) &&
289 (SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i16).getNode() != 0)) ||
290 ((vecVT == MVT::v4i32) &&
291 ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
292 (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
293 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
Scott Michel7ea02ff2009-03-17 01:15:45 +0000294 (SPU::get_v4i32_imm(bvNode, *CurDAG).getNode() != 0))) ||
Owen Anderson825b72b2009-08-11 20:47:22 +0000295 ((vecVT == MVT::v2i64) &&
296 ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
297 (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
298 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i64).getNode() != 0))))
Scott Michel7ea02ff2009-03-17 01:15:45 +0000299 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
Owen Andersonaf7ec972009-07-28 21:19:26 +0000309 Constant *CP = ConstantVector::get(CV);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000310 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));
Scott Michel266bc8f2007-12-04 22:23:35 +0000319 }
Scott Michel02d711b2008-12-30 23:28:25 +0000320
Scott Michel7ea02ff2009-03-17 01:15:45 +0000321 /// 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);
Scott Michel266bc8f2007-12-04 22:23:35 +0000324
Scott Michel7ea02ff2009-03-17 01:15:45 +0000325 //! Emit the instruction sequence for i64 shl
Owen Andersone50ed302009-08-10 22:56:29 +0000326 SDNode *SelectSHLi64(SDValue &Op, EVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000327
Scott Michel7ea02ff2009-03-17 01:15:45 +0000328 //! Emit the instruction sequence for i64 srl
Owen Andersone50ed302009-08-10 22:56:29 +0000329 SDNode *SelectSRLi64(SDValue &Op, EVT OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000330
Scott Michel7ea02ff2009-03-17 01:15:45 +0000331 //! Emit the instruction sequence for i64 sra
Owen Andersone50ed302009-08-10 22:56:29 +0000332 SDNode *SelectSRAi64(SDValue &Op, EVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000333
Scott Michel7ea02ff2009-03-17 01:15:45 +0000334 //! Emit the necessary sequence for loading i64 constants:
Owen Andersone50ed302009-08-10 22:56:29 +0000335 SDNode *SelectI64Constant(SDValue &Op, EVT OpVT, DebugLoc dl);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000336
337 //! Alternate instruction emit sequence for loading i64 constants
Owen Andersone50ed302009-08-10 22:56:29 +0000338 SDNode *SelectI64Constant(uint64_t i64const, EVT OpVT, DebugLoc dl);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000339
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
Torok Edwinc23197a2009-07-14 16:55:14 +0000382 llvm_unreachable("InlineAsmMemoryOperand 'v' constraint not handled.");
Scott Michel7ea02ff2009-03-17 01:15:45 +0000383#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.
Scott Michel266bc8f2007-12-04 22:23:35 +0000411#include "SPUGenDAGISel.inc"
Scott Michel7ea02ff2009-03-17 01:15:45 +0000412 };
Dan Gohman844731a2008-05-13 00:00:25 +0000413}
414
Evan Chengdb8d56b2008-06-30 20:45:06 +0000415/// InstructionSelect - This callback is invoked by
Scott Michel266bc8f2007-12-04 22:23:35 +0000416/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
417void
Dan Gohmanf350b272008-08-23 02:25:05 +0000418SPUDAGToDAGISel::InstructionSelect()
Scott Michel266bc8f2007-12-04 22:23:35 +0000419{
420 DEBUG(BB->dump());
421
422 // Select target instructions for the DAG.
David Greene8ad4c002008-10-27 21:56:29 +0000423 SelectRoot(*CurDAG);
Dan Gohmanf350b272008-08-23 02:25:05 +0000424 CurDAG->RemoveDeadNodes();
Scott Michel266bc8f2007-12-04 22:23:35 +0000425}
426
Scott Michel266bc8f2007-12-04 22:23:35 +0000427/*!
Scott Michel9de57a92009-01-26 22:33:37 +0000428 \arg Op The ISD instruction operand
Scott Michel266bc8f2007-12-04 22:23:35 +0000429 \arg N The address to be tested
430 \arg Base The base address
431 \arg Index The base address index
432 */
433bool
Dan Gohman475871a2008-07-27 21:46:04 +0000434SPUDAGToDAGISel::SelectAFormAddr(SDValue Op, SDValue N, SDValue &Base,
435 SDValue &Index) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000436 // These match the addr256k operand type:
Owen Anderson825b72b2009-08-11 20:47:22 +0000437 EVT OffsVT = MVT::i16;
Dan Gohman475871a2008-07-27 21:46:04 +0000438 SDValue Zero = CurDAG->getTargetConstant(0, OffsVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000439
440 switch (N.getOpcode()) {
441 case ISD::Constant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000442 case ISD::ConstantPool:
443 case ISD::GlobalAddress:
Torok Edwindac237e2009-07-08 20:53:28 +0000444 llvm_report_error("SPU SelectAFormAddr: Constant/Pool/Global not lowered.");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000445 /*NOTREACHED*/
446
Scott Michel053c1da2008-01-29 02:16:57 +0000447 case ISD::TargetConstant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000448 case ISD::TargetGlobalAddress:
Scott Michel053c1da2008-01-29 02:16:57 +0000449 case ISD::TargetJumpTable:
Torok Edwindac237e2009-07-08 20:53:28 +0000450 llvm_report_error("SPUSelectAFormAddr: Target Constant/Pool/Global "
451 "not wrapped as A-form address.");
Scott Michel053c1da2008-01-29 02:16:57 +0000452 /*NOTREACHED*/
Scott Michel266bc8f2007-12-04 22:23:35 +0000453
Scott Michel02d711b2008-12-30 23:28:25 +0000454 case SPUISD::AFormAddr:
Scott Michel053c1da2008-01-29 02:16:57 +0000455 // 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()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000458 SDValue Op0 = N.getOperand(0);
Scott Michel053c1da2008-01-29 02:16:57 +0000459 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 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000480 return false;
481}
482
Scott Michel02d711b2008-12-30 23:28:25 +0000483bool
Dan Gohman475871a2008-07-27 21:46:04 +0000484SPUDAGToDAGISel::SelectDForm2Addr(SDValue Op, SDValue N, SDValue &Disp,
485 SDValue &Base) {
Scott Michel203b2d62008-04-30 00:30:08 +0000486 const int minDForm2Offset = -(1 << 7);
487 const int maxDForm2Offset = (1 << 7) - 1;
488 return DFormAddressPredicate(Op, N, Disp, Base, minDForm2Offset,
489 maxDForm2Offset);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000490}
491
Scott Michel266bc8f2007-12-04 22:23:35 +0000492/*!
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
Dan Gohman475871a2008-07-27 21:46:04 +0000502 to non-empty SDValue instances.
Scott Michel266bc8f2007-12-04 22:23:35 +0000503*/
504bool
Dan Gohman475871a2008-07-27 21:46:04 +0000505SPUDAGToDAGISel::SelectDFormAddr(SDValue Op, SDValue N, SDValue &Base,
506 SDValue &Index) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000507 return DFormAddressPredicate(Op, N, Base, Index,
Scott Michel9c0c6b22008-11-21 02:56:16 +0000508 SPUFrameInfo::minFrameOffset(),
509 SPUFrameInfo::maxFrameOffset());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000510}
511
512bool
Dan Gohman475871a2008-07-27 21:46:04 +0000513SPUDAGToDAGISel::DFormAddressPredicate(SDValue Op, SDValue N, SDValue &Base,
514 SDValue &Index, int minOffset,
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000515 int maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000516 unsigned Opc = N.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +0000517 EVT PtrTy = SPUtli.getPointerTy();
Scott Michel266bc8f2007-12-04 22:23:35 +0000518
Scott Michel053c1da2008-01-29 02:16:57 +0000519 if (Opc == ISD::FrameIndex) {
520 // Stack frame index must be less than 512 (divided by 16):
Scott Michel203b2d62008-04-30 00:30:08 +0000521 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(N);
522 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000523 DEBUG(errs() << "SelectDFormAddr: ISD::FrameIndex = "
Scott Michel203b2d62008-04-30 00:30:08 +0000524 << FI << "\n");
525 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000526 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000527 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel266bc8f2007-12-04 22:23:35 +0000528 return true;
529 }
530 } else if (Opc == ISD::ADD) {
531 // Generated by getelementptr
Dan Gohman475871a2008-07-27 21:46:04 +0000532 const SDValue Op0 = N.getOperand(0);
533 const SDValue Op1 = N.getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000534
Scott Michel053c1da2008-01-29 02:16:57 +0000535 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) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000542 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000543 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel9de5d0d2008-01-11 02:53:15 +0000544
Scott Michel053c1da2008-01-29 02:16:57 +0000545 if (Op0.getOpcode() == ISD::FrameIndex) {
Scott Michel203b2d62008-04-30 00:30:08 +0000546 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op0);
547 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000548 DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000549 << " frame index = " << FI << "\n");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000550
Scott Michel203b2d62008-04-30 00:30:08 +0000551 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000552 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000553 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000554 return true;
555 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000556 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000557 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000558 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);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000564 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel053c1da2008-01-29 02:16:57 +0000565
566 if (Op1.getOpcode() == ISD::FrameIndex) {
Scott Michel203b2d62008-04-30 00:30:08 +0000567 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op1);
568 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000569 DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000570 << " frame index = " << FI << "\n");
Scott Michel053c1da2008-01-29 02:16:57 +0000571
Scott Michel203b2d62008-04-30 00:30:08 +0000572 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000573 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000574 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000575 return true;
576 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000577 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000578 Base = CurDAG->getTargetConstant(offset, PtrTy);
579 Index = Op1;
580 return true;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000581 }
Scott Michel053c1da2008-01-29 02:16:57 +0000582 }
583 } else if (Opc == SPUISD::IndirectAddr) {
584 // Indirect with constant offset -> D-Form address
Dan Gohman475871a2008-07-27 21:46:04 +0000585 const SDValue Op0 = N.getOperand(0);
586 const SDValue Op1 = N.getOperand(1);
Scott Michel497e8882008-01-11 21:01:19 +0000587
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000588 if (Op0.getOpcode() == SPUISD::Hi
589 && Op1.getOpcode() == SPUISD::Lo) {
Scott Michel053c1da2008-01-29 02:16:57 +0000590 // (SPUindirect (SPUhi <arg>, 0), (SPUlo <arg>, 0))
Scott Michel9de5d0d2008-01-11 02:53:15 +0000591 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000592 Index = N;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000593 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000594 } else if (isa<ConstantSDNode>(Op0) || isa<ConstantSDNode>(Op1)) {
595 int32_t offset = 0;
Dan Gohman475871a2008-07-27 21:46:04 +0000596 SDValue idxOp;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000597
598 if (isa<ConstantSDNode>(Op1)) {
599 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000600 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000601 idxOp = Op0;
602 } else if (isa<ConstantSDNode>(Op0)) {
603 ConstantSDNode *CN = cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000604 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000605 idxOp = Op1;
Scott Michel02d711b2008-12-30 23:28:25 +0000606 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000607
608 if (offset >= minOffset && offset <= maxOffset) {
609 Base = CurDAG->getTargetConstant(offset, PtrTy);
610 Index = idxOp;
611 return true;
612 }
Scott Michel9de5d0d2008-01-11 02:53:15 +0000613 }
Scott Michel053c1da2008-01-29 02:16:57 +0000614 } else if (Opc == SPUISD::AFormAddr) {
615 Base = CurDAG->getTargetConstant(0, N.getValueType());
616 Index = N;
Scott Michel58c58182008-01-17 20:38:41 +0000617 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000618 } else if (Opc == SPUISD::LDRESULT) {
619 Base = CurDAG->getTargetConstant(0, N.getValueType());
620 Index = N;
621 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000622 } 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
Scott Michelaedc6372008-12-10 00:15:19 +0000635 Offs = ((OpOpc == ISD::STORE) ? Op.getOperand(3) : Op.getOperand(2));
Scott Michel9c0c6b22008-11-21 02:56:16 +0000636
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 }
Scott Michelaedc6372008-12-10 00:15:19 +0000645 } else {
646 /* If otherwise unadorned, default to D-form address with 0 offset: */
647 if (Opc == ISD::CopyFromReg) {
Scott Michel19c10e62009-01-26 03:37:41 +0000648 Index = N.getOperand(1);
Scott Michelaedc6372008-12-10 00:15:19 +0000649 } else {
Scott Michel19c10e62009-01-26 03:37:41 +0000650 Index = N;
Scott Michelaedc6372008-12-10 00:15:19 +0000651 }
652
653 Base = CurDAG->getTargetConstant(0, Index.getValueType());
654 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000655 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000656 }
Scott Michel9c0c6b22008-11-21 02:56:16 +0000657
Scott Michel266bc8f2007-12-04 22:23:35 +0000658 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
Scott Michel9c0c6b22008-11-21 02:56:16 +0000667 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.
Scott Michel266bc8f2007-12-04 22:23:35 +0000670*/
671bool
Dan Gohman475871a2008-07-27 21:46:04 +0000672SPUDAGToDAGISel::SelectXFormAddr(SDValue Op, SDValue N, SDValue &Base,
673 SDValue &Index) {
Scott Michel9c0c6b22008-11-21 02:56:16 +0000674 if (!SelectAFormAddr(Op, N, Base, Index)
675 && !SelectDFormAddr(Op, N, Base, Index)) {
Scott Michel18fae692008-11-25 17:29:43 +0000676 // If the address is neither A-form or D-form, punt and use an X-form
677 // address:
Scott Michel1a6cdb62008-12-01 17:56:02 +0000678 Base = N.getOperand(1);
679 Index = N.getOperand(0);
Scott Michel50843c02008-11-25 04:03:47 +0000680 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000681 }
682
683 return false;
Scott Michel58c58182008-01-17 20:38:41 +0000684}
685
Scott Michel266bc8f2007-12-04 22:23:35 +0000686//! Convert the operand from a target-independent to a target-specific node
687/*!
688 */
689SDNode *
Dan Gohman475871a2008-07-27 21:46:04 +0000690SPUDAGToDAGISel::Select(SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000691 SDNode *N = Op.getNode();
Scott Michel266bc8f2007-12-04 22:23:35 +0000692 unsigned Opc = N->getOpcode();
Scott Michel58c58182008-01-17 20:38:41 +0000693 int n_ops = -1;
694 unsigned NewOpc;
Owen Andersone50ed302009-08-10 22:56:29 +0000695 EVT OpVT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +0000696 SDValue Ops[8];
Dale Johannesened2eee62009-02-06 01:31:28 +0000697 DebugLoc dl = N->getDebugLoc();
Scott Michel266bc8f2007-12-04 22:23:35 +0000698
Dan Gohmane8be6c62008-07-17 19:10:17 +0000699 if (N->isMachineOpcode()) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000700 return NULL; // Already selected.
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000701 }
702
703 if (Opc == ISD::FrameIndex) {
Scott Michel02d711b2008-12-30 23:28:25 +0000704 int FI = cast<FrameIndexSDNode>(N)->getIndex();
705 SDValue TFI = CurDAG->getTargetFrameIndex(FI, Op.getValueType());
706 SDValue Imm0 = CurDAG->getTargetConstant(0, Op.getValueType());
Scott Michel266bc8f2007-12-04 22:23:35 +0000707
Scott Michel02d711b2008-12-30 23:28:25 +0000708 if (FI < 128) {
Scott Michel203b2d62008-04-30 00:30:08 +0000709 NewOpc = SPU::AIr32;
Scott Michel02d711b2008-12-30 23:28:25 +0000710 Ops[0] = TFI;
711 Ops[1] = Imm0;
Scott Michel203b2d62008-04-30 00:30:08 +0000712 n_ops = 2;
713 } else {
Scott Michel203b2d62008-04-30 00:30:08 +0000714 NewOpc = SPU::Ar32;
Scott Michel02d711b2008-12-30 23:28:25 +0000715 Ops[0] = CurDAG->getRegister(SPU::R1, Op.getValueType());
Dan Gohman602b0c82009-09-25 18:54:59 +0000716 Ops[1] = SDValue(CurDAG->getMachineNode(SPU::ILAr32, dl,
717 Op.getValueType(), TFI, Imm0),
718 0);
Scott Michel203b2d62008-04-30 00:30:08 +0000719 n_ops = 2;
Scott Michel203b2d62008-04-30 00:30:08 +0000720 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000721 } else if (Opc == ISD::Constant && OpVT == MVT::i64) {
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000722 // Catch the i64 constants that end up here. Note: The backend doesn't
723 // attempt to legalize the constant (it's useless because DAGCombiner
724 // will insert 64-bit constants and we can't stop it).
Scott Michel7ea02ff2009-03-17 01:15:45 +0000725 return SelectI64Constant(Op, OpVT, Op.getDebugLoc());
Scott Michel94bd57e2009-01-15 04:41:47 +0000726 } else if ((Opc == ISD::ZERO_EXTEND || Opc == ISD::ANY_EXTEND)
Owen Anderson825b72b2009-08-11 20:47:22 +0000727 && OpVT == MVT::i64) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000728 SDValue Op0 = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000729 EVT Op0VT = Op0.getValueType();
Owen Anderson23b9b192009-08-12 00:36:31 +0000730 EVT Op0VecVT = EVT::getVectorVT(*CurDAG->getContext(),
731 Op0VT, (128 / Op0VT.getSizeInBits()));
732 EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(),
733 OpVT, (128 / OpVT.getSizeInBits()));
Scott Michel94bd57e2009-01-15 04:41:47 +0000734 SDValue shufMask;
Scott Michel58c58182008-01-17 20:38:41 +0000735
Owen Anderson825b72b2009-08-11 20:47:22 +0000736 switch (Op0VT.getSimpleVT().SimpleTy) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000737 default:
Owen Andersone50ed302009-08-10 22:56:29 +0000738 llvm_report_error("CellSPU Select: Unhandled zero/any extend EVT");
Scott Michel94bd57e2009-01-15 04:41:47 +0000739 /*NOTREACHED*/
Owen Anderson825b72b2009-08-11 20:47:22 +0000740 case MVT::i32:
741 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
742 CurDAG->getConstant(0x80808080, MVT::i32),
743 CurDAG->getConstant(0x00010203, MVT::i32),
744 CurDAG->getConstant(0x80808080, MVT::i32),
745 CurDAG->getConstant(0x08090a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000746 break;
747
Owen Anderson825b72b2009-08-11 20:47:22 +0000748 case MVT::i16:
749 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
750 CurDAG->getConstant(0x80808080, MVT::i32),
751 CurDAG->getConstant(0x80800203, MVT::i32),
752 CurDAG->getConstant(0x80808080, MVT::i32),
753 CurDAG->getConstant(0x80800a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000754 break;
755
Owen Anderson825b72b2009-08-11 20:47:22 +0000756 case MVT::i8:
757 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
758 CurDAG->getConstant(0x80808080, MVT::i32),
759 CurDAG->getConstant(0x80808003, MVT::i32),
760 CurDAG->getConstant(0x80808080, MVT::i32),
761 CurDAG->getConstant(0x8080800b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000762 break;
Scott Michel58c58182008-01-17 20:38:41 +0000763 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000764
765 SDNode *shufMaskLoad = emitBuildVector(shufMask);
766 SDNode *PromoteScalar =
Dale Johannesened2eee62009-02-06 01:31:28 +0000767 SelectCode(CurDAG->getNode(SPUISD::PREFSLOT2VEC, dl, Op0VecVT, Op0));
Scott Michel94bd57e2009-01-15 04:41:47 +0000768
769 SDValue zextShuffle =
Dale Johannesened2eee62009-02-06 01:31:28 +0000770 CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000771 SDValue(PromoteScalar, 0),
772 SDValue(PromoteScalar, 0),
773 SDValue(shufMaskLoad, 0));
Scott Michel94bd57e2009-01-15 04:41:47 +0000774
775 // N.B.: BIT_CONVERT replaces and updates the zextShuffle node, so we
776 // re-use it in the VEC2PREFSLOT selection without needing to explicitly
777 // call SelectCode (it's already done for us.)
Dale Johannesen04692802009-02-07 00:56:46 +0000778 SelectCode(CurDAG->getNode(ISD::BIT_CONVERT, dl, OpVecVT, zextShuffle));
Dale Johannesened2eee62009-02-06 01:31:28 +0000779 return SelectCode(CurDAG->getNode(SPUISD::VEC2PREFSLOT, dl, OpVT,
Scott Michel94bd57e2009-01-15 04:41:47 +0000780 zextShuffle));
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 } else if (Opc == ISD::ADD && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000782 SDNode *CGLoad =
Scott Michel7ea02ff2009-03-17 01:15:45 +0000783 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl));
Scott Michel94bd57e2009-01-15 04:41:47 +0000784
Dale Johannesened2eee62009-02-06 01:31:28 +0000785 return SelectCode(CurDAG->getNode(SPUISD::ADD64_MARKER, dl, OpVT,
Scott Michel94bd57e2009-01-15 04:41:47 +0000786 Op.getOperand(0), Op.getOperand(1),
787 SDValue(CGLoad, 0)));
Owen Anderson825b72b2009-08-11 20:47:22 +0000788 } else if (Opc == ISD::SUB && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000789 SDNode *CGLoad =
Scott Michel7ea02ff2009-03-17 01:15:45 +0000790 emitBuildVector(getBorrowGenerateShufMask(*CurDAG, dl));
Scott Michel94bd57e2009-01-15 04:41:47 +0000791
Dale Johannesened2eee62009-02-06 01:31:28 +0000792 return SelectCode(CurDAG->getNode(SPUISD::SUB64_MARKER, dl, OpVT,
Scott Michel94bd57e2009-01-15 04:41:47 +0000793 Op.getOperand(0), Op.getOperand(1),
794 SDValue(CGLoad, 0)));
Owen Anderson825b72b2009-08-11 20:47:22 +0000795 } else if (Opc == ISD::MUL && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000796 SDNode *CGLoad =
Scott Michel7ea02ff2009-03-17 01:15:45 +0000797 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl));
Scott Michel94bd57e2009-01-15 04:41:47 +0000798
Dale Johannesened2eee62009-02-06 01:31:28 +0000799 return SelectCode(CurDAG->getNode(SPUISD::MUL64_MARKER, dl, OpVT,
Scott Michel94bd57e2009-01-15 04:41:47 +0000800 Op.getOperand(0), Op.getOperand(1),
801 SDValue(CGLoad, 0)));
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000802 } else if (Opc == ISD::TRUNCATE) {
803 SDValue Op0 = Op.getOperand(0);
804 if ((Op0.getOpcode() == ISD::SRA || Op0.getOpcode() == ISD::SRL)
Owen Anderson825b72b2009-08-11 20:47:22 +0000805 && OpVT == MVT::i32
806 && Op0.getValueType() == MVT::i64) {
Scott Michel9de57a92009-01-26 22:33:37 +0000807 // Catch (truncate:i32 ([sra|srl]:i64 arg, c), where c >= 32
808 //
809 // Take advantage of the fact that the upper 32 bits are in the
810 // i32 preferred slot and avoid shuffle gymnastics:
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000811 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
812 if (CN != 0) {
813 unsigned shift_amt = unsigned(CN->getZExtValue());
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000814
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000815 if (shift_amt >= 32) {
816 SDNode *hi32 =
Dan Gohman602b0c82009-09-25 18:54:59 +0000817 CurDAG->getMachineNode(SPU::ORr32_r64, dl, OpVT,
818 Op0.getOperand(0));
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000819
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000820 shift_amt -= 32;
821 if (shift_amt > 0) {
822 // Take care of the additional shift, if present:
Owen Anderson825b72b2009-08-11 20:47:22 +0000823 SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000824 unsigned Opc = SPU::ROTMAIr32_i32;
Scott Michel9de57a92009-01-26 22:33:37 +0000825
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000826 if (Op0.getOpcode() == ISD::SRL)
827 Opc = SPU::ROTMr32;
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000828
Dan Gohman602b0c82009-09-25 18:54:59 +0000829 hi32 = CurDAG->getMachineNode(Opc, dl, OpVT, SDValue(hi32, 0),
830 shift);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000831 }
832
833 return hi32;
834 }
835 }
836 }
Scott Michel02d711b2008-12-30 23:28:25 +0000837 } else if (Opc == ISD::SHL) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000838 if (OpVT == MVT::i64) {
Scott Michel02d711b2008-12-30 23:28:25 +0000839 return SelectSHLi64(Op, OpVT);
840 }
841 } else if (Opc == ISD::SRL) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000842 if (OpVT == MVT::i64) {
Scott Michel02d711b2008-12-30 23:28:25 +0000843 return SelectSRLi64(Op, OpVT);
844 }
845 } else if (Opc == ISD::SRA) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000846 if (OpVT == MVT::i64) {
Scott Michel02d711b2008-12-30 23:28:25 +0000847 return SelectSRAi64(Op, OpVT);
848 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000849 } else if (Opc == ISD::FNEG
Owen Anderson825b72b2009-08-11 20:47:22 +0000850 && (OpVT == MVT::f64 || OpVT == MVT::v2f64)) {
Scott Michel7ea02ff2009-03-17 01:15:45 +0000851 DebugLoc dl = Op.getDebugLoc();
852 // Check if the pattern is a special form of DFNMS:
853 // (fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC))
854 SDValue Op0 = Op.getOperand(0);
855 if (Op0.getOpcode() == ISD::FSUB) {
856 SDValue Op00 = Op0.getOperand(0);
857 if (Op00.getOpcode() == ISD::FMUL) {
858 unsigned Opc = SPU::DFNMSf64;
Owen Anderson825b72b2009-08-11 20:47:22 +0000859 if (OpVT == MVT::v2f64)
Scott Michel7ea02ff2009-03-17 01:15:45 +0000860 Opc = SPU::DFNMSv2f64;
861
Dan Gohman602b0c82009-09-25 18:54:59 +0000862 return CurDAG->getMachineNode(Opc, dl, OpVT,
863 Op00.getOperand(0),
864 Op00.getOperand(1),
865 Op0.getOperand(1));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000866 }
867 }
868
Owen Anderson825b72b2009-08-11 20:47:22 +0000869 SDValue negConst = CurDAG->getConstant(0x8000000000000000ULL, MVT::i64);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000870 SDNode *signMask = 0;
Scott Michela82d3f72009-03-17 16:45:16 +0000871 unsigned Opc = SPU::XORfneg64;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000872
Owen Anderson825b72b2009-08-11 20:47:22 +0000873 if (OpVT == MVT::f64) {
874 signMask = SelectI64Constant(negConst, MVT::i64, dl);
875 } else if (OpVT == MVT::v2f64) {
Scott Michela82d3f72009-03-17 16:45:16 +0000876 Opc = SPU::XORfnegvec;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000877 signMask = emitBuildVector(CurDAG->getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +0000878 MVT::v2i64,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000879 negConst, negConst));
880 }
881
Dan Gohman602b0c82009-09-25 18:54:59 +0000882 return CurDAG->getMachineNode(Opc, dl, OpVT,
883 Op.getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000884 } else if (Opc == ISD::FABS) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000885 if (OpVT == MVT::f64) {
886 SDNode *signMask = SelectI64Constant(0x7fffffffffffffffULL, MVT::i64, dl);
Dan Gohman602b0c82009-09-25 18:54:59 +0000887 return CurDAG->getMachineNode(SPU::ANDfabs64, dl, OpVT,
888 Op.getOperand(0), SDValue(signMask, 0));
Owen Anderson825b72b2009-08-11 20:47:22 +0000889 } else if (OpVT == MVT::v2f64) {
890 SDValue absConst = CurDAG->getConstant(0x7fffffffffffffffULL, MVT::i64);
891 SDValue absVec = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000892 absConst, absConst);
893 SDNode *signMask = emitBuildVector(absVec);
Dan Gohman602b0c82009-09-25 18:54:59 +0000894 return CurDAG->getMachineNode(SPU::ANDfabsvec, dl, OpVT,
895 Op.getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000896 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000897 } else if (Opc == SPUISD::LDRESULT) {
898 // Custom select instructions for LDRESULT
Owen Andersone50ed302009-08-10 22:56:29 +0000899 EVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000900 SDValue Arg = N->getOperand(0);
901 SDValue Chain = N->getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000902 SDNode *Result;
Scott Michela59d4692008-02-23 18:41:37 +0000903 const valtype_map_s *vtm = getValueTypeMapEntry(VT);
904
905 if (vtm->ldresult_ins == 0) {
Torok Edwindac237e2009-07-08 20:53:28 +0000906 std::string msg;
907 raw_string_ostream Msg(msg);
908 Msg << "LDRESULT for unsupported type: "
Owen Andersone50ed302009-08-10 22:56:29 +0000909 << VT.getEVTString();
Torok Edwindac237e2009-07-08 20:53:28 +0000910 llvm_report_error(Msg.str());
Scott Michela59d4692008-02-23 18:41:37 +0000911 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000912
Scott Michela59d4692008-02-23 18:41:37 +0000913 Opc = vtm->ldresult_ins;
914 if (vtm->ldresult_imm) {
Dan Gohman475871a2008-07-27 21:46:04 +0000915 SDValue Zero = CurDAG->getTargetConstant(0, VT);
Scott Michel86c041f2007-12-20 00:44:13 +0000916
Dan Gohman602b0c82009-09-25 18:54:59 +0000917 Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Zero, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000918 } else {
Dan Gohman602b0c82009-09-25 18:54:59 +0000919 Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Arg, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000920 }
921
Scott Michel266bc8f2007-12-04 22:23:35 +0000922 return Result;
Scott Michel053c1da2008-01-29 02:16:57 +0000923 } else if (Opc == SPUISD::IndirectAddr) {
Scott Michelf0569be2008-12-27 04:51:36 +0000924 // Look at the operands: SelectCode() will catch the cases that aren't
925 // specifically handled here.
926 //
927 // SPUInstrInfo catches the following patterns:
928 // (SPUindirect (SPUhi ...), (SPUlo ...))
929 // (SPUindirect $sp, imm)
Owen Andersone50ed302009-08-10 22:56:29 +0000930 EVT VT = Op.getValueType();
Scott Michelf0569be2008-12-27 04:51:36 +0000931 SDValue Op0 = N->getOperand(0);
932 SDValue Op1 = N->getOperand(1);
933 RegisterSDNode *RN;
Scott Michel58c58182008-01-17 20:38:41 +0000934
Scott Michelf0569be2008-12-27 04:51:36 +0000935 if ((Op0.getOpcode() != SPUISD::Hi && Op1.getOpcode() != SPUISD::Lo)
936 || (Op0.getOpcode() == ISD::Register
937 && ((RN = dyn_cast<RegisterSDNode>(Op0.getNode())) != 0
938 && RN->getReg() != SPU::R1))) {
939 NewOpc = SPU::Ar32;
Scott Michel58c58182008-01-17 20:38:41 +0000940 if (Op1.getOpcode() == ISD::Constant) {
941 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Scott Michelf0569be2008-12-27 04:51:36 +0000942 Op1 = CurDAG->getTargetConstant(CN->getSExtValue(), VT);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000943 NewOpc = (isI32IntS10Immediate(CN) ? SPU::AIr32 : SPU::Ar32);
Scott Michel58c58182008-01-17 20:38:41 +0000944 }
Scott Michelf0569be2008-12-27 04:51:36 +0000945 Ops[0] = Op0;
946 Ops[1] = Op1;
947 n_ops = 2;
Scott Michel58c58182008-01-17 20:38:41 +0000948 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000949 }
Scott Michel02d711b2008-12-30 23:28:25 +0000950
Scott Michel58c58182008-01-17 20:38:41 +0000951 if (n_ops > 0) {
952 if (N->hasOneUse())
953 return CurDAG->SelectNodeTo(N, NewOpc, OpVT, Ops, n_ops);
954 else
Dan Gohman602b0c82009-09-25 18:54:59 +0000955 return CurDAG->getMachineNode(NewOpc, dl, OpVT, Ops, n_ops);
Scott Michel58c58182008-01-17 20:38:41 +0000956 } else
957 return SelectCode(Op);
Scott Michel266bc8f2007-12-04 22:23:35 +0000958}
959
Scott Michel02d711b2008-12-30 23:28:25 +0000960/*!
961 * Emit the instruction sequence for i64 left shifts. The basic algorithm
962 * is to fill the bottom two word slots with zeros so that zeros are shifted
963 * in as the entire quadword is shifted left.
964 *
965 * \note This code could also be used to implement v2i64 shl.
966 *
967 * @param Op The shl operand
968 * @param OpVT Op's machine value value type (doesn't need to be passed, but
969 * makes life easier.)
970 * @return The SDNode with the entire instruction sequence
971 */
972SDNode *
Owen Andersone50ed302009-08-10 22:56:29 +0000973SPUDAGToDAGISel::SelectSHLi64(SDValue &Op, EVT OpVT) {
Scott Michel02d711b2008-12-30 23:28:25 +0000974 SDValue Op0 = Op.getOperand(0);
Owen Anderson23b9b192009-08-12 00:36:31 +0000975 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
976 OpVT, (128 / OpVT.getSizeInBits()));
Scott Michel02d711b2008-12-30 23:28:25 +0000977 SDValue ShiftAmt = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +0000978 EVT ShiftAmtVT = ShiftAmt.getValueType();
Scott Michel02d711b2008-12-30 23:28:25 +0000979 SDNode *VecOp0, *SelMask, *ZeroFill, *Shift = 0;
980 SDValue SelMaskVal;
Dale Johannesened2eee62009-02-06 01:31:28 +0000981 DebugLoc dl = Op.getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +0000982
Dan Gohman602b0c82009-09-25 18:54:59 +0000983 VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000984 SelMaskVal = CurDAG->getTargetConstant(0xff00ULL, MVT::i16);
Dan Gohman602b0c82009-09-25 18:54:59 +0000985 SelMask = CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT, SelMaskVal);
986 ZeroFill = CurDAG->getMachineNode(SPU::ILv2i64, dl, VecVT,
987 CurDAG->getTargetConstant(0, OpVT));
988 VecOp0 = CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT,
989 SDValue(ZeroFill, 0),
990 SDValue(VecOp0, 0),
991 SDValue(SelMask, 0));
Scott Michel02d711b2008-12-30 23:28:25 +0000992
993 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
994 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
995 unsigned bits = unsigned(CN->getZExtValue()) & 7;
996
997 if (bytes > 0) {
998 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +0000999 CurDAG->getMachineNode(SPU::SHLQBYIv2i64, dl, VecVT,
1000 SDValue(VecOp0, 0),
1001 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001002 }
1003
1004 if (bits > 0) {
1005 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001006 CurDAG->getMachineNode(SPU::SHLQBIIv2i64, dl, VecVT,
1007 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1008 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001009 }
1010 } else {
1011 SDNode *Bytes =
Dan Gohman602b0c82009-09-25 18:54:59 +00001012 CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT,
1013 ShiftAmt,
1014 CurDAG->getTargetConstant(3, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001015 SDNode *Bits =
Dan Gohman602b0c82009-09-25 18:54:59 +00001016 CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT,
1017 ShiftAmt,
1018 CurDAG->getTargetConstant(7, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001019 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001020 CurDAG->getMachineNode(SPU::SHLQBYv2i64, dl, VecVT,
1021 SDValue(VecOp0, 0), SDValue(Bytes, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001022 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001023 CurDAG->getMachineNode(SPU::SHLQBIv2i64, dl, VecVT,
1024 SDValue(Shift, 0), SDValue(Bits, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001025 }
1026
Dan Gohman602b0c82009-09-25 18:54:59 +00001027 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001028}
1029
1030/*!
1031 * Emit the instruction sequence for i64 logical right shifts.
1032 *
1033 * @param Op The shl operand
1034 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1035 * makes life easier.)
1036 * @return The SDNode with the entire instruction sequence
1037 */
1038SDNode *
Owen Andersone50ed302009-08-10 22:56:29 +00001039SPUDAGToDAGISel::SelectSRLi64(SDValue &Op, EVT OpVT) {
Scott Michel02d711b2008-12-30 23:28:25 +00001040 SDValue Op0 = Op.getOperand(0);
Owen Anderson23b9b192009-08-12 00:36:31 +00001041 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
1042 OpVT, (128 / OpVT.getSizeInBits()));
Scott Michel02d711b2008-12-30 23:28:25 +00001043 SDValue ShiftAmt = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001044 EVT ShiftAmtVT = ShiftAmt.getValueType();
Scott Michel02d711b2008-12-30 23:28:25 +00001045 SDNode *VecOp0, *Shift = 0;
Dale Johannesened2eee62009-02-06 01:31:28 +00001046 DebugLoc dl = Op.getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001047
Dan Gohman602b0c82009-09-25 18:54:59 +00001048 VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Scott Michel02d711b2008-12-30 23:28:25 +00001049
1050 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1051 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1052 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1053
1054 if (bytes > 0) {
1055 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001056 CurDAG->getMachineNode(SPU::ROTQMBYIv2i64, dl, VecVT,
1057 SDValue(VecOp0, 0),
1058 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001059 }
1060
1061 if (bits > 0) {
1062 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001063 CurDAG->getMachineNode(SPU::ROTQMBIIv2i64, dl, VecVT,
1064 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1065 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001066 }
1067 } else {
1068 SDNode *Bytes =
Dan Gohman602b0c82009-09-25 18:54:59 +00001069 CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT,
1070 ShiftAmt,
1071 CurDAG->getTargetConstant(3, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001072 SDNode *Bits =
Dan Gohman602b0c82009-09-25 18:54:59 +00001073 CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT,
1074 ShiftAmt,
1075 CurDAG->getTargetConstant(7, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001076
1077 // Ensure that the shift amounts are negated!
Dan Gohman602b0c82009-09-25 18:54:59 +00001078 Bytes = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1079 SDValue(Bytes, 0),
1080 CurDAG->getTargetConstant(0, ShiftAmtVT));
1081
1082 Bits = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1083 SDValue(Bits, 0),
Scott Michel02d711b2008-12-30 23:28:25 +00001084 CurDAG->getTargetConstant(0, ShiftAmtVT));
1085
Scott Michel02d711b2008-12-30 23:28:25 +00001086 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001087 CurDAG->getMachineNode(SPU::ROTQMBYv2i64, dl, VecVT,
1088 SDValue(VecOp0, 0), SDValue(Bytes, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001089 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001090 CurDAG->getMachineNode(SPU::ROTQMBIv2i64, dl, VecVT,
1091 SDValue(Shift, 0), SDValue(Bits, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001092 }
1093
Dan Gohman602b0c82009-09-25 18:54:59 +00001094 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001095}
1096
1097/*!
1098 * Emit the instruction sequence for i64 arithmetic right shifts.
1099 *
1100 * @param Op The shl operand
1101 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1102 * makes life easier.)
1103 * @return The SDNode with the entire instruction sequence
1104 */
1105SDNode *
Owen Andersone50ed302009-08-10 22:56:29 +00001106SPUDAGToDAGISel::SelectSRAi64(SDValue &Op, EVT OpVT) {
Scott Michel02d711b2008-12-30 23:28:25 +00001107 // Promote Op0 to vector
Owen Anderson23b9b192009-08-12 00:36:31 +00001108 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
1109 OpVT, (128 / OpVT.getSizeInBits()));
Scott Michel02d711b2008-12-30 23:28:25 +00001110 SDValue ShiftAmt = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001111 EVT ShiftAmtVT = ShiftAmt.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00001112 DebugLoc dl = Op.getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001113
1114 SDNode *VecOp0 =
Dan Gohman602b0c82009-09-25 18:54:59 +00001115 CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op.getOperand(0));
Scott Michel02d711b2008-12-30 23:28:25 +00001116
1117 SDValue SignRotAmt = CurDAG->getTargetConstant(31, ShiftAmtVT);
1118 SDNode *SignRot =
Dan Gohman602b0c82009-09-25 18:54:59 +00001119 CurDAG->getMachineNode(SPU::ROTMAIv2i64_i32, dl, MVT::v2i64,
1120 SDValue(VecOp0, 0), SignRotAmt);
Scott Michel02d711b2008-12-30 23:28:25 +00001121 SDNode *UpperHalfSign =
Dan Gohman602b0c82009-09-25 18:54:59 +00001122 CurDAG->getMachineNode(SPU::ORi32_v4i32, dl, MVT::i32, SDValue(SignRot, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001123
1124 SDNode *UpperHalfSignMask =
Dan Gohman602b0c82009-09-25 18:54:59 +00001125 CurDAG->getMachineNode(SPU::FSM64r32, dl, VecVT, SDValue(UpperHalfSign, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001126 SDNode *UpperLowerMask =
Dan Gohman602b0c82009-09-25 18:54:59 +00001127 CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT,
1128 CurDAG->getTargetConstant(0xff00ULL, MVT::i16));
Scott Michel02d711b2008-12-30 23:28:25 +00001129 SDNode *UpperLowerSelect =
Dan Gohman602b0c82009-09-25 18:54:59 +00001130 CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT,
1131 SDValue(UpperHalfSignMask, 0),
1132 SDValue(VecOp0, 0),
1133 SDValue(UpperLowerMask, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001134
1135 SDNode *Shift = 0;
1136
1137 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1138 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1139 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1140
1141 if (bytes > 0) {
1142 bytes = 31 - bytes;
1143 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001144 CurDAG->getMachineNode(SPU::ROTQBYIv2i64, dl, VecVT,
1145 SDValue(UpperLowerSelect, 0),
1146 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001147 }
1148
1149 if (bits > 0) {
1150 bits = 8 - bits;
1151 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001152 CurDAG->getMachineNode(SPU::ROTQBIIv2i64, dl, VecVT,
1153 SDValue((Shift != 0 ? Shift : UpperLowerSelect), 0),
1154 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001155 }
1156 } else {
1157 SDNode *NegShift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001158 CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1159 ShiftAmt, CurDAG->getTargetConstant(0, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001160
1161 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001162 CurDAG->getMachineNode(SPU::ROTQBYBIv2i64_r32, dl, VecVT,
1163 SDValue(UpperLowerSelect, 0), SDValue(NegShift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001164 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001165 CurDAG->getMachineNode(SPU::ROTQBIv2i64, dl, VecVT,
1166 SDValue(Shift, 0), SDValue(NegShift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001167 }
1168
Dan Gohman602b0c82009-09-25 18:54:59 +00001169 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001170}
1171
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001172/*!
1173 Do the necessary magic necessary to load a i64 constant
1174 */
Owen Andersone50ed302009-08-10 22:56:29 +00001175SDNode *SPUDAGToDAGISel::SelectI64Constant(SDValue& Op, EVT OpVT,
Scott Michel7ea02ff2009-03-17 01:15:45 +00001176 DebugLoc dl) {
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001177 ConstantSDNode *CN = cast<ConstantSDNode>(Op.getNode());
Scott Michel7ea02ff2009-03-17 01:15:45 +00001178 return SelectI64Constant(CN->getZExtValue(), OpVT, dl);
1179}
1180
Owen Andersone50ed302009-08-10 22:56:29 +00001181SDNode *SPUDAGToDAGISel::SelectI64Constant(uint64_t Value64, EVT OpVT,
Scott Michel7ea02ff2009-03-17 01:15:45 +00001182 DebugLoc dl) {
Owen Anderson23b9b192009-08-12 00:36:31 +00001183 EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(), OpVT, 2);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001184 SDValue i64vec =
Scott Michel7ea02ff2009-03-17 01:15:45 +00001185 SPU::LowerV2I64Splat(OpVecVT, *CurDAG, Value64, dl);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001186
1187 // Here's where it gets interesting, because we have to parse out the
1188 // subtree handed back in i64vec:
1189
1190 if (i64vec.getOpcode() == ISD::BIT_CONVERT) {
1191 // The degenerate case where the upper and lower bits in the splat are
1192 // identical:
1193 SDValue Op0 = i64vec.getOperand(0);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001194
Scott Michel9de57a92009-01-26 22:33:37 +00001195 ReplaceUses(i64vec, Op0);
Dan Gohman602b0c82009-09-25 18:54:59 +00001196 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
1197 SDValue(emitBuildVector(Op0), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001198 } else if (i64vec.getOpcode() == SPUISD::SHUFB) {
1199 SDValue lhs = i64vec.getOperand(0);
1200 SDValue rhs = i64vec.getOperand(1);
1201 SDValue shufmask = i64vec.getOperand(2);
1202
1203 if (lhs.getOpcode() == ISD::BIT_CONVERT) {
1204 ReplaceUses(lhs, lhs.getOperand(0));
1205 lhs = lhs.getOperand(0);
1206 }
1207
1208 SDNode *lhsNode = (lhs.getNode()->isMachineOpcode()
1209 ? lhs.getNode()
1210 : emitBuildVector(lhs));
1211
1212 if (rhs.getOpcode() == ISD::BIT_CONVERT) {
1213 ReplaceUses(rhs, rhs.getOperand(0));
1214 rhs = rhs.getOperand(0);
1215 }
1216
1217 SDNode *rhsNode = (rhs.getNode()->isMachineOpcode()
1218 ? rhs.getNode()
1219 : emitBuildVector(rhs));
Scott Michel9de57a92009-01-26 22:33:37 +00001220
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001221 if (shufmask.getOpcode() == ISD::BIT_CONVERT) {
1222 ReplaceUses(shufmask, shufmask.getOperand(0));
1223 shufmask = shufmask.getOperand(0);
1224 }
1225
1226 SDNode *shufMaskNode = (shufmask.getNode()->isMachineOpcode()
1227 ? shufmask.getNode()
1228 : emitBuildVector(shufmask));
1229
1230 SDNode *shufNode =
Dale Johannesened2eee62009-02-06 01:31:28 +00001231 Select(CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001232 SDValue(lhsNode, 0), SDValue(rhsNode, 0),
1233 SDValue(shufMaskNode, 0)));
1234
Dan Gohman602b0c82009-09-25 18:54:59 +00001235 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
1236 SDValue(shufNode, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +00001237 } else if (i64vec.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman602b0c82009-09-25 18:54:59 +00001238 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
1239 SDValue(emitBuildVector(i64vec), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001240 } else {
Torok Edwindac237e2009-07-08 20:53:28 +00001241 llvm_report_error("SPUDAGToDAGISel::SelectI64Constant: Unhandled i64vec"
1242 "condition");
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001243 }
1244}
1245
Scott Michel02d711b2008-12-30 23:28:25 +00001246/// createSPUISelDag - This pass converts a legalized DAG into a
Scott Michel266bc8f2007-12-04 22:23:35 +00001247/// SPU-specific DAG, ready for instruction scheduling.
1248///
1249FunctionPass *llvm::createSPUISelDag(SPUTargetMachine &TM) {
1250 return new SPUDAGToDAGISel(TM);
1251}