blob: 2f1598441f5ae0300feca2cc01fffbe3bcf19de5 [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"
Scott Michel266bc8f2007-12-04 22:23:35 +000017#include "SPUHazardRecognizers.h"
18#include "SPUFrameInfo.h"
Scott Michel203b2d62008-04-30 00:30:08 +000019#include "SPURegisterNames.h"
Scott Michel94bd57e2009-01-15 04:41:47 +000020#include "SPUTargetMachine.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000021#include "llvm/CodeGen/MachineConstantPool.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
23#include "llvm/CodeGen/MachineFunction.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000024#include "llvm/CodeGen/SelectionDAG.h"
25#include "llvm/CodeGen/SelectionDAGISel.h"
Scott Michel94bd57e2009-01-15 04:41:47 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000027#include "llvm/Target/TargetOptions.h"
28#include "llvm/ADT/Statistic.h"
29#include "llvm/Constants.h"
30#include "llvm/GlobalValue.h"
31#include "llvm/Intrinsics.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000032#include "llvm/LLVMContext.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000033#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000035#include "llvm/Support/MathExtras.h"
36#include "llvm/Support/Compiler.h"
Torok Edwindac237e2009-07-08 20:53:28 +000037#include "llvm/Support/raw_ostream.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000038
39using namespace llvm;
40
41namespace {
42 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
43 bool
Scott Michel266bc8f2007-12-04 22:23:35 +000044 isI32IntS10Immediate(ConstantSDNode *CN)
45 {
Benjamin Kramer7e09deb2010-03-29 19:07:58 +000046 return isInt<10>(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000047 }
48
Scott Michel504c3692007-12-17 22:32:34 +000049 //! ConstantSDNode predicate for i32 unsigned 10-bit immediate values
50 bool
51 isI32IntU10Immediate(ConstantSDNode *CN)
52 {
Benjamin Kramer34247a02010-03-29 21:13:41 +000053 return isUInt<10>(CN->getSExtValue());
Scott Michel504c3692007-12-17 22:32:34 +000054 }
55
Scott Michel266bc8f2007-12-04 22:23:35 +000056 //! ConstantSDNode predicate for i16 sign-extended, 10-bit immediate values
57 bool
58 isI16IntS10Immediate(ConstantSDNode *CN)
59 {
Benjamin Kramer7e09deb2010-03-29 19:07:58 +000060 return isInt<10>(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000061 }
62
Scott Michelec2a08f2007-12-15 00:38:50 +000063 //! ConstantSDNode predicate for i16 unsigned 10-bit immediate values
64 bool
65 isI16IntU10Immediate(ConstantSDNode *CN)
66 {
Benjamin Kramer34247a02010-03-29 21:13:41 +000067 return isUInt<10>((short) CN->getZExtValue());
Scott Michelec2a08f2007-12-15 00:38:50 +000068 }
69
Scott Michel266bc8f2007-12-04 22:23:35 +000070 //! ConstantSDNode predicate for signed 16-bit values
71 /*!
72 \arg CN The constant SelectionDAG node holding the value
73 \arg Imm The returned 16-bit value, if returning true
74
75 This predicate tests the value in \a CN to see whether it can be
76 represented as a 16-bit, sign-extended quantity. Returns true if
77 this is the case.
78 */
79 bool
80 isIntS16Immediate(ConstantSDNode *CN, short &Imm)
81 {
Owen Andersone50ed302009-08-10 22:56:29 +000082 EVT vt = CN->getValueType(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000083 Imm = (short) CN->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000084 if (vt.getSimpleVT() >= MVT::i1 && vt.getSimpleVT() <= MVT::i16) {
Scott Michel266bc8f2007-12-04 22:23:35 +000085 return true;
Owen Anderson825b72b2009-08-11 20:47:22 +000086 } else if (vt == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000087 int32_t i_val = (int32_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +000088 short s_val = (short) i_val;
89 return i_val == s_val;
90 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000091 int64_t i_val = (int64_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +000092 short s_val = (short) i_val;
93 return i_val == s_val;
94 }
95
96 return false;
97 }
98
Scott Michel266bc8f2007-12-04 22:23:35 +000099 //! ConstantFPSDNode predicate for representing floats as 16-bit sign ext.
100 static bool
101 isFPS16Immediate(ConstantFPSDNode *FPN, short &Imm)
102 {
Owen Andersone50ed302009-08-10 22:56:29 +0000103 EVT vt = FPN->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000104 if (vt == MVT::f32) {
Chris Lattnerd3ada752007-12-22 22:45:38 +0000105 int val = FloatToBits(FPN->getValueAPF().convertToFloat());
Scott Michel266bc8f2007-12-04 22:23:35 +0000106 int sval = (int) ((val << 16) >> 16);
107 Imm = (short) val;
108 return val == sval;
109 }
110
111 return false;
112 }
113
114 //===------------------------------------------------------------------===//
Owen Andersone50ed302009-08-10 22:56:29 +0000115 //! EVT to "useful stuff" mapping structure:
Scott Michel266bc8f2007-12-04 22:23:35 +0000116
117 struct valtype_map_s {
Owen Andersone50ed302009-08-10 22:56:29 +0000118 EVT VT;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000119 unsigned ldresult_ins; /// LDRESULT instruction (0 = undefined)
Scott Michela59d4692008-02-23 18:41:37 +0000120 bool ldresult_imm; /// LDRESULT instruction requires immediate?
Scott Michelf0569be2008-12-27 04:51:36 +0000121 unsigned lrinst; /// LR instruction
Scott Michel266bc8f2007-12-04 22:23:35 +0000122 };
123
124 const valtype_map_s valtype_map[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +0000125 { MVT::i8, SPU::ORBIr8, true, SPU::LRr8 },
126 { MVT::i16, SPU::ORHIr16, true, SPU::LRr16 },
127 { MVT::i32, SPU::ORIr32, true, SPU::LRr32 },
128 { MVT::i64, SPU::ORr64, false, SPU::LRr64 },
129 { MVT::f32, SPU::ORf32, false, SPU::LRf32 },
130 { MVT::f64, SPU::ORf64, false, SPU::LRf64 },
Scott Michel58c58182008-01-17 20:38:41 +0000131 // vector types... (sigh!)
Owen Anderson825b72b2009-08-11 20:47:22 +0000132 { MVT::v16i8, 0, false, SPU::LRv16i8 },
133 { MVT::v8i16, 0, false, SPU::LRv8i16 },
134 { MVT::v4i32, 0, false, SPU::LRv4i32 },
135 { MVT::v2i64, 0, false, SPU::LRv2i64 },
136 { MVT::v4f32, 0, false, SPU::LRv4f32 },
137 { MVT::v2f64, 0, false, SPU::LRv2f64 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000138 };
139
140 const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]);
141
Owen Andersone50ed302009-08-10 22:56:29 +0000142 const valtype_map_s *getValueTypeMapEntry(EVT VT)
Scott Michel266bc8f2007-12-04 22:23:35 +0000143 {
144 const valtype_map_s *retval = 0;
145 for (size_t i = 0; i < n_valtype_map; ++i) {
146 if (valtype_map[i].VT == VT) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000147 retval = valtype_map + i;
148 break;
Scott Michel266bc8f2007-12-04 22:23:35 +0000149 }
150 }
151
152
153#ifndef NDEBUG
154 if (retval == 0) {
Benjamin Kramer1bd73352010-04-08 10:44:28 +0000155 report_fatal_error("SPUISelDAGToDAG.cpp: getValueTypeMapEntry returns"
156 "NULL for " + Twine(VT.getEVTString()));
Scott Michel266bc8f2007-12-04 22:23:35 +0000157 }
158#endif
159
160 return retval;
161 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000162
Scott Michel7ea02ff2009-03-17 01:15:45 +0000163 //! Generate the carry-generate shuffle mask.
164 SDValue getCarryGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
165 SmallVector<SDValue, 16 > ShufBytes;
Dan Gohman844731a2008-05-13 00:00:25 +0000166
Scott Michel7ea02ff2009-03-17 01:15:45 +0000167 // Create the shuffle mask for "rotating" the borrow up one register slot
168 // once the borrow is generated.
Owen Anderson825b72b2009-08-11 20:47:22 +0000169 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
170 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
171 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
172 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
Scott Michel266bc8f2007-12-04 22:23:35 +0000173
Owen Anderson825b72b2009-08-11 20:47:22 +0000174 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000175 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000176 }
Scott Michel02d711b2008-12-30 23:28:25 +0000177
Scott Michel7ea02ff2009-03-17 01:15:45 +0000178 //! Generate the borrow-generate shuffle mask
179 SDValue getBorrowGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
180 SmallVector<SDValue, 16 > ShufBytes;
181
182 // Create the shuffle mask for "rotating" the borrow up one register slot
183 // once the borrow is generated.
Owen Anderson825b72b2009-08-11 20:47:22 +0000184 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
185 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
186 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
187 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000188
Owen Anderson825b72b2009-08-11 20:47:22 +0000189 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000190 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000191 }
192
Scott Michel7ea02ff2009-03-17 01:15:45 +0000193 //===------------------------------------------------------------------===//
194 /// SPUDAGToDAGISel - Cell SPU-specific code to select SPU machine
195 /// instructions for SelectionDAG operations.
196 ///
197 class SPUDAGToDAGISel :
198 public SelectionDAGISel
199 {
Dan Gohmand858e902010-04-17 15:26:15 +0000200 const SPUTargetMachine &TM;
201 const SPUTargetLowering &SPUtli;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000202 unsigned GlobalBaseReg;
Scott Michel02d711b2008-12-30 23:28:25 +0000203
Scott Michel7ea02ff2009-03-17 01:15:45 +0000204 public:
205 explicit SPUDAGToDAGISel(SPUTargetMachine &tm) :
206 SelectionDAGISel(tm),
207 TM(tm),
208 SPUtli(*tm.getTargetLowering())
209 { }
210
Dan Gohmanad2afc22009-07-31 18:16:33 +0000211 virtual bool runOnMachineFunction(MachineFunction &MF) {
Scott Michel7ea02ff2009-03-17 01:15:45 +0000212 // Make sure we re-emit a set of the global base reg if necessary
213 GlobalBaseReg = 0;
Dan Gohmanad2afc22009-07-31 18:16:33 +0000214 SelectionDAGISel::runOnMachineFunction(MF);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000215 return true;
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000216 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000217
Scott Michel7ea02ff2009-03-17 01:15:45 +0000218 /// getI32Imm - Return a target constant with the specified value, of type
219 /// i32.
220 inline SDValue getI32Imm(uint32_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000221 return CurDAG->getTargetConstant(Imm, MVT::i32);
Scott Michel94bd57e2009-01-15 04:41:47 +0000222 }
223
Scott Michel7ea02ff2009-03-17 01:15:45 +0000224 /// getI64Imm - Return a target constant with the specified value, of type
225 /// i64.
226 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000227 return CurDAG->getTargetConstant(Imm, MVT::i64);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000228 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000229
Scott Michel7ea02ff2009-03-17 01:15:45 +0000230 /// getSmallIPtrImm - Return a target constant of pointer type.
231 inline SDValue getSmallIPtrImm(unsigned Imm) {
232 return CurDAG->getTargetConstant(Imm, SPUtli.getPointerTy());
Scott Michel266bc8f2007-12-04 22:23:35 +0000233 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000234
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000235 SDNode *emitBuildVector(SDNode *bvNode) {
236 EVT vecVT = bvNode->getValueType(0);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000237 DebugLoc dl = bvNode->getDebugLoc();
238
239 // Check to see if this vector can be represented as a CellSPU immediate
240 // constant by invoking all of the instruction selection predicates:
Owen Anderson825b72b2009-08-11 20:47:22 +0000241 if (((vecVT == MVT::v8i16) &&
242 (SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i16).getNode() != 0)) ||
243 ((vecVT == MVT::v4i32) &&
244 ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
245 (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
246 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
Scott Michel7ea02ff2009-03-17 01:15:45 +0000247 (SPU::get_v4i32_imm(bvNode, *CurDAG).getNode() != 0))) ||
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 ((vecVT == MVT::v2i64) &&
249 ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
250 (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
Chris Lattnera8e76142010-02-23 05:30:43 +0000251 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i64).getNode() != 0)))) {
252 HandleSDNode Dummy(SDValue(bvNode, 0));
253 if (SDNode *N = Select(bvNode))
254 return N;
255 return Dummy.getValue().getNode();
256 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000257
258 // No, need to emit a constant pool spill:
259 std::vector<Constant*> CV;
260
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000261 for (size_t i = 0; i < bvNode->getNumOperands(); ++i) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000262 ConstantSDNode *V = cast<ConstantSDNode > (bvNode->getOperand(i));
Chris Lattnera8e76142010-02-23 05:30:43 +0000263 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000264 }
265
Dan Gohman46510a72010-04-15 01:51:59 +0000266 const Constant *CP = ConstantVector::get(CV);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000267 SDValue CPIdx = CurDAG->getConstantPool(CP, SPUtli.getPointerTy());
268 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
269 SDValue CGPoolOffset =
Dan Gohmand858e902010-04-17 15:26:15 +0000270 SPU::LowerConstantPool(CPIdx, *CurDAG, TM);
Chris Lattnera8e76142010-02-23 05:30:43 +0000271
272 HandleSDNode Dummy(CurDAG->getLoad(vecVT, dl,
273 CurDAG->getEntryNode(), CGPoolOffset,
274 PseudoSourceValue::getConstantPool(),0,
275 false, false, Alignment));
276 CurDAG->ReplaceAllUsesWith(SDValue(bvNode, 0), Dummy.getValue());
277 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
278 return N;
279 return Dummy.getValue().getNode();
Scott Michel266bc8f2007-12-04 22:23:35 +0000280 }
Scott Michel02d711b2008-12-30 23:28:25 +0000281
Scott Michel7ea02ff2009-03-17 01:15:45 +0000282 /// Select - Convert the specified operand from a target-independent to a
283 /// target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000284 SDNode *Select(SDNode *N);
Scott Michel266bc8f2007-12-04 22:23:35 +0000285
Scott Michel7ea02ff2009-03-17 01:15:45 +0000286 //! Emit the instruction sequence for i64 shl
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000287 SDNode *SelectSHLi64(SDNode *N, EVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000288
Scott Michel7ea02ff2009-03-17 01:15:45 +0000289 //! Emit the instruction sequence for i64 srl
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000290 SDNode *SelectSRLi64(SDNode *N, EVT OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000291
Scott Michel7ea02ff2009-03-17 01:15:45 +0000292 //! Emit the instruction sequence for i64 sra
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000293 SDNode *SelectSRAi64(SDNode *N, EVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000294
Scott Michel7ea02ff2009-03-17 01:15:45 +0000295 //! Emit the necessary sequence for loading i64 constants:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000296 SDNode *SelectI64Constant(SDNode *N, EVT OpVT, DebugLoc dl);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000297
298 //! Alternate instruction emit sequence for loading i64 constants
Owen Andersone50ed302009-08-10 22:56:29 +0000299 SDNode *SelectI64Constant(uint64_t i64const, EVT OpVT, DebugLoc dl);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000300
301 //! Returns true if the address N is an A-form (local store) address
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000302 bool SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000303 SDValue &Index);
304
305 //! D-form address predicate
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000306 bool SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000307 SDValue &Index);
308
309 /// Alternate D-form address using i7 offset predicate
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000310 bool SelectDForm2Addr(SDNode *Op, SDValue N, SDValue &Disp,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000311 SDValue &Base);
312
313 /// D-form address selection workhorse
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000314 bool DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Disp,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000315 SDValue &Base, int minOffset, int maxOffset);
316
317 //! Address predicate if N can be expressed as an indexed [r+r] operation.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000318 bool SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000319 SDValue &Index);
320
321 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
322 /// inline asm expressions.
323 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
324 char ConstraintCode,
325 std::vector<SDValue> &OutOps) {
326 SDValue Op0, Op1;
327 switch (ConstraintCode) {
328 default: return true;
329 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000330 if (!SelectDFormAddr(Op.getNode(), Op, Op0, Op1)
331 && !SelectAFormAddr(Op.getNode(), Op, Op0, Op1))
332 SelectXFormAddr(Op.getNode(), Op, Op0, Op1);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000333 break;
334 case 'o': // offsetable
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000335 if (!SelectDFormAddr(Op.getNode(), Op, Op0, Op1)
336 && !SelectAFormAddr(Op.getNode(), Op, Op0, Op1)) {
Scott Michel7ea02ff2009-03-17 01:15:45 +0000337 Op0 = Op;
338 Op1 = getSmallIPtrImm(0);
339 }
340 break;
341 case 'v': // not offsetable
342#if 1
Torok Edwinc23197a2009-07-14 16:55:14 +0000343 llvm_unreachable("InlineAsmMemoryOperand 'v' constraint not handled.");
Scott Michel7ea02ff2009-03-17 01:15:45 +0000344#else
345 SelectAddrIdxOnly(Op, Op, Op0, Op1);
346#endif
347 break;
348 }
349
350 OutOps.push_back(Op0);
351 OutOps.push_back(Op1);
352 return false;
353 }
354
Scott Michel7ea02ff2009-03-17 01:15:45 +0000355 virtual const char *getPassName() const {
356 return "Cell SPU DAG->DAG Pattern Instruction Selection";
357 }
358
359 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
360 /// this target when scheduling the DAG.
361 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
362 const TargetInstrInfo *II = TM.getInstrInfo();
363 assert(II && "No InstrInfo?");
364 return new SPUHazardRecognizer(*II);
365 }
366
367 // Include the pieces autogenerated from the target description.
Scott Michel266bc8f2007-12-04 22:23:35 +0000368#include "SPUGenDAGISel.inc"
Scott Michel7ea02ff2009-03-17 01:15:45 +0000369 };
Dan Gohman844731a2008-05-13 00:00:25 +0000370}
371
Scott Michel266bc8f2007-12-04 22:23:35 +0000372/*!
Scott Michel9de57a92009-01-26 22:33:37 +0000373 \arg Op The ISD instruction operand
Scott Michel266bc8f2007-12-04 22:23:35 +0000374 \arg N The address to be tested
375 \arg Base The base address
376 \arg Index The base address index
377 */
378bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000379SPUDAGToDAGISel::SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000380 SDValue &Index) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000381 // These match the addr256k operand type:
Owen Anderson825b72b2009-08-11 20:47:22 +0000382 EVT OffsVT = MVT::i16;
Dan Gohman475871a2008-07-27 21:46:04 +0000383 SDValue Zero = CurDAG->getTargetConstant(0, OffsVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000384
385 switch (N.getOpcode()) {
386 case ISD::Constant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000387 case ISD::ConstantPool:
388 case ISD::GlobalAddress:
Chris Lattner75361b62010-04-07 22:58:41 +0000389 report_fatal_error("SPU SelectAFormAddr: Constant/Pool/Global not lowered.");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000390 /*NOTREACHED*/
391
Scott Michel053c1da2008-01-29 02:16:57 +0000392 case ISD::TargetConstant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000393 case ISD::TargetGlobalAddress:
Scott Michel053c1da2008-01-29 02:16:57 +0000394 case ISD::TargetJumpTable:
Chris Lattner75361b62010-04-07 22:58:41 +0000395 report_fatal_error("SPUSelectAFormAddr: Target Constant/Pool/Global "
Torok Edwindac237e2009-07-08 20:53:28 +0000396 "not wrapped as A-form address.");
Scott Michel053c1da2008-01-29 02:16:57 +0000397 /*NOTREACHED*/
Scott Michel266bc8f2007-12-04 22:23:35 +0000398
Scott Michel02d711b2008-12-30 23:28:25 +0000399 case SPUISD::AFormAddr:
Scott Michel053c1da2008-01-29 02:16:57 +0000400 // Just load from memory if there's only a single use of the location,
401 // otherwise, this will get handled below with D-form offset addresses
402 if (N.hasOneUse()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000403 SDValue Op0 = N.getOperand(0);
Scott Michel053c1da2008-01-29 02:16:57 +0000404 switch (Op0.getOpcode()) {
405 case ISD::TargetConstantPool:
406 case ISD::TargetJumpTable:
407 Base = Op0;
408 Index = Zero;
409 return true;
410
411 case ISD::TargetGlobalAddress: {
412 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op0);
Dan Gohman46510a72010-04-15 01:51:59 +0000413 const GlobalValue *GV = GSDN->getGlobal();
Scott Michel053c1da2008-01-29 02:16:57 +0000414 if (GV->getAlignment() == 16) {
415 Base = Op0;
416 Index = Zero;
417 return true;
418 }
419 break;
420 }
421 }
422 }
423 break;
424 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000425 return false;
426}
427
Scott Michel02d711b2008-12-30 23:28:25 +0000428bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000429SPUDAGToDAGISel::SelectDForm2Addr(SDNode *Op, SDValue N, SDValue &Disp,
Dan Gohman475871a2008-07-27 21:46:04 +0000430 SDValue &Base) {
Scott Michel203b2d62008-04-30 00:30:08 +0000431 const int minDForm2Offset = -(1 << 7);
432 const int maxDForm2Offset = (1 << 7) - 1;
433 return DFormAddressPredicate(Op, N, Disp, Base, minDForm2Offset,
434 maxDForm2Offset);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000435}
436
Scott Michel266bc8f2007-12-04 22:23:35 +0000437/*!
438 \arg Op The ISD instruction (ignored)
439 \arg N The address to be tested
440 \arg Base Base address register/pointer
441 \arg Index Base address index
442
443 Examine the input address by a base register plus a signed 10-bit
444 displacement, [r+I10] (D-form address).
445
446 \return true if \a N is a D-form address with \a Base and \a Index set
Dan Gohman475871a2008-07-27 21:46:04 +0000447 to non-empty SDValue instances.
Scott Michel266bc8f2007-12-04 22:23:35 +0000448*/
449bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000450SPUDAGToDAGISel::SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000451 SDValue &Index) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000452 return DFormAddressPredicate(Op, N, Base, Index,
Scott Michel9c0c6b22008-11-21 02:56:16 +0000453 SPUFrameInfo::minFrameOffset(),
454 SPUFrameInfo::maxFrameOffset());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000455}
456
457bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000458SPUDAGToDAGISel::DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000459 SDValue &Index, int minOffset,
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000460 int maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000461 unsigned Opc = N.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +0000462 EVT PtrTy = SPUtli.getPointerTy();
Scott Michel266bc8f2007-12-04 22:23:35 +0000463
Scott Michel053c1da2008-01-29 02:16:57 +0000464 if (Opc == ISD::FrameIndex) {
465 // Stack frame index must be less than 512 (divided by 16):
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000466 FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(N);
Scott Michel203b2d62008-04-30 00:30:08 +0000467 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000468 DEBUG(errs() << "SelectDFormAddr: ISD::FrameIndex = "
Scott Michel203b2d62008-04-30 00:30:08 +0000469 << FI << "\n");
470 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000471 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000472 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel266bc8f2007-12-04 22:23:35 +0000473 return true;
474 }
475 } else if (Opc == ISD::ADD) {
476 // Generated by getelementptr
Dan Gohman475871a2008-07-27 21:46:04 +0000477 const SDValue Op0 = N.getOperand(0);
478 const SDValue Op1 = N.getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000479
Scott Michel053c1da2008-01-29 02:16:57 +0000480 if ((Op0.getOpcode() == SPUISD::Hi && Op1.getOpcode() == SPUISD::Lo)
481 || (Op1.getOpcode() == SPUISD::Hi && Op0.getOpcode() == SPUISD::Lo)) {
482 Base = CurDAG->getTargetConstant(0, PtrTy);
483 Index = N;
484 return true;
485 } else if (Op1.getOpcode() == ISD::Constant
486 || Op1.getOpcode() == ISD::TargetConstant) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000487 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000488 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel9de5d0d2008-01-11 02:53:15 +0000489
Scott Michel053c1da2008-01-29 02:16:57 +0000490 if (Op0.getOpcode() == ISD::FrameIndex) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000491 FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(Op0);
Scott Michel203b2d62008-04-30 00:30:08 +0000492 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000493 DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000494 << " frame index = " << FI << "\n");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000495
Scott Michel203b2d62008-04-30 00:30:08 +0000496 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000497 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000498 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000499 return true;
500 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000501 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000502 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000503 Index = Op0;
504 return true;
505 }
506 } else if (Op0.getOpcode() == ISD::Constant
507 || Op0.getOpcode() == ISD::TargetConstant) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000508 ConstantSDNode *CN = cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000509 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel053c1da2008-01-29 02:16:57 +0000510
511 if (Op1.getOpcode() == ISD::FrameIndex) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000512 FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(Op1);
Scott Michel203b2d62008-04-30 00:30:08 +0000513 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000514 DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000515 << " frame index = " << FI << "\n");
Scott Michel053c1da2008-01-29 02:16:57 +0000516
Scott Michel203b2d62008-04-30 00:30:08 +0000517 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000518 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000519 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000520 return true;
521 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000522 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000523 Base = CurDAG->getTargetConstant(offset, PtrTy);
524 Index = Op1;
525 return true;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000526 }
Scott Michel053c1da2008-01-29 02:16:57 +0000527 }
528 } else if (Opc == SPUISD::IndirectAddr) {
529 // Indirect with constant offset -> D-Form address
Dan Gohman475871a2008-07-27 21:46:04 +0000530 const SDValue Op0 = N.getOperand(0);
531 const SDValue Op1 = N.getOperand(1);
Scott Michel497e8882008-01-11 21:01:19 +0000532
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000533 if (Op0.getOpcode() == SPUISD::Hi
534 && Op1.getOpcode() == SPUISD::Lo) {
Scott Michel053c1da2008-01-29 02:16:57 +0000535 // (SPUindirect (SPUhi <arg>, 0), (SPUlo <arg>, 0))
Scott Michel9de5d0d2008-01-11 02:53:15 +0000536 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000537 Index = N;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000538 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000539 } else if (isa<ConstantSDNode>(Op0) || isa<ConstantSDNode>(Op1)) {
540 int32_t offset = 0;
Dan Gohman475871a2008-07-27 21:46:04 +0000541 SDValue idxOp;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000542
543 if (isa<ConstantSDNode>(Op1)) {
544 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000545 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000546 idxOp = Op0;
547 } else if (isa<ConstantSDNode>(Op0)) {
548 ConstantSDNode *CN = cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000549 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000550 idxOp = Op1;
Scott Michel02d711b2008-12-30 23:28:25 +0000551 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000552
553 if (offset >= minOffset && offset <= maxOffset) {
554 Base = CurDAG->getTargetConstant(offset, PtrTy);
555 Index = idxOp;
556 return true;
557 }
Scott Michel9de5d0d2008-01-11 02:53:15 +0000558 }
Scott Michel053c1da2008-01-29 02:16:57 +0000559 } else if (Opc == SPUISD::AFormAddr) {
560 Base = CurDAG->getTargetConstant(0, N.getValueType());
561 Index = N;
Scott Michel58c58182008-01-17 20:38:41 +0000562 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000563 } else if (Opc == SPUISD::LDRESULT) {
564 Base = CurDAG->getTargetConstant(0, N.getValueType());
565 Index = N;
566 return true;
Kalle Raiskilac6166c62010-06-09 08:29:41 +0000567 } else if (Opc == ISD::Register
568 ||Opc == ISD::CopyFromReg
Kalle Raiskilabc2697c2010-08-04 13:59:48 +0000569 ||Opc == ISD::UNDEF
570 ||Opc == ISD::Constant) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000571 unsigned OpOpc = Op->getOpcode();
Scott Michel9c0c6b22008-11-21 02:56:16 +0000572
573 if (OpOpc == ISD::STORE || OpOpc == ISD::LOAD) {
574 // Direct load/store without getelementptr
Kalle Raiskila11fe2462010-06-01 13:34:47 +0000575 SDValue Offs;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000576
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000577 Offs = ((OpOpc == ISD::STORE) ? Op->getOperand(3) : Op->getOperand(2));
Scott Michel9c0c6b22008-11-21 02:56:16 +0000578
579 if (Offs.getOpcode() == ISD::Constant || Offs.getOpcode() == ISD::UNDEF) {
580 if (Offs.getOpcode() == ISD::UNDEF)
581 Offs = CurDAG->getTargetConstant(0, Offs.getValueType());
582
583 Base = Offs;
Kalle Raiskila11fe2462010-06-01 13:34:47 +0000584 Index = N;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000585 return true;
586 }
Scott Michelaedc6372008-12-10 00:15:19 +0000587 } else {
588 /* If otherwise unadorned, default to D-form address with 0 offset: */
589 if (Opc == ISD::CopyFromReg) {
Scott Michel19c10e62009-01-26 03:37:41 +0000590 Index = N.getOperand(1);
Scott Michelaedc6372008-12-10 00:15:19 +0000591 } else {
Scott Michel19c10e62009-01-26 03:37:41 +0000592 Index = N;
Scott Michelaedc6372008-12-10 00:15:19 +0000593 }
594
595 Base = CurDAG->getTargetConstant(0, Index.getValueType());
596 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000597 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000598 }
Scott Michel9c0c6b22008-11-21 02:56:16 +0000599
Scott Michel266bc8f2007-12-04 22:23:35 +0000600 return false;
601}
602
603/*!
604 \arg Op The ISD instruction operand
605 \arg N The address operand
606 \arg Base The base pointer operand
607 \arg Index The offset/index operand
608
Scott Michel9c0c6b22008-11-21 02:56:16 +0000609 If the address \a N can be expressed as an A-form or D-form address, returns
610 false. Otherwise, creates two operands, Base and Index that will become the
611 (r)(r) X-form address.
Scott Michel266bc8f2007-12-04 22:23:35 +0000612*/
613bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000614SPUDAGToDAGISel::SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000615 SDValue &Index) {
Scott Michel9c0c6b22008-11-21 02:56:16 +0000616 if (!SelectAFormAddr(Op, N, Base, Index)
617 && !SelectDFormAddr(Op, N, Base, Index)) {
Scott Michel18fae692008-11-25 17:29:43 +0000618 // If the address is neither A-form or D-form, punt and use an X-form
619 // address:
Scott Michel1a6cdb62008-12-01 17:56:02 +0000620 Base = N.getOperand(1);
621 Index = N.getOperand(0);
Scott Michel50843c02008-11-25 04:03:47 +0000622 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000623 }
624
625 return false;
Scott Michel58c58182008-01-17 20:38:41 +0000626}
627
Scott Michel266bc8f2007-12-04 22:23:35 +0000628//! Convert the operand from a target-independent to a target-specific node
629/*!
630 */
631SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000632SPUDAGToDAGISel::Select(SDNode *N) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000633 unsigned Opc = N->getOpcode();
Scott Michel58c58182008-01-17 20:38:41 +0000634 int n_ops = -1;
635 unsigned NewOpc;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000636 EVT OpVT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000637 SDValue Ops[8];
Dale Johannesened2eee62009-02-06 01:31:28 +0000638 DebugLoc dl = N->getDebugLoc();
Scott Michel266bc8f2007-12-04 22:23:35 +0000639
Chris Lattnera8e76142010-02-23 05:30:43 +0000640 if (N->isMachineOpcode())
Scott Michel266bc8f2007-12-04 22:23:35 +0000641 return NULL; // Already selected.
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000642
643 if (Opc == ISD::FrameIndex) {
Scott Michel02d711b2008-12-30 23:28:25 +0000644 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000645 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
646 SDValue Imm0 = CurDAG->getTargetConstant(0, N->getValueType(0));
Scott Michel266bc8f2007-12-04 22:23:35 +0000647
Scott Michel02d711b2008-12-30 23:28:25 +0000648 if (FI < 128) {
Scott Michel203b2d62008-04-30 00:30:08 +0000649 NewOpc = SPU::AIr32;
Scott Michel02d711b2008-12-30 23:28:25 +0000650 Ops[0] = TFI;
651 Ops[1] = Imm0;
Scott Michel203b2d62008-04-30 00:30:08 +0000652 n_ops = 2;
653 } else {
Scott Michel203b2d62008-04-30 00:30:08 +0000654 NewOpc = SPU::Ar32;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000655 Ops[0] = CurDAG->getRegister(SPU::R1, N->getValueType(0));
Dan Gohman602b0c82009-09-25 18:54:59 +0000656 Ops[1] = SDValue(CurDAG->getMachineNode(SPU::ILAr32, dl,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000657 N->getValueType(0), TFI, Imm0),
Dan Gohman602b0c82009-09-25 18:54:59 +0000658 0);
Scott Michel203b2d62008-04-30 00:30:08 +0000659 n_ops = 2;
Scott Michel203b2d62008-04-30 00:30:08 +0000660 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000661 } else if (Opc == ISD::Constant && OpVT == MVT::i64) {
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000662 // Catch the i64 constants that end up here. Note: The backend doesn't
663 // attempt to legalize the constant (it's useless because DAGCombiner
664 // will insert 64-bit constants and we can't stop it).
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000665 return SelectI64Constant(N, OpVT, N->getDebugLoc());
Scott Michel94bd57e2009-01-15 04:41:47 +0000666 } else if ((Opc == ISD::ZERO_EXTEND || Opc == ISD::ANY_EXTEND)
Owen Anderson825b72b2009-08-11 20:47:22 +0000667 && OpVT == MVT::i64) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000668 SDValue Op0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000669 EVT Op0VT = Op0.getValueType();
Owen Anderson23b9b192009-08-12 00:36:31 +0000670 EVT Op0VecVT = EVT::getVectorVT(*CurDAG->getContext(),
671 Op0VT, (128 / Op0VT.getSizeInBits()));
672 EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(),
673 OpVT, (128 / OpVT.getSizeInBits()));
Scott Michel94bd57e2009-01-15 04:41:47 +0000674 SDValue shufMask;
Scott Michel58c58182008-01-17 20:38:41 +0000675
Owen Anderson825b72b2009-08-11 20:47:22 +0000676 switch (Op0VT.getSimpleVT().SimpleTy) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000677 default:
Chris Lattner75361b62010-04-07 22:58:41 +0000678 report_fatal_error("CellSPU Select: Unhandled zero/any extend EVT");
Scott Michel94bd57e2009-01-15 04:41:47 +0000679 /*NOTREACHED*/
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 case MVT::i32:
681 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
682 CurDAG->getConstant(0x80808080, MVT::i32),
683 CurDAG->getConstant(0x00010203, MVT::i32),
684 CurDAG->getConstant(0x80808080, MVT::i32),
685 CurDAG->getConstant(0x08090a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000686 break;
687
Owen Anderson825b72b2009-08-11 20:47:22 +0000688 case MVT::i16:
689 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
690 CurDAG->getConstant(0x80808080, MVT::i32),
691 CurDAG->getConstant(0x80800203, MVT::i32),
692 CurDAG->getConstant(0x80808080, MVT::i32),
693 CurDAG->getConstant(0x80800a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000694 break;
695
Owen Anderson825b72b2009-08-11 20:47:22 +0000696 case MVT::i8:
697 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
698 CurDAG->getConstant(0x80808080, MVT::i32),
699 CurDAG->getConstant(0x80808003, MVT::i32),
700 CurDAG->getConstant(0x80808080, MVT::i32),
701 CurDAG->getConstant(0x8080800b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000702 break;
Scott Michel58c58182008-01-17 20:38:41 +0000703 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000704
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000705 SDNode *shufMaskLoad = emitBuildVector(shufMask.getNode());
Chris Lattnera8e76142010-02-23 05:30:43 +0000706
707 HandleSDNode PromoteScalar(CurDAG->getNode(SPUISD::PREFSLOT2VEC, dl,
708 Op0VecVT, Op0));
709
710 SDValue PromScalar;
711 if (SDNode *N = SelectCode(PromoteScalar.getValue().getNode()))
712 PromScalar = SDValue(N, 0);
713 else
714 PromScalar = PromoteScalar.getValue();
715
Scott Michel94bd57e2009-01-15 04:41:47 +0000716 SDValue zextShuffle =
Dale Johannesened2eee62009-02-06 01:31:28 +0000717 CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Chris Lattnera8e76142010-02-23 05:30:43 +0000718 PromScalar, PromScalar,
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000719 SDValue(shufMaskLoad, 0));
Scott Michel94bd57e2009-01-15 04:41:47 +0000720
Chris Lattnera8e76142010-02-23 05:30:43 +0000721 HandleSDNode Dummy2(zextShuffle);
722 if (SDNode *N = SelectCode(Dummy2.getValue().getNode()))
723 zextShuffle = SDValue(N, 0);
724 else
725 zextShuffle = Dummy2.getValue();
726 HandleSDNode Dummy(CurDAG->getNode(SPUISD::VEC2PREFSLOT, dl, OpVT,
727 zextShuffle));
728
729 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
730 SelectCode(Dummy.getValue().getNode());
731 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000732 } else if (Opc == ISD::ADD && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000733 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000734 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000735
Chris Lattnera8e76142010-02-23 05:30:43 +0000736 HandleSDNode Dummy(CurDAG->getNode(SPUISD::ADD64_MARKER, dl, OpVT,
737 N->getOperand(0), N->getOperand(1),
738 SDValue(CGLoad, 0)));
739
740 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
741 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
742 return N;
743 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000744 } else if (Opc == ISD::SUB && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000745 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000746 emitBuildVector(getBorrowGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000747
Chris Lattnera8e76142010-02-23 05:30:43 +0000748 HandleSDNode Dummy(CurDAG->getNode(SPUISD::SUB64_MARKER, dl, OpVT,
749 N->getOperand(0), N->getOperand(1),
750 SDValue(CGLoad, 0)));
751
752 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
753 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
754 return N;
755 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000756 } else if (Opc == ISD::MUL && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000757 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000758 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000759
Chris Lattnera8e76142010-02-23 05:30:43 +0000760 HandleSDNode Dummy(CurDAG->getNode(SPUISD::MUL64_MARKER, dl, OpVT,
761 N->getOperand(0), N->getOperand(1),
762 SDValue(CGLoad, 0)));
763 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
764 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
765 return N;
766 return Dummy.getValue().getNode();
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000767 } else if (Opc == ISD::TRUNCATE) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000768 SDValue Op0 = N->getOperand(0);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000769 if ((Op0.getOpcode() == ISD::SRA || Op0.getOpcode() == ISD::SRL)
Owen Anderson825b72b2009-08-11 20:47:22 +0000770 && OpVT == MVT::i32
771 && Op0.getValueType() == MVT::i64) {
Scott Michel9de57a92009-01-26 22:33:37 +0000772 // Catch (truncate:i32 ([sra|srl]:i64 arg, c), where c >= 32
773 //
774 // Take advantage of the fact that the upper 32 bits are in the
775 // i32 preferred slot and avoid shuffle gymnastics:
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000776 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
777 if (CN != 0) {
778 unsigned shift_amt = unsigned(CN->getZExtValue());
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000779
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000780 if (shift_amt >= 32) {
781 SDNode *hi32 =
Dan Gohman602b0c82009-09-25 18:54:59 +0000782 CurDAG->getMachineNode(SPU::ORr32_r64, dl, OpVT,
783 Op0.getOperand(0));
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000784
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000785 shift_amt -= 32;
786 if (shift_amt > 0) {
787 // Take care of the additional shift, if present:
Owen Anderson825b72b2009-08-11 20:47:22 +0000788 SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000789 unsigned Opc = SPU::ROTMAIr32_i32;
Scott Michel9de57a92009-01-26 22:33:37 +0000790
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000791 if (Op0.getOpcode() == ISD::SRL)
792 Opc = SPU::ROTMr32;
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000793
Dan Gohman602b0c82009-09-25 18:54:59 +0000794 hi32 = CurDAG->getMachineNode(Opc, dl, OpVT, SDValue(hi32, 0),
795 shift);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000796 }
797
798 return hi32;
799 }
800 }
801 }
Scott Michel02d711b2008-12-30 23:28:25 +0000802 } else if (Opc == ISD::SHL) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000803 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000804 return SelectSHLi64(N, OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000805 } else if (Opc == ISD::SRL) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000806 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000807 return SelectSRLi64(N, OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000808 } else if (Opc == ISD::SRA) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000809 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000810 return SelectSRAi64(N, OpVT);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000811 } else if (Opc == ISD::FNEG
Owen Anderson825b72b2009-08-11 20:47:22 +0000812 && (OpVT == MVT::f64 || OpVT == MVT::v2f64)) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000813 DebugLoc dl = N->getDebugLoc();
Scott Michel7ea02ff2009-03-17 01:15:45 +0000814 // Check if the pattern is a special form of DFNMS:
815 // (fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC))
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000816 SDValue Op0 = N->getOperand(0);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000817 if (Op0.getOpcode() == ISD::FSUB) {
818 SDValue Op00 = Op0.getOperand(0);
819 if (Op00.getOpcode() == ISD::FMUL) {
820 unsigned Opc = SPU::DFNMSf64;
Owen Anderson825b72b2009-08-11 20:47:22 +0000821 if (OpVT == MVT::v2f64)
Scott Michel7ea02ff2009-03-17 01:15:45 +0000822 Opc = SPU::DFNMSv2f64;
823
Dan Gohman602b0c82009-09-25 18:54:59 +0000824 return CurDAG->getMachineNode(Opc, dl, OpVT,
825 Op00.getOperand(0),
826 Op00.getOperand(1),
827 Op0.getOperand(1));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000828 }
829 }
830
Owen Anderson825b72b2009-08-11 20:47:22 +0000831 SDValue negConst = CurDAG->getConstant(0x8000000000000000ULL, MVT::i64);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000832 SDNode *signMask = 0;
Scott Michela82d3f72009-03-17 16:45:16 +0000833 unsigned Opc = SPU::XORfneg64;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000834
Owen Anderson825b72b2009-08-11 20:47:22 +0000835 if (OpVT == MVT::f64) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000836 signMask = SelectI64Constant(negConst.getNode(), MVT::i64, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +0000837 } else if (OpVT == MVT::v2f64) {
Scott Michela82d3f72009-03-17 16:45:16 +0000838 Opc = SPU::XORfnegvec;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000839 signMask = emitBuildVector(CurDAG->getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +0000840 MVT::v2i64,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000841 negConst, negConst).getNode());
Scott Michel7ea02ff2009-03-17 01:15:45 +0000842 }
843
Dan Gohman602b0c82009-09-25 18:54:59 +0000844 return CurDAG->getMachineNode(Opc, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000845 N->getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000846 } else if (Opc == ISD::FABS) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000847 if (OpVT == MVT::f64) {
848 SDNode *signMask = SelectI64Constant(0x7fffffffffffffffULL, MVT::i64, dl);
Dan Gohman602b0c82009-09-25 18:54:59 +0000849 return CurDAG->getMachineNode(SPU::ANDfabs64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000850 N->getOperand(0), SDValue(signMask, 0));
Owen Anderson825b72b2009-08-11 20:47:22 +0000851 } else if (OpVT == MVT::v2f64) {
852 SDValue absConst = CurDAG->getConstant(0x7fffffffffffffffULL, MVT::i64);
853 SDValue absVec = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000854 absConst, absConst);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000855 SDNode *signMask = emitBuildVector(absVec.getNode());
Dan Gohman602b0c82009-09-25 18:54:59 +0000856 return CurDAG->getMachineNode(SPU::ANDfabsvec, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000857 N->getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000858 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000859 } else if (Opc == SPUISD::LDRESULT) {
860 // Custom select instructions for LDRESULT
Owen Andersone50ed302009-08-10 22:56:29 +0000861 EVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000862 SDValue Arg = N->getOperand(0);
863 SDValue Chain = N->getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000864 SDNode *Result;
Scott Michela59d4692008-02-23 18:41:37 +0000865 const valtype_map_s *vtm = getValueTypeMapEntry(VT);
866
867 if (vtm->ldresult_ins == 0) {
Benjamin Kramer1bd73352010-04-08 10:44:28 +0000868 report_fatal_error("LDRESULT for unsupported type: " +
869 Twine(VT.getEVTString()));
Scott Michela59d4692008-02-23 18:41:37 +0000870 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000871
Scott Michela59d4692008-02-23 18:41:37 +0000872 Opc = vtm->ldresult_ins;
873 if (vtm->ldresult_imm) {
Dan Gohman475871a2008-07-27 21:46:04 +0000874 SDValue Zero = CurDAG->getTargetConstant(0, VT);
Scott Michel86c041f2007-12-20 00:44:13 +0000875
Dan Gohman602b0c82009-09-25 18:54:59 +0000876 Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Zero, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000877 } else {
Dan Gohman602b0c82009-09-25 18:54:59 +0000878 Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Arg, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000879 }
880
Scott Michel266bc8f2007-12-04 22:23:35 +0000881 return Result;
Scott Michel053c1da2008-01-29 02:16:57 +0000882 } else if (Opc == SPUISD::IndirectAddr) {
Scott Michelf0569be2008-12-27 04:51:36 +0000883 // Look at the operands: SelectCode() will catch the cases that aren't
884 // specifically handled here.
885 //
886 // SPUInstrInfo catches the following patterns:
887 // (SPUindirect (SPUhi ...), (SPUlo ...))
888 // (SPUindirect $sp, imm)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000889 EVT VT = N->getValueType(0);
Scott Michelf0569be2008-12-27 04:51:36 +0000890 SDValue Op0 = N->getOperand(0);
891 SDValue Op1 = N->getOperand(1);
892 RegisterSDNode *RN;
Scott Michel58c58182008-01-17 20:38:41 +0000893
Scott Michelf0569be2008-12-27 04:51:36 +0000894 if ((Op0.getOpcode() != SPUISD::Hi && Op1.getOpcode() != SPUISD::Lo)
895 || (Op0.getOpcode() == ISD::Register
896 && ((RN = dyn_cast<RegisterSDNode>(Op0.getNode())) != 0
897 && RN->getReg() != SPU::R1))) {
898 NewOpc = SPU::Ar32;
Chris Lattnerd4ac35b2010-05-04 17:58:46 +0000899 Ops[1] = Op1;
Scott Michel58c58182008-01-17 20:38:41 +0000900 if (Op1.getOpcode() == ISD::Constant) {
901 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Scott Michelf0569be2008-12-27 04:51:36 +0000902 Op1 = CurDAG->getTargetConstant(CN->getSExtValue(), VT);
Chris Lattnerd4ac35b2010-05-04 17:58:46 +0000903 if (isInt<10>(CN->getSExtValue())) {
904 NewOpc = SPU::AIr32;
905 Ops[1] = Op1;
906 } else {
907 Ops[1] = SDValue(CurDAG->getMachineNode(SPU::ILr32, dl,
908 N->getValueType(0),
909 Op1),
910 0);
911 }
Scott Michel58c58182008-01-17 20:38:41 +0000912 }
Scott Michelf0569be2008-12-27 04:51:36 +0000913 Ops[0] = Op0;
Scott Michelf0569be2008-12-27 04:51:36 +0000914 n_ops = 2;
Scott Michel58c58182008-01-17 20:38:41 +0000915 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000916 }
Scott Michel02d711b2008-12-30 23:28:25 +0000917
Scott Michel58c58182008-01-17 20:38:41 +0000918 if (n_ops > 0) {
919 if (N->hasOneUse())
920 return CurDAG->SelectNodeTo(N, NewOpc, OpVT, Ops, n_ops);
921 else
Dan Gohman602b0c82009-09-25 18:54:59 +0000922 return CurDAG->getMachineNode(NewOpc, dl, OpVT, Ops, n_ops);
Scott Michel58c58182008-01-17 20:38:41 +0000923 } else
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000924 return SelectCode(N);
Scott Michel266bc8f2007-12-04 22:23:35 +0000925}
926
Scott Michel02d711b2008-12-30 23:28:25 +0000927/*!
928 * Emit the instruction sequence for i64 left shifts. The basic algorithm
929 * is to fill the bottom two word slots with zeros so that zeros are shifted
930 * in as the entire quadword is shifted left.
931 *
932 * \note This code could also be used to implement v2i64 shl.
933 *
934 * @param Op The shl operand
935 * @param OpVT Op's machine value value type (doesn't need to be passed, but
936 * makes life easier.)
937 * @return The SDNode with the entire instruction sequence
938 */
939SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000940SPUDAGToDAGISel::SelectSHLi64(SDNode *N, EVT OpVT) {
941 SDValue Op0 = N->getOperand(0);
Owen Anderson23b9b192009-08-12 00:36:31 +0000942 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
943 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000944 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +0000945 EVT ShiftAmtVT = ShiftAmt.getValueType();
Scott Michel02d711b2008-12-30 23:28:25 +0000946 SDNode *VecOp0, *SelMask, *ZeroFill, *Shift = 0;
947 SDValue SelMaskVal;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000948 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +0000949
Dan Gohman602b0c82009-09-25 18:54:59 +0000950 VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000951 SelMaskVal = CurDAG->getTargetConstant(0xff00ULL, MVT::i16);
Dan Gohman602b0c82009-09-25 18:54:59 +0000952 SelMask = CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT, SelMaskVal);
953 ZeroFill = CurDAG->getMachineNode(SPU::ILv2i64, dl, VecVT,
954 CurDAG->getTargetConstant(0, OpVT));
955 VecOp0 = CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT,
956 SDValue(ZeroFill, 0),
957 SDValue(VecOp0, 0),
958 SDValue(SelMask, 0));
Scott Michel02d711b2008-12-30 23:28:25 +0000959
960 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
961 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
962 unsigned bits = unsigned(CN->getZExtValue()) & 7;
963
964 if (bytes > 0) {
965 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +0000966 CurDAG->getMachineNode(SPU::SHLQBYIv2i64, dl, VecVT,
967 SDValue(VecOp0, 0),
968 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +0000969 }
970
971 if (bits > 0) {
972 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +0000973 CurDAG->getMachineNode(SPU::SHLQBIIv2i64, dl, VecVT,
974 SDValue((Shift != 0 ? Shift : VecOp0), 0),
975 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +0000976 }
977 } else {
978 SDNode *Bytes =
Dan Gohman602b0c82009-09-25 18:54:59 +0000979 CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT,
980 ShiftAmt,
981 CurDAG->getTargetConstant(3, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +0000982 SDNode *Bits =
Dan Gohman602b0c82009-09-25 18:54:59 +0000983 CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT,
984 ShiftAmt,
985 CurDAG->getTargetConstant(7, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +0000986 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +0000987 CurDAG->getMachineNode(SPU::SHLQBYv2i64, dl, VecVT,
988 SDValue(VecOp0, 0), SDValue(Bytes, 0));
Scott Michel02d711b2008-12-30 23:28:25 +0000989 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +0000990 CurDAG->getMachineNode(SPU::SHLQBIv2i64, dl, VecVT,
991 SDValue(Shift, 0), SDValue(Bits, 0));
Scott Michel02d711b2008-12-30 23:28:25 +0000992 }
993
Dan Gohman602b0c82009-09-25 18:54:59 +0000994 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +0000995}
996
997/*!
998 * Emit the instruction sequence for i64 logical right shifts.
999 *
1000 * @param Op The shl operand
1001 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1002 * makes life easier.)
1003 * @return The SDNode with the entire instruction sequence
1004 */
1005SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001006SPUDAGToDAGISel::SelectSRLi64(SDNode *N, EVT OpVT) {
1007 SDValue Op0 = N->getOperand(0);
Owen Anderson23b9b192009-08-12 00:36:31 +00001008 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
1009 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001010 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001011 EVT ShiftAmtVT = ShiftAmt.getValueType();
Scott Michel02d711b2008-12-30 23:28:25 +00001012 SDNode *VecOp0, *Shift = 0;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001013 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001014
Dan Gohman602b0c82009-09-25 18:54:59 +00001015 VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Scott Michel02d711b2008-12-30 23:28:25 +00001016
1017 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1018 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1019 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1020
1021 if (bytes > 0) {
1022 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001023 CurDAG->getMachineNode(SPU::ROTQMBYIv2i64, dl, VecVT,
1024 SDValue(VecOp0, 0),
1025 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001026 }
1027
1028 if (bits > 0) {
1029 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001030 CurDAG->getMachineNode(SPU::ROTQMBIIv2i64, dl, VecVT,
1031 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1032 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001033 }
1034 } else {
1035 SDNode *Bytes =
Dan Gohman602b0c82009-09-25 18:54:59 +00001036 CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT,
1037 ShiftAmt,
1038 CurDAG->getTargetConstant(3, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001039 SDNode *Bits =
Dan Gohman602b0c82009-09-25 18:54:59 +00001040 CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT,
1041 ShiftAmt,
1042 CurDAG->getTargetConstant(7, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001043
1044 // Ensure that the shift amounts are negated!
Dan Gohman602b0c82009-09-25 18:54:59 +00001045 Bytes = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1046 SDValue(Bytes, 0),
1047 CurDAG->getTargetConstant(0, ShiftAmtVT));
1048
1049 Bits = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1050 SDValue(Bits, 0),
Scott Michel02d711b2008-12-30 23:28:25 +00001051 CurDAG->getTargetConstant(0, ShiftAmtVT));
1052
Scott Michel02d711b2008-12-30 23:28:25 +00001053 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001054 CurDAG->getMachineNode(SPU::ROTQMBYv2i64, dl, VecVT,
1055 SDValue(VecOp0, 0), SDValue(Bytes, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001056 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001057 CurDAG->getMachineNode(SPU::ROTQMBIv2i64, dl, VecVT,
1058 SDValue(Shift, 0), SDValue(Bits, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001059 }
1060
Dan Gohman602b0c82009-09-25 18:54:59 +00001061 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001062}
1063
1064/*!
1065 * Emit the instruction sequence for i64 arithmetic right shifts.
1066 *
1067 * @param Op The shl operand
1068 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1069 * makes life easier.)
1070 * @return The SDNode with the entire instruction sequence
1071 */
1072SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001073SPUDAGToDAGISel::SelectSRAi64(SDNode *N, EVT OpVT) {
Scott Michel02d711b2008-12-30 23:28:25 +00001074 // Promote Op0 to vector
Owen Anderson23b9b192009-08-12 00:36:31 +00001075 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
1076 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001077 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001078 EVT ShiftAmtVT = ShiftAmt.getValueType();
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001079 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001080
1081 SDNode *VecOp0 =
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001082 CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, N->getOperand(0));
Scott Michel02d711b2008-12-30 23:28:25 +00001083
1084 SDValue SignRotAmt = CurDAG->getTargetConstant(31, ShiftAmtVT);
1085 SDNode *SignRot =
Dan Gohman602b0c82009-09-25 18:54:59 +00001086 CurDAG->getMachineNode(SPU::ROTMAIv2i64_i32, dl, MVT::v2i64,
1087 SDValue(VecOp0, 0), SignRotAmt);
Scott Michel02d711b2008-12-30 23:28:25 +00001088 SDNode *UpperHalfSign =
Dan Gohman602b0c82009-09-25 18:54:59 +00001089 CurDAG->getMachineNode(SPU::ORi32_v4i32, dl, MVT::i32, SDValue(SignRot, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001090
1091 SDNode *UpperHalfSignMask =
Dan Gohman602b0c82009-09-25 18:54:59 +00001092 CurDAG->getMachineNode(SPU::FSM64r32, dl, VecVT, SDValue(UpperHalfSign, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001093 SDNode *UpperLowerMask =
Dan Gohman602b0c82009-09-25 18:54:59 +00001094 CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT,
1095 CurDAG->getTargetConstant(0xff00ULL, MVT::i16));
Scott Michel02d711b2008-12-30 23:28:25 +00001096 SDNode *UpperLowerSelect =
Dan Gohman602b0c82009-09-25 18:54:59 +00001097 CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT,
1098 SDValue(UpperHalfSignMask, 0),
1099 SDValue(VecOp0, 0),
1100 SDValue(UpperLowerMask, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001101
1102 SDNode *Shift = 0;
1103
1104 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1105 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1106 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1107
1108 if (bytes > 0) {
1109 bytes = 31 - bytes;
1110 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001111 CurDAG->getMachineNode(SPU::ROTQBYIv2i64, dl, VecVT,
1112 SDValue(UpperLowerSelect, 0),
1113 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001114 }
1115
1116 if (bits > 0) {
1117 bits = 8 - bits;
1118 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001119 CurDAG->getMachineNode(SPU::ROTQBIIv2i64, dl, VecVT,
1120 SDValue((Shift != 0 ? Shift : UpperLowerSelect), 0),
1121 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001122 }
1123 } else {
1124 SDNode *NegShift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001125 CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1126 ShiftAmt, CurDAG->getTargetConstant(0, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001127
1128 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001129 CurDAG->getMachineNode(SPU::ROTQBYBIv2i64_r32, dl, VecVT,
1130 SDValue(UpperLowerSelect, 0), SDValue(NegShift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001131 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001132 CurDAG->getMachineNode(SPU::ROTQBIv2i64, dl, VecVT,
1133 SDValue(Shift, 0), SDValue(NegShift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001134 }
1135
Dan Gohman602b0c82009-09-25 18:54:59 +00001136 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001137}
1138
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001139/*!
1140 Do the necessary magic necessary to load a i64 constant
1141 */
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001142SDNode *SPUDAGToDAGISel::SelectI64Constant(SDNode *N, EVT OpVT,
Scott Michel7ea02ff2009-03-17 01:15:45 +00001143 DebugLoc dl) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001144 ConstantSDNode *CN = cast<ConstantSDNode>(N);
Scott Michel7ea02ff2009-03-17 01:15:45 +00001145 return SelectI64Constant(CN->getZExtValue(), OpVT, dl);
1146}
1147
Owen Andersone50ed302009-08-10 22:56:29 +00001148SDNode *SPUDAGToDAGISel::SelectI64Constant(uint64_t Value64, EVT OpVT,
Scott Michel7ea02ff2009-03-17 01:15:45 +00001149 DebugLoc dl) {
Owen Anderson23b9b192009-08-12 00:36:31 +00001150 EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(), OpVT, 2);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001151 SDValue i64vec =
Scott Michel7ea02ff2009-03-17 01:15:45 +00001152 SPU::LowerV2I64Splat(OpVecVT, *CurDAG, Value64, dl);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001153
1154 // Here's where it gets interesting, because we have to parse out the
1155 // subtree handed back in i64vec:
1156
1157 if (i64vec.getOpcode() == ISD::BIT_CONVERT) {
1158 // The degenerate case where the upper and lower bits in the splat are
1159 // identical:
1160 SDValue Op0 = i64vec.getOperand(0);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001161
Scott Michel9de57a92009-01-26 22:33:37 +00001162 ReplaceUses(i64vec, Op0);
Dan Gohman602b0c82009-09-25 18:54:59 +00001163 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001164 SDValue(emitBuildVector(Op0.getNode()), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001165 } else if (i64vec.getOpcode() == SPUISD::SHUFB) {
1166 SDValue lhs = i64vec.getOperand(0);
1167 SDValue rhs = i64vec.getOperand(1);
1168 SDValue shufmask = i64vec.getOperand(2);
1169
1170 if (lhs.getOpcode() == ISD::BIT_CONVERT) {
1171 ReplaceUses(lhs, lhs.getOperand(0));
1172 lhs = lhs.getOperand(0);
1173 }
1174
1175 SDNode *lhsNode = (lhs.getNode()->isMachineOpcode()
1176 ? lhs.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001177 : emitBuildVector(lhs.getNode()));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001178
1179 if (rhs.getOpcode() == ISD::BIT_CONVERT) {
1180 ReplaceUses(rhs, rhs.getOperand(0));
1181 rhs = rhs.getOperand(0);
1182 }
1183
1184 SDNode *rhsNode = (rhs.getNode()->isMachineOpcode()
1185 ? rhs.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001186 : emitBuildVector(rhs.getNode()));
Scott Michel9de57a92009-01-26 22:33:37 +00001187
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001188 if (shufmask.getOpcode() == ISD::BIT_CONVERT) {
1189 ReplaceUses(shufmask, shufmask.getOperand(0));
1190 shufmask = shufmask.getOperand(0);
1191 }
1192
1193 SDNode *shufMaskNode = (shufmask.getNode()->isMachineOpcode()
1194 ? shufmask.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001195 : emitBuildVector(shufmask.getNode()));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001196
Chris Lattnera8e76142010-02-23 05:30:43 +00001197 SDValue shufNode =
1198 CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001199 SDValue(lhsNode, 0), SDValue(rhsNode, 0),
Chris Lattnera8e76142010-02-23 05:30:43 +00001200 SDValue(shufMaskNode, 0));
1201 HandleSDNode Dummy(shufNode);
1202 SDNode *SN = SelectCode(Dummy.getValue().getNode());
1203 if (SN == 0) SN = Dummy.getValue().getNode();
1204
1205 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(SN, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +00001206 } else if (i64vec.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman602b0c82009-09-25 18:54:59 +00001207 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001208 SDValue(emitBuildVector(i64vec.getNode()), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001209 } else {
Chris Lattner75361b62010-04-07 22:58:41 +00001210 report_fatal_error("SPUDAGToDAGISel::SelectI64Constant: Unhandled i64vec"
Torok Edwindac237e2009-07-08 20:53:28 +00001211 "condition");
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001212 }
1213}
1214
Scott Michel02d711b2008-12-30 23:28:25 +00001215/// createSPUISelDag - This pass converts a legalized DAG into a
Scott Michel266bc8f2007-12-04 22:23:35 +00001216/// SPU-specific DAG, ready for instruction scheduling.
1217///
1218FunctionPass *llvm::createSPUISelDag(SPUTargetMachine &TM) {
1219 return new SPUDAGToDAGISel(TM);
1220}