blob: c3c2b3947e064fa61ce79019e1b14f0c907f13c1 [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
44 isI64IntS10Immediate(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
49 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
50 bool
51 isI32IntS10Immediate(ConstantSDNode *CN)
52 {
Benjamin Kramer7e09deb2010-03-29 19:07:58 +000053 return isInt<10>(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000054 }
55
Scott Michel504c3692007-12-17 22:32:34 +000056 //! ConstantSDNode predicate for i32 unsigned 10-bit immediate values
57 bool
58 isI32IntU10Immediate(ConstantSDNode *CN)
59 {
Benjamin Kramer34247a02010-03-29 21:13:41 +000060 return isUInt<10>(CN->getSExtValue());
Scott Michel504c3692007-12-17 22:32:34 +000061 }
62
Scott Michel266bc8f2007-12-04 22:23:35 +000063 //! ConstantSDNode predicate for i16 sign-extended, 10-bit immediate values
64 bool
65 isI16IntS10Immediate(ConstantSDNode *CN)
66 {
Benjamin Kramer7e09deb2010-03-29 19:07:58 +000067 return isInt<10>(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000068 }
69
70 //! SDNode predicate for i16 sign-extended, 10-bit immediate values
71 bool
72 isI16IntS10Immediate(SDNode *N)
73 {
Scott Michel9de57a92009-01-26 22:33:37 +000074 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
75 return (CN != 0 && isI16IntS10Immediate(CN));
Scott Michel266bc8f2007-12-04 22:23:35 +000076 }
77
Scott Michelec2a08f2007-12-15 00:38:50 +000078 //! ConstantSDNode predicate for i16 unsigned 10-bit immediate values
79 bool
80 isI16IntU10Immediate(ConstantSDNode *CN)
81 {
Benjamin Kramer34247a02010-03-29 21:13:41 +000082 return isUInt<10>((short) CN->getZExtValue());
Scott Michelec2a08f2007-12-15 00:38:50 +000083 }
84
85 //! SDNode predicate for i16 sign-extended, 10-bit immediate values
86 bool
87 isI16IntU10Immediate(SDNode *N)
88 {
89 return (N->getOpcode() == ISD::Constant
90 && isI16IntU10Immediate(cast<ConstantSDNode>(N)));
91 }
92
Scott Michel266bc8f2007-12-04 22:23:35 +000093 //! ConstantSDNode predicate for signed 16-bit values
94 /*!
95 \arg CN The constant SelectionDAG node holding the value
96 \arg Imm The returned 16-bit value, if returning true
97
98 This predicate tests the value in \a CN to see whether it can be
99 represented as a 16-bit, sign-extended quantity. Returns true if
100 this is the case.
101 */
102 bool
103 isIntS16Immediate(ConstantSDNode *CN, short &Imm)
104 {
Owen Andersone50ed302009-08-10 22:56:29 +0000105 EVT vt = CN->getValueType(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000106 Imm = (short) CN->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000107 if (vt.getSimpleVT() >= MVT::i1 && vt.getSimpleVT() <= MVT::i16) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000108 return true;
Owen Anderson825b72b2009-08-11 20:47:22 +0000109 } else if (vt == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000110 int32_t i_val = (int32_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +0000111 short s_val = (short) i_val;
112 return i_val == s_val;
113 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000114 int64_t i_val = (int64_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +0000115 short s_val = (short) i_val;
116 return i_val == s_val;
117 }
118
119 return false;
120 }
121
122 //! SDNode predicate for signed 16-bit values.
123 bool
124 isIntS16Immediate(SDNode *N, short &Imm)
125 {
126 return (N->getOpcode() == ISD::Constant
127 && isIntS16Immediate(cast<ConstantSDNode>(N), Imm));
128 }
129
130 //! ConstantFPSDNode predicate for representing floats as 16-bit sign ext.
131 static bool
132 isFPS16Immediate(ConstantFPSDNode *FPN, short &Imm)
133 {
Owen Andersone50ed302009-08-10 22:56:29 +0000134 EVT vt = FPN->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000135 if (vt == MVT::f32) {
Chris Lattnerd3ada752007-12-22 22:45:38 +0000136 int val = FloatToBits(FPN->getValueAPF().convertToFloat());
Scott Michel266bc8f2007-12-04 22:23:35 +0000137 int sval = (int) ((val << 16) >> 16);
138 Imm = (short) val;
139 return val == sval;
140 }
141
142 return false;
143 }
144
Scott Michel053c1da2008-01-29 02:16:57 +0000145 bool
Scott Michel02d711b2008-12-30 23:28:25 +0000146 isHighLow(const SDValue &Op)
Scott Michel053c1da2008-01-29 02:16:57 +0000147 {
148 return (Op.getOpcode() == SPUISD::IndirectAddr
149 && ((Op.getOperand(0).getOpcode() == SPUISD::Hi
150 && Op.getOperand(1).getOpcode() == SPUISD::Lo)
151 || (Op.getOperand(0).getOpcode() == SPUISD::Lo
152 && Op.getOperand(1).getOpcode() == SPUISD::Hi)));
153 }
154
Scott Michel266bc8f2007-12-04 22:23:35 +0000155 //===------------------------------------------------------------------===//
Owen Andersone50ed302009-08-10 22:56:29 +0000156 //! EVT to "useful stuff" mapping structure:
Scott Michel266bc8f2007-12-04 22:23:35 +0000157
158 struct valtype_map_s {
Owen Andersone50ed302009-08-10 22:56:29 +0000159 EVT VT;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000160 unsigned ldresult_ins; /// LDRESULT instruction (0 = undefined)
Scott Michela59d4692008-02-23 18:41:37 +0000161 bool ldresult_imm; /// LDRESULT instruction requires immediate?
Scott Michelf0569be2008-12-27 04:51:36 +0000162 unsigned lrinst; /// LR instruction
Scott Michel266bc8f2007-12-04 22:23:35 +0000163 };
164
165 const valtype_map_s valtype_map[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +0000166 { MVT::i8, SPU::ORBIr8, true, SPU::LRr8 },
167 { MVT::i16, SPU::ORHIr16, true, SPU::LRr16 },
168 { MVT::i32, SPU::ORIr32, true, SPU::LRr32 },
169 { MVT::i64, SPU::ORr64, false, SPU::LRr64 },
170 { MVT::f32, SPU::ORf32, false, SPU::LRf32 },
171 { MVT::f64, SPU::ORf64, false, SPU::LRf64 },
Scott Michel58c58182008-01-17 20:38:41 +0000172 // vector types... (sigh!)
Owen Anderson825b72b2009-08-11 20:47:22 +0000173 { MVT::v16i8, 0, false, SPU::LRv16i8 },
174 { MVT::v8i16, 0, false, SPU::LRv8i16 },
175 { MVT::v4i32, 0, false, SPU::LRv4i32 },
176 { MVT::v2i64, 0, false, SPU::LRv2i64 },
177 { MVT::v4f32, 0, false, SPU::LRv4f32 },
178 { MVT::v2f64, 0, false, SPU::LRv2f64 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000179 };
180
181 const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]);
182
Owen Andersone50ed302009-08-10 22:56:29 +0000183 const valtype_map_s *getValueTypeMapEntry(EVT VT)
Scott Michel266bc8f2007-12-04 22:23:35 +0000184 {
185 const valtype_map_s *retval = 0;
186 for (size_t i = 0; i < n_valtype_map; ++i) {
187 if (valtype_map[i].VT == VT) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000188 retval = valtype_map + i;
189 break;
Scott Michel266bc8f2007-12-04 22:23:35 +0000190 }
191 }
192
193
194#ifndef NDEBUG
195 if (retval == 0) {
Benjamin Kramer1bd73352010-04-08 10:44:28 +0000196 report_fatal_error("SPUISelDAGToDAG.cpp: getValueTypeMapEntry returns"
197 "NULL for " + Twine(VT.getEVTString()));
Scott Michel266bc8f2007-12-04 22:23:35 +0000198 }
199#endif
200
201 return retval;
202 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000203
Scott Michel7ea02ff2009-03-17 01:15:45 +0000204 //! Generate the carry-generate shuffle mask.
205 SDValue getCarryGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
206 SmallVector<SDValue, 16 > ShufBytes;
Dan Gohman844731a2008-05-13 00:00:25 +0000207
Scott Michel7ea02ff2009-03-17 01:15:45 +0000208 // Create the shuffle mask for "rotating" the borrow up one register slot
209 // once the borrow is generated.
Owen Anderson825b72b2009-08-11 20:47:22 +0000210 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
211 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
212 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
213 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
Scott Michel266bc8f2007-12-04 22:23:35 +0000214
Owen Anderson825b72b2009-08-11 20:47:22 +0000215 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000216 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000217 }
Scott Michel02d711b2008-12-30 23:28:25 +0000218
Scott Michel7ea02ff2009-03-17 01:15:45 +0000219 //! Generate the borrow-generate shuffle mask
220 SDValue getBorrowGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
221 SmallVector<SDValue, 16 > ShufBytes;
222
223 // Create the shuffle mask for "rotating" the borrow up one register slot
224 // once the borrow is generated.
Owen Anderson825b72b2009-08-11 20:47:22 +0000225 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
226 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
227 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
228 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000229
Owen Anderson825b72b2009-08-11 20:47:22 +0000230 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000231 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000232 }
233
Scott Michel7ea02ff2009-03-17 01:15:45 +0000234 //===------------------------------------------------------------------===//
235 /// SPUDAGToDAGISel - Cell SPU-specific code to select SPU machine
236 /// instructions for SelectionDAG operations.
237 ///
238 class SPUDAGToDAGISel :
239 public SelectionDAGISel
240 {
Dan Gohmand858e902010-04-17 15:26:15 +0000241 const SPUTargetMachine &TM;
242 const SPUTargetLowering &SPUtli;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000243 unsigned GlobalBaseReg;
Scott Michel02d711b2008-12-30 23:28:25 +0000244
Scott Michel7ea02ff2009-03-17 01:15:45 +0000245 public:
246 explicit SPUDAGToDAGISel(SPUTargetMachine &tm) :
247 SelectionDAGISel(tm),
248 TM(tm),
249 SPUtli(*tm.getTargetLowering())
250 { }
251
Dan Gohmanad2afc22009-07-31 18:16:33 +0000252 virtual bool runOnMachineFunction(MachineFunction &MF) {
Scott Michel7ea02ff2009-03-17 01:15:45 +0000253 // Make sure we re-emit a set of the global base reg if necessary
254 GlobalBaseReg = 0;
Dan Gohmanad2afc22009-07-31 18:16:33 +0000255 SelectionDAGISel::runOnMachineFunction(MF);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000256 return true;
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000257 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000258
Scott Michel7ea02ff2009-03-17 01:15:45 +0000259 /// getI32Imm - Return a target constant with the specified value, of type
260 /// i32.
261 inline SDValue getI32Imm(uint32_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000262 return CurDAG->getTargetConstant(Imm, MVT::i32);
Scott Michel94bd57e2009-01-15 04:41:47 +0000263 }
264
Scott Michel7ea02ff2009-03-17 01:15:45 +0000265 /// getI64Imm - Return a target constant with the specified value, of type
266 /// i64.
267 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 return CurDAG->getTargetConstant(Imm, MVT::i64);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000269 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000270
Scott Michel7ea02ff2009-03-17 01:15:45 +0000271 /// getSmallIPtrImm - Return a target constant of pointer type.
272 inline SDValue getSmallIPtrImm(unsigned Imm) {
273 return CurDAG->getTargetConstant(Imm, SPUtli.getPointerTy());
Scott Michel266bc8f2007-12-04 22:23:35 +0000274 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000275
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000276 SDNode *emitBuildVector(SDNode *bvNode) {
277 EVT vecVT = bvNode->getValueType(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000278 EVT eltVT = vecVT.getVectorElementType();
Scott Michel7ea02ff2009-03-17 01:15:45 +0000279 DebugLoc dl = bvNode->getDebugLoc();
280
281 // Check to see if this vector can be represented as a CellSPU immediate
282 // constant by invoking all of the instruction selection predicates:
Owen Anderson825b72b2009-08-11 20:47:22 +0000283 if (((vecVT == MVT::v8i16) &&
284 (SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i16).getNode() != 0)) ||
285 ((vecVT == MVT::v4i32) &&
286 ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
287 (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
288 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
Scott Michel7ea02ff2009-03-17 01:15:45 +0000289 (SPU::get_v4i32_imm(bvNode, *CurDAG).getNode() != 0))) ||
Owen Anderson825b72b2009-08-11 20:47:22 +0000290 ((vecVT == MVT::v2i64) &&
291 ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
292 (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
Chris Lattnera8e76142010-02-23 05:30:43 +0000293 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i64).getNode() != 0)))) {
294 HandleSDNode Dummy(SDValue(bvNode, 0));
295 if (SDNode *N = Select(bvNode))
296 return N;
297 return Dummy.getValue().getNode();
298 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000299
300 // No, need to emit a constant pool spill:
301 std::vector<Constant*> CV;
302
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000303 for (size_t i = 0; i < bvNode->getNumOperands(); ++i) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000304 ConstantSDNode *V = cast<ConstantSDNode > (bvNode->getOperand(i));
Chris Lattnera8e76142010-02-23 05:30:43 +0000305 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000306 }
307
Dan Gohman46510a72010-04-15 01:51:59 +0000308 const Constant *CP = ConstantVector::get(CV);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000309 SDValue CPIdx = CurDAG->getConstantPool(CP, SPUtli.getPointerTy());
310 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
311 SDValue CGPoolOffset =
Dan Gohmand858e902010-04-17 15:26:15 +0000312 SPU::LowerConstantPool(CPIdx, *CurDAG, TM);
Chris Lattnera8e76142010-02-23 05:30:43 +0000313
314 HandleSDNode Dummy(CurDAG->getLoad(vecVT, dl,
315 CurDAG->getEntryNode(), CGPoolOffset,
316 PseudoSourceValue::getConstantPool(),0,
317 false, false, Alignment));
318 CurDAG->ReplaceAllUsesWith(SDValue(bvNode, 0), Dummy.getValue());
319 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
320 return N;
321 return Dummy.getValue().getNode();
Scott Michel266bc8f2007-12-04 22:23:35 +0000322 }
Scott Michel02d711b2008-12-30 23:28:25 +0000323
Scott Michel7ea02ff2009-03-17 01:15:45 +0000324 /// Select - Convert the specified operand from a target-independent to a
325 /// target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000326 SDNode *Select(SDNode *N);
Scott Michel266bc8f2007-12-04 22:23:35 +0000327
Scott Michel7ea02ff2009-03-17 01:15:45 +0000328 //! Emit the instruction sequence for i64 shl
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000329 SDNode *SelectSHLi64(SDNode *N, EVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000330
Scott Michel7ea02ff2009-03-17 01:15:45 +0000331 //! Emit the instruction sequence for i64 srl
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000332 SDNode *SelectSRLi64(SDNode *N, EVT OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000333
Scott Michel7ea02ff2009-03-17 01:15:45 +0000334 //! Emit the instruction sequence for i64 sra
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000335 SDNode *SelectSRAi64(SDNode *N, EVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000336
Scott Michel7ea02ff2009-03-17 01:15:45 +0000337 //! Emit the necessary sequence for loading i64 constants:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000338 SDNode *SelectI64Constant(SDNode *N, EVT OpVT, DebugLoc dl);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000339
340 //! Alternate instruction emit sequence for loading i64 constants
Owen Andersone50ed302009-08-10 22:56:29 +0000341 SDNode *SelectI64Constant(uint64_t i64const, EVT OpVT, DebugLoc dl);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000342
343 //! Returns true if the address N is an A-form (local store) address
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000344 bool SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000345 SDValue &Index);
346
347 //! D-form address predicate
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000348 bool SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000349 SDValue &Index);
350
351 /// Alternate D-form address using i7 offset predicate
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000352 bool SelectDForm2Addr(SDNode *Op, SDValue N, SDValue &Disp,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000353 SDValue &Base);
354
355 /// D-form address selection workhorse
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000356 bool DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Disp,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000357 SDValue &Base, int minOffset, int maxOffset);
358
359 //! Address predicate if N can be expressed as an indexed [r+r] operation.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000360 bool SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000361 SDValue &Index);
362
363 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
364 /// inline asm expressions.
365 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
366 char ConstraintCode,
367 std::vector<SDValue> &OutOps) {
368 SDValue Op0, Op1;
369 switch (ConstraintCode) {
370 default: return true;
371 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000372 if (!SelectDFormAddr(Op.getNode(), Op, Op0, Op1)
373 && !SelectAFormAddr(Op.getNode(), Op, Op0, Op1))
374 SelectXFormAddr(Op.getNode(), Op, Op0, Op1);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000375 break;
376 case 'o': // offsetable
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000377 if (!SelectDFormAddr(Op.getNode(), Op, Op0, Op1)
378 && !SelectAFormAddr(Op.getNode(), Op, Op0, Op1)) {
Scott Michel7ea02ff2009-03-17 01:15:45 +0000379 Op0 = Op;
380 Op1 = getSmallIPtrImm(0);
381 }
382 break;
383 case 'v': // not offsetable
384#if 1
Torok Edwinc23197a2009-07-14 16:55:14 +0000385 llvm_unreachable("InlineAsmMemoryOperand 'v' constraint not handled.");
Scott Michel7ea02ff2009-03-17 01:15:45 +0000386#else
387 SelectAddrIdxOnly(Op, Op, Op0, Op1);
388#endif
389 break;
390 }
391
392 OutOps.push_back(Op0);
393 OutOps.push_back(Op1);
394 return false;
395 }
396
Scott Michel7ea02ff2009-03-17 01:15:45 +0000397 virtual const char *getPassName() const {
398 return "Cell SPU DAG->DAG Pattern Instruction Selection";
399 }
400
401 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
402 /// this target when scheduling the DAG.
403 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
404 const TargetInstrInfo *II = TM.getInstrInfo();
405 assert(II && "No InstrInfo?");
406 return new SPUHazardRecognizer(*II);
407 }
408
409 // Include the pieces autogenerated from the target description.
Scott Michel266bc8f2007-12-04 22:23:35 +0000410#include "SPUGenDAGISel.inc"
Scott Michel7ea02ff2009-03-17 01:15:45 +0000411 };
Dan Gohman844731a2008-05-13 00:00:25 +0000412}
413
Scott Michel266bc8f2007-12-04 22:23:35 +0000414/*!
Scott Michel9de57a92009-01-26 22:33:37 +0000415 \arg Op The ISD instruction operand
Scott Michel266bc8f2007-12-04 22:23:35 +0000416 \arg N The address to be tested
417 \arg Base The base address
418 \arg Index The base address index
419 */
420bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000421SPUDAGToDAGISel::SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000422 SDValue &Index) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000423 // These match the addr256k operand type:
Owen Anderson825b72b2009-08-11 20:47:22 +0000424 EVT OffsVT = MVT::i16;
Dan Gohman475871a2008-07-27 21:46:04 +0000425 SDValue Zero = CurDAG->getTargetConstant(0, OffsVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000426
427 switch (N.getOpcode()) {
428 case ISD::Constant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000429 case ISD::ConstantPool:
430 case ISD::GlobalAddress:
Chris Lattner75361b62010-04-07 22:58:41 +0000431 report_fatal_error("SPU SelectAFormAddr: Constant/Pool/Global not lowered.");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000432 /*NOTREACHED*/
433
Scott Michel053c1da2008-01-29 02:16:57 +0000434 case ISD::TargetConstant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000435 case ISD::TargetGlobalAddress:
Scott Michel053c1da2008-01-29 02:16:57 +0000436 case ISD::TargetJumpTable:
Chris Lattner75361b62010-04-07 22:58:41 +0000437 report_fatal_error("SPUSelectAFormAddr: Target Constant/Pool/Global "
Torok Edwindac237e2009-07-08 20:53:28 +0000438 "not wrapped as A-form address.");
Scott Michel053c1da2008-01-29 02:16:57 +0000439 /*NOTREACHED*/
Scott Michel266bc8f2007-12-04 22:23:35 +0000440
Scott Michel02d711b2008-12-30 23:28:25 +0000441 case SPUISD::AFormAddr:
Scott Michel053c1da2008-01-29 02:16:57 +0000442 // Just load from memory if there's only a single use of the location,
443 // otherwise, this will get handled below with D-form offset addresses
444 if (N.hasOneUse()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000445 SDValue Op0 = N.getOperand(0);
Scott Michel053c1da2008-01-29 02:16:57 +0000446 switch (Op0.getOpcode()) {
447 case ISD::TargetConstantPool:
448 case ISD::TargetJumpTable:
449 Base = Op0;
450 Index = Zero;
451 return true;
452
453 case ISD::TargetGlobalAddress: {
454 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op0);
Dan Gohman46510a72010-04-15 01:51:59 +0000455 const GlobalValue *GV = GSDN->getGlobal();
Scott Michel053c1da2008-01-29 02:16:57 +0000456 if (GV->getAlignment() == 16) {
457 Base = Op0;
458 Index = Zero;
459 return true;
460 }
461 break;
462 }
463 }
464 }
465 break;
466 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000467 return false;
468}
469
Scott Michel02d711b2008-12-30 23:28:25 +0000470bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000471SPUDAGToDAGISel::SelectDForm2Addr(SDNode *Op, SDValue N, SDValue &Disp,
Dan Gohman475871a2008-07-27 21:46:04 +0000472 SDValue &Base) {
Scott Michel203b2d62008-04-30 00:30:08 +0000473 const int minDForm2Offset = -(1 << 7);
474 const int maxDForm2Offset = (1 << 7) - 1;
475 return DFormAddressPredicate(Op, N, Disp, Base, minDForm2Offset,
476 maxDForm2Offset);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000477}
478
Scott Michel266bc8f2007-12-04 22:23:35 +0000479/*!
480 \arg Op The ISD instruction (ignored)
481 \arg N The address to be tested
482 \arg Base Base address register/pointer
483 \arg Index Base address index
484
485 Examine the input address by a base register plus a signed 10-bit
486 displacement, [r+I10] (D-form address).
487
488 \return true if \a N is a D-form address with \a Base and \a Index set
Dan Gohman475871a2008-07-27 21:46:04 +0000489 to non-empty SDValue instances.
Scott Michel266bc8f2007-12-04 22:23:35 +0000490*/
491bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000492SPUDAGToDAGISel::SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000493 SDValue &Index) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000494 return DFormAddressPredicate(Op, N, Base, Index,
Scott Michel9c0c6b22008-11-21 02:56:16 +0000495 SPUFrameInfo::minFrameOffset(),
496 SPUFrameInfo::maxFrameOffset());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000497}
498
499bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000500SPUDAGToDAGISel::DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000501 SDValue &Index, int minOffset,
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000502 int maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000503 unsigned Opc = N.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +0000504 EVT PtrTy = SPUtli.getPointerTy();
Scott Michel266bc8f2007-12-04 22:23:35 +0000505
Scott Michel053c1da2008-01-29 02:16:57 +0000506 if (Opc == ISD::FrameIndex) {
507 // Stack frame index must be less than 512 (divided by 16):
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000508 FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(N);
Scott Michel203b2d62008-04-30 00:30:08 +0000509 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000510 DEBUG(errs() << "SelectDFormAddr: ISD::FrameIndex = "
Scott Michel203b2d62008-04-30 00:30:08 +0000511 << FI << "\n");
512 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000513 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000514 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel266bc8f2007-12-04 22:23:35 +0000515 return true;
516 }
517 } else if (Opc == ISD::ADD) {
518 // Generated by getelementptr
Dan Gohman475871a2008-07-27 21:46:04 +0000519 const SDValue Op0 = N.getOperand(0);
520 const SDValue Op1 = N.getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000521
Scott Michel053c1da2008-01-29 02:16:57 +0000522 if ((Op0.getOpcode() == SPUISD::Hi && Op1.getOpcode() == SPUISD::Lo)
523 || (Op1.getOpcode() == SPUISD::Hi && Op0.getOpcode() == SPUISD::Lo)) {
524 Base = CurDAG->getTargetConstant(0, PtrTy);
525 Index = N;
526 return true;
527 } else if (Op1.getOpcode() == ISD::Constant
528 || Op1.getOpcode() == ISD::TargetConstant) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000529 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000530 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel9de5d0d2008-01-11 02:53:15 +0000531
Scott Michel053c1da2008-01-29 02:16:57 +0000532 if (Op0.getOpcode() == ISD::FrameIndex) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000533 FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(Op0);
Scott Michel203b2d62008-04-30 00:30:08 +0000534 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000535 DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000536 << " frame index = " << FI << "\n");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000537
Scott Michel203b2d62008-04-30 00:30:08 +0000538 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000539 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000540 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000541 return true;
542 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000543 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000544 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000545 Index = Op0;
546 return true;
547 }
548 } else if (Op0.getOpcode() == ISD::Constant
549 || Op0.getOpcode() == ISD::TargetConstant) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000550 ConstantSDNode *CN = cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000551 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel053c1da2008-01-29 02:16:57 +0000552
553 if (Op1.getOpcode() == ISD::FrameIndex) {
Dan Gohmanb6f778a2010-04-17 15:31:16 +0000554 FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(Op1);
Scott Michel203b2d62008-04-30 00:30:08 +0000555 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000556 DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000557 << " frame index = " << FI << "\n");
Scott Michel053c1da2008-01-29 02:16:57 +0000558
Scott Michel203b2d62008-04-30 00:30:08 +0000559 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000560 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000561 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000562 return true;
563 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000564 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000565 Base = CurDAG->getTargetConstant(offset, PtrTy);
566 Index = Op1;
567 return true;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000568 }
Scott Michel053c1da2008-01-29 02:16:57 +0000569 }
570 } else if (Opc == SPUISD::IndirectAddr) {
571 // Indirect with constant offset -> D-Form address
Dan Gohman475871a2008-07-27 21:46:04 +0000572 const SDValue Op0 = N.getOperand(0);
573 const SDValue Op1 = N.getOperand(1);
Scott Michel497e8882008-01-11 21:01:19 +0000574
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000575 if (Op0.getOpcode() == SPUISD::Hi
576 && Op1.getOpcode() == SPUISD::Lo) {
Scott Michel053c1da2008-01-29 02:16:57 +0000577 // (SPUindirect (SPUhi <arg>, 0), (SPUlo <arg>, 0))
Scott Michel9de5d0d2008-01-11 02:53:15 +0000578 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000579 Index = N;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000580 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000581 } else if (isa<ConstantSDNode>(Op0) || isa<ConstantSDNode>(Op1)) {
582 int32_t offset = 0;
Dan Gohman475871a2008-07-27 21:46:04 +0000583 SDValue idxOp;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000584
585 if (isa<ConstantSDNode>(Op1)) {
586 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000587 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000588 idxOp = Op0;
589 } else if (isa<ConstantSDNode>(Op0)) {
590 ConstantSDNode *CN = cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000591 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000592 idxOp = Op1;
Scott Michel02d711b2008-12-30 23:28:25 +0000593 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000594
595 if (offset >= minOffset && offset <= maxOffset) {
596 Base = CurDAG->getTargetConstant(offset, PtrTy);
597 Index = idxOp;
598 return true;
599 }
Scott Michel9de5d0d2008-01-11 02:53:15 +0000600 }
Scott Michel053c1da2008-01-29 02:16:57 +0000601 } else if (Opc == SPUISD::AFormAddr) {
602 Base = CurDAG->getTargetConstant(0, N.getValueType());
603 Index = N;
Scott Michel58c58182008-01-17 20:38:41 +0000604 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000605 } else if (Opc == SPUISD::LDRESULT) {
606 Base = CurDAG->getTargetConstant(0, N.getValueType());
607 Index = N;
608 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000609 } else if (Opc == ISD::Register || Opc == ISD::CopyFromReg) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000610 unsigned OpOpc = Op->getOpcode();
Scott Michel9c0c6b22008-11-21 02:56:16 +0000611
612 if (OpOpc == ISD::STORE || OpOpc == ISD::LOAD) {
613 // Direct load/store without getelementptr
614 SDValue Addr, Offs;
615
616 // Get the register from CopyFromReg
617 if (Opc == ISD::CopyFromReg)
618 Addr = N.getOperand(1);
619 else
620 Addr = N; // Register
621
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000622 Offs = ((OpOpc == ISD::STORE) ? Op->getOperand(3) : Op->getOperand(2));
Scott Michel9c0c6b22008-11-21 02:56:16 +0000623
624 if (Offs.getOpcode() == ISD::Constant || Offs.getOpcode() == ISD::UNDEF) {
625 if (Offs.getOpcode() == ISD::UNDEF)
626 Offs = CurDAG->getTargetConstant(0, Offs.getValueType());
627
628 Base = Offs;
629 Index = Addr;
630 return true;
631 }
Scott Michelaedc6372008-12-10 00:15:19 +0000632 } else {
633 /* If otherwise unadorned, default to D-form address with 0 offset: */
634 if (Opc == ISD::CopyFromReg) {
Scott Michel19c10e62009-01-26 03:37:41 +0000635 Index = N.getOperand(1);
Scott Michelaedc6372008-12-10 00:15:19 +0000636 } else {
Scott Michel19c10e62009-01-26 03:37:41 +0000637 Index = N;
Scott Michelaedc6372008-12-10 00:15:19 +0000638 }
639
640 Base = CurDAG->getTargetConstant(0, Index.getValueType());
641 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000642 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000643 }
Scott Michel9c0c6b22008-11-21 02:56:16 +0000644
Scott Michel266bc8f2007-12-04 22:23:35 +0000645 return false;
646}
647
648/*!
649 \arg Op The ISD instruction operand
650 \arg N The address operand
651 \arg Base The base pointer operand
652 \arg Index The offset/index operand
653
Scott Michel9c0c6b22008-11-21 02:56:16 +0000654 If the address \a N can be expressed as an A-form or D-form address, returns
655 false. Otherwise, creates two operands, Base and Index that will become the
656 (r)(r) X-form address.
Scott Michel266bc8f2007-12-04 22:23:35 +0000657*/
658bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000659SPUDAGToDAGISel::SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000660 SDValue &Index) {
Scott Michel9c0c6b22008-11-21 02:56:16 +0000661 if (!SelectAFormAddr(Op, N, Base, Index)
662 && !SelectDFormAddr(Op, N, Base, Index)) {
Scott Michel18fae692008-11-25 17:29:43 +0000663 // If the address is neither A-form or D-form, punt and use an X-form
664 // address:
Scott Michel1a6cdb62008-12-01 17:56:02 +0000665 Base = N.getOperand(1);
666 Index = N.getOperand(0);
Scott Michel50843c02008-11-25 04:03:47 +0000667 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000668 }
669
670 return false;
Scott Michel58c58182008-01-17 20:38:41 +0000671}
672
Scott Michel266bc8f2007-12-04 22:23:35 +0000673//! Convert the operand from a target-independent to a target-specific node
674/*!
675 */
676SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000677SPUDAGToDAGISel::Select(SDNode *N) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000678 unsigned Opc = N->getOpcode();
Scott Michel58c58182008-01-17 20:38:41 +0000679 int n_ops = -1;
680 unsigned NewOpc;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000681 EVT OpVT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000682 SDValue Ops[8];
Dale Johannesened2eee62009-02-06 01:31:28 +0000683 DebugLoc dl = N->getDebugLoc();
Scott Michel266bc8f2007-12-04 22:23:35 +0000684
Chris Lattnera8e76142010-02-23 05:30:43 +0000685 if (N->isMachineOpcode())
Scott Michel266bc8f2007-12-04 22:23:35 +0000686 return NULL; // Already selected.
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000687
688 if (Opc == ISD::FrameIndex) {
Scott Michel02d711b2008-12-30 23:28:25 +0000689 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000690 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
691 SDValue Imm0 = CurDAG->getTargetConstant(0, N->getValueType(0));
Scott Michel266bc8f2007-12-04 22:23:35 +0000692
Scott Michel02d711b2008-12-30 23:28:25 +0000693 if (FI < 128) {
Scott Michel203b2d62008-04-30 00:30:08 +0000694 NewOpc = SPU::AIr32;
Scott Michel02d711b2008-12-30 23:28:25 +0000695 Ops[0] = TFI;
696 Ops[1] = Imm0;
Scott Michel203b2d62008-04-30 00:30:08 +0000697 n_ops = 2;
698 } else {
Scott Michel203b2d62008-04-30 00:30:08 +0000699 NewOpc = SPU::Ar32;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000700 Ops[0] = CurDAG->getRegister(SPU::R1, N->getValueType(0));
Dan Gohman602b0c82009-09-25 18:54:59 +0000701 Ops[1] = SDValue(CurDAG->getMachineNode(SPU::ILAr32, dl,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000702 N->getValueType(0), TFI, Imm0),
Dan Gohman602b0c82009-09-25 18:54:59 +0000703 0);
Scott Michel203b2d62008-04-30 00:30:08 +0000704 n_ops = 2;
Scott Michel203b2d62008-04-30 00:30:08 +0000705 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000706 } else if (Opc == ISD::Constant && OpVT == MVT::i64) {
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000707 // Catch the i64 constants that end up here. Note: The backend doesn't
708 // attempt to legalize the constant (it's useless because DAGCombiner
709 // will insert 64-bit constants and we can't stop it).
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000710 return SelectI64Constant(N, OpVT, N->getDebugLoc());
Scott Michel94bd57e2009-01-15 04:41:47 +0000711 } else if ((Opc == ISD::ZERO_EXTEND || Opc == ISD::ANY_EXTEND)
Owen Anderson825b72b2009-08-11 20:47:22 +0000712 && OpVT == MVT::i64) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000713 SDValue Op0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000714 EVT Op0VT = Op0.getValueType();
Owen Anderson23b9b192009-08-12 00:36:31 +0000715 EVT Op0VecVT = EVT::getVectorVT(*CurDAG->getContext(),
716 Op0VT, (128 / Op0VT.getSizeInBits()));
717 EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(),
718 OpVT, (128 / OpVT.getSizeInBits()));
Scott Michel94bd57e2009-01-15 04:41:47 +0000719 SDValue shufMask;
Scott Michel58c58182008-01-17 20:38:41 +0000720
Owen Anderson825b72b2009-08-11 20:47:22 +0000721 switch (Op0VT.getSimpleVT().SimpleTy) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000722 default:
Chris Lattner75361b62010-04-07 22:58:41 +0000723 report_fatal_error("CellSPU Select: Unhandled zero/any extend EVT");
Scott Michel94bd57e2009-01-15 04:41:47 +0000724 /*NOTREACHED*/
Owen Anderson825b72b2009-08-11 20:47:22 +0000725 case MVT::i32:
726 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
727 CurDAG->getConstant(0x80808080, MVT::i32),
728 CurDAG->getConstant(0x00010203, MVT::i32),
729 CurDAG->getConstant(0x80808080, MVT::i32),
730 CurDAG->getConstant(0x08090a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000731 break;
732
Owen Anderson825b72b2009-08-11 20:47:22 +0000733 case MVT::i16:
734 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
735 CurDAG->getConstant(0x80808080, MVT::i32),
736 CurDAG->getConstant(0x80800203, MVT::i32),
737 CurDAG->getConstant(0x80808080, MVT::i32),
738 CurDAG->getConstant(0x80800a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000739 break;
740
Owen Anderson825b72b2009-08-11 20:47:22 +0000741 case MVT::i8:
742 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
743 CurDAG->getConstant(0x80808080, MVT::i32),
744 CurDAG->getConstant(0x80808003, MVT::i32),
745 CurDAG->getConstant(0x80808080, MVT::i32),
746 CurDAG->getConstant(0x8080800b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000747 break;
Scott Michel58c58182008-01-17 20:38:41 +0000748 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000749
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000750 SDNode *shufMaskLoad = emitBuildVector(shufMask.getNode());
Chris Lattnera8e76142010-02-23 05:30:43 +0000751
752 HandleSDNode PromoteScalar(CurDAG->getNode(SPUISD::PREFSLOT2VEC, dl,
753 Op0VecVT, Op0));
754
755 SDValue PromScalar;
756 if (SDNode *N = SelectCode(PromoteScalar.getValue().getNode()))
757 PromScalar = SDValue(N, 0);
758 else
759 PromScalar = PromoteScalar.getValue();
760
Scott Michel94bd57e2009-01-15 04:41:47 +0000761 SDValue zextShuffle =
Dale Johannesened2eee62009-02-06 01:31:28 +0000762 CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Chris Lattnera8e76142010-02-23 05:30:43 +0000763 PromScalar, PromScalar,
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000764 SDValue(shufMaskLoad, 0));
Scott Michel94bd57e2009-01-15 04:41:47 +0000765
Chris Lattnera8e76142010-02-23 05:30:43 +0000766 HandleSDNode Dummy2(zextShuffle);
767 if (SDNode *N = SelectCode(Dummy2.getValue().getNode()))
768 zextShuffle = SDValue(N, 0);
769 else
770 zextShuffle = Dummy2.getValue();
771 HandleSDNode Dummy(CurDAG->getNode(SPUISD::VEC2PREFSLOT, dl, OpVT,
772 zextShuffle));
773
774 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
775 SelectCode(Dummy.getValue().getNode());
776 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000777 } else if (Opc == ISD::ADD && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000778 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000779 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000780
Chris Lattnera8e76142010-02-23 05:30:43 +0000781 HandleSDNode Dummy(CurDAG->getNode(SPUISD::ADD64_MARKER, dl, OpVT,
782 N->getOperand(0), N->getOperand(1),
783 SDValue(CGLoad, 0)));
784
785 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
786 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
787 return N;
788 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000789 } else if (Opc == ISD::SUB && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000790 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000791 emitBuildVector(getBorrowGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000792
Chris Lattnera8e76142010-02-23 05:30:43 +0000793 HandleSDNode Dummy(CurDAG->getNode(SPUISD::SUB64_MARKER, dl, OpVT,
794 N->getOperand(0), N->getOperand(1),
795 SDValue(CGLoad, 0)));
796
797 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
798 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
799 return N;
800 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000801 } else if (Opc == ISD::MUL && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000802 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000803 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000804
Chris Lattnera8e76142010-02-23 05:30:43 +0000805 HandleSDNode Dummy(CurDAG->getNode(SPUISD::MUL64_MARKER, dl, OpVT,
806 N->getOperand(0), N->getOperand(1),
807 SDValue(CGLoad, 0)));
808 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
809 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
810 return N;
811 return Dummy.getValue().getNode();
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000812 } else if (Opc == ISD::TRUNCATE) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000813 SDValue Op0 = N->getOperand(0);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000814 if ((Op0.getOpcode() == ISD::SRA || Op0.getOpcode() == ISD::SRL)
Owen Anderson825b72b2009-08-11 20:47:22 +0000815 && OpVT == MVT::i32
816 && Op0.getValueType() == MVT::i64) {
Scott Michel9de57a92009-01-26 22:33:37 +0000817 // Catch (truncate:i32 ([sra|srl]:i64 arg, c), where c >= 32
818 //
819 // Take advantage of the fact that the upper 32 bits are in the
820 // i32 preferred slot and avoid shuffle gymnastics:
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000821 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
822 if (CN != 0) {
823 unsigned shift_amt = unsigned(CN->getZExtValue());
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000824
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000825 if (shift_amt >= 32) {
826 SDNode *hi32 =
Dan Gohman602b0c82009-09-25 18:54:59 +0000827 CurDAG->getMachineNode(SPU::ORr32_r64, dl, OpVT,
828 Op0.getOperand(0));
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000829
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000830 shift_amt -= 32;
831 if (shift_amt > 0) {
832 // Take care of the additional shift, if present:
Owen Anderson825b72b2009-08-11 20:47:22 +0000833 SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000834 unsigned Opc = SPU::ROTMAIr32_i32;
Scott Michel9de57a92009-01-26 22:33:37 +0000835
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000836 if (Op0.getOpcode() == ISD::SRL)
837 Opc = SPU::ROTMr32;
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000838
Dan Gohman602b0c82009-09-25 18:54:59 +0000839 hi32 = CurDAG->getMachineNode(Opc, dl, OpVT, SDValue(hi32, 0),
840 shift);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000841 }
842
843 return hi32;
844 }
845 }
846 }
Scott Michel02d711b2008-12-30 23:28:25 +0000847 } else if (Opc == ISD::SHL) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000848 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000849 return SelectSHLi64(N, OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000850 } else if (Opc == ISD::SRL) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000851 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000852 return SelectSRLi64(N, OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000853 } else if (Opc == ISD::SRA) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000854 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000855 return SelectSRAi64(N, OpVT);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000856 } else if (Opc == ISD::FNEG
Owen Anderson825b72b2009-08-11 20:47:22 +0000857 && (OpVT == MVT::f64 || OpVT == MVT::v2f64)) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000858 DebugLoc dl = N->getDebugLoc();
Scott Michel7ea02ff2009-03-17 01:15:45 +0000859 // Check if the pattern is a special form of DFNMS:
860 // (fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC))
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000861 SDValue Op0 = N->getOperand(0);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000862 if (Op0.getOpcode() == ISD::FSUB) {
863 SDValue Op00 = Op0.getOperand(0);
864 if (Op00.getOpcode() == ISD::FMUL) {
865 unsigned Opc = SPU::DFNMSf64;
Owen Anderson825b72b2009-08-11 20:47:22 +0000866 if (OpVT == MVT::v2f64)
Scott Michel7ea02ff2009-03-17 01:15:45 +0000867 Opc = SPU::DFNMSv2f64;
868
Dan Gohman602b0c82009-09-25 18:54:59 +0000869 return CurDAG->getMachineNode(Opc, dl, OpVT,
870 Op00.getOperand(0),
871 Op00.getOperand(1),
872 Op0.getOperand(1));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000873 }
874 }
875
Owen Anderson825b72b2009-08-11 20:47:22 +0000876 SDValue negConst = CurDAG->getConstant(0x8000000000000000ULL, MVT::i64);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000877 SDNode *signMask = 0;
Scott Michela82d3f72009-03-17 16:45:16 +0000878 unsigned Opc = SPU::XORfneg64;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000879
Owen Anderson825b72b2009-08-11 20:47:22 +0000880 if (OpVT == MVT::f64) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000881 signMask = SelectI64Constant(negConst.getNode(), MVT::i64, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +0000882 } else if (OpVT == MVT::v2f64) {
Scott Michela82d3f72009-03-17 16:45:16 +0000883 Opc = SPU::XORfnegvec;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000884 signMask = emitBuildVector(CurDAG->getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +0000885 MVT::v2i64,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000886 negConst, negConst).getNode());
Scott Michel7ea02ff2009-03-17 01:15:45 +0000887 }
888
Dan Gohman602b0c82009-09-25 18:54:59 +0000889 return CurDAG->getMachineNode(Opc, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000890 N->getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000891 } else if (Opc == ISD::FABS) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000892 if (OpVT == MVT::f64) {
893 SDNode *signMask = SelectI64Constant(0x7fffffffffffffffULL, MVT::i64, dl);
Dan Gohman602b0c82009-09-25 18:54:59 +0000894 return CurDAG->getMachineNode(SPU::ANDfabs64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000895 N->getOperand(0), SDValue(signMask, 0));
Owen Anderson825b72b2009-08-11 20:47:22 +0000896 } else if (OpVT == MVT::v2f64) {
897 SDValue absConst = CurDAG->getConstant(0x7fffffffffffffffULL, MVT::i64);
898 SDValue absVec = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000899 absConst, absConst);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000900 SDNode *signMask = emitBuildVector(absVec.getNode());
Dan Gohman602b0c82009-09-25 18:54:59 +0000901 return CurDAG->getMachineNode(SPU::ANDfabsvec, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000902 N->getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000903 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000904 } else if (Opc == SPUISD::LDRESULT) {
905 // Custom select instructions for LDRESULT
Owen Andersone50ed302009-08-10 22:56:29 +0000906 EVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000907 SDValue Arg = N->getOperand(0);
908 SDValue Chain = N->getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000909 SDNode *Result;
Scott Michela59d4692008-02-23 18:41:37 +0000910 const valtype_map_s *vtm = getValueTypeMapEntry(VT);
911
912 if (vtm->ldresult_ins == 0) {
Benjamin Kramer1bd73352010-04-08 10:44:28 +0000913 report_fatal_error("LDRESULT for unsupported type: " +
914 Twine(VT.getEVTString()));
Scott Michela59d4692008-02-23 18:41:37 +0000915 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000916
Scott Michela59d4692008-02-23 18:41:37 +0000917 Opc = vtm->ldresult_ins;
918 if (vtm->ldresult_imm) {
Dan Gohman475871a2008-07-27 21:46:04 +0000919 SDValue Zero = CurDAG->getTargetConstant(0, VT);
Scott Michel86c041f2007-12-20 00:44:13 +0000920
Dan Gohman602b0c82009-09-25 18:54:59 +0000921 Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Zero, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000922 } else {
Dan Gohman602b0c82009-09-25 18:54:59 +0000923 Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Arg, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000924 }
925
Scott Michel266bc8f2007-12-04 22:23:35 +0000926 return Result;
Scott Michel053c1da2008-01-29 02:16:57 +0000927 } else if (Opc == SPUISD::IndirectAddr) {
Scott Michelf0569be2008-12-27 04:51:36 +0000928 // Look at the operands: SelectCode() will catch the cases that aren't
929 // specifically handled here.
930 //
931 // SPUInstrInfo catches the following patterns:
932 // (SPUindirect (SPUhi ...), (SPUlo ...))
933 // (SPUindirect $sp, imm)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000934 EVT VT = N->getValueType(0);
Scott Michelf0569be2008-12-27 04:51:36 +0000935 SDValue Op0 = N->getOperand(0);
936 SDValue Op1 = N->getOperand(1);
937 RegisterSDNode *RN;
Scott Michel58c58182008-01-17 20:38:41 +0000938
Scott Michelf0569be2008-12-27 04:51:36 +0000939 if ((Op0.getOpcode() != SPUISD::Hi && Op1.getOpcode() != SPUISD::Lo)
940 || (Op0.getOpcode() == ISD::Register
941 && ((RN = dyn_cast<RegisterSDNode>(Op0.getNode())) != 0
942 && RN->getReg() != SPU::R1))) {
943 NewOpc = SPU::Ar32;
Scott Michel58c58182008-01-17 20:38:41 +0000944 if (Op1.getOpcode() == ISD::Constant) {
945 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Scott Michelf0569be2008-12-27 04:51:36 +0000946 Op1 = CurDAG->getTargetConstant(CN->getSExtValue(), VT);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000947 NewOpc = (isI32IntS10Immediate(CN) ? SPU::AIr32 : SPU::Ar32);
Scott Michel58c58182008-01-17 20:38:41 +0000948 }
Scott Michelf0569be2008-12-27 04:51:36 +0000949 Ops[0] = Op0;
950 Ops[1] = Op1;
951 n_ops = 2;
Scott Michel58c58182008-01-17 20:38:41 +0000952 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000953 }
Scott Michel02d711b2008-12-30 23:28:25 +0000954
Scott Michel58c58182008-01-17 20:38:41 +0000955 if (n_ops > 0) {
956 if (N->hasOneUse())
957 return CurDAG->SelectNodeTo(N, NewOpc, OpVT, Ops, n_ops);
958 else
Dan Gohman602b0c82009-09-25 18:54:59 +0000959 return CurDAG->getMachineNode(NewOpc, dl, OpVT, Ops, n_ops);
Scott Michel58c58182008-01-17 20:38:41 +0000960 } else
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000961 return SelectCode(N);
Scott Michel266bc8f2007-12-04 22:23:35 +0000962}
963
Scott Michel02d711b2008-12-30 23:28:25 +0000964/*!
965 * Emit the instruction sequence for i64 left shifts. The basic algorithm
966 * is to fill the bottom two word slots with zeros so that zeros are shifted
967 * in as the entire quadword is shifted left.
968 *
969 * \note This code could also be used to implement v2i64 shl.
970 *
971 * @param Op The shl operand
972 * @param OpVT Op's machine value value type (doesn't need to be passed, but
973 * makes life easier.)
974 * @return The SDNode with the entire instruction sequence
975 */
976SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000977SPUDAGToDAGISel::SelectSHLi64(SDNode *N, EVT OpVT) {
978 SDValue Op0 = N->getOperand(0);
Owen Anderson23b9b192009-08-12 00:36:31 +0000979 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
980 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000981 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +0000982 EVT ShiftAmtVT = ShiftAmt.getValueType();
Scott Michel02d711b2008-12-30 23:28:25 +0000983 SDNode *VecOp0, *SelMask, *ZeroFill, *Shift = 0;
984 SDValue SelMaskVal;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000985 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +0000986
Dan Gohman602b0c82009-09-25 18:54:59 +0000987 VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000988 SelMaskVal = CurDAG->getTargetConstant(0xff00ULL, MVT::i16);
Dan Gohman602b0c82009-09-25 18:54:59 +0000989 SelMask = CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT, SelMaskVal);
990 ZeroFill = CurDAG->getMachineNode(SPU::ILv2i64, dl, VecVT,
991 CurDAG->getTargetConstant(0, OpVT));
992 VecOp0 = CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT,
993 SDValue(ZeroFill, 0),
994 SDValue(VecOp0, 0),
995 SDValue(SelMask, 0));
Scott Michel02d711b2008-12-30 23:28:25 +0000996
997 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
998 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
999 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1000
1001 if (bytes > 0) {
1002 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001003 CurDAG->getMachineNode(SPU::SHLQBYIv2i64, dl, VecVT,
1004 SDValue(VecOp0, 0),
1005 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001006 }
1007
1008 if (bits > 0) {
1009 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001010 CurDAG->getMachineNode(SPU::SHLQBIIv2i64, dl, VecVT,
1011 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1012 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001013 }
1014 } else {
1015 SDNode *Bytes =
Dan Gohman602b0c82009-09-25 18:54:59 +00001016 CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT,
1017 ShiftAmt,
1018 CurDAG->getTargetConstant(3, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001019 SDNode *Bits =
Dan Gohman602b0c82009-09-25 18:54:59 +00001020 CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT,
1021 ShiftAmt,
1022 CurDAG->getTargetConstant(7, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001023 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001024 CurDAG->getMachineNode(SPU::SHLQBYv2i64, dl, VecVT,
1025 SDValue(VecOp0, 0), SDValue(Bytes, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001026 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001027 CurDAG->getMachineNode(SPU::SHLQBIv2i64, dl, VecVT,
1028 SDValue(Shift, 0), SDValue(Bits, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001029 }
1030
Dan Gohman602b0c82009-09-25 18:54:59 +00001031 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001032}
1033
1034/*!
1035 * Emit the instruction sequence for i64 logical right shifts.
1036 *
1037 * @param Op The shl operand
1038 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1039 * makes life easier.)
1040 * @return The SDNode with the entire instruction sequence
1041 */
1042SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001043SPUDAGToDAGISel::SelectSRLi64(SDNode *N, EVT OpVT) {
1044 SDValue Op0 = N->getOperand(0);
Owen Anderson23b9b192009-08-12 00:36:31 +00001045 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
1046 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001047 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001048 EVT ShiftAmtVT = ShiftAmt.getValueType();
Scott Michel02d711b2008-12-30 23:28:25 +00001049 SDNode *VecOp0, *Shift = 0;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001050 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001051
Dan Gohman602b0c82009-09-25 18:54:59 +00001052 VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Scott Michel02d711b2008-12-30 23:28:25 +00001053
1054 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1055 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1056 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1057
1058 if (bytes > 0) {
1059 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001060 CurDAG->getMachineNode(SPU::ROTQMBYIv2i64, dl, VecVT,
1061 SDValue(VecOp0, 0),
1062 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001063 }
1064
1065 if (bits > 0) {
1066 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001067 CurDAG->getMachineNode(SPU::ROTQMBIIv2i64, dl, VecVT,
1068 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1069 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001070 }
1071 } else {
1072 SDNode *Bytes =
Dan Gohman602b0c82009-09-25 18:54:59 +00001073 CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT,
1074 ShiftAmt,
1075 CurDAG->getTargetConstant(3, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001076 SDNode *Bits =
Dan Gohman602b0c82009-09-25 18:54:59 +00001077 CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT,
1078 ShiftAmt,
1079 CurDAG->getTargetConstant(7, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001080
1081 // Ensure that the shift amounts are negated!
Dan Gohman602b0c82009-09-25 18:54:59 +00001082 Bytes = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1083 SDValue(Bytes, 0),
1084 CurDAG->getTargetConstant(0, ShiftAmtVT));
1085
1086 Bits = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1087 SDValue(Bits, 0),
Scott Michel02d711b2008-12-30 23:28:25 +00001088 CurDAG->getTargetConstant(0, ShiftAmtVT));
1089
Scott Michel02d711b2008-12-30 23:28:25 +00001090 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001091 CurDAG->getMachineNode(SPU::ROTQMBYv2i64, dl, VecVT,
1092 SDValue(VecOp0, 0), SDValue(Bytes, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001093 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001094 CurDAG->getMachineNode(SPU::ROTQMBIv2i64, dl, VecVT,
1095 SDValue(Shift, 0), SDValue(Bits, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001096 }
1097
Dan Gohman602b0c82009-09-25 18:54:59 +00001098 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001099}
1100
1101/*!
1102 * Emit the instruction sequence for i64 arithmetic right shifts.
1103 *
1104 * @param Op The shl operand
1105 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1106 * makes life easier.)
1107 * @return The SDNode with the entire instruction sequence
1108 */
1109SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001110SPUDAGToDAGISel::SelectSRAi64(SDNode *N, EVT OpVT) {
Scott Michel02d711b2008-12-30 23:28:25 +00001111 // Promote Op0 to vector
Owen Anderson23b9b192009-08-12 00:36:31 +00001112 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
1113 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001114 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001115 EVT ShiftAmtVT = ShiftAmt.getValueType();
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001116 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001117
1118 SDNode *VecOp0 =
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001119 CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, N->getOperand(0));
Scott Michel02d711b2008-12-30 23:28:25 +00001120
1121 SDValue SignRotAmt = CurDAG->getTargetConstant(31, ShiftAmtVT);
1122 SDNode *SignRot =
Dan Gohman602b0c82009-09-25 18:54:59 +00001123 CurDAG->getMachineNode(SPU::ROTMAIv2i64_i32, dl, MVT::v2i64,
1124 SDValue(VecOp0, 0), SignRotAmt);
Scott Michel02d711b2008-12-30 23:28:25 +00001125 SDNode *UpperHalfSign =
Dan Gohman602b0c82009-09-25 18:54:59 +00001126 CurDAG->getMachineNode(SPU::ORi32_v4i32, dl, MVT::i32, SDValue(SignRot, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001127
1128 SDNode *UpperHalfSignMask =
Dan Gohman602b0c82009-09-25 18:54:59 +00001129 CurDAG->getMachineNode(SPU::FSM64r32, dl, VecVT, SDValue(UpperHalfSign, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001130 SDNode *UpperLowerMask =
Dan Gohman602b0c82009-09-25 18:54:59 +00001131 CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT,
1132 CurDAG->getTargetConstant(0xff00ULL, MVT::i16));
Scott Michel02d711b2008-12-30 23:28:25 +00001133 SDNode *UpperLowerSelect =
Dan Gohman602b0c82009-09-25 18:54:59 +00001134 CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT,
1135 SDValue(UpperHalfSignMask, 0),
1136 SDValue(VecOp0, 0),
1137 SDValue(UpperLowerMask, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001138
1139 SDNode *Shift = 0;
1140
1141 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1142 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1143 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1144
1145 if (bytes > 0) {
1146 bytes = 31 - bytes;
1147 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001148 CurDAG->getMachineNode(SPU::ROTQBYIv2i64, dl, VecVT,
1149 SDValue(UpperLowerSelect, 0),
1150 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001151 }
1152
1153 if (bits > 0) {
1154 bits = 8 - bits;
1155 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001156 CurDAG->getMachineNode(SPU::ROTQBIIv2i64, dl, VecVT,
1157 SDValue((Shift != 0 ? Shift : UpperLowerSelect), 0),
1158 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001159 }
1160 } else {
1161 SDNode *NegShift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001162 CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1163 ShiftAmt, CurDAG->getTargetConstant(0, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001164
1165 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001166 CurDAG->getMachineNode(SPU::ROTQBYBIv2i64_r32, dl, VecVT,
1167 SDValue(UpperLowerSelect, 0), SDValue(NegShift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001168 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001169 CurDAG->getMachineNode(SPU::ROTQBIv2i64, dl, VecVT,
1170 SDValue(Shift, 0), SDValue(NegShift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001171 }
1172
Dan Gohman602b0c82009-09-25 18:54:59 +00001173 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001174}
1175
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001176/*!
1177 Do the necessary magic necessary to load a i64 constant
1178 */
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001179SDNode *SPUDAGToDAGISel::SelectI64Constant(SDNode *N, EVT OpVT,
Scott Michel7ea02ff2009-03-17 01:15:45 +00001180 DebugLoc dl) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001181 ConstantSDNode *CN = cast<ConstantSDNode>(N);
Scott Michel7ea02ff2009-03-17 01:15:45 +00001182 return SelectI64Constant(CN->getZExtValue(), OpVT, dl);
1183}
1184
Owen Andersone50ed302009-08-10 22:56:29 +00001185SDNode *SPUDAGToDAGISel::SelectI64Constant(uint64_t Value64, EVT OpVT,
Scott Michel7ea02ff2009-03-17 01:15:45 +00001186 DebugLoc dl) {
Owen Anderson23b9b192009-08-12 00:36:31 +00001187 EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(), OpVT, 2);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001188 SDValue i64vec =
Scott Michel7ea02ff2009-03-17 01:15:45 +00001189 SPU::LowerV2I64Splat(OpVecVT, *CurDAG, Value64, dl);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001190
1191 // Here's where it gets interesting, because we have to parse out the
1192 // subtree handed back in i64vec:
1193
1194 if (i64vec.getOpcode() == ISD::BIT_CONVERT) {
1195 // The degenerate case where the upper and lower bits in the splat are
1196 // identical:
1197 SDValue Op0 = i64vec.getOperand(0);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001198
Scott Michel9de57a92009-01-26 22:33:37 +00001199 ReplaceUses(i64vec, Op0);
Dan Gohman602b0c82009-09-25 18:54:59 +00001200 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001201 SDValue(emitBuildVector(Op0.getNode()), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001202 } else if (i64vec.getOpcode() == SPUISD::SHUFB) {
1203 SDValue lhs = i64vec.getOperand(0);
1204 SDValue rhs = i64vec.getOperand(1);
1205 SDValue shufmask = i64vec.getOperand(2);
1206
1207 if (lhs.getOpcode() == ISD::BIT_CONVERT) {
1208 ReplaceUses(lhs, lhs.getOperand(0));
1209 lhs = lhs.getOperand(0);
1210 }
1211
1212 SDNode *lhsNode = (lhs.getNode()->isMachineOpcode()
1213 ? lhs.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001214 : emitBuildVector(lhs.getNode()));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001215
1216 if (rhs.getOpcode() == ISD::BIT_CONVERT) {
1217 ReplaceUses(rhs, rhs.getOperand(0));
1218 rhs = rhs.getOperand(0);
1219 }
1220
1221 SDNode *rhsNode = (rhs.getNode()->isMachineOpcode()
1222 ? rhs.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001223 : emitBuildVector(rhs.getNode()));
Scott Michel9de57a92009-01-26 22:33:37 +00001224
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001225 if (shufmask.getOpcode() == ISD::BIT_CONVERT) {
1226 ReplaceUses(shufmask, shufmask.getOperand(0));
1227 shufmask = shufmask.getOperand(0);
1228 }
1229
1230 SDNode *shufMaskNode = (shufmask.getNode()->isMachineOpcode()
1231 ? shufmask.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001232 : emitBuildVector(shufmask.getNode()));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001233
Chris Lattnera8e76142010-02-23 05:30:43 +00001234 SDValue shufNode =
1235 CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001236 SDValue(lhsNode, 0), SDValue(rhsNode, 0),
Chris Lattnera8e76142010-02-23 05:30:43 +00001237 SDValue(shufMaskNode, 0));
1238 HandleSDNode Dummy(shufNode);
1239 SDNode *SN = SelectCode(Dummy.getValue().getNode());
1240 if (SN == 0) SN = Dummy.getValue().getNode();
1241
1242 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(SN, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +00001243 } else if (i64vec.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman602b0c82009-09-25 18:54:59 +00001244 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001245 SDValue(emitBuildVector(i64vec.getNode()), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001246 } else {
Chris Lattner75361b62010-04-07 22:58:41 +00001247 report_fatal_error("SPUDAGToDAGISel::SelectI64Constant: Unhandled i64vec"
Torok Edwindac237e2009-07-08 20:53:28 +00001248 "condition");
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001249 }
1250}
1251
Scott Michel02d711b2008-12-30 23:28:25 +00001252/// createSPUISelDag - This pass converts a legalized DAG into a
Scott Michel266bc8f2007-12-04 22:23:35 +00001253/// SPU-specific DAG, ready for instruction scheduling.
1254///
1255FunctionPass *llvm::createSPUISelDag(SPUTargetMachine &TM) {
1256 return new SPUDAGToDAGISel(TM);
1257}