blob: c1e3dd2785f11246bacc3a748f66febfd9c5a11c [file] [log] [blame]
Chris Lattner4ee451d2007-12-29 20:36:04 +00001//===-- SPUISelDAGToDAG.cpp - CellSPU pattern matching inst selector ------===//
Scott Michel266bc8f2007-12-04 22:23:35 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Scott Michel266bc8f2007-12-04 22:23:35 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a pattern matching instruction selector for the Cell SPU,
11// converting from a legalized dag to a SPU-target dag.
12//
13//===----------------------------------------------------------------------===//
14
15#include "SPU.h"
16#include "SPUTargetMachine.h"
17#include "SPUISelLowering.h"
18#include "SPUHazardRecognizers.h"
19#include "SPUFrameInfo.h"
Scott Michel203b2d62008-04-30 00:30:08 +000020#include "SPURegisterNames.h"
Scott Michel94bd57e2009-01-15 04:41:47 +000021#include "SPUTargetMachine.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000022#include "llvm/CodeGen/MachineConstantPool.h"
23#include "llvm/CodeGen/MachineInstrBuilder.h"
24#include "llvm/CodeGen/MachineFunction.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000025#include "llvm/CodeGen/SelectionDAG.h"
26#include "llvm/CodeGen/SelectionDAGISel.h"
Scott Michel94bd57e2009-01-15 04:41:47 +000027#include "llvm/CodeGen/PseudoSourceValue.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000028#include "llvm/Target/TargetOptions.h"
29#include "llvm/ADT/Statistic.h"
30#include "llvm/Constants.h"
31#include "llvm/GlobalValue.h"
32#include "llvm/Intrinsics.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000033#include "llvm/LLVMContext.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000034#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000035#include "llvm/Support/ErrorHandling.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000036#include "llvm/Support/MathExtras.h"
37#include "llvm/Support/Compiler.h"
Torok Edwindac237e2009-07-08 20:53:28 +000038#include "llvm/Support/raw_ostream.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000039
40using namespace llvm;
41
42namespace {
43 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
44 bool
45 isI64IntS10Immediate(ConstantSDNode *CN)
46 {
Benjamin Kramer7e09deb2010-03-29 19:07:58 +000047 return isInt<10>(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000048 }
49
50 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
51 bool
52 isI32IntS10Immediate(ConstantSDNode *CN)
53 {
Benjamin Kramer7e09deb2010-03-29 19:07:58 +000054 return isInt<10>(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000055 }
56
Scott Michel504c3692007-12-17 22:32:34 +000057 //! ConstantSDNode predicate for i32 unsigned 10-bit immediate values
58 bool
59 isI32IntU10Immediate(ConstantSDNode *CN)
60 {
Benjamin Kramer34247a02010-03-29 21:13:41 +000061 return isUInt<10>(CN->getSExtValue());
Scott Michel504c3692007-12-17 22:32:34 +000062 }
63
Scott Michel266bc8f2007-12-04 22:23:35 +000064 //! ConstantSDNode predicate for i16 sign-extended, 10-bit immediate values
65 bool
66 isI16IntS10Immediate(ConstantSDNode *CN)
67 {
Benjamin Kramer7e09deb2010-03-29 19:07:58 +000068 return isInt<10>(CN->getSExtValue());
Scott Michel266bc8f2007-12-04 22:23:35 +000069 }
70
71 //! SDNode predicate for i16 sign-extended, 10-bit immediate values
72 bool
73 isI16IntS10Immediate(SDNode *N)
74 {
Scott Michel9de57a92009-01-26 22:33:37 +000075 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
76 return (CN != 0 && isI16IntS10Immediate(CN));
Scott Michel266bc8f2007-12-04 22:23:35 +000077 }
78
Scott Michelec2a08f2007-12-15 00:38:50 +000079 //! ConstantSDNode predicate for i16 unsigned 10-bit immediate values
80 bool
81 isI16IntU10Immediate(ConstantSDNode *CN)
82 {
Benjamin Kramer34247a02010-03-29 21:13:41 +000083 return isUInt<10>((short) CN->getZExtValue());
Scott Michelec2a08f2007-12-15 00:38:50 +000084 }
85
86 //! SDNode predicate for i16 sign-extended, 10-bit immediate values
87 bool
88 isI16IntU10Immediate(SDNode *N)
89 {
90 return (N->getOpcode() == ISD::Constant
91 && isI16IntU10Immediate(cast<ConstantSDNode>(N)));
92 }
93
Scott Michel266bc8f2007-12-04 22:23:35 +000094 //! ConstantSDNode predicate for signed 16-bit values
95 /*!
96 \arg CN The constant SelectionDAG node holding the value
97 \arg Imm The returned 16-bit value, if returning true
98
99 This predicate tests the value in \a CN to see whether it can be
100 represented as a 16-bit, sign-extended quantity. Returns true if
101 this is the case.
102 */
103 bool
104 isIntS16Immediate(ConstantSDNode *CN, short &Imm)
105 {
Owen Andersone50ed302009-08-10 22:56:29 +0000106 EVT vt = CN->getValueType(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000107 Imm = (short) CN->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000108 if (vt.getSimpleVT() >= MVT::i1 && vt.getSimpleVT() <= MVT::i16) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000109 return true;
Owen Anderson825b72b2009-08-11 20:47:22 +0000110 } else if (vt == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000111 int32_t i_val = (int32_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +0000112 short s_val = (short) i_val;
113 return i_val == s_val;
114 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000115 int64_t i_val = (int64_t) CN->getZExtValue();
Scott Michel266bc8f2007-12-04 22:23:35 +0000116 short s_val = (short) i_val;
117 return i_val == s_val;
118 }
119
120 return false;
121 }
122
123 //! SDNode predicate for signed 16-bit values.
124 bool
125 isIntS16Immediate(SDNode *N, short &Imm)
126 {
127 return (N->getOpcode() == ISD::Constant
128 && isIntS16Immediate(cast<ConstantSDNode>(N), Imm));
129 }
130
131 //! ConstantFPSDNode predicate for representing floats as 16-bit sign ext.
132 static bool
133 isFPS16Immediate(ConstantFPSDNode *FPN, short &Imm)
134 {
Owen Andersone50ed302009-08-10 22:56:29 +0000135 EVT vt = FPN->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000136 if (vt == MVT::f32) {
Chris Lattnerd3ada752007-12-22 22:45:38 +0000137 int val = FloatToBits(FPN->getValueAPF().convertToFloat());
Scott Michel266bc8f2007-12-04 22:23:35 +0000138 int sval = (int) ((val << 16) >> 16);
139 Imm = (short) val;
140 return val == sval;
141 }
142
143 return false;
144 }
145
Scott Michel053c1da2008-01-29 02:16:57 +0000146 bool
Scott Michel02d711b2008-12-30 23:28:25 +0000147 isHighLow(const SDValue &Op)
Scott Michel053c1da2008-01-29 02:16:57 +0000148 {
149 return (Op.getOpcode() == SPUISD::IndirectAddr
150 && ((Op.getOperand(0).getOpcode() == SPUISD::Hi
151 && Op.getOperand(1).getOpcode() == SPUISD::Lo)
152 || (Op.getOperand(0).getOpcode() == SPUISD::Lo
153 && Op.getOperand(1).getOpcode() == SPUISD::Hi)));
154 }
155
Scott Michel266bc8f2007-12-04 22:23:35 +0000156 //===------------------------------------------------------------------===//
Owen Andersone50ed302009-08-10 22:56:29 +0000157 //! EVT to "useful stuff" mapping structure:
Scott Michel266bc8f2007-12-04 22:23:35 +0000158
159 struct valtype_map_s {
Owen Andersone50ed302009-08-10 22:56:29 +0000160 EVT VT;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000161 unsigned ldresult_ins; /// LDRESULT instruction (0 = undefined)
Scott Michela59d4692008-02-23 18:41:37 +0000162 bool ldresult_imm; /// LDRESULT instruction requires immediate?
Scott Michelf0569be2008-12-27 04:51:36 +0000163 unsigned lrinst; /// LR instruction
Scott Michel266bc8f2007-12-04 22:23:35 +0000164 };
165
166 const valtype_map_s valtype_map[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +0000167 { MVT::i8, SPU::ORBIr8, true, SPU::LRr8 },
168 { MVT::i16, SPU::ORHIr16, true, SPU::LRr16 },
169 { MVT::i32, SPU::ORIr32, true, SPU::LRr32 },
170 { MVT::i64, SPU::ORr64, false, SPU::LRr64 },
171 { MVT::f32, SPU::ORf32, false, SPU::LRf32 },
172 { MVT::f64, SPU::ORf64, false, SPU::LRf64 },
Scott Michel58c58182008-01-17 20:38:41 +0000173 // vector types... (sigh!)
Owen Anderson825b72b2009-08-11 20:47:22 +0000174 { MVT::v16i8, 0, false, SPU::LRv16i8 },
175 { MVT::v8i16, 0, false, SPU::LRv8i16 },
176 { MVT::v4i32, 0, false, SPU::LRv4i32 },
177 { MVT::v2i64, 0, false, SPU::LRv2i64 },
178 { MVT::v4f32, 0, false, SPU::LRv4f32 },
179 { MVT::v2f64, 0, false, SPU::LRv2f64 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000180 };
181
182 const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]);
183
Owen Andersone50ed302009-08-10 22:56:29 +0000184 const valtype_map_s *getValueTypeMapEntry(EVT VT)
Scott Michel266bc8f2007-12-04 22:23:35 +0000185 {
186 const valtype_map_s *retval = 0;
187 for (size_t i = 0; i < n_valtype_map; ++i) {
188 if (valtype_map[i].VT == VT) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000189 retval = valtype_map + i;
190 break;
Scott Michel266bc8f2007-12-04 22:23:35 +0000191 }
192 }
193
194
195#ifndef NDEBUG
196 if (retval == 0) {
Benjamin Kramer1bd73352010-04-08 10:44:28 +0000197 report_fatal_error("SPUISelDAGToDAG.cpp: getValueTypeMapEntry returns"
198 "NULL for " + Twine(VT.getEVTString()));
Scott Michel266bc8f2007-12-04 22:23:35 +0000199 }
200#endif
201
202 return retval;
203 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000204
Scott Michel7ea02ff2009-03-17 01:15:45 +0000205 //! Generate the carry-generate shuffle mask.
206 SDValue getCarryGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
207 SmallVector<SDValue, 16 > ShufBytes;
Dan Gohman844731a2008-05-13 00:00:25 +0000208
Scott Michel7ea02ff2009-03-17 01:15:45 +0000209 // Create the shuffle mask for "rotating" the borrow up one register slot
210 // once the borrow is generated.
Owen Anderson825b72b2009-08-11 20:47:22 +0000211 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
212 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
213 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
214 ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
Scott Michel266bc8f2007-12-04 22:23:35 +0000215
Owen Anderson825b72b2009-08-11 20:47:22 +0000216 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000217 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000218 }
Scott Michel02d711b2008-12-30 23:28:25 +0000219
Scott Michel7ea02ff2009-03-17 01:15:45 +0000220 //! Generate the borrow-generate shuffle mask
221 SDValue getBorrowGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
222 SmallVector<SDValue, 16 > ShufBytes;
223
224 // Create the shuffle mask for "rotating" the borrow up one register slot
225 // once the borrow is generated.
Owen Anderson825b72b2009-08-11 20:47:22 +0000226 ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
227 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
228 ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
229 ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000230
Owen Anderson825b72b2009-08-11 20:47:22 +0000231 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000232 &ShufBytes[0], ShufBytes.size());
Scott Michel266bc8f2007-12-04 22:23:35 +0000233 }
234
Scott Michel7ea02ff2009-03-17 01:15:45 +0000235 //===------------------------------------------------------------------===//
236 /// SPUDAGToDAGISel - Cell SPU-specific code to select SPU machine
237 /// instructions for SelectionDAG operations.
238 ///
239 class SPUDAGToDAGISel :
240 public SelectionDAGISel
241 {
242 SPUTargetMachine &TM;
243 SPUTargetLowering &SPUtli;
244 unsigned GlobalBaseReg;
Scott Michel02d711b2008-12-30 23:28:25 +0000245
Scott Michel7ea02ff2009-03-17 01:15:45 +0000246 public:
247 explicit SPUDAGToDAGISel(SPUTargetMachine &tm) :
248 SelectionDAGISel(tm),
249 TM(tm),
250 SPUtli(*tm.getTargetLowering())
251 { }
252
Dan Gohmanad2afc22009-07-31 18:16:33 +0000253 virtual bool runOnMachineFunction(MachineFunction &MF) {
Scott Michel7ea02ff2009-03-17 01:15:45 +0000254 // Make sure we re-emit a set of the global base reg if necessary
255 GlobalBaseReg = 0;
Dan Gohmanad2afc22009-07-31 18:16:33 +0000256 SelectionDAGISel::runOnMachineFunction(MF);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000257 return true;
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000258 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000259
Scott Michel7ea02ff2009-03-17 01:15:45 +0000260 /// getI32Imm - Return a target constant with the specified value, of type
261 /// i32.
262 inline SDValue getI32Imm(uint32_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000263 return CurDAG->getTargetConstant(Imm, MVT::i32);
Scott Michel94bd57e2009-01-15 04:41:47 +0000264 }
265
Scott Michel7ea02ff2009-03-17 01:15:45 +0000266 /// getI64Imm - Return a target constant with the specified value, of type
267 /// i64.
268 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000269 return CurDAG->getTargetConstant(Imm, MVT::i64);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000270 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000271
Scott Michel7ea02ff2009-03-17 01:15:45 +0000272 /// getSmallIPtrImm - Return a target constant of pointer type.
273 inline SDValue getSmallIPtrImm(unsigned Imm) {
274 return CurDAG->getTargetConstant(Imm, SPUtli.getPointerTy());
Scott Michel266bc8f2007-12-04 22:23:35 +0000275 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000276
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000277 SDNode *emitBuildVector(SDNode *bvNode) {
278 EVT vecVT = bvNode->getValueType(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000279 EVT eltVT = vecVT.getVectorElementType();
Scott Michel7ea02ff2009-03-17 01:15:45 +0000280 DebugLoc dl = bvNode->getDebugLoc();
281
282 // Check to see if this vector can be represented as a CellSPU immediate
283 // constant by invoking all of the instruction selection predicates:
Owen Anderson825b72b2009-08-11 20:47:22 +0000284 if (((vecVT == MVT::v8i16) &&
285 (SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i16).getNode() != 0)) ||
286 ((vecVT == MVT::v4i32) &&
287 ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
288 (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
289 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
Scott Michel7ea02ff2009-03-17 01:15:45 +0000290 (SPU::get_v4i32_imm(bvNode, *CurDAG).getNode() != 0))) ||
Owen Anderson825b72b2009-08-11 20:47:22 +0000291 ((vecVT == MVT::v2i64) &&
292 ((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
293 (SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
Chris Lattnera8e76142010-02-23 05:30:43 +0000294 (SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i64).getNode() != 0)))) {
295 HandleSDNode Dummy(SDValue(bvNode, 0));
296 if (SDNode *N = Select(bvNode))
297 return N;
298 return Dummy.getValue().getNode();
299 }
Scott Michel7ea02ff2009-03-17 01:15:45 +0000300
301 // No, need to emit a constant pool spill:
302 std::vector<Constant*> CV;
303
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000304 for (size_t i = 0; i < bvNode->getNumOperands(); ++i) {
305 ConstantSDNode *V = dyn_cast<ConstantSDNode > (bvNode->getOperand(i));
Chris Lattnera8e76142010-02-23 05:30:43 +0000306 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000307 }
308
Owen Andersonaf7ec972009-07-28 21:19:26 +0000309 Constant *CP = ConstantVector::get(CV);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000310 SDValue CPIdx = CurDAG->getConstantPool(CP, SPUtli.getPointerTy());
311 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
312 SDValue CGPoolOffset =
313 SPU::LowerConstantPool(CPIdx, *CurDAG,
314 SPUtli.getSPUTargetMachine());
Chris Lattnera8e76142010-02-23 05:30:43 +0000315
316 HandleSDNode Dummy(CurDAG->getLoad(vecVT, dl,
317 CurDAG->getEntryNode(), CGPoolOffset,
318 PseudoSourceValue::getConstantPool(),0,
319 false, false, Alignment));
320 CurDAG->ReplaceAllUsesWith(SDValue(bvNode, 0), Dummy.getValue());
321 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
322 return N;
323 return Dummy.getValue().getNode();
Scott Michel266bc8f2007-12-04 22:23:35 +0000324 }
Scott Michel02d711b2008-12-30 23:28:25 +0000325
Scott Michel7ea02ff2009-03-17 01:15:45 +0000326 /// Select - Convert the specified operand from a target-independent to a
327 /// target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000328 SDNode *Select(SDNode *N);
Scott Michel266bc8f2007-12-04 22:23:35 +0000329
Scott Michel7ea02ff2009-03-17 01:15:45 +0000330 //! Emit the instruction sequence for i64 shl
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000331 SDNode *SelectSHLi64(SDNode *N, EVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000332
Scott Michel7ea02ff2009-03-17 01:15:45 +0000333 //! Emit the instruction sequence for i64 srl
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000334 SDNode *SelectSRLi64(SDNode *N, EVT OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000335
Scott Michel7ea02ff2009-03-17 01:15:45 +0000336 //! Emit the instruction sequence for i64 sra
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000337 SDNode *SelectSRAi64(SDNode *N, EVT OpVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000338
Scott Michel7ea02ff2009-03-17 01:15:45 +0000339 //! Emit the necessary sequence for loading i64 constants:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000340 SDNode *SelectI64Constant(SDNode *N, EVT OpVT, DebugLoc dl);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000341
342 //! Alternate instruction emit sequence for loading i64 constants
Owen Andersone50ed302009-08-10 22:56:29 +0000343 SDNode *SelectI64Constant(uint64_t i64const, EVT OpVT, DebugLoc dl);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000344
345 //! Returns true if the address N is an A-form (local store) address
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000346 bool SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000347 SDValue &Index);
348
349 //! D-form address predicate
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000350 bool SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000351 SDValue &Index);
352
353 /// Alternate D-form address using i7 offset predicate
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000354 bool SelectDForm2Addr(SDNode *Op, SDValue N, SDValue &Disp,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000355 SDValue &Base);
356
357 /// D-form address selection workhorse
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000358 bool DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Disp,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000359 SDValue &Base, int minOffset, int maxOffset);
360
361 //! Address predicate if N can be expressed as an indexed [r+r] operation.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000362 bool SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000363 SDValue &Index);
364
365 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
366 /// inline asm expressions.
367 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
368 char ConstraintCode,
369 std::vector<SDValue> &OutOps) {
370 SDValue Op0, Op1;
371 switch (ConstraintCode) {
372 default: return true;
373 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000374 if (!SelectDFormAddr(Op.getNode(), Op, Op0, Op1)
375 && !SelectAFormAddr(Op.getNode(), Op, Op0, Op1))
376 SelectXFormAddr(Op.getNode(), Op, Op0, Op1);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000377 break;
378 case 'o': // offsetable
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000379 if (!SelectDFormAddr(Op.getNode(), Op, Op0, Op1)
380 && !SelectAFormAddr(Op.getNode(), Op, Op0, Op1)) {
Scott Michel7ea02ff2009-03-17 01:15:45 +0000381 Op0 = Op;
382 Op1 = getSmallIPtrImm(0);
383 }
384 break;
385 case 'v': // not offsetable
386#if 1
Torok Edwinc23197a2009-07-14 16:55:14 +0000387 llvm_unreachable("InlineAsmMemoryOperand 'v' constraint not handled.");
Scott Michel7ea02ff2009-03-17 01:15:45 +0000388#else
389 SelectAddrIdxOnly(Op, Op, Op0, Op1);
390#endif
391 break;
392 }
393
394 OutOps.push_back(Op0);
395 OutOps.push_back(Op1);
396 return false;
397 }
398
Scott Michel7ea02ff2009-03-17 01:15:45 +0000399 virtual const char *getPassName() const {
400 return "Cell SPU DAG->DAG Pattern Instruction Selection";
401 }
402
403 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
404 /// this target when scheduling the DAG.
405 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
406 const TargetInstrInfo *II = TM.getInstrInfo();
407 assert(II && "No InstrInfo?");
408 return new SPUHazardRecognizer(*II);
409 }
410
411 // Include the pieces autogenerated from the target description.
Scott Michel266bc8f2007-12-04 22:23:35 +0000412#include "SPUGenDAGISel.inc"
Scott Michel7ea02ff2009-03-17 01:15:45 +0000413 };
Dan Gohman844731a2008-05-13 00:00:25 +0000414}
415
Scott Michel266bc8f2007-12-04 22:23:35 +0000416/*!
Scott Michel9de57a92009-01-26 22:33:37 +0000417 \arg Op The ISD instruction operand
Scott Michel266bc8f2007-12-04 22:23:35 +0000418 \arg N The address to be tested
419 \arg Base The base address
420 \arg Index The base address index
421 */
422bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000423SPUDAGToDAGISel::SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000424 SDValue &Index) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000425 // These match the addr256k operand type:
Owen Anderson825b72b2009-08-11 20:47:22 +0000426 EVT OffsVT = MVT::i16;
Dan Gohman475871a2008-07-27 21:46:04 +0000427 SDValue Zero = CurDAG->getTargetConstant(0, OffsVT);
Scott Michel266bc8f2007-12-04 22:23:35 +0000428
429 switch (N.getOpcode()) {
430 case ISD::Constant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000431 case ISD::ConstantPool:
432 case ISD::GlobalAddress:
Chris Lattner75361b62010-04-07 22:58:41 +0000433 report_fatal_error("SPU SelectAFormAddr: Constant/Pool/Global not lowered.");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000434 /*NOTREACHED*/
435
Scott Michel053c1da2008-01-29 02:16:57 +0000436 case ISD::TargetConstant:
Scott Michel9de5d0d2008-01-11 02:53:15 +0000437 case ISD::TargetGlobalAddress:
Scott Michel053c1da2008-01-29 02:16:57 +0000438 case ISD::TargetJumpTable:
Chris Lattner75361b62010-04-07 22:58:41 +0000439 report_fatal_error("SPUSelectAFormAddr: Target Constant/Pool/Global "
Torok Edwindac237e2009-07-08 20:53:28 +0000440 "not wrapped as A-form address.");
Scott Michel053c1da2008-01-29 02:16:57 +0000441 /*NOTREACHED*/
Scott Michel266bc8f2007-12-04 22:23:35 +0000442
Scott Michel02d711b2008-12-30 23:28:25 +0000443 case SPUISD::AFormAddr:
Scott Michel053c1da2008-01-29 02:16:57 +0000444 // Just load from memory if there's only a single use of the location,
445 // otherwise, this will get handled below with D-form offset addresses
446 if (N.hasOneUse()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000447 SDValue Op0 = N.getOperand(0);
Scott Michel053c1da2008-01-29 02:16:57 +0000448 switch (Op0.getOpcode()) {
449 case ISD::TargetConstantPool:
450 case ISD::TargetJumpTable:
451 Base = Op0;
452 Index = Zero;
453 return true;
454
455 case ISD::TargetGlobalAddress: {
456 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op0);
457 GlobalValue *GV = GSDN->getGlobal();
458 if (GV->getAlignment() == 16) {
459 Base = Op0;
460 Index = Zero;
461 return true;
462 }
463 break;
464 }
465 }
466 }
467 break;
468 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000469 return false;
470}
471
Scott Michel02d711b2008-12-30 23:28:25 +0000472bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000473SPUDAGToDAGISel::SelectDForm2Addr(SDNode *Op, SDValue N, SDValue &Disp,
Dan Gohman475871a2008-07-27 21:46:04 +0000474 SDValue &Base) {
Scott Michel203b2d62008-04-30 00:30:08 +0000475 const int minDForm2Offset = -(1 << 7);
476 const int maxDForm2Offset = (1 << 7) - 1;
477 return DFormAddressPredicate(Op, N, Disp, Base, minDForm2Offset,
478 maxDForm2Offset);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000479}
480
Scott Michel266bc8f2007-12-04 22:23:35 +0000481/*!
482 \arg Op The ISD instruction (ignored)
483 \arg N The address to be tested
484 \arg Base Base address register/pointer
485 \arg Index Base address index
486
487 Examine the input address by a base register plus a signed 10-bit
488 displacement, [r+I10] (D-form address).
489
490 \return true if \a N is a D-form address with \a Base and \a Index set
Dan Gohman475871a2008-07-27 21:46:04 +0000491 to non-empty SDValue instances.
Scott Michel266bc8f2007-12-04 22:23:35 +0000492*/
493bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000494SPUDAGToDAGISel::SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000495 SDValue &Index) {
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000496 return DFormAddressPredicate(Op, N, Base, Index,
Scott Michel9c0c6b22008-11-21 02:56:16 +0000497 SPUFrameInfo::minFrameOffset(),
498 SPUFrameInfo::maxFrameOffset());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000499}
500
501bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000502SPUDAGToDAGISel::DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000503 SDValue &Index, int minOffset,
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000504 int maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000505 unsigned Opc = N.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +0000506 EVT PtrTy = SPUtli.getPointerTy();
Scott Michel266bc8f2007-12-04 22:23:35 +0000507
Scott Michel053c1da2008-01-29 02:16:57 +0000508 if (Opc == ISD::FrameIndex) {
509 // Stack frame index must be less than 512 (divided by 16):
Scott Michel203b2d62008-04-30 00:30:08 +0000510 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(N);
511 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000512 DEBUG(errs() << "SelectDFormAddr: ISD::FrameIndex = "
Scott Michel203b2d62008-04-30 00:30:08 +0000513 << FI << "\n");
514 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000515 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000516 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel266bc8f2007-12-04 22:23:35 +0000517 return true;
518 }
519 } else if (Opc == ISD::ADD) {
520 // Generated by getelementptr
Dan Gohman475871a2008-07-27 21:46:04 +0000521 const SDValue Op0 = N.getOperand(0);
522 const SDValue Op1 = N.getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000523
Scott Michel053c1da2008-01-29 02:16:57 +0000524 if ((Op0.getOpcode() == SPUISD::Hi && Op1.getOpcode() == SPUISD::Lo)
525 || (Op1.getOpcode() == SPUISD::Hi && Op0.getOpcode() == SPUISD::Lo)) {
526 Base = CurDAG->getTargetConstant(0, PtrTy);
527 Index = N;
528 return true;
529 } else if (Op1.getOpcode() == ISD::Constant
530 || Op1.getOpcode() == ISD::TargetConstant) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000531 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000532 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel9de5d0d2008-01-11 02:53:15 +0000533
Scott Michel053c1da2008-01-29 02:16:57 +0000534 if (Op0.getOpcode() == ISD::FrameIndex) {
Scott Michel203b2d62008-04-30 00:30:08 +0000535 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op0);
536 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000537 DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000538 << " frame index = " << FI << "\n");
Scott Michel9de5d0d2008-01-11 02:53:15 +0000539
Scott Michel203b2d62008-04-30 00:30:08 +0000540 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000541 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000542 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000543 return true;
544 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000545 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel9de5d0d2008-01-11 02:53:15 +0000546 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000547 Index = Op0;
548 return true;
549 }
550 } else if (Op0.getOpcode() == ISD::Constant
551 || Op0.getOpcode() == ISD::TargetConstant) {
552 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000553 int32_t offset = int32_t(CN->getSExtValue());
Scott Michel053c1da2008-01-29 02:16:57 +0000554
555 if (Op1.getOpcode() == ISD::FrameIndex) {
Scott Michel203b2d62008-04-30 00:30:08 +0000556 FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op1);
557 int FI = int(FIN->getIndex());
Chris Lattner4437ae22009-08-23 07:05:07 +0000558 DEBUG(errs() << "SelectDFormAddr: ISD::ADD offset = " << offset
Scott Michel203b2d62008-04-30 00:30:08 +0000559 << " frame index = " << FI << "\n");
Scott Michel053c1da2008-01-29 02:16:57 +0000560
Scott Michel203b2d62008-04-30 00:30:08 +0000561 if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000562 Base = CurDAG->getTargetConstant(offset, PtrTy);
Scott Michel203b2d62008-04-30 00:30:08 +0000563 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
Scott Michel9de5d0d2008-01-11 02:53:15 +0000564 return true;
565 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000566 } else if (offset > minOffset && offset < maxOffset) {
Scott Michel053c1da2008-01-29 02:16:57 +0000567 Base = CurDAG->getTargetConstant(offset, PtrTy);
568 Index = Op1;
569 return true;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000570 }
Scott Michel053c1da2008-01-29 02:16:57 +0000571 }
572 } else if (Opc == SPUISD::IndirectAddr) {
573 // Indirect with constant offset -> D-Form address
Dan Gohman475871a2008-07-27 21:46:04 +0000574 const SDValue Op0 = N.getOperand(0);
575 const SDValue Op1 = N.getOperand(1);
Scott Michel497e8882008-01-11 21:01:19 +0000576
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000577 if (Op0.getOpcode() == SPUISD::Hi
578 && Op1.getOpcode() == SPUISD::Lo) {
Scott Michel053c1da2008-01-29 02:16:57 +0000579 // (SPUindirect (SPUhi <arg>, 0), (SPUlo <arg>, 0))
Scott Michel9de5d0d2008-01-11 02:53:15 +0000580 Base = CurDAG->getTargetConstant(0, PtrTy);
Scott Michel053c1da2008-01-29 02:16:57 +0000581 Index = N;
Scott Michel9de5d0d2008-01-11 02:53:15 +0000582 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000583 } else if (isa<ConstantSDNode>(Op0) || isa<ConstantSDNode>(Op1)) {
584 int32_t offset = 0;
Dan Gohman475871a2008-07-27 21:46:04 +0000585 SDValue idxOp;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000586
587 if (isa<ConstantSDNode>(Op1)) {
588 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000589 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000590 idxOp = Op0;
591 } else if (isa<ConstantSDNode>(Op0)) {
592 ConstantSDNode *CN = cast<ConstantSDNode>(Op0);
Dan Gohman7810bfe2008-09-26 21:54:37 +0000593 offset = int32_t(CN->getSExtValue());
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000594 idxOp = Op1;
Scott Michel02d711b2008-12-30 23:28:25 +0000595 }
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000596
597 if (offset >= minOffset && offset <= maxOffset) {
598 Base = CurDAG->getTargetConstant(offset, PtrTy);
599 Index = idxOp;
600 return true;
601 }
Scott Michel9de5d0d2008-01-11 02:53:15 +0000602 }
Scott Michel053c1da2008-01-29 02:16:57 +0000603 } else if (Opc == SPUISD::AFormAddr) {
604 Base = CurDAG->getTargetConstant(0, N.getValueType());
605 Index = N;
Scott Michel58c58182008-01-17 20:38:41 +0000606 return true;
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000607 } else if (Opc == SPUISD::LDRESULT) {
608 Base = CurDAG->getTargetConstant(0, N.getValueType());
609 Index = N;
610 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000611 } else if (Opc == ISD::Register || Opc == ISD::CopyFromReg) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000612 unsigned OpOpc = Op->getOpcode();
Scott Michel9c0c6b22008-11-21 02:56:16 +0000613
614 if (OpOpc == ISD::STORE || OpOpc == ISD::LOAD) {
615 // Direct load/store without getelementptr
616 SDValue Addr, Offs;
617
618 // Get the register from CopyFromReg
619 if (Opc == ISD::CopyFromReg)
620 Addr = N.getOperand(1);
621 else
622 Addr = N; // Register
623
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000624 Offs = ((OpOpc == ISD::STORE) ? Op->getOperand(3) : Op->getOperand(2));
Scott Michel9c0c6b22008-11-21 02:56:16 +0000625
626 if (Offs.getOpcode() == ISD::Constant || Offs.getOpcode() == ISD::UNDEF) {
627 if (Offs.getOpcode() == ISD::UNDEF)
628 Offs = CurDAG->getTargetConstant(0, Offs.getValueType());
629
630 Base = Offs;
631 Index = Addr;
632 return true;
633 }
Scott Michelaedc6372008-12-10 00:15:19 +0000634 } else {
635 /* If otherwise unadorned, default to D-form address with 0 offset: */
636 if (Opc == ISD::CopyFromReg) {
Scott Michel19c10e62009-01-26 03:37:41 +0000637 Index = N.getOperand(1);
Scott Michelaedc6372008-12-10 00:15:19 +0000638 } else {
Scott Michel19c10e62009-01-26 03:37:41 +0000639 Index = N;
Scott Michelaedc6372008-12-10 00:15:19 +0000640 }
641
642 Base = CurDAG->getTargetConstant(0, Index.getValueType());
643 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000644 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000645 }
Scott Michel9c0c6b22008-11-21 02:56:16 +0000646
Scott Michel266bc8f2007-12-04 22:23:35 +0000647 return false;
648}
649
650/*!
651 \arg Op The ISD instruction operand
652 \arg N The address operand
653 \arg Base The base pointer operand
654 \arg Index The offset/index operand
655
Scott Michel9c0c6b22008-11-21 02:56:16 +0000656 If the address \a N can be expressed as an A-form or D-form address, returns
657 false. Otherwise, creates two operands, Base and Index that will become the
658 (r)(r) X-form address.
Scott Michel266bc8f2007-12-04 22:23:35 +0000659*/
660bool
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000661SPUDAGToDAGISel::SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000662 SDValue &Index) {
Scott Michel9c0c6b22008-11-21 02:56:16 +0000663 if (!SelectAFormAddr(Op, N, Base, Index)
664 && !SelectDFormAddr(Op, N, Base, Index)) {
Scott Michel18fae692008-11-25 17:29:43 +0000665 // If the address is neither A-form or D-form, punt and use an X-form
666 // address:
Scott Michel1a6cdb62008-12-01 17:56:02 +0000667 Base = N.getOperand(1);
668 Index = N.getOperand(0);
Scott Michel50843c02008-11-25 04:03:47 +0000669 return true;
Scott Michel9c0c6b22008-11-21 02:56:16 +0000670 }
671
672 return false;
Scott Michel58c58182008-01-17 20:38:41 +0000673}
674
Scott Michel266bc8f2007-12-04 22:23:35 +0000675//! Convert the operand from a target-independent to a target-specific node
676/*!
677 */
678SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000679SPUDAGToDAGISel::Select(SDNode *N) {
Scott Michel266bc8f2007-12-04 22:23:35 +0000680 unsigned Opc = N->getOpcode();
Scott Michel58c58182008-01-17 20:38:41 +0000681 int n_ops = -1;
682 unsigned NewOpc;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000683 EVT OpVT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000684 SDValue Ops[8];
Dale Johannesened2eee62009-02-06 01:31:28 +0000685 DebugLoc dl = N->getDebugLoc();
Scott Michel266bc8f2007-12-04 22:23:35 +0000686
Chris Lattnera8e76142010-02-23 05:30:43 +0000687 if (N->isMachineOpcode())
Scott Michel266bc8f2007-12-04 22:23:35 +0000688 return NULL; // Already selected.
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000689
690 if (Opc == ISD::FrameIndex) {
Scott Michel02d711b2008-12-30 23:28:25 +0000691 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000692 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
693 SDValue Imm0 = CurDAG->getTargetConstant(0, N->getValueType(0));
Scott Michel266bc8f2007-12-04 22:23:35 +0000694
Scott Michel02d711b2008-12-30 23:28:25 +0000695 if (FI < 128) {
Scott Michel203b2d62008-04-30 00:30:08 +0000696 NewOpc = SPU::AIr32;
Scott Michel02d711b2008-12-30 23:28:25 +0000697 Ops[0] = TFI;
698 Ops[1] = Imm0;
Scott Michel203b2d62008-04-30 00:30:08 +0000699 n_ops = 2;
700 } else {
Scott Michel203b2d62008-04-30 00:30:08 +0000701 NewOpc = SPU::Ar32;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000702 Ops[0] = CurDAG->getRegister(SPU::R1, N->getValueType(0));
Dan Gohman602b0c82009-09-25 18:54:59 +0000703 Ops[1] = SDValue(CurDAG->getMachineNode(SPU::ILAr32, dl,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000704 N->getValueType(0), TFI, Imm0),
Dan Gohman602b0c82009-09-25 18:54:59 +0000705 0);
Scott Michel203b2d62008-04-30 00:30:08 +0000706 n_ops = 2;
Scott Michel203b2d62008-04-30 00:30:08 +0000707 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000708 } else if (Opc == ISD::Constant && OpVT == MVT::i64) {
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000709 // Catch the i64 constants that end up here. Note: The backend doesn't
710 // attempt to legalize the constant (it's useless because DAGCombiner
711 // will insert 64-bit constants and we can't stop it).
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000712 return SelectI64Constant(N, OpVT, N->getDebugLoc());
Scott Michel94bd57e2009-01-15 04:41:47 +0000713 } else if ((Opc == ISD::ZERO_EXTEND || Opc == ISD::ANY_EXTEND)
Owen Anderson825b72b2009-08-11 20:47:22 +0000714 && OpVT == MVT::i64) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000715 SDValue Op0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000716 EVT Op0VT = Op0.getValueType();
Owen Anderson23b9b192009-08-12 00:36:31 +0000717 EVT Op0VecVT = EVT::getVectorVT(*CurDAG->getContext(),
718 Op0VT, (128 / Op0VT.getSizeInBits()));
719 EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(),
720 OpVT, (128 / OpVT.getSizeInBits()));
Scott Michel94bd57e2009-01-15 04:41:47 +0000721 SDValue shufMask;
Scott Michel58c58182008-01-17 20:38:41 +0000722
Owen Anderson825b72b2009-08-11 20:47:22 +0000723 switch (Op0VT.getSimpleVT().SimpleTy) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000724 default:
Chris Lattner75361b62010-04-07 22:58:41 +0000725 report_fatal_error("CellSPU Select: Unhandled zero/any extend EVT");
Scott Michel94bd57e2009-01-15 04:41:47 +0000726 /*NOTREACHED*/
Owen Anderson825b72b2009-08-11 20:47:22 +0000727 case MVT::i32:
728 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
729 CurDAG->getConstant(0x80808080, MVT::i32),
730 CurDAG->getConstant(0x00010203, MVT::i32),
731 CurDAG->getConstant(0x80808080, MVT::i32),
732 CurDAG->getConstant(0x08090a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000733 break;
734
Owen Anderson825b72b2009-08-11 20:47:22 +0000735 case MVT::i16:
736 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
737 CurDAG->getConstant(0x80808080, MVT::i32),
738 CurDAG->getConstant(0x80800203, MVT::i32),
739 CurDAG->getConstant(0x80808080, MVT::i32),
740 CurDAG->getConstant(0x80800a0b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000741 break;
742
Owen Anderson825b72b2009-08-11 20:47:22 +0000743 case MVT::i8:
744 shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
745 CurDAG->getConstant(0x80808080, MVT::i32),
746 CurDAG->getConstant(0x80808003, MVT::i32),
747 CurDAG->getConstant(0x80808080, MVT::i32),
748 CurDAG->getConstant(0x8080800b, MVT::i32));
Scott Michel94bd57e2009-01-15 04:41:47 +0000749 break;
Scott Michel58c58182008-01-17 20:38:41 +0000750 }
Scott Michel94bd57e2009-01-15 04:41:47 +0000751
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000752 SDNode *shufMaskLoad = emitBuildVector(shufMask.getNode());
Chris Lattnera8e76142010-02-23 05:30:43 +0000753
754 HandleSDNode PromoteScalar(CurDAG->getNode(SPUISD::PREFSLOT2VEC, dl,
755 Op0VecVT, Op0));
756
757 SDValue PromScalar;
758 if (SDNode *N = SelectCode(PromoteScalar.getValue().getNode()))
759 PromScalar = SDValue(N, 0);
760 else
761 PromScalar = PromoteScalar.getValue();
762
Scott Michel94bd57e2009-01-15 04:41:47 +0000763 SDValue zextShuffle =
Dale Johannesened2eee62009-02-06 01:31:28 +0000764 CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Chris Lattnera8e76142010-02-23 05:30:43 +0000765 PromScalar, PromScalar,
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000766 SDValue(shufMaskLoad, 0));
Scott Michel94bd57e2009-01-15 04:41:47 +0000767
Chris Lattnera8e76142010-02-23 05:30:43 +0000768 HandleSDNode Dummy2(zextShuffle);
769 if (SDNode *N = SelectCode(Dummy2.getValue().getNode()))
770 zextShuffle = SDValue(N, 0);
771 else
772 zextShuffle = Dummy2.getValue();
773 HandleSDNode Dummy(CurDAG->getNode(SPUISD::VEC2PREFSLOT, dl, OpVT,
774 zextShuffle));
775
776 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
777 SelectCode(Dummy.getValue().getNode());
778 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000779 } else if (Opc == ISD::ADD && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000780 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000781 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000782
Chris Lattnera8e76142010-02-23 05:30:43 +0000783 HandleSDNode Dummy(CurDAG->getNode(SPUISD::ADD64_MARKER, dl, OpVT,
784 N->getOperand(0), N->getOperand(1),
785 SDValue(CGLoad, 0)));
786
787 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
788 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
789 return N;
790 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000791 } else if (Opc == ISD::SUB && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000792 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000793 emitBuildVector(getBorrowGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000794
Chris Lattnera8e76142010-02-23 05:30:43 +0000795 HandleSDNode Dummy(CurDAG->getNode(SPUISD::SUB64_MARKER, dl, OpVT,
796 N->getOperand(0), N->getOperand(1),
797 SDValue(CGLoad, 0)));
798
799 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
800 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
801 return N;
802 return Dummy.getValue().getNode();
Owen Anderson825b72b2009-08-11 20:47:22 +0000803 } else if (Opc == ISD::MUL && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
Scott Michel94bd57e2009-01-15 04:41:47 +0000804 SDNode *CGLoad =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000805 emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl).getNode());
Scott Michel94bd57e2009-01-15 04:41:47 +0000806
Chris Lattnera8e76142010-02-23 05:30:43 +0000807 HandleSDNode Dummy(CurDAG->getNode(SPUISD::MUL64_MARKER, dl, OpVT,
808 N->getOperand(0), N->getOperand(1),
809 SDValue(CGLoad, 0)));
810 CurDAG->ReplaceAllUsesWith(N, Dummy.getValue().getNode());
811 if (SDNode *N = SelectCode(Dummy.getValue().getNode()))
812 return N;
813 return Dummy.getValue().getNode();
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000814 } else if (Opc == ISD::TRUNCATE) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000815 SDValue Op0 = N->getOperand(0);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000816 if ((Op0.getOpcode() == ISD::SRA || Op0.getOpcode() == ISD::SRL)
Owen Anderson825b72b2009-08-11 20:47:22 +0000817 && OpVT == MVT::i32
818 && Op0.getValueType() == MVT::i64) {
Scott Michel9de57a92009-01-26 22:33:37 +0000819 // Catch (truncate:i32 ([sra|srl]:i64 arg, c), where c >= 32
820 //
821 // Take advantage of the fact that the upper 32 bits are in the
822 // i32 preferred slot and avoid shuffle gymnastics:
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000823 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
824 if (CN != 0) {
825 unsigned shift_amt = unsigned(CN->getZExtValue());
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000826
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000827 if (shift_amt >= 32) {
828 SDNode *hi32 =
Dan Gohman602b0c82009-09-25 18:54:59 +0000829 CurDAG->getMachineNode(SPU::ORr32_r64, dl, OpVT,
830 Op0.getOperand(0));
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000831
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000832 shift_amt -= 32;
833 if (shift_amt > 0) {
834 // Take care of the additional shift, if present:
Owen Anderson825b72b2009-08-11 20:47:22 +0000835 SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000836 unsigned Opc = SPU::ROTMAIr32_i32;
Scott Michel9de57a92009-01-26 22:33:37 +0000837
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000838 if (Op0.getOpcode() == ISD::SRL)
839 Opc = SPU::ROTMr32;
Scott Micheld1e8d9c2009-01-21 04:58:48 +0000840
Dan Gohman602b0c82009-09-25 18:54:59 +0000841 hi32 = CurDAG->getMachineNode(Opc, dl, OpVT, SDValue(hi32, 0),
842 shift);
Scott Michelc9c8b2a2009-01-26 03:31:40 +0000843 }
844
845 return hi32;
846 }
847 }
848 }
Scott Michel02d711b2008-12-30 23:28:25 +0000849 } else if (Opc == ISD::SHL) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000850 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000851 return SelectSHLi64(N, OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000852 } else if (Opc == ISD::SRL) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000853 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000854 return SelectSRLi64(N, OpVT);
Scott Michel02d711b2008-12-30 23:28:25 +0000855 } else if (Opc == ISD::SRA) {
Chris Lattnera8e76142010-02-23 05:30:43 +0000856 if (OpVT == MVT::i64)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000857 return SelectSRAi64(N, OpVT);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000858 } else if (Opc == ISD::FNEG
Owen Anderson825b72b2009-08-11 20:47:22 +0000859 && (OpVT == MVT::f64 || OpVT == MVT::v2f64)) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000860 DebugLoc dl = N->getDebugLoc();
Scott Michel7ea02ff2009-03-17 01:15:45 +0000861 // Check if the pattern is a special form of DFNMS:
862 // (fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC))
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000863 SDValue Op0 = N->getOperand(0);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000864 if (Op0.getOpcode() == ISD::FSUB) {
865 SDValue Op00 = Op0.getOperand(0);
866 if (Op00.getOpcode() == ISD::FMUL) {
867 unsigned Opc = SPU::DFNMSf64;
Owen Anderson825b72b2009-08-11 20:47:22 +0000868 if (OpVT == MVT::v2f64)
Scott Michel7ea02ff2009-03-17 01:15:45 +0000869 Opc = SPU::DFNMSv2f64;
870
Dan Gohman602b0c82009-09-25 18:54:59 +0000871 return CurDAG->getMachineNode(Opc, dl, OpVT,
872 Op00.getOperand(0),
873 Op00.getOperand(1),
874 Op0.getOperand(1));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000875 }
876 }
877
Owen Anderson825b72b2009-08-11 20:47:22 +0000878 SDValue negConst = CurDAG->getConstant(0x8000000000000000ULL, MVT::i64);
Scott Michel7ea02ff2009-03-17 01:15:45 +0000879 SDNode *signMask = 0;
Scott Michela82d3f72009-03-17 16:45:16 +0000880 unsigned Opc = SPU::XORfneg64;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000881
Owen Anderson825b72b2009-08-11 20:47:22 +0000882 if (OpVT == MVT::f64) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000883 signMask = SelectI64Constant(negConst.getNode(), MVT::i64, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +0000884 } else if (OpVT == MVT::v2f64) {
Scott Michela82d3f72009-03-17 16:45:16 +0000885 Opc = SPU::XORfnegvec;
Scott Michel7ea02ff2009-03-17 01:15:45 +0000886 signMask = emitBuildVector(CurDAG->getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +0000887 MVT::v2i64,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000888 negConst, negConst).getNode());
Scott Michel7ea02ff2009-03-17 01:15:45 +0000889 }
890
Dan Gohman602b0c82009-09-25 18:54:59 +0000891 return CurDAG->getMachineNode(Opc, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000892 N->getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000893 } else if (Opc == ISD::FABS) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000894 if (OpVT == MVT::f64) {
895 SDNode *signMask = SelectI64Constant(0x7fffffffffffffffULL, MVT::i64, dl);
Dan Gohman602b0c82009-09-25 18:54:59 +0000896 return CurDAG->getMachineNode(SPU::ANDfabs64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000897 N->getOperand(0), SDValue(signMask, 0));
Owen Anderson825b72b2009-08-11 20:47:22 +0000898 } else if (OpVT == MVT::v2f64) {
899 SDValue absConst = CurDAG->getConstant(0x7fffffffffffffffULL, MVT::i64);
900 SDValue absVec = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64,
Scott Michel7ea02ff2009-03-17 01:15:45 +0000901 absConst, absConst);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000902 SDNode *signMask = emitBuildVector(absVec.getNode());
Dan Gohman602b0c82009-09-25 18:54:59 +0000903 return CurDAG->getMachineNode(SPU::ANDfabsvec, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000904 N->getOperand(0), SDValue(signMask, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +0000905 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000906 } else if (Opc == SPUISD::LDRESULT) {
907 // Custom select instructions for LDRESULT
Owen Andersone50ed302009-08-10 22:56:29 +0000908 EVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000909 SDValue Arg = N->getOperand(0);
910 SDValue Chain = N->getOperand(1);
Scott Michel266bc8f2007-12-04 22:23:35 +0000911 SDNode *Result;
Scott Michela59d4692008-02-23 18:41:37 +0000912 const valtype_map_s *vtm = getValueTypeMapEntry(VT);
913
914 if (vtm->ldresult_ins == 0) {
Benjamin Kramer1bd73352010-04-08 10:44:28 +0000915 report_fatal_error("LDRESULT for unsupported type: " +
916 Twine(VT.getEVTString()));
Scott Michela59d4692008-02-23 18:41:37 +0000917 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000918
Scott Michela59d4692008-02-23 18:41:37 +0000919 Opc = vtm->ldresult_ins;
920 if (vtm->ldresult_imm) {
Dan Gohman475871a2008-07-27 21:46:04 +0000921 SDValue Zero = CurDAG->getTargetConstant(0, VT);
Scott Michel86c041f2007-12-20 00:44:13 +0000922
Dan Gohman602b0c82009-09-25 18:54:59 +0000923 Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Zero, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000924 } else {
Dan Gohman602b0c82009-09-25 18:54:59 +0000925 Result = CurDAG->getMachineNode(Opc, dl, VT, MVT::Other, Arg, Arg, Chain);
Scott Michel86c041f2007-12-20 00:44:13 +0000926 }
927
Scott Michel266bc8f2007-12-04 22:23:35 +0000928 return Result;
Scott Michel053c1da2008-01-29 02:16:57 +0000929 } else if (Opc == SPUISD::IndirectAddr) {
Scott Michelf0569be2008-12-27 04:51:36 +0000930 // Look at the operands: SelectCode() will catch the cases that aren't
931 // specifically handled here.
932 //
933 // SPUInstrInfo catches the following patterns:
934 // (SPUindirect (SPUhi ...), (SPUlo ...))
935 // (SPUindirect $sp, imm)
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000936 EVT VT = N->getValueType(0);
Scott Michelf0569be2008-12-27 04:51:36 +0000937 SDValue Op0 = N->getOperand(0);
938 SDValue Op1 = N->getOperand(1);
939 RegisterSDNode *RN;
Scott Michel58c58182008-01-17 20:38:41 +0000940
Scott Michelf0569be2008-12-27 04:51:36 +0000941 if ((Op0.getOpcode() != SPUISD::Hi && Op1.getOpcode() != SPUISD::Lo)
942 || (Op0.getOpcode() == ISD::Register
943 && ((RN = dyn_cast<RegisterSDNode>(Op0.getNode())) != 0
944 && RN->getReg() != SPU::R1))) {
945 NewOpc = SPU::Ar32;
Scott Michel58c58182008-01-17 20:38:41 +0000946 if (Op1.getOpcode() == ISD::Constant) {
947 ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
Scott Michelf0569be2008-12-27 04:51:36 +0000948 Op1 = CurDAG->getTargetConstant(CN->getSExtValue(), VT);
Scott Michel7f9ba9b2008-01-30 02:55:46 +0000949 NewOpc = (isI32IntS10Immediate(CN) ? SPU::AIr32 : SPU::Ar32);
Scott Michel58c58182008-01-17 20:38:41 +0000950 }
Scott Michelf0569be2008-12-27 04:51:36 +0000951 Ops[0] = Op0;
952 Ops[1] = Op1;
953 n_ops = 2;
Scott Michel58c58182008-01-17 20:38:41 +0000954 }
Scott Michel266bc8f2007-12-04 22:23:35 +0000955 }
Scott Michel02d711b2008-12-30 23:28:25 +0000956
Scott Michel58c58182008-01-17 20:38:41 +0000957 if (n_ops > 0) {
958 if (N->hasOneUse())
959 return CurDAG->SelectNodeTo(N, NewOpc, OpVT, Ops, n_ops);
960 else
Dan Gohman602b0c82009-09-25 18:54:59 +0000961 return CurDAG->getMachineNode(NewOpc, dl, OpVT, Ops, n_ops);
Scott Michel58c58182008-01-17 20:38:41 +0000962 } else
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000963 return SelectCode(N);
Scott Michel266bc8f2007-12-04 22:23:35 +0000964}
965
Scott Michel02d711b2008-12-30 23:28:25 +0000966/*!
967 * Emit the instruction sequence for i64 left shifts. The basic algorithm
968 * is to fill the bottom two word slots with zeros so that zeros are shifted
969 * in as the entire quadword is shifted left.
970 *
971 * \note This code could also be used to implement v2i64 shl.
972 *
973 * @param Op The shl operand
974 * @param OpVT Op's machine value value type (doesn't need to be passed, but
975 * makes life easier.)
976 * @return The SDNode with the entire instruction sequence
977 */
978SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000979SPUDAGToDAGISel::SelectSHLi64(SDNode *N, EVT OpVT) {
980 SDValue Op0 = N->getOperand(0);
Owen Anderson23b9b192009-08-12 00:36:31 +0000981 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
982 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000983 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +0000984 EVT ShiftAmtVT = ShiftAmt.getValueType();
Scott Michel02d711b2008-12-30 23:28:25 +0000985 SDNode *VecOp0, *SelMask, *ZeroFill, *Shift = 0;
986 SDValue SelMaskVal;
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000987 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +0000988
Dan Gohman602b0c82009-09-25 18:54:59 +0000989 VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000990 SelMaskVal = CurDAG->getTargetConstant(0xff00ULL, MVT::i16);
Dan Gohman602b0c82009-09-25 18:54:59 +0000991 SelMask = CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT, SelMaskVal);
992 ZeroFill = CurDAG->getMachineNode(SPU::ILv2i64, dl, VecVT,
993 CurDAG->getTargetConstant(0, OpVT));
994 VecOp0 = CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT,
995 SDValue(ZeroFill, 0),
996 SDValue(VecOp0, 0),
997 SDValue(SelMask, 0));
Scott Michel02d711b2008-12-30 23:28:25 +0000998
999 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1000 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1001 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1002
1003 if (bytes > 0) {
1004 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001005 CurDAG->getMachineNode(SPU::SHLQBYIv2i64, dl, VecVT,
1006 SDValue(VecOp0, 0),
1007 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001008 }
1009
1010 if (bits > 0) {
1011 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001012 CurDAG->getMachineNode(SPU::SHLQBIIv2i64, dl, VecVT,
1013 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1014 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001015 }
1016 } else {
1017 SDNode *Bytes =
Dan Gohman602b0c82009-09-25 18:54:59 +00001018 CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT,
1019 ShiftAmt,
1020 CurDAG->getTargetConstant(3, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001021 SDNode *Bits =
Dan Gohman602b0c82009-09-25 18:54:59 +00001022 CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT,
1023 ShiftAmt,
1024 CurDAG->getTargetConstant(7, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001025 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001026 CurDAG->getMachineNode(SPU::SHLQBYv2i64, dl, VecVT,
1027 SDValue(VecOp0, 0), SDValue(Bytes, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001028 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001029 CurDAG->getMachineNode(SPU::SHLQBIv2i64, dl, VecVT,
1030 SDValue(Shift, 0), SDValue(Bits, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001031 }
1032
Dan Gohman602b0c82009-09-25 18:54:59 +00001033 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001034}
1035
1036/*!
1037 * Emit the instruction sequence for i64 logical right shifts.
1038 *
1039 * @param Op The shl operand
1040 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1041 * makes life easier.)
1042 * @return The SDNode with the entire instruction sequence
1043 */
1044SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001045SPUDAGToDAGISel::SelectSRLi64(SDNode *N, EVT OpVT) {
1046 SDValue Op0 = N->getOperand(0);
Owen Anderson23b9b192009-08-12 00:36:31 +00001047 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
1048 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001049 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001050 EVT ShiftAmtVT = ShiftAmt.getValueType();
Scott Michel02d711b2008-12-30 23:28:25 +00001051 SDNode *VecOp0, *Shift = 0;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001052 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001053
Dan Gohman602b0c82009-09-25 18:54:59 +00001054 VecOp0 = CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
Scott Michel02d711b2008-12-30 23:28:25 +00001055
1056 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1057 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1058 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1059
1060 if (bytes > 0) {
1061 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001062 CurDAG->getMachineNode(SPU::ROTQMBYIv2i64, dl, VecVT,
1063 SDValue(VecOp0, 0),
1064 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001065 }
1066
1067 if (bits > 0) {
1068 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001069 CurDAG->getMachineNode(SPU::ROTQMBIIv2i64, dl, VecVT,
1070 SDValue((Shift != 0 ? Shift : VecOp0), 0),
1071 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001072 }
1073 } else {
1074 SDNode *Bytes =
Dan Gohman602b0c82009-09-25 18:54:59 +00001075 CurDAG->getMachineNode(SPU::ROTMIr32, dl, ShiftAmtVT,
1076 ShiftAmt,
1077 CurDAG->getTargetConstant(3, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001078 SDNode *Bits =
Dan Gohman602b0c82009-09-25 18:54:59 +00001079 CurDAG->getMachineNode(SPU::ANDIr32, dl, ShiftAmtVT,
1080 ShiftAmt,
1081 CurDAG->getTargetConstant(7, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001082
1083 // Ensure that the shift amounts are negated!
Dan Gohman602b0c82009-09-25 18:54:59 +00001084 Bytes = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1085 SDValue(Bytes, 0),
1086 CurDAG->getTargetConstant(0, ShiftAmtVT));
1087
1088 Bits = CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1089 SDValue(Bits, 0),
Scott Michel02d711b2008-12-30 23:28:25 +00001090 CurDAG->getTargetConstant(0, ShiftAmtVT));
1091
Scott Michel02d711b2008-12-30 23:28:25 +00001092 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001093 CurDAG->getMachineNode(SPU::ROTQMBYv2i64, dl, VecVT,
1094 SDValue(VecOp0, 0), SDValue(Bytes, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001095 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001096 CurDAG->getMachineNode(SPU::ROTQMBIv2i64, dl, VecVT,
1097 SDValue(Shift, 0), SDValue(Bits, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001098 }
1099
Dan Gohman602b0c82009-09-25 18:54:59 +00001100 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001101}
1102
1103/*!
1104 * Emit the instruction sequence for i64 arithmetic right shifts.
1105 *
1106 * @param Op The shl operand
1107 * @param OpVT Op's machine value value type (doesn't need to be passed, but
1108 * makes life easier.)
1109 * @return The SDNode with the entire instruction sequence
1110 */
1111SDNode *
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001112SPUDAGToDAGISel::SelectSRAi64(SDNode *N, EVT OpVT) {
Scott Michel02d711b2008-12-30 23:28:25 +00001113 // Promote Op0 to vector
Owen Anderson23b9b192009-08-12 00:36:31 +00001114 EVT VecVT = EVT::getVectorVT(*CurDAG->getContext(),
1115 OpVT, (128 / OpVT.getSizeInBits()));
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001116 SDValue ShiftAmt = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001117 EVT ShiftAmtVT = ShiftAmt.getValueType();
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001118 DebugLoc dl = N->getDebugLoc();
Scott Michel02d711b2008-12-30 23:28:25 +00001119
1120 SDNode *VecOp0 =
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001121 CurDAG->getMachineNode(SPU::ORv2i64_i64, dl, VecVT, N->getOperand(0));
Scott Michel02d711b2008-12-30 23:28:25 +00001122
1123 SDValue SignRotAmt = CurDAG->getTargetConstant(31, ShiftAmtVT);
1124 SDNode *SignRot =
Dan Gohman602b0c82009-09-25 18:54:59 +00001125 CurDAG->getMachineNode(SPU::ROTMAIv2i64_i32, dl, MVT::v2i64,
1126 SDValue(VecOp0, 0), SignRotAmt);
Scott Michel02d711b2008-12-30 23:28:25 +00001127 SDNode *UpperHalfSign =
Dan Gohman602b0c82009-09-25 18:54:59 +00001128 CurDAG->getMachineNode(SPU::ORi32_v4i32, dl, MVT::i32, SDValue(SignRot, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001129
1130 SDNode *UpperHalfSignMask =
Dan Gohman602b0c82009-09-25 18:54:59 +00001131 CurDAG->getMachineNode(SPU::FSM64r32, dl, VecVT, SDValue(UpperHalfSign, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001132 SDNode *UpperLowerMask =
Dan Gohman602b0c82009-09-25 18:54:59 +00001133 CurDAG->getMachineNode(SPU::FSMBIv2i64, dl, VecVT,
1134 CurDAG->getTargetConstant(0xff00ULL, MVT::i16));
Scott Michel02d711b2008-12-30 23:28:25 +00001135 SDNode *UpperLowerSelect =
Dan Gohman602b0c82009-09-25 18:54:59 +00001136 CurDAG->getMachineNode(SPU::SELBv2i64, dl, VecVT,
1137 SDValue(UpperHalfSignMask, 0),
1138 SDValue(VecOp0, 0),
1139 SDValue(UpperLowerMask, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001140
1141 SDNode *Shift = 0;
1142
1143 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
1144 unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
1145 unsigned bits = unsigned(CN->getZExtValue()) & 7;
1146
1147 if (bytes > 0) {
1148 bytes = 31 - bytes;
1149 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001150 CurDAG->getMachineNode(SPU::ROTQBYIv2i64, dl, VecVT,
1151 SDValue(UpperLowerSelect, 0),
1152 CurDAG->getTargetConstant(bytes, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001153 }
1154
1155 if (bits > 0) {
1156 bits = 8 - bits;
1157 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001158 CurDAG->getMachineNode(SPU::ROTQBIIv2i64, dl, VecVT,
1159 SDValue((Shift != 0 ? Shift : UpperLowerSelect), 0),
1160 CurDAG->getTargetConstant(bits, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001161 }
1162 } else {
1163 SDNode *NegShift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001164 CurDAG->getMachineNode(SPU::SFIr32, dl, ShiftAmtVT,
1165 ShiftAmt, CurDAG->getTargetConstant(0, ShiftAmtVT));
Scott Michel02d711b2008-12-30 23:28:25 +00001166
1167 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001168 CurDAG->getMachineNode(SPU::ROTQBYBIv2i64_r32, dl, VecVT,
1169 SDValue(UpperLowerSelect, 0), SDValue(NegShift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001170 Shift =
Dan Gohman602b0c82009-09-25 18:54:59 +00001171 CurDAG->getMachineNode(SPU::ROTQBIv2i64, dl, VecVT,
1172 SDValue(Shift, 0), SDValue(NegShift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001173 }
1174
Dan Gohman602b0c82009-09-25 18:54:59 +00001175 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
Scott Michel02d711b2008-12-30 23:28:25 +00001176}
1177
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001178/*!
1179 Do the necessary magic necessary to load a i64 constant
1180 */
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001181SDNode *SPUDAGToDAGISel::SelectI64Constant(SDNode *N, EVT OpVT,
Scott Michel7ea02ff2009-03-17 01:15:45 +00001182 DebugLoc dl) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001183 ConstantSDNode *CN = cast<ConstantSDNode>(N);
Scott Michel7ea02ff2009-03-17 01:15:45 +00001184 return SelectI64Constant(CN->getZExtValue(), OpVT, dl);
1185}
1186
Owen Andersone50ed302009-08-10 22:56:29 +00001187SDNode *SPUDAGToDAGISel::SelectI64Constant(uint64_t Value64, EVT OpVT,
Scott Michel7ea02ff2009-03-17 01:15:45 +00001188 DebugLoc dl) {
Owen Anderson23b9b192009-08-12 00:36:31 +00001189 EVT OpVecVT = EVT::getVectorVT(*CurDAG->getContext(), OpVT, 2);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001190 SDValue i64vec =
Scott Michel7ea02ff2009-03-17 01:15:45 +00001191 SPU::LowerV2I64Splat(OpVecVT, *CurDAG, Value64, dl);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001192
1193 // Here's where it gets interesting, because we have to parse out the
1194 // subtree handed back in i64vec:
1195
1196 if (i64vec.getOpcode() == ISD::BIT_CONVERT) {
1197 // The degenerate case where the upper and lower bits in the splat are
1198 // identical:
1199 SDValue Op0 = i64vec.getOperand(0);
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001200
Scott Michel9de57a92009-01-26 22:33:37 +00001201 ReplaceUses(i64vec, Op0);
Dan Gohman602b0c82009-09-25 18:54:59 +00001202 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001203 SDValue(emitBuildVector(Op0.getNode()), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001204 } else if (i64vec.getOpcode() == SPUISD::SHUFB) {
1205 SDValue lhs = i64vec.getOperand(0);
1206 SDValue rhs = i64vec.getOperand(1);
1207 SDValue shufmask = i64vec.getOperand(2);
1208
1209 if (lhs.getOpcode() == ISD::BIT_CONVERT) {
1210 ReplaceUses(lhs, lhs.getOperand(0));
1211 lhs = lhs.getOperand(0);
1212 }
1213
1214 SDNode *lhsNode = (lhs.getNode()->isMachineOpcode()
1215 ? lhs.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001216 : emitBuildVector(lhs.getNode()));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001217
1218 if (rhs.getOpcode() == ISD::BIT_CONVERT) {
1219 ReplaceUses(rhs, rhs.getOperand(0));
1220 rhs = rhs.getOperand(0);
1221 }
1222
1223 SDNode *rhsNode = (rhs.getNode()->isMachineOpcode()
1224 ? rhs.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001225 : emitBuildVector(rhs.getNode()));
Scott Michel9de57a92009-01-26 22:33:37 +00001226
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001227 if (shufmask.getOpcode() == ISD::BIT_CONVERT) {
1228 ReplaceUses(shufmask, shufmask.getOperand(0));
1229 shufmask = shufmask.getOperand(0);
1230 }
1231
1232 SDNode *shufMaskNode = (shufmask.getNode()->isMachineOpcode()
1233 ? shufmask.getNode()
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001234 : emitBuildVector(shufmask.getNode()));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001235
Chris Lattnera8e76142010-02-23 05:30:43 +00001236 SDValue shufNode =
1237 CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001238 SDValue(lhsNode, 0), SDValue(rhsNode, 0),
Chris Lattnera8e76142010-02-23 05:30:43 +00001239 SDValue(shufMaskNode, 0));
1240 HandleSDNode Dummy(shufNode);
1241 SDNode *SN = SelectCode(Dummy.getValue().getNode());
1242 if (SN == 0) SN = Dummy.getValue().getNode();
1243
1244 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(SN, 0));
Scott Michel7ea02ff2009-03-17 01:15:45 +00001245 } else if (i64vec.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman602b0c82009-09-25 18:54:59 +00001246 return CurDAG->getMachineNode(SPU::ORi64_v2i64, dl, OpVT,
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001247 SDValue(emitBuildVector(i64vec.getNode()), 0));
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001248 } else {
Chris Lattner75361b62010-04-07 22:58:41 +00001249 report_fatal_error("SPUDAGToDAGISel::SelectI64Constant: Unhandled i64vec"
Torok Edwindac237e2009-07-08 20:53:28 +00001250 "condition");
Scott Michelc9c8b2a2009-01-26 03:31:40 +00001251 }
1252}
1253
Scott Michel02d711b2008-12-30 23:28:25 +00001254/// createSPUISelDag - This pass converts a legalized DAG into a
Scott Michel266bc8f2007-12-04 22:23:35 +00001255/// SPU-specific DAG, ready for instruction scheduling.
1256///
1257FunctionPass *llvm::createSPUISelDag(SPUTargetMachine &TM) {
1258 return new SPUDAGToDAGISel(TM);
1259}