blob: d0aad070c2587b62d6c900c0e45c14b0d3218c91 [file] [log] [blame]
Scott Michel8efdca42007-12-04 22:23:35 +00001//
Scott Michel0d5eae02009-03-17 01:15:45 +00002//===-- SPUISelLowering.cpp - Cell SPU DAG Lowering Implementation --------===//
Scott Michel8efdca42007-12-04 22:23:35 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-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 Michel8efdca42007-12-04 22:23:35 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SPUTargetLowering class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SPURegisterNames.h"
15#include "SPUISelLowering.h"
16#include "SPUTargetMachine.h"
Scott Michelbc5fbc12008-04-30 00:30:08 +000017#include "SPUFrameInfo.h"
Scott Michel06eabde2008-12-27 04:51:36 +000018#include "llvm/ADT/APInt.h"
Scott Michel8efdca42007-12-04 22:23:35 +000019#include "llvm/ADT/VectorExtras.h"
pingbak2f387e82009-01-26 03:31:40 +000020#include "llvm/CallingConv.h"
Scott Michel8efdca42007-12-04 22:23:35 +000021#include "llvm/CodeGen/CallingConvLower.h"
22#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner1b989192007-12-31 04:13:23 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Scott Michel8efdca42007-12-04 22:23:35 +000026#include "llvm/CodeGen/SelectionDAG.h"
Scott Michel8efdca42007-12-04 22:23:35 +000027#include "llvm/Constants.h"
28#include "llvm/Function.h"
29#include "llvm/Intrinsics.h"
30#include "llvm/Support/Debug.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000031#include "llvm/Support/ErrorHandling.h"
Scott Michel8efdca42007-12-04 22:23:35 +000032#include "llvm/Support/MathExtras.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000033#include "llvm/Support/raw_ostream.h"
Scott Michel8efdca42007-12-04 22:23:35 +000034#include "llvm/Target/TargetOptions.h"
35
36#include <map>
37
38using namespace llvm;
39
40// Used in getTargetNodeName() below
41namespace {
42 std::map<unsigned, const char *> node_names;
43
Duncan Sands92c43912008-06-06 12:08:01 +000044 //! MVT mapping to useful data for Cell SPU
Scott Michel8efdca42007-12-04 22:23:35 +000045 struct valtype_map_s {
Scott Michel56a125e2008-11-22 23:50:42 +000046 const MVT valtype;
47 const int prefslot_byte;
Scott Michel8efdca42007-12-04 22:23:35 +000048 };
Scott Michel4ec722e2008-07-16 17:17:29 +000049
Scott Michel8efdca42007-12-04 22:23:35 +000050 const valtype_map_s valtype_map[] = {
51 { MVT::i1, 3 },
52 { MVT::i8, 3 },
53 { MVT::i16, 2 },
54 { MVT::i32, 0 },
55 { MVT::f32, 0 },
56 { MVT::i64, 0 },
57 { MVT::f64, 0 },
58 { MVT::i128, 0 }
59 };
60
61 const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]);
62
Duncan Sands92c43912008-06-06 12:08:01 +000063 const valtype_map_s *getValueTypeMapEntry(MVT VT) {
Scott Michel8efdca42007-12-04 22:23:35 +000064 const valtype_map_s *retval = 0;
65
66 for (size_t i = 0; i < n_valtype_map; ++i) {
67 if (valtype_map[i].valtype == VT) {
Scott Michel5a6f17b2008-01-30 02:55:46 +000068 retval = valtype_map + i;
69 break;
Scott Michel8efdca42007-12-04 22:23:35 +000070 }
71 }
72
73#ifndef NDEBUG
74 if (retval == 0) {
Edwin Török4d9756a2009-07-08 20:53:28 +000075 std::string msg;
76 raw_string_ostream Msg(msg);
77 Msg << "getValueTypeMapEntry returns NULL for "
78 << VT.getMVTString();
79 llvm_report_error(Msg.str());
Scott Michel8efdca42007-12-04 22:23:35 +000080 }
81#endif
82
83 return retval;
84 }
Scott Michel750b93f2009-01-15 04:41:47 +000085
pingbak2f387e82009-01-26 03:31:40 +000086 //! Expand a library call into an actual call DAG node
87 /*!
88 \note
89 This code is taken from SelectionDAGLegalize, since it is not exposed as
90 part of the LLVM SelectionDAG API.
91 */
92
93 SDValue
94 ExpandLibCall(RTLIB::Libcall LC, SDValue Op, SelectionDAG &DAG,
95 bool isSigned, SDValue &Hi, SPUTargetLowering &TLI) {
96 // The input chain to this libcall is the entry node of the function.
97 // Legalizing the call will automatically add the previous call to the
98 // dependence.
99 SDValue InChain = DAG.getEntryNode();
100
101 TargetLowering::ArgListTy Args;
102 TargetLowering::ArgListEntry Entry;
103 for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) {
104 MVT ArgVT = Op.getOperand(i).getValueType();
Owen Andersona0167022009-07-09 17:57:24 +0000105 const Type *ArgTy = ArgVT.getTypeForMVT(*DAG.getContext());
pingbak2f387e82009-01-26 03:31:40 +0000106 Entry.Node = Op.getOperand(i);
107 Entry.Ty = ArgTy;
108 Entry.isSExt = isSigned;
109 Entry.isZExt = !isSigned;
110 Args.push_back(Entry);
111 }
112 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
113 TLI.getPointerTy());
114
115 // Splice the libcall in wherever FindInputOutputChains tells us to.
Owen Andersona0167022009-07-09 17:57:24 +0000116 const Type *RetTy =
117 Op.getNode()->getValueType(0).getTypeForMVT(*DAG.getContext());
pingbak2f387e82009-01-26 03:31:40 +0000118 std::pair<SDValue, SDValue> CallInfo =
119 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Tilmann Scheller71c69732009-07-03 06:44:53 +0000120 0, CallingConv::C, false, Callee, Args, DAG,
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000121 Op.getDebugLoc());
pingbak2f387e82009-01-26 03:31:40 +0000122
123 return CallInfo.first;
124 }
Scott Michel8efdca42007-12-04 22:23:35 +0000125}
126
127SPUTargetLowering::SPUTargetLowering(SPUTargetMachine &TM)
128 : TargetLowering(TM),
129 SPUTM(TM)
130{
131 // Fold away setcc operations if possible.
132 setPow2DivIsCheap();
133
134 // Use _setjmp/_longjmp instead of setjmp/longjmp.
135 setUseUnderscoreSetJmp(true);
136 setUseUnderscoreLongJmp(true);
Scott Michel4ec722e2008-07-16 17:17:29 +0000137
Scott Michel8c67fa42009-01-21 04:58:48 +0000138 // Set RTLIB libcall names as used by SPU:
139 setLibcallName(RTLIB::DIV_F64, "__fast_divdf3");
140
Scott Michel8efdca42007-12-04 22:23:35 +0000141 // Set up the SPU's register classes:
Scott Michel438be252007-12-17 22:32:34 +0000142 addRegisterClass(MVT::i8, SPU::R8CRegisterClass);
143 addRegisterClass(MVT::i16, SPU::R16CRegisterClass);
144 addRegisterClass(MVT::i32, SPU::R32CRegisterClass);
145 addRegisterClass(MVT::i64, SPU::R64CRegisterClass);
146 addRegisterClass(MVT::f32, SPU::R32FPRegisterClass);
147 addRegisterClass(MVT::f64, SPU::R64FPRegisterClass);
Scott Michel8efdca42007-12-04 22:23:35 +0000148 addRegisterClass(MVT::i128, SPU::GPRCRegisterClass);
Scott Michel4ec722e2008-07-16 17:17:29 +0000149
Scott Michel8efdca42007-12-04 22:23:35 +0000150 // SPU has no sign or zero extended loads for i1, i8, i16:
Evan Cheng08c171a2008-10-14 21:26:46 +0000151 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
152 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
153 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
Scott Michel8efdca42007-12-04 22:23:35 +0000154
Scott Michel06eabde2008-12-27 04:51:36 +0000155 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
156 setLoadExtAction(ISD::EXTLOAD, MVT::f64, Expand);
Scott Michelec8c82e2008-12-02 19:53:53 +0000157
Eli Friedman9880b6b2009-07-17 06:36:24 +0000158 setTruncStoreAction(MVT::i128, MVT::i64, Expand);
159 setTruncStoreAction(MVT::i128, MVT::i32, Expand);
160 setTruncStoreAction(MVT::i128, MVT::i16, Expand);
161 setTruncStoreAction(MVT::i128, MVT::i8, Expand);
162
163 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
164
Scott Michel8efdca42007-12-04 22:23:35 +0000165 // SPU constant load actions are custom lowered:
Nate Begeman78125042008-02-14 18:43:04 +0000166 setOperationAction(ISD::ConstantFP, MVT::f32, Legal);
Scott Michel8efdca42007-12-04 22:23:35 +0000167 setOperationAction(ISD::ConstantFP, MVT::f64, Custom);
168
169 // SPU's loads and stores have to be custom lowered:
Scott Michel2ef773a2009-01-06 03:36:14 +0000170 for (unsigned sctype = (unsigned) MVT::i8; sctype < (unsigned) MVT::i128;
Scott Michel8efdca42007-12-04 22:23:35 +0000171 ++sctype) {
Duncan Sands92c43912008-06-06 12:08:01 +0000172 MVT VT = (MVT::SimpleValueType)sctype;
173
Scott Michel06eabde2008-12-27 04:51:36 +0000174 setOperationAction(ISD::LOAD, VT, Custom);
175 setOperationAction(ISD::STORE, VT, Custom);
176 setLoadExtAction(ISD::EXTLOAD, VT, Custom);
177 setLoadExtAction(ISD::ZEXTLOAD, VT, Custom);
178 setLoadExtAction(ISD::SEXTLOAD, VT, Custom);
179
180 for (unsigned stype = sctype - 1; stype >= (unsigned) MVT::i8; --stype) {
181 MVT StoreVT = (MVT::SimpleValueType) stype;
182 setTruncStoreAction(VT, StoreVT, Expand);
183 }
Scott Michel8efdca42007-12-04 22:23:35 +0000184 }
185
Scott Michel06eabde2008-12-27 04:51:36 +0000186 for (unsigned sctype = (unsigned) MVT::f32; sctype < (unsigned) MVT::f64;
187 ++sctype) {
188 MVT VT = (MVT::SimpleValueType) sctype;
189
190 setOperationAction(ISD::LOAD, VT, Custom);
191 setOperationAction(ISD::STORE, VT, Custom);
192
193 for (unsigned stype = sctype - 1; stype >= (unsigned) MVT::f32; --stype) {
194 MVT StoreVT = (MVT::SimpleValueType) stype;
195 setTruncStoreAction(VT, StoreVT, Expand);
196 }
197 }
198
Scott Michel8efdca42007-12-04 22:23:35 +0000199 // Expand the jumptable branches
200 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
201 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
Scott Michel56a125e2008-11-22 23:50:42 +0000202
203 // Custom lower SELECT_CC for most cases, but expand by default
Scott Michel4ec722e2008-07-16 17:17:29 +0000204 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
Scott Michel56a125e2008-11-22 23:50:42 +0000205 setOperationAction(ISD::SELECT_CC, MVT::i8, Custom);
206 setOperationAction(ISD::SELECT_CC, MVT::i16, Custom);
207 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
208 setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
Scott Michel8efdca42007-12-04 22:23:35 +0000209
210 // SPU has no intrinsics for these particular operations:
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000211 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
212
Eli Friedman9880b6b2009-07-17 06:36:24 +0000213 // SPU has no division/remainder instructions
214 setOperationAction(ISD::SREM, MVT::i8, Expand);
215 setOperationAction(ISD::UREM, MVT::i8, Expand);
216 setOperationAction(ISD::SDIV, MVT::i8, Expand);
217 setOperationAction(ISD::UDIV, MVT::i8, Expand);
218 setOperationAction(ISD::SDIVREM, MVT::i8, Expand);
219 setOperationAction(ISD::UDIVREM, MVT::i8, Expand);
220 setOperationAction(ISD::SREM, MVT::i16, Expand);
221 setOperationAction(ISD::UREM, MVT::i16, Expand);
222 setOperationAction(ISD::SDIV, MVT::i16, Expand);
223 setOperationAction(ISD::UDIV, MVT::i16, Expand);
224 setOperationAction(ISD::SDIVREM, MVT::i16, Expand);
225 setOperationAction(ISD::UDIVREM, MVT::i16, Expand);
226 setOperationAction(ISD::SREM, MVT::i32, Expand);
227 setOperationAction(ISD::UREM, MVT::i32, Expand);
228 setOperationAction(ISD::SDIV, MVT::i32, Expand);
229 setOperationAction(ISD::UDIV, MVT::i32, Expand);
230 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
231 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
232 setOperationAction(ISD::SREM, MVT::i64, Expand);
233 setOperationAction(ISD::UREM, MVT::i64, Expand);
234 setOperationAction(ISD::SDIV, MVT::i64, Expand);
235 setOperationAction(ISD::UDIV, MVT::i64, Expand);
236 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
237 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
238 setOperationAction(ISD::SREM, MVT::i128, Expand);
239 setOperationAction(ISD::UREM, MVT::i128, Expand);
240 setOperationAction(ISD::SDIV, MVT::i128, Expand);
241 setOperationAction(ISD::UDIV, MVT::i128, Expand);
242 setOperationAction(ISD::SDIVREM, MVT::i128, Expand);
243 setOperationAction(ISD::UDIVREM, MVT::i128, Expand);
Scott Michel4ec722e2008-07-16 17:17:29 +0000244
Scott Michel8efdca42007-12-04 22:23:35 +0000245 // We don't support sin/cos/sqrt/fmod
246 setOperationAction(ISD::FSIN , MVT::f64, Expand);
247 setOperationAction(ISD::FCOS , MVT::f64, Expand);
248 setOperationAction(ISD::FREM , MVT::f64, Expand);
249 setOperationAction(ISD::FSIN , MVT::f32, Expand);
250 setOperationAction(ISD::FCOS , MVT::f32, Expand);
251 setOperationAction(ISD::FREM , MVT::f32, Expand);
Scott Michel4ec722e2008-07-16 17:17:29 +0000252
pingbak2f387e82009-01-26 03:31:40 +0000253 // Expand fsqrt to the appropriate libcall (NOTE: should use h/w fsqrt
254 // for f32!)
Scott Michel8efdca42007-12-04 22:23:35 +0000255 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
256 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Scott Michel4ec722e2008-07-16 17:17:29 +0000257
Scott Michel8efdca42007-12-04 22:23:35 +0000258 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
259 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
260
261 // SPU can do rotate right and left, so legalize it... but customize for i8
262 // because instructions don't exist.
Bill Wendling965299c2008-08-31 02:59:23 +0000263
264 // FIXME: Change from "expand" to appropriate type once ROTR is supported in
265 // .td files.
266 setOperationAction(ISD::ROTR, MVT::i32, Expand /*Legal*/);
267 setOperationAction(ISD::ROTR, MVT::i16, Expand /*Legal*/);
268 setOperationAction(ISD::ROTR, MVT::i8, Expand /*Custom*/);
269
Scott Michel8efdca42007-12-04 22:23:35 +0000270 setOperationAction(ISD::ROTL, MVT::i32, Legal);
271 setOperationAction(ISD::ROTL, MVT::i16, Legal);
272 setOperationAction(ISD::ROTL, MVT::i8, Custom);
Scott Michelabb8ca12008-11-20 16:36:33 +0000273
Scott Michel8efdca42007-12-04 22:23:35 +0000274 // SPU has no native version of shift left/right for i8
275 setOperationAction(ISD::SHL, MVT::i8, Custom);
276 setOperationAction(ISD::SRL, MVT::i8, Custom);
277 setOperationAction(ISD::SRA, MVT::i8, Custom);
Scott Michel33d73eb2008-11-21 02:56:16 +0000278
Scott Michel4d07fb72008-12-30 23:28:25 +0000279 // Make these operations legal and handle them during instruction selection:
280 setOperationAction(ISD::SHL, MVT::i64, Legal);
281 setOperationAction(ISD::SRL, MVT::i64, Legal);
282 setOperationAction(ISD::SRA, MVT::i64, Legal);
Scott Michel8efdca42007-12-04 22:23:35 +0000283
Scott Michel4ec722e2008-07-16 17:17:29 +0000284 // Custom lower i8, i32 and i64 multiplications
285 setOperationAction(ISD::MUL, MVT::i8, Custom);
Scott Michelae5cbf52008-12-29 03:23:36 +0000286 setOperationAction(ISD::MUL, MVT::i32, Legal);
Scott Michel750b93f2009-01-15 04:41:47 +0000287 setOperationAction(ISD::MUL, MVT::i64, Legal);
Scott Michel33d73eb2008-11-21 02:56:16 +0000288
Eli Friedman35be0012009-06-16 06:40:59 +0000289 // Expand double-width multiplication
290 // FIXME: It would probably be reasonable to support some of these operations
291 setOperationAction(ISD::UMUL_LOHI, MVT::i8, Expand);
292 setOperationAction(ISD::SMUL_LOHI, MVT::i8, Expand);
293 setOperationAction(ISD::MULHU, MVT::i8, Expand);
294 setOperationAction(ISD::MULHS, MVT::i8, Expand);
295 setOperationAction(ISD::UMUL_LOHI, MVT::i16, Expand);
296 setOperationAction(ISD::SMUL_LOHI, MVT::i16, Expand);
297 setOperationAction(ISD::MULHU, MVT::i16, Expand);
298 setOperationAction(ISD::MULHS, MVT::i16, Expand);
299 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
300 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
301 setOperationAction(ISD::MULHU, MVT::i32, Expand);
302 setOperationAction(ISD::MULHS, MVT::i32, Expand);
303 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
304 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
305 setOperationAction(ISD::MULHU, MVT::i64, Expand);
306 setOperationAction(ISD::MULHS, MVT::i64, Expand);
307
Scott Michel67224b22008-06-02 22:18:03 +0000308 // Need to custom handle (some) common i8, i64 math ops
Scott Michel4d07fb72008-12-30 23:28:25 +0000309 setOperationAction(ISD::ADD, MVT::i8, Custom);
Scott Michel750b93f2009-01-15 04:41:47 +0000310 setOperationAction(ISD::ADD, MVT::i64, Legal);
Scott Michel8efdca42007-12-04 22:23:35 +0000311 setOperationAction(ISD::SUB, MVT::i8, Custom);
Scott Michel750b93f2009-01-15 04:41:47 +0000312 setOperationAction(ISD::SUB, MVT::i64, Legal);
Scott Michel4ec722e2008-07-16 17:17:29 +0000313
Scott Michel8efdca42007-12-04 22:23:35 +0000314 // SPU does not have BSWAP. It does have i32 support CTLZ.
315 // CTPOP has to be custom lowered.
316 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
317 setOperationAction(ISD::BSWAP, MVT::i64, Expand);
318
319 setOperationAction(ISD::CTPOP, MVT::i8, Custom);
320 setOperationAction(ISD::CTPOP, MVT::i16, Custom);
321 setOperationAction(ISD::CTPOP, MVT::i32, Custom);
322 setOperationAction(ISD::CTPOP, MVT::i64, Custom);
Eli Friedman9880b6b2009-07-17 06:36:24 +0000323 setOperationAction(ISD::CTPOP, MVT::i128, Expand);
Scott Michel8efdca42007-12-04 22:23:35 +0000324
Eli Friedman9880b6b2009-07-17 06:36:24 +0000325 setOperationAction(ISD::CTTZ , MVT::i8, Expand);
326 setOperationAction(ISD::CTTZ , MVT::i16, Expand);
Scott Michel8efdca42007-12-04 22:23:35 +0000327 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
328 setOperationAction(ISD::CTTZ , MVT::i64, Expand);
Eli Friedman9880b6b2009-07-17 06:36:24 +0000329 setOperationAction(ISD::CTTZ , MVT::i128, Expand);
Scott Michel8efdca42007-12-04 22:23:35 +0000330
Eli Friedman9880b6b2009-07-17 06:36:24 +0000331 setOperationAction(ISD::CTLZ , MVT::i8, Promote);
332 setOperationAction(ISD::CTLZ , MVT::i16, Promote);
Scott Michel8efdca42007-12-04 22:23:35 +0000333 setOperationAction(ISD::CTLZ , MVT::i32, Legal);
Eli Friedman9880b6b2009-07-17 06:36:24 +0000334 setOperationAction(ISD::CTLZ , MVT::i64, Expand);
335 setOperationAction(ISD::CTLZ , MVT::i128, Expand);
Scott Michel4ec722e2008-07-16 17:17:29 +0000336
Scott Michel67224b22008-06-02 22:18:03 +0000337 // SPU has a version of select that implements (a&~c)|(b&c), just like
Scott Michel978b96f2008-03-10 23:49:09 +0000338 // select ought to work:
Scott Michel53ab7792008-03-10 16:58:52 +0000339 setOperationAction(ISD::SELECT, MVT::i8, Legal);
Scott Michel6baba072008-03-05 23:02:02 +0000340 setOperationAction(ISD::SELECT, MVT::i16, Legal);
341 setOperationAction(ISD::SELECT, MVT::i32, Legal);
Scott Michel06eabde2008-12-27 04:51:36 +0000342 setOperationAction(ISD::SELECT, MVT::i64, Legal);
Scott Michel8efdca42007-12-04 22:23:35 +0000343
Scott Michel53ab7792008-03-10 16:58:52 +0000344 setOperationAction(ISD::SETCC, MVT::i8, Legal);
345 setOperationAction(ISD::SETCC, MVT::i16, Legal);
Scott Michelae5cbf52008-12-29 03:23:36 +0000346 setOperationAction(ISD::SETCC, MVT::i32, Legal);
347 setOperationAction(ISD::SETCC, MVT::i64, Legal);
Scott Michel8c67fa42009-01-21 04:58:48 +0000348 setOperationAction(ISD::SETCC, MVT::f64, Custom);
Scott Michel6baba072008-03-05 23:02:02 +0000349
Scott Michel06eabde2008-12-27 04:51:36 +0000350 // Custom lower i128 -> i64 truncates
Scott Michelec8c82e2008-12-02 19:53:53 +0000351 setOperationAction(ISD::TRUNCATE, MVT::i64, Custom);
352
Eli Friedman9880b6b2009-07-17 06:36:24 +0000353 setOperationAction(ISD::FP_TO_SINT, MVT::i8, Promote);
354 setOperationAction(ISD::FP_TO_UINT, MVT::i8, Promote);
355 setOperationAction(ISD::FP_TO_SINT, MVT::i16, Promote);
356 setOperationAction(ISD::FP_TO_UINT, MVT::i16, Promote);
pingbak2f387e82009-01-26 03:31:40 +0000357 // SPU has a legal FP -> signed INT instruction for f32, but for f64, need
358 // to expand to a libcall, hence the custom lowering:
359 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
360 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Eli Friedman9880b6b2009-07-17 06:36:24 +0000361 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Expand);
362 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
363 setOperationAction(ISD::FP_TO_SINT, MVT::i128, Expand);
364 setOperationAction(ISD::FP_TO_UINT, MVT::i128, Expand);
Scott Michel8efdca42007-12-04 22:23:35 +0000365
366 // FDIV on SPU requires custom lowering
pingbak2f387e82009-01-26 03:31:40 +0000367 setOperationAction(ISD::FDIV, MVT::f64, Expand); // to libcall
Scott Michel8efdca42007-12-04 22:23:35 +0000368
Scott Michelc899a122009-01-26 22:33:37 +0000369 // SPU has [U|S]INT_TO_FP for f32->i32, but not for f64->i32, f64->i64:
pingbak2f387e82009-01-26 03:31:40 +0000370 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Scott Michel8efdca42007-12-04 22:23:35 +0000371 setOperationAction(ISD::SINT_TO_FP, MVT::i16, Promote);
pingbak2f387e82009-01-26 03:31:40 +0000372 setOperationAction(ISD::SINT_TO_FP, MVT::i8, Promote);
373 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
Scott Michel8efdca42007-12-04 22:23:35 +0000374 setOperationAction(ISD::UINT_TO_FP, MVT::i16, Promote);
pingbak2f387e82009-01-26 03:31:40 +0000375 setOperationAction(ISD::UINT_TO_FP, MVT::i8, Promote);
Scott Michel8efdca42007-12-04 22:23:35 +0000376 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
377 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
378
Scott Michel754d8662007-12-20 00:44:13 +0000379 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Legal);
380 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Legal);
381 setOperationAction(ISD::BIT_CONVERT, MVT::i64, Legal);
382 setOperationAction(ISD::BIT_CONVERT, MVT::f64, Legal);
Scott Michel8efdca42007-12-04 22:23:35 +0000383
384 // We cannot sextinreg(i1). Expand to shifts.
385 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Scott Michel4ec722e2008-07-16 17:17:29 +0000386
Scott Michel8efdca42007-12-04 22:23:35 +0000387 // Support label based line numbers.
Dan Gohman472d12c2008-06-30 20:59:49 +0000388 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Scott Michel8efdca42007-12-04 22:23:35 +0000389 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Scott Michel4ec722e2008-07-16 17:17:29 +0000390
391 // We want to legalize GlobalAddress and ConstantPool nodes into the
Scott Michel8efdca42007-12-04 22:23:35 +0000392 // appropriate instructions to materialize the address.
Scott Michel33d73eb2008-11-21 02:56:16 +0000393 for (unsigned sctype = (unsigned) MVT::i8; sctype < (unsigned) MVT::f128;
Scott Michelf9f42e62008-01-29 02:16:57 +0000394 ++sctype) {
Duncan Sands92c43912008-06-06 12:08:01 +0000395 MVT VT = (MVT::SimpleValueType)sctype;
396
Scott Michelae5cbf52008-12-29 03:23:36 +0000397 setOperationAction(ISD::GlobalAddress, VT, Custom);
398 setOperationAction(ISD::ConstantPool, VT, Custom);
399 setOperationAction(ISD::JumpTable, VT, Custom);
Scott Michelf9f42e62008-01-29 02:16:57 +0000400 }
Scott Michel8efdca42007-12-04 22:23:35 +0000401
402 // RET must be custom lowered, to meet ABI requirements
403 setOperationAction(ISD::RET, MVT::Other, Custom);
Scott Michel4ec722e2008-07-16 17:17:29 +0000404
Scott Michel8efdca42007-12-04 22:23:35 +0000405 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
406 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michel4ec722e2008-07-16 17:17:29 +0000407
Scott Michel8efdca42007-12-04 22:23:35 +0000408 // Use the default implementation.
409 setOperationAction(ISD::VAARG , MVT::Other, Expand);
410 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
411 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Scott Michel4ec722e2008-07-16 17:17:29 +0000412 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
Scott Michel8efdca42007-12-04 22:23:35 +0000413 setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
414 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Expand);
415 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Expand);
416
417 // Cell SPU has instructions for converting between i64 and fp.
418 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
419 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
Scott Michel4ec722e2008-07-16 17:17:29 +0000420
Scott Michel8efdca42007-12-04 22:23:35 +0000421 // To take advantage of the above i64 FP_TO_SINT, promote i32 FP_TO_UINT
422 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Promote);
423
424 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
425 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
426
427 // First set operation action for all vector types to expand. Then we
428 // will selectively turn on ones that can be effectively codegen'd.
429 addRegisterClass(MVT::v16i8, SPU::VECREGRegisterClass);
430 addRegisterClass(MVT::v8i16, SPU::VECREGRegisterClass);
431 addRegisterClass(MVT::v4i32, SPU::VECREGRegisterClass);
432 addRegisterClass(MVT::v2i64, SPU::VECREGRegisterClass);
433 addRegisterClass(MVT::v4f32, SPU::VECREGRegisterClass);
434 addRegisterClass(MVT::v2f64, SPU::VECREGRegisterClass);
435
Scott Michel70741542009-01-06 23:10:38 +0000436 // "Odd size" vector classes that we're willing to support:
437 addRegisterClass(MVT::v2i32, SPU::VECREGRegisterClass);
438
Duncan Sands92c43912008-06-06 12:08:01 +0000439 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
440 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
441 MVT VT = (MVT::SimpleValueType)i;
Scott Michel8efdca42007-12-04 22:23:35 +0000442
Duncan Sands92c43912008-06-06 12:08:01 +0000443 // add/sub are legal for all supported vector VT's.
pingbak2f387e82009-01-26 03:31:40 +0000444 setOperationAction(ISD::ADD, VT, Legal);
445 setOperationAction(ISD::SUB, VT, Legal);
Duncan Sands92c43912008-06-06 12:08:01 +0000446 // mul has to be custom lowered.
pingbak2f387e82009-01-26 03:31:40 +0000447 setOperationAction(ISD::MUL, VT, Legal);
Duncan Sands92c43912008-06-06 12:08:01 +0000448
pingbak2f387e82009-01-26 03:31:40 +0000449 setOperationAction(ISD::AND, VT, Legal);
450 setOperationAction(ISD::OR, VT, Legal);
451 setOperationAction(ISD::XOR, VT, Legal);
452 setOperationAction(ISD::LOAD, VT, Legal);
453 setOperationAction(ISD::SELECT, VT, Legal);
454 setOperationAction(ISD::STORE, VT, Legal);
Scott Michel4ec722e2008-07-16 17:17:29 +0000455
Scott Michel8efdca42007-12-04 22:23:35 +0000456 // These operations need to be expanded:
pingbak2f387e82009-01-26 03:31:40 +0000457 setOperationAction(ISD::SDIV, VT, Expand);
458 setOperationAction(ISD::SREM, VT, Expand);
459 setOperationAction(ISD::UDIV, VT, Expand);
460 setOperationAction(ISD::UREM, VT, Expand);
Scott Michel8efdca42007-12-04 22:23:35 +0000461
462 // Custom lower build_vector, constant pool spills, insert and
463 // extract vector elements:
Duncan Sands92c43912008-06-06 12:08:01 +0000464 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
465 setOperationAction(ISD::ConstantPool, VT, Custom);
466 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
467 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
468 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
469 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
Scott Michel8efdca42007-12-04 22:23:35 +0000470 }
471
Scott Michel8efdca42007-12-04 22:23:35 +0000472 setOperationAction(ISD::AND, MVT::v16i8, Custom);
473 setOperationAction(ISD::OR, MVT::v16i8, Custom);
474 setOperationAction(ISD::XOR, MVT::v16i8, Custom);
475 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
Scott Micheldbac4cf2008-01-11 02:53:15 +0000476
Scott Michel4d07fb72008-12-30 23:28:25 +0000477 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
Scott Michelae5cbf52008-12-29 03:23:36 +0000478
Scott Michel8efdca42007-12-04 22:23:35 +0000479 setShiftAmountType(MVT::i32);
Scott Michel06eabde2008-12-27 04:51:36 +0000480 setBooleanContents(ZeroOrNegativeOneBooleanContent);
Scott Michel4ec722e2008-07-16 17:17:29 +0000481
Scott Michel8efdca42007-12-04 22:23:35 +0000482 setStackPointerRegisterToSaveRestore(SPU::R1);
Scott Michel4ec722e2008-07-16 17:17:29 +0000483
Scott Michel8efdca42007-12-04 22:23:35 +0000484 // We have target-specific dag combine patterns for the following nodes:
Scott Michelf9f42e62008-01-29 02:16:57 +0000485 setTargetDAGCombine(ISD::ADD);
Scott Michel97872d32008-02-23 18:41:37 +0000486 setTargetDAGCombine(ISD::ZERO_EXTEND);
487 setTargetDAGCombine(ISD::SIGN_EXTEND);
488 setTargetDAGCombine(ISD::ANY_EXTEND);
Scott Michel4ec722e2008-07-16 17:17:29 +0000489
Scott Michel8efdca42007-12-04 22:23:35 +0000490 computeRegisterProperties();
Scott Michel56a125e2008-11-22 23:50:42 +0000491
Scott Michel2c261072008-12-09 03:37:19 +0000492 // Set pre-RA register scheduler default to BURR, which produces slightly
493 // better code than the default (could also be TDRR, but TargetLowering.h
494 // needs a mod to support that model):
495 setSchedulingPreference(SchedulingForRegPressure);
Scott Michel8efdca42007-12-04 22:23:35 +0000496}
497
498const char *
499SPUTargetLowering::getTargetNodeName(unsigned Opcode) const
500{
501 if (node_names.empty()) {
502 node_names[(unsigned) SPUISD::RET_FLAG] = "SPUISD::RET_FLAG";
503 node_names[(unsigned) SPUISD::Hi] = "SPUISD::Hi";
504 node_names[(unsigned) SPUISD::Lo] = "SPUISD::Lo";
505 node_names[(unsigned) SPUISD::PCRelAddr] = "SPUISD::PCRelAddr";
Scott Micheldbac4cf2008-01-11 02:53:15 +0000506 node_names[(unsigned) SPUISD::AFormAddr] = "SPUISD::AFormAddr";
Scott Michelf9f42e62008-01-29 02:16:57 +0000507 node_names[(unsigned) SPUISD::IndirectAddr] = "SPUISD::IndirectAddr";
Scott Michel8efdca42007-12-04 22:23:35 +0000508 node_names[(unsigned) SPUISD::LDRESULT] = "SPUISD::LDRESULT";
509 node_names[(unsigned) SPUISD::CALL] = "SPUISD::CALL";
510 node_names[(unsigned) SPUISD::SHUFB] = "SPUISD::SHUFB";
Scott Michel56a125e2008-11-22 23:50:42 +0000511 node_names[(unsigned) SPUISD::SHUFFLE_MASK] = "SPUISD::SHUFFLE_MASK";
Scott Michel8efdca42007-12-04 22:23:35 +0000512 node_names[(unsigned) SPUISD::CNTB] = "SPUISD::CNTB";
Scott Michelae5cbf52008-12-29 03:23:36 +0000513 node_names[(unsigned) SPUISD::PREFSLOT2VEC] = "SPUISD::PREFSLOT2VEC";
Scott Michelc630c412008-11-24 17:11:17 +0000514 node_names[(unsigned) SPUISD::VEC2PREFSLOT] = "SPUISD::VEC2PREFSLOT";
Scott Michel97872d32008-02-23 18:41:37 +0000515 node_names[(unsigned) SPUISD::SHLQUAD_L_BITS] = "SPUISD::SHLQUAD_L_BITS";
516 node_names[(unsigned) SPUISD::SHLQUAD_L_BYTES] = "SPUISD::SHLQUAD_L_BYTES";
Scott Michel8efdca42007-12-04 22:23:35 +0000517 node_names[(unsigned) SPUISD::VEC_SHL] = "SPUISD::VEC_SHL";
518 node_names[(unsigned) SPUISD::VEC_SRL] = "SPUISD::VEC_SRL";
519 node_names[(unsigned) SPUISD::VEC_SRA] = "SPUISD::VEC_SRA";
520 node_names[(unsigned) SPUISD::VEC_ROTL] = "SPUISD::VEC_ROTL";
521 node_names[(unsigned) SPUISD::VEC_ROTR] = "SPUISD::VEC_ROTR";
Scott Michel8c67fa42009-01-21 04:58:48 +0000522 node_names[(unsigned) SPUISD::ROTBYTES_LEFT] = "SPUISD::ROTBYTES_LEFT";
523 node_names[(unsigned) SPUISD::ROTBYTES_LEFT_BITS] =
524 "SPUISD::ROTBYTES_LEFT_BITS";
Scott Michel67224b22008-06-02 22:18:03 +0000525 node_names[(unsigned) SPUISD::SELECT_MASK] = "SPUISD::SELECT_MASK";
Scott Michel8efdca42007-12-04 22:23:35 +0000526 node_names[(unsigned) SPUISD::SELB] = "SPUISD::SELB";
Scott Michel750b93f2009-01-15 04:41:47 +0000527 node_names[(unsigned) SPUISD::ADD64_MARKER] = "SPUISD::ADD64_MARKER";
528 node_names[(unsigned) SPUISD::SUB64_MARKER] = "SPUISD::SUB64_MARKER";
529 node_names[(unsigned) SPUISD::MUL64_MARKER] = "SPUISD::MUL64_MARKER";
Scott Michel8efdca42007-12-04 22:23:35 +0000530 }
531
532 std::map<unsigned, const char *>::iterator i = node_names.find(Opcode);
533
534 return ((i != node_names.end()) ? i->second : 0);
535}
536
Bill Wendling045f2632009-07-01 18:50:55 +0000537/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling25a8ae32009-06-30 22:38:32 +0000538unsigned SPUTargetLowering::getFunctionAlignment(const Function *) const {
539 return 3;
540}
541
Scott Michel06eabde2008-12-27 04:51:36 +0000542//===----------------------------------------------------------------------===//
543// Return the Cell SPU's SETCC result type
544//===----------------------------------------------------------------------===//
545
Duncan Sands4a361272009-01-01 15:52:00 +0000546MVT SPUTargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel06eabde2008-12-27 04:51:36 +0000547 // i16 and i32 are valid SETCC result types
548 return ((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) ? VT : MVT::i32);
Scott Michel53ab7792008-03-10 16:58:52 +0000549}
550
Scott Michel8efdca42007-12-04 22:23:35 +0000551//===----------------------------------------------------------------------===//
552// Calling convention code:
553//===----------------------------------------------------------------------===//
554
555#include "SPUGenCallingConv.inc"
556
557//===----------------------------------------------------------------------===//
558// LowerOperation implementation
559//===----------------------------------------------------------------------===//
560
561/// Custom lower loads for CellSPU
562/*!
563 All CellSPU loads and stores are aligned to 16-byte boundaries, so for elements
564 within a 16-byte block, we have to rotate to extract the requested element.
Scott Michel6ccefab2008-12-04 03:02:42 +0000565
566 For extending loads, we also want to ensure that the following sequence is
567 emitted, e.g. for MVT::f32 extending load to MVT::f64:
568
569\verbatim
Scott Michelae5cbf52008-12-29 03:23:36 +0000570%1 v16i8,ch = load
Scott Michel6ccefab2008-12-04 03:02:42 +0000571%2 v16i8,ch = rotate %1
Scott Michelae5cbf52008-12-29 03:23:36 +0000572%3 v4f8, ch = bitconvert %2
Scott Michel6ccefab2008-12-04 03:02:42 +0000573%4 f32 = vec2perfslot %3
574%5 f64 = fp_extend %4
575\endverbatim
576*/
Dan Gohman8181bd12008-07-27 21:46:04 +0000577static SDValue
578LowerLOAD(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
Scott Michel8efdca42007-12-04 22:23:35 +0000579 LoadSDNode *LN = cast<LoadSDNode>(Op);
Dan Gohman8181bd12008-07-27 21:46:04 +0000580 SDValue the_chain = LN->getChain();
Scott Michel06eabde2008-12-27 04:51:36 +0000581 MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michel6ccefab2008-12-04 03:02:42 +0000582 MVT InVT = LN->getMemoryVT();
583 MVT OutVT = Op.getValueType();
Scott Michel8efdca42007-12-04 22:23:35 +0000584 ISD::LoadExtType ExtType = LN->getExtensionType();
585 unsigned alignment = LN->getAlignment();
Scott Michel06eabde2008-12-27 04:51:36 +0000586 const valtype_map_s *vtm = getValueTypeMapEntry(InVT);
Dale Johannesenea996922009-02-04 20:06:27 +0000587 DebugLoc dl = Op.getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +0000588
Scott Michel8efdca42007-12-04 22:23:35 +0000589 switch (LN->getAddressingMode()) {
590 case ISD::UNINDEXED: {
Scott Michel06eabde2008-12-27 04:51:36 +0000591 SDValue result;
592 SDValue basePtr = LN->getBasePtr();
593 SDValue rotate;
Scott Michel8efdca42007-12-04 22:23:35 +0000594
Scott Michel06eabde2008-12-27 04:51:36 +0000595 if (alignment == 16) {
596 ConstantSDNode *CN;
Scott Micheldbac4cf2008-01-11 02:53:15 +0000597
Scott Michel06eabde2008-12-27 04:51:36 +0000598 // Special cases for a known aligned load to simplify the base pointer
599 // and the rotation amount:
600 if (basePtr.getOpcode() == ISD::ADD
601 && (CN = dyn_cast<ConstantSDNode > (basePtr.getOperand(1))) != 0) {
602 // Known offset into basePtr
603 int64_t offset = CN->getSExtValue();
604 int64_t rotamt = int64_t((offset & 0xf) - vtm->prefslot_byte);
Scott Micheldbac4cf2008-01-11 02:53:15 +0000605
Scott Michel06eabde2008-12-27 04:51:36 +0000606 if (rotamt < 0)
607 rotamt += 16;
608
609 rotate = DAG.getConstant(rotamt, MVT::i16);
610
611 // Simplify the base pointer for this case:
612 basePtr = basePtr.getOperand(0);
613 if ((offset & ~0xf) > 0) {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000614 basePtr = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000615 basePtr,
616 DAG.getConstant((offset & ~0xf), PtrVT));
617 }
618 } else if ((basePtr.getOpcode() == SPUISD::AFormAddr)
619 || (basePtr.getOpcode() == SPUISD::IndirectAddr
620 && basePtr.getOperand(0).getOpcode() == SPUISD::Hi
621 && basePtr.getOperand(1).getOpcode() == SPUISD::Lo)) {
622 // Plain aligned a-form address: rotate into preferred slot
623 // Same for (SPUindirect (SPUhi ...), (SPUlo ...))
624 int64_t rotamt = -vtm->prefslot_byte;
625 if (rotamt < 0)
626 rotamt += 16;
627 rotate = DAG.getConstant(rotamt, MVT::i16);
Scott Micheldbac4cf2008-01-11 02:53:15 +0000628 } else {
Scott Michel06eabde2008-12-27 04:51:36 +0000629 // Offset the rotate amount by the basePtr and the preferred slot
630 // byte offset
631 int64_t rotamt = -vtm->prefslot_byte;
632 if (rotamt < 0)
633 rotamt += 16;
Dale Johannesenea996922009-02-04 20:06:27 +0000634 rotate = DAG.getNode(ISD::ADD, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000635 basePtr,
Scott Michel5a6f17b2008-01-30 02:55:46 +0000636 DAG.getConstant(rotamt, PtrVT));
Scott Micheldbac4cf2008-01-11 02:53:15 +0000637 }
Scott Michel06eabde2008-12-27 04:51:36 +0000638 } else {
639 // Unaligned load: must be more pessimistic about addressing modes:
640 if (basePtr.getOpcode() == ISD::ADD) {
641 MachineFunction &MF = DAG.getMachineFunction();
642 MachineRegisterInfo &RegInfo = MF.getRegInfo();
643 unsigned VReg = RegInfo.createVirtualRegister(&SPU::R32CRegClass);
644 SDValue Flag;
Scott Micheldbac4cf2008-01-11 02:53:15 +0000645
Scott Michel06eabde2008-12-27 04:51:36 +0000646 SDValue Op0 = basePtr.getOperand(0);
647 SDValue Op1 = basePtr.getOperand(1);
648
649 if (isa<ConstantSDNode>(Op1)) {
650 // Convert the (add <ptr>, <const>) to an indirect address contained
651 // in a register. Note that this is done because we need to avoid
652 // creating a 0(reg) d-form address due to the SPU's block loads.
Dale Johannesen175fdef2009-02-06 21:50:26 +0000653 basePtr = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, Op0, Op1);
Dale Johannesenea996922009-02-04 20:06:27 +0000654 the_chain = DAG.getCopyToReg(the_chain, dl, VReg, basePtr, Flag);
655 basePtr = DAG.getCopyFromReg(the_chain, dl, VReg, PtrVT);
Scott Michel06eabde2008-12-27 04:51:36 +0000656 } else {
657 // Convert the (add <arg1>, <arg2>) to an indirect address, which
658 // will likely be lowered as a reg(reg) x-form address.
Dale Johannesen175fdef2009-02-06 21:50:26 +0000659 basePtr = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, Op0, Op1);
Scott Michel06eabde2008-12-27 04:51:36 +0000660 }
661 } else {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000662 basePtr = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000663 basePtr,
664 DAG.getConstant(0, PtrVT));
665 }
666
667 // Offset the rotate amount by the basePtr and the preferred slot
668 // byte offset
Dale Johannesenea996922009-02-04 20:06:27 +0000669 rotate = DAG.getNode(ISD::ADD, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000670 basePtr,
671 DAG.getConstant(-vtm->prefslot_byte, PtrVT));
Scott Michel8efdca42007-12-04 22:23:35 +0000672 }
Scott Micheldbac4cf2008-01-11 02:53:15 +0000673
Scott Michel06eabde2008-12-27 04:51:36 +0000674 // Re-emit as a v16i8 vector load
Dale Johannesenea996922009-02-04 20:06:27 +0000675 result = DAG.getLoad(MVT::v16i8, dl, the_chain, basePtr,
Scott Michel06eabde2008-12-27 04:51:36 +0000676 LN->getSrcValue(), LN->getSrcValueOffset(),
677 LN->isVolatile(), 16);
678
679 // Update the chain
680 the_chain = result.getValue(1);
681
682 // Rotate into the preferred slot:
Dale Johannesenea996922009-02-04 20:06:27 +0000683 result = DAG.getNode(SPUISD::ROTBYTES_LEFT, dl, MVT::v16i8,
Scott Michel06eabde2008-12-27 04:51:36 +0000684 result.getValue(0), rotate);
685
Scott Michel6ccefab2008-12-04 03:02:42 +0000686 // Convert the loaded v16i8 vector to the appropriate vector type
687 // specified by the operand:
688 MVT vecVT = MVT::getVectorVT(InVT, (128 / InVT.getSizeInBits()));
Dale Johannesenea996922009-02-04 20:06:27 +0000689 result = DAG.getNode(SPUISD::VEC2PREFSLOT, dl, InVT,
690 DAG.getNode(ISD::BIT_CONVERT, dl, vecVT, result));
Scott Michel4ec722e2008-07-16 17:17:29 +0000691
Scott Michel6ccefab2008-12-04 03:02:42 +0000692 // Handle extending loads by extending the scalar result:
693 if (ExtType == ISD::SEXTLOAD) {
Dale Johannesenea996922009-02-04 20:06:27 +0000694 result = DAG.getNode(ISD::SIGN_EXTEND, dl, OutVT, result);
Scott Michel6ccefab2008-12-04 03:02:42 +0000695 } else if (ExtType == ISD::ZEXTLOAD) {
Dale Johannesenea996922009-02-04 20:06:27 +0000696 result = DAG.getNode(ISD::ZERO_EXTEND, dl, OutVT, result);
Scott Michel6ccefab2008-12-04 03:02:42 +0000697 } else if (ExtType == ISD::EXTLOAD) {
698 unsigned NewOpc = ISD::ANY_EXTEND;
Scott Micheldbac4cf2008-01-11 02:53:15 +0000699
Scott Michel6ccefab2008-12-04 03:02:42 +0000700 if (OutVT.isFloatingPoint())
pingbakb8913342009-01-26 03:37:41 +0000701 NewOpc = ISD::FP_EXTEND;
Scott Micheldbac4cf2008-01-11 02:53:15 +0000702
Dale Johannesenea996922009-02-04 20:06:27 +0000703 result = DAG.getNode(NewOpc, dl, OutVT, result);
Scott Micheldbac4cf2008-01-11 02:53:15 +0000704 }
705
Scott Michel6ccefab2008-12-04 03:02:42 +0000706 SDVTList retvts = DAG.getVTList(OutVT, MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +0000707 SDValue retops[2] = {
Scott Michel394e26d2008-01-17 20:38:41 +0000708 result,
Scott Michel5a6f17b2008-01-30 02:55:46 +0000709 the_chain
Scott Michel394e26d2008-01-17 20:38:41 +0000710 };
Scott Micheldbac4cf2008-01-11 02:53:15 +0000711
Dale Johannesenea996922009-02-04 20:06:27 +0000712 result = DAG.getNode(SPUISD::LDRESULT, dl, retvts,
Scott Michel394e26d2008-01-17 20:38:41 +0000713 retops, sizeof(retops) / sizeof(retops[0]));
Scott Micheldbac4cf2008-01-11 02:53:15 +0000714 return result;
Scott Michel8efdca42007-12-04 22:23:35 +0000715 }
716 case ISD::PRE_INC:
717 case ISD::PRE_DEC:
718 case ISD::POST_INC:
719 case ISD::POST_DEC:
720 case ISD::LAST_INDEXED_MODE:
Edwin Török4d9756a2009-07-08 20:53:28 +0000721 {
722 std::string msg;
723 raw_string_ostream Msg(msg);
724 Msg << "LowerLOAD: Got a LoadSDNode with an addr mode other than "
Scott Michel8efdca42007-12-04 22:23:35 +0000725 "UNINDEXED\n";
Edwin Török4d9756a2009-07-08 20:53:28 +0000726 Msg << (unsigned) LN->getAddressingMode();
727 llvm_report_error(Msg.str());
728 /*NOTREACHED*/
729 }
Scott Michel8efdca42007-12-04 22:23:35 +0000730 }
731
Dan Gohman8181bd12008-07-27 21:46:04 +0000732 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +0000733}
734
735/// Custom lower stores for CellSPU
736/*!
737 All CellSPU stores are aligned to 16-byte boundaries, so for elements
738 within a 16-byte block, we have to generate a shuffle to insert the
739 requested element into its place, then store the resulting block.
740 */
Dan Gohman8181bd12008-07-27 21:46:04 +0000741static SDValue
742LowerSTORE(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
Scott Michel8efdca42007-12-04 22:23:35 +0000743 StoreSDNode *SN = cast<StoreSDNode>(Op);
Dan Gohman8181bd12008-07-27 21:46:04 +0000744 SDValue Value = SN->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +0000745 MVT VT = Value.getValueType();
746 MVT StVT = (!SN->isTruncatingStore() ? VT : SN->getMemoryVT());
747 MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dale Johannesenea996922009-02-04 20:06:27 +0000748 DebugLoc dl = Op.getDebugLoc();
Scott Micheldbac4cf2008-01-11 02:53:15 +0000749 unsigned alignment = SN->getAlignment();
Scott Michel8efdca42007-12-04 22:23:35 +0000750
751 switch (SN->getAddressingMode()) {
752 case ISD::UNINDEXED: {
Scott Michel33d73eb2008-11-21 02:56:16 +0000753 // The vector type we really want to load from the 16-byte chunk.
Scott Michele1006032008-11-19 17:45:08 +0000754 MVT vecVT = MVT::getVectorVT(VT, (128 / VT.getSizeInBits())),
755 stVecVT = MVT::getVectorVT(StVT, (128 / StVT.getSizeInBits()));
Scott Michel8efdca42007-12-04 22:23:35 +0000756
Scott Michel06eabde2008-12-27 04:51:36 +0000757 SDValue alignLoadVec;
758 SDValue basePtr = SN->getBasePtr();
759 SDValue the_chain = SN->getChain();
760 SDValue insertEltOffs;
Scott Michel8efdca42007-12-04 22:23:35 +0000761
Scott Michel06eabde2008-12-27 04:51:36 +0000762 if (alignment == 16) {
763 ConstantSDNode *CN;
764
765 // Special cases for a known aligned load to simplify the base pointer
766 // and insertion byte:
767 if (basePtr.getOpcode() == ISD::ADD
768 && (CN = dyn_cast<ConstantSDNode>(basePtr.getOperand(1))) != 0) {
769 // Known offset into basePtr
770 int64_t offset = CN->getSExtValue();
771
772 // Simplify the base pointer for this case:
773 basePtr = basePtr.getOperand(0);
Dale Johannesen175fdef2009-02-06 21:50:26 +0000774 insertEltOffs = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000775 basePtr,
776 DAG.getConstant((offset & 0xf), PtrVT));
777
778 if ((offset & ~0xf) > 0) {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000779 basePtr = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000780 basePtr,
781 DAG.getConstant((offset & ~0xf), PtrVT));
782 }
783 } else {
784 // Otherwise, assume it's at byte 0 of basePtr
Dale Johannesen175fdef2009-02-06 21:50:26 +0000785 insertEltOffs = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000786 basePtr,
787 DAG.getConstant(0, PtrVT));
788 }
789 } else {
790 // Unaligned load: must be more pessimistic about addressing modes:
791 if (basePtr.getOpcode() == ISD::ADD) {
792 MachineFunction &MF = DAG.getMachineFunction();
793 MachineRegisterInfo &RegInfo = MF.getRegInfo();
794 unsigned VReg = RegInfo.createVirtualRegister(&SPU::R32CRegClass);
795 SDValue Flag;
796
797 SDValue Op0 = basePtr.getOperand(0);
798 SDValue Op1 = basePtr.getOperand(1);
799
800 if (isa<ConstantSDNode>(Op1)) {
801 // Convert the (add <ptr>, <const>) to an indirect address contained
802 // in a register. Note that this is done because we need to avoid
803 // creating a 0(reg) d-form address due to the SPU's block loads.
Dale Johannesen175fdef2009-02-06 21:50:26 +0000804 basePtr = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, Op0, Op1);
Dale Johannesenea996922009-02-04 20:06:27 +0000805 the_chain = DAG.getCopyToReg(the_chain, dl, VReg, basePtr, Flag);
806 basePtr = DAG.getCopyFromReg(the_chain, dl, VReg, PtrVT);
Scott Michel06eabde2008-12-27 04:51:36 +0000807 } else {
808 // Convert the (add <arg1>, <arg2>) to an indirect address, which
809 // will likely be lowered as a reg(reg) x-form address.
Dale Johannesen175fdef2009-02-06 21:50:26 +0000810 basePtr = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, Op0, Op1);
Scott Michel06eabde2008-12-27 04:51:36 +0000811 }
812 } else {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000813 basePtr = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000814 basePtr,
815 DAG.getConstant(0, PtrVT));
816 }
817
818 // Insertion point is solely determined by basePtr's contents
Dale Johannesenea996922009-02-04 20:06:27 +0000819 insertEltOffs = DAG.getNode(ISD::ADD, dl, PtrVT,
Scott Michel06eabde2008-12-27 04:51:36 +0000820 basePtr,
821 DAG.getConstant(0, PtrVT));
822 }
823
824 // Re-emit as a v16i8 vector load
Dale Johannesenea996922009-02-04 20:06:27 +0000825 alignLoadVec = DAG.getLoad(MVT::v16i8, dl, the_chain, basePtr,
Scott Michel06eabde2008-12-27 04:51:36 +0000826 SN->getSrcValue(), SN->getSrcValueOffset(),
827 SN->isVolatile(), 16);
828
829 // Update the chain
830 the_chain = alignLoadVec.getValue(1);
Scott Michel8efdca42007-12-04 22:23:35 +0000831
Scott Micheldbac4cf2008-01-11 02:53:15 +0000832 LoadSDNode *LN = cast<LoadSDNode>(alignLoadVec);
Dan Gohman8181bd12008-07-27 21:46:04 +0000833 SDValue theValue = SN->getValue();
834 SDValue result;
Scott Michel8efdca42007-12-04 22:23:35 +0000835
836 if (StVT != VT
Scott Michel5a6f17b2008-01-30 02:55:46 +0000837 && (theValue.getOpcode() == ISD::AssertZext
838 || theValue.getOpcode() == ISD::AssertSext)) {
Scott Michel8efdca42007-12-04 22:23:35 +0000839 // Drill down and get the value for zero- and sign-extended
840 // quantities
Scott Michel4ec722e2008-07-16 17:17:29 +0000841 theValue = theValue.getOperand(0);
Scott Michel8efdca42007-12-04 22:23:35 +0000842 }
843
Scott Micheldbac4cf2008-01-11 02:53:15 +0000844 // If the base pointer is already a D-form address, then just create
845 // a new D-form address with a slot offset and the orignal base pointer.
846 // Otherwise generate a D-form address with the slot offset relative
847 // to the stack pointer, which is always aligned.
Scott Michel06eabde2008-12-27 04:51:36 +0000848#if !defined(NDEBUG)
849 if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) {
850 cerr << "CellSPU LowerSTORE: basePtr = ";
851 basePtr.getNode()->dump(&DAG);
852 cerr << "\n";
853 }
854#endif
Scott Micheldbac4cf2008-01-11 02:53:15 +0000855
Scott Michelf65c8f02008-11-19 15:24:16 +0000856 SDValue insertEltOp =
Dale Johannesenea996922009-02-04 20:06:27 +0000857 DAG.getNode(SPUISD::SHUFFLE_MASK, dl, vecVT, insertEltOffs);
Scott Michele1006032008-11-19 17:45:08 +0000858 SDValue vectorizeOp =
Dale Johannesenea996922009-02-04 20:06:27 +0000859 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, vecVT, theValue);
Scott Michelf65c8f02008-11-19 15:24:16 +0000860
Dale Johannesenea996922009-02-04 20:06:27 +0000861 result = DAG.getNode(SPUISD::SHUFB, dl, vecVT,
pingbakb8913342009-01-26 03:37:41 +0000862 vectorizeOp, alignLoadVec,
Scott Michel34712c32009-03-16 18:47:25 +0000863 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenea996922009-02-04 20:06:27 +0000864 MVT::v4i32, insertEltOp));
Scott Michel8efdca42007-12-04 22:23:35 +0000865
Dale Johannesenea996922009-02-04 20:06:27 +0000866 result = DAG.getStore(the_chain, dl, result, basePtr,
Scott Michel8efdca42007-12-04 22:23:35 +0000867 LN->getSrcValue(), LN->getSrcValueOffset(),
868 LN->isVolatile(), LN->getAlignment());
869
Scott Michel8c2746e2008-12-04 17:16:59 +0000870#if 0 && !defined(NDEBUG)
Scott Michelf65c8f02008-11-19 15:24:16 +0000871 if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) {
872 const SDValue &currentRoot = DAG.getRoot();
873
874 DAG.setRoot(result);
875 cerr << "------- CellSPU:LowerStore result:\n";
876 DAG.dump();
877 cerr << "-------\n";
878 DAG.setRoot(currentRoot);
879 }
880#endif
Scott Michelec8c82e2008-12-02 19:53:53 +0000881
Scott Michel8efdca42007-12-04 22:23:35 +0000882 return result;
883 /*UNREACHED*/
884 }
885 case ISD::PRE_INC:
886 case ISD::PRE_DEC:
887 case ISD::POST_INC:
888 case ISD::POST_DEC:
889 case ISD::LAST_INDEXED_MODE:
Edwin Török4d9756a2009-07-08 20:53:28 +0000890 {
891 std::string msg;
892 raw_string_ostream Msg(msg);
893 Msg << "LowerLOAD: Got a LoadSDNode with an addr mode other than "
Scott Michel8efdca42007-12-04 22:23:35 +0000894 "UNINDEXED\n";
Edwin Török4d9756a2009-07-08 20:53:28 +0000895 Msg << (unsigned) SN->getAddressingMode();
896 llvm_report_error(Msg.str());
897 /*NOTREACHED*/
898 }
Scott Michel8efdca42007-12-04 22:23:35 +0000899 }
900
Dan Gohman8181bd12008-07-27 21:46:04 +0000901 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +0000902}
903
Scott Michel750b93f2009-01-15 04:41:47 +0000904//! Generate the address of a constant pool entry.
905SDValue
Dan Gohman8181bd12008-07-27 21:46:04 +0000906LowerConstantPool(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
Duncan Sands92c43912008-06-06 12:08:01 +0000907 MVT PtrVT = Op.getValueType();
Scott Michel8efdca42007-12-04 22:23:35 +0000908 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
909 Constant *C = CP->getConstVal();
Dan Gohman8181bd12008-07-27 21:46:04 +0000910 SDValue CPI = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment());
911 SDValue Zero = DAG.getConstant(0, PtrVT);
Scott Micheldbac4cf2008-01-11 02:53:15 +0000912 const TargetMachine &TM = DAG.getTarget();
Dale Johannesen175fdef2009-02-06 21:50:26 +0000913 // FIXME there is no actual debug info here
914 DebugLoc dl = Op.getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +0000915
916 if (TM.getRelocationModel() == Reloc::Static) {
917 if (!ST->usingLargeMem()) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000918 // Just return the SDValue with the constant pool address in it.
Dale Johannesen175fdef2009-02-06 21:50:26 +0000919 return DAG.getNode(SPUISD::AFormAddr, dl, PtrVT, CPI, Zero);
Scott Michel8efdca42007-12-04 22:23:35 +0000920 } else {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000921 SDValue Hi = DAG.getNode(SPUISD::Hi, dl, PtrVT, CPI, Zero);
922 SDValue Lo = DAG.getNode(SPUISD::Lo, dl, PtrVT, CPI, Zero);
923 return DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, Hi, Lo);
Scott Michel8efdca42007-12-04 22:23:35 +0000924 }
925 }
926
Edwin Törökbd448e32009-07-14 16:55:14 +0000927 llvm_unreachable("LowerConstantPool: Relocation model other than static"
Edwin Törökb2de05e2009-07-14 12:22:58 +0000928 " not supported.");
Dan Gohman8181bd12008-07-27 21:46:04 +0000929 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +0000930}
931
Scott Michel750b93f2009-01-15 04:41:47 +0000932//! Alternate entry point for generating the address of a constant pool entry
933SDValue
934SPU::LowerConstantPool(SDValue Op, SelectionDAG &DAG, const SPUTargetMachine &TM) {
935 return ::LowerConstantPool(Op, DAG, TM.getSubtargetImpl());
936}
937
Dan Gohman8181bd12008-07-27 21:46:04 +0000938static SDValue
939LowerJumpTable(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
Duncan Sands92c43912008-06-06 12:08:01 +0000940 MVT PtrVT = Op.getValueType();
Scott Michel8efdca42007-12-04 22:23:35 +0000941 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman8181bd12008-07-27 21:46:04 +0000942 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
943 SDValue Zero = DAG.getConstant(0, PtrVT);
Scott Michel8efdca42007-12-04 22:23:35 +0000944 const TargetMachine &TM = DAG.getTarget();
Dale Johannesen175fdef2009-02-06 21:50:26 +0000945 // FIXME there is no actual debug info here
946 DebugLoc dl = Op.getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +0000947
948 if (TM.getRelocationModel() == Reloc::Static) {
Scott Michel97872d32008-02-23 18:41:37 +0000949 if (!ST->usingLargeMem()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000950 return DAG.getNode(SPUISD::AFormAddr, dl, PtrVT, JTI, Zero);
Scott Michel97872d32008-02-23 18:41:37 +0000951 } else {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000952 SDValue Hi = DAG.getNode(SPUISD::Hi, dl, PtrVT, JTI, Zero);
953 SDValue Lo = DAG.getNode(SPUISD::Lo, dl, PtrVT, JTI, Zero);
954 return DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, Hi, Lo);
Scott Michel97872d32008-02-23 18:41:37 +0000955 }
Scott Michel8efdca42007-12-04 22:23:35 +0000956 }
957
Edwin Törökbd448e32009-07-14 16:55:14 +0000958 llvm_unreachable("LowerJumpTable: Relocation model other than static"
Edwin Törökb2de05e2009-07-14 12:22:58 +0000959 " not supported.");
Dan Gohman8181bd12008-07-27 21:46:04 +0000960 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +0000961}
962
Dan Gohman8181bd12008-07-27 21:46:04 +0000963static SDValue
964LowerGlobalAddress(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
Duncan Sands92c43912008-06-06 12:08:01 +0000965 MVT PtrVT = Op.getValueType();
Scott Michel8efdca42007-12-04 22:23:35 +0000966 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
967 GlobalValue *GV = GSDN->getGlobal();
Dan Gohman8181bd12008-07-27 21:46:04 +0000968 SDValue GA = DAG.getTargetGlobalAddress(GV, PtrVT, GSDN->getOffset());
Scott Michel8efdca42007-12-04 22:23:35 +0000969 const TargetMachine &TM = DAG.getTarget();
Dan Gohman8181bd12008-07-27 21:46:04 +0000970 SDValue Zero = DAG.getConstant(0, PtrVT);
Dale Johannesen175fdef2009-02-06 21:50:26 +0000971 // FIXME there is no actual debug info here
972 DebugLoc dl = Op.getDebugLoc();
Scott Michel4ec722e2008-07-16 17:17:29 +0000973
Scott Michel8efdca42007-12-04 22:23:35 +0000974 if (TM.getRelocationModel() == Reloc::Static) {
Scott Michelf9f42e62008-01-29 02:16:57 +0000975 if (!ST->usingLargeMem()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000976 return DAG.getNode(SPUISD::AFormAddr, dl, PtrVT, GA, Zero);
Scott Michelf9f42e62008-01-29 02:16:57 +0000977 } else {
Dale Johannesen175fdef2009-02-06 21:50:26 +0000978 SDValue Hi = DAG.getNode(SPUISD::Hi, dl, PtrVT, GA, Zero);
979 SDValue Lo = DAG.getNode(SPUISD::Lo, dl, PtrVT, GA, Zero);
980 return DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, Hi, Lo);
Scott Michelf9f42e62008-01-29 02:16:57 +0000981 }
Scott Michel8efdca42007-12-04 22:23:35 +0000982 } else {
Edwin Török4d9756a2009-07-08 20:53:28 +0000983 llvm_report_error("LowerGlobalAddress: Relocation model other than static"
984 "not supported.");
Scott Michel8efdca42007-12-04 22:23:35 +0000985 /*NOTREACHED*/
986 }
987
Dan Gohman8181bd12008-07-27 21:46:04 +0000988 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +0000989}
990
Nate Begeman78125042008-02-14 18:43:04 +0000991//! Custom lower double precision floating point constants
Dan Gohman8181bd12008-07-27 21:46:04 +0000992static SDValue
993LowerConstantFP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +0000994 MVT VT = Op.getValueType();
Dale Johannesen175fdef2009-02-06 21:50:26 +0000995 // FIXME there is no actual debug info here
996 DebugLoc dl = Op.getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +0000997
Nate Begeman78125042008-02-14 18:43:04 +0000998 if (VT == MVT::f64) {
Scott Michel0718cd82008-12-01 17:56:02 +0000999 ConstantFPSDNode *FP = cast<ConstantFPSDNode>(Op.getNode());
1000
1001 assert((FP != 0) &&
1002 "LowerConstantFP: Node is not ConstantFPSDNode");
Scott Michelae5cbf52008-12-29 03:23:36 +00001003
Scott Michel11e88bb2007-12-19 20:15:47 +00001004 uint64_t dbits = DoubleToBits(FP->getValueAPF().convertToDouble());
Scott Michel0718cd82008-12-01 17:56:02 +00001005 SDValue T = DAG.getConstant(dbits, MVT::i64);
Evan Cheng907a2d22009-02-25 22:49:59 +00001006 SDValue Tvec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64, T, T);
Dale Johannesen175fdef2009-02-06 21:50:26 +00001007 return DAG.getNode(SPUISD::VEC2PREFSLOT, dl, VT,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00001008 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Tvec));
Scott Michel8efdca42007-12-04 22:23:35 +00001009 }
1010
Dan Gohman8181bd12008-07-27 21:46:04 +00001011 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001012}
1013
Dan Gohman8181bd12008-07-27 21:46:04 +00001014static SDValue
Dan Gohman8181bd12008-07-27 21:46:04 +00001015LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG, int &VarArgsFrameIndex)
Scott Michel8efdca42007-12-04 22:23:35 +00001016{
1017 MachineFunction &MF = DAG.getMachineFunction();
1018 MachineFrameInfo *MFI = MF.getFrameInfo();
Chris Lattner1b989192007-12-31 04:13:23 +00001019 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Scott Michela313fb02008-10-30 01:51:48 +00001020 SmallVector<SDValue, 48> ArgValues;
Dan Gohman8181bd12008-07-27 21:46:04 +00001021 SDValue Root = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001022 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Dale Johannesenea996922009-02-04 20:06:27 +00001023 DebugLoc dl = Op.getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +00001024
1025 const unsigned *ArgRegs = SPURegisterInfo::getArgRegs();
1026 const unsigned NumArgRegs = SPURegisterInfo::getNumArgRegs();
Scott Michel4ec722e2008-07-16 17:17:29 +00001027
Scott Michel8efdca42007-12-04 22:23:35 +00001028 unsigned ArgOffset = SPUFrameInfo::minStackSize();
1029 unsigned ArgRegIdx = 0;
1030 unsigned StackSlotSize = SPUFrameInfo::stackSlotSize();
Scott Michel4ec722e2008-07-16 17:17:29 +00001031
Duncan Sands92c43912008-06-06 12:08:01 +00001032 MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michel4ec722e2008-07-16 17:17:29 +00001033
Scott Michel8efdca42007-12-04 22:23:35 +00001034 // Add DAG nodes to load the arguments or copy them out of registers.
Gabor Greife9f7f582008-08-31 15:37:04 +00001035 for (unsigned ArgNo = 0, e = Op.getNode()->getNumValues() - 1;
1036 ArgNo != e; ++ArgNo) {
Duncan Sands92c43912008-06-06 12:08:01 +00001037 MVT ObjectVT = Op.getValue(ArgNo).getValueType();
1038 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Scott Michela313fb02008-10-30 01:51:48 +00001039 SDValue ArgVal;
Scott Michel8efdca42007-12-04 22:23:35 +00001040
Scott Michela313fb02008-10-30 01:51:48 +00001041 if (ArgRegIdx < NumArgRegs) {
1042 const TargetRegisterClass *ArgRegClass;
Scott Michel4ec722e2008-07-16 17:17:29 +00001043
Scott Michela313fb02008-10-30 01:51:48 +00001044 switch (ObjectVT.getSimpleVT()) {
1045 default: {
Edwin Török4d9756a2009-07-08 20:53:28 +00001046 std::string msg;
1047 raw_string_ostream Msg(msg);
1048 Msg << "LowerFORMAL_ARGUMENTS Unhandled argument type: "
1049 << ObjectVT.getMVTString();
1050 llvm_report_error(Msg.str());
Scott Michela313fb02008-10-30 01:51:48 +00001051 }
1052 case MVT::i8:
Scott Michel33d73eb2008-11-21 02:56:16 +00001053 ArgRegClass = &SPU::R8CRegClass;
1054 break;
Scott Michela313fb02008-10-30 01:51:48 +00001055 case MVT::i16:
Scott Michel33d73eb2008-11-21 02:56:16 +00001056 ArgRegClass = &SPU::R16CRegClass;
1057 break;
Scott Michela313fb02008-10-30 01:51:48 +00001058 case MVT::i32:
Scott Michel33d73eb2008-11-21 02:56:16 +00001059 ArgRegClass = &SPU::R32CRegClass;
1060 break;
Scott Michela313fb02008-10-30 01:51:48 +00001061 case MVT::i64:
Scott Michel33d73eb2008-11-21 02:56:16 +00001062 ArgRegClass = &SPU::R64CRegClass;
1063 break;
Scott Michel2ef773a2009-01-06 03:36:14 +00001064 case MVT::i128:
1065 ArgRegClass = &SPU::GPRCRegClass;
1066 break;
Scott Michela313fb02008-10-30 01:51:48 +00001067 case MVT::f32:
Scott Michel33d73eb2008-11-21 02:56:16 +00001068 ArgRegClass = &SPU::R32FPRegClass;
1069 break;
Scott Michela313fb02008-10-30 01:51:48 +00001070 case MVT::f64:
Scott Michel33d73eb2008-11-21 02:56:16 +00001071 ArgRegClass = &SPU::R64FPRegClass;
1072 break;
Scott Michela313fb02008-10-30 01:51:48 +00001073 case MVT::v2f64:
1074 case MVT::v4f32:
1075 case MVT::v2i64:
1076 case MVT::v4i32:
1077 case MVT::v8i16:
1078 case MVT::v16i8:
Scott Michel33d73eb2008-11-21 02:56:16 +00001079 ArgRegClass = &SPU::VECREGRegClass;
1080 break;
Scott Michela313fb02008-10-30 01:51:48 +00001081 }
1082
1083 unsigned VReg = RegInfo.createVirtualRegister(ArgRegClass);
1084 RegInfo.addLiveIn(ArgRegs[ArgRegIdx], VReg);
Dale Johannesenea996922009-02-04 20:06:27 +00001085 ArgVal = DAG.getCopyFromReg(Root, dl, VReg, ObjectVT);
Scott Michela313fb02008-10-30 01:51:48 +00001086 ++ArgRegIdx;
1087 } else {
1088 // We need to load the argument to a virtual register if we determined
1089 // above that we ran out of physical registers of the appropriate type
1090 // or we're forced to do vararg
Chris Lattner60069452008-02-13 07:35:30 +00001091 int FI = MFI->CreateFixedObject(ObjSize, ArgOffset);
Dan Gohman8181bd12008-07-27 21:46:04 +00001092 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dale Johannesenea996922009-02-04 20:06:27 +00001093 ArgVal = DAG.getLoad(ObjectVT, dl, Root, FIN, NULL, 0);
Scott Michel8efdca42007-12-04 22:23:35 +00001094 ArgOffset += StackSlotSize;
1095 }
Scott Michel4ec722e2008-07-16 17:17:29 +00001096
Scott Michel8efdca42007-12-04 22:23:35 +00001097 ArgValues.push_back(ArgVal);
Scott Michela313fb02008-10-30 01:51:48 +00001098 // Update the chain
1099 Root = ArgVal.getOperand(0);
Scott Michel8efdca42007-12-04 22:23:35 +00001100 }
Scott Michel4ec722e2008-07-16 17:17:29 +00001101
Scott Michela313fb02008-10-30 01:51:48 +00001102 // vararg handling:
Scott Michel8efdca42007-12-04 22:23:35 +00001103 if (isVarArg) {
Scott Michela313fb02008-10-30 01:51:48 +00001104 // unsigned int ptr_size = PtrVT.getSizeInBits() / 8;
1105 // We will spill (79-3)+1 registers to the stack
1106 SmallVector<SDValue, 79-3+1> MemOps;
1107
1108 // Create the frame slot
1109
Scott Michel8efdca42007-12-04 22:23:35 +00001110 for (; ArgRegIdx != NumArgRegs; ++ArgRegIdx) {
Scott Michela313fb02008-10-30 01:51:48 +00001111 VarArgsFrameIndex = MFI->CreateFixedObject(StackSlotSize, ArgOffset);
1112 SDValue FIN = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
1113 SDValue ArgVal = DAG.getRegister(ArgRegs[ArgRegIdx], MVT::v16i8);
Dale Johannesenea996922009-02-04 20:06:27 +00001114 SDValue Store = DAG.getStore(Root, dl, ArgVal, FIN, NULL, 0);
Scott Michela313fb02008-10-30 01:51:48 +00001115 Root = Store.getOperand(0);
Scott Michel8efdca42007-12-04 22:23:35 +00001116 MemOps.push_back(Store);
Scott Michela313fb02008-10-30 01:51:48 +00001117
1118 // Increment address by stack slot size for the next stored argument
1119 ArgOffset += StackSlotSize;
Scott Michel8efdca42007-12-04 22:23:35 +00001120 }
1121 if (!MemOps.empty())
Scott Michel34712c32009-03-16 18:47:25 +00001122 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenea996922009-02-04 20:06:27 +00001123 &MemOps[0], MemOps.size());
Scott Michel8efdca42007-12-04 22:23:35 +00001124 }
Scott Michel4ec722e2008-07-16 17:17:29 +00001125
Scott Michel8efdca42007-12-04 22:23:35 +00001126 ArgValues.push_back(Root);
Scott Michel4ec722e2008-07-16 17:17:29 +00001127
Scott Michel8efdca42007-12-04 22:23:35 +00001128 // Return the new list of results.
Dale Johannesenea996922009-02-04 20:06:27 +00001129 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sands42d7bb82008-12-01 11:41:29 +00001130 &ArgValues[0], ArgValues.size());
Scott Michel8efdca42007-12-04 22:23:35 +00001131}
1132
1133/// isLSAAddress - Return the immediate to use if the specified
1134/// value is representable as a LSA address.
Dan Gohman8181bd12008-07-27 21:46:04 +00001135static SDNode *isLSAAddress(SDValue Op, SelectionDAG &DAG) {
Scott Michel5974f432008-11-11 03:06:06 +00001136 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
Scott Michel8efdca42007-12-04 22:23:35 +00001137 if (!C) return 0;
Scott Michel4ec722e2008-07-16 17:17:29 +00001138
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001139 int Addr = C->getZExtValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001140 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
1141 (Addr << 14 >> 14) != Addr)
1142 return 0; // Top 14 bits have to be sext of immediate.
Scott Michel4ec722e2008-07-16 17:17:29 +00001143
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001144 return DAG.getConstant((int)C->getZExtValue() >> 2, MVT::i32).getNode();
Scott Michel8efdca42007-12-04 22:23:35 +00001145}
1146
Scott Michel70741542009-01-06 23:10:38 +00001147static SDValue
Dan Gohman8181bd12008-07-27 21:46:04 +00001148LowerCALL(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
Dan Gohman705e3f72008-09-13 01:54:27 +00001149 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1150 SDValue Chain = TheCall->getChain();
Dan Gohman705e3f72008-09-13 01:54:27 +00001151 SDValue Callee = TheCall->getCallee();
1152 unsigned NumOps = TheCall->getNumArgs();
Scott Michel8efdca42007-12-04 22:23:35 +00001153 unsigned StackSlotSize = SPUFrameInfo::stackSlotSize();
1154 const unsigned *ArgRegs = SPURegisterInfo::getArgRegs();
1155 const unsigned NumArgRegs = SPURegisterInfo::getNumArgRegs();
Dale Johannesenea996922009-02-04 20:06:27 +00001156 DebugLoc dl = TheCall->getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +00001157
1158 // Handy pointer type
Duncan Sands92c43912008-06-06 12:08:01 +00001159 MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michel4ec722e2008-07-16 17:17:29 +00001160
Scott Michel8efdca42007-12-04 22:23:35 +00001161 // Accumulate how many bytes are to be pushed on the stack, including the
1162 // linkage area, and parameter passing area. According to the SPU ABI,
1163 // we minimally need space for [LR] and [SP]
1164 unsigned NumStackBytes = SPUFrameInfo::minStackSize();
Scott Michel4ec722e2008-07-16 17:17:29 +00001165
Scott Michel8efdca42007-12-04 22:23:35 +00001166 // Set up a copy of the stack pointer for use loading and storing any
1167 // arguments that may not fit in the registers available for argument
1168 // passing.
Dan Gohman8181bd12008-07-27 21:46:04 +00001169 SDValue StackPtr = DAG.getRegister(SPU::R1, MVT::i32);
Scott Michel4ec722e2008-07-16 17:17:29 +00001170
Scott Michel8efdca42007-12-04 22:23:35 +00001171 // Figure out which arguments are going to go in registers, and which in
1172 // memory.
1173 unsigned ArgOffset = SPUFrameInfo::minStackSize(); // Just below [LR]
1174 unsigned ArgRegIdx = 0;
1175
1176 // Keep track of registers passing arguments
Dan Gohman8181bd12008-07-27 21:46:04 +00001177 std::vector<std::pair<unsigned, SDValue> > RegsToPass;
Scott Michel8efdca42007-12-04 22:23:35 +00001178 // And the arguments passed on the stack
Dan Gohman8181bd12008-07-27 21:46:04 +00001179 SmallVector<SDValue, 8> MemOpChains;
Scott Michel8efdca42007-12-04 22:23:35 +00001180
1181 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohman705e3f72008-09-13 01:54:27 +00001182 SDValue Arg = TheCall->getArg(i);
Scott Michel4ec722e2008-07-16 17:17:29 +00001183
Scott Michel8efdca42007-12-04 22:23:35 +00001184 // PtrOff will be used to store the current argument to the stack if a
1185 // register cannot be found for it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001186 SDValue PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Dale Johannesenea996922009-02-04 20:06:27 +00001187 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Scott Michel8efdca42007-12-04 22:23:35 +00001188
Duncan Sands92c43912008-06-06 12:08:01 +00001189 switch (Arg.getValueType().getSimpleVT()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00001190 default: llvm_unreachable("Unexpected ValueType for argument!");
Scott Michel2ef773a2009-01-06 03:36:14 +00001191 case MVT::i8:
1192 case MVT::i16:
Scott Michel8efdca42007-12-04 22:23:35 +00001193 case MVT::i32:
1194 case MVT::i64:
1195 case MVT::i128:
1196 if (ArgRegIdx != NumArgRegs) {
1197 RegsToPass.push_back(std::make_pair(ArgRegs[ArgRegIdx++], Arg));
1198 } else {
Dale Johannesenea996922009-02-04 20:06:27 +00001199 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
Scott Michel5a6f17b2008-01-30 02:55:46 +00001200 ArgOffset += StackSlotSize;
Scott Michel8efdca42007-12-04 22:23:35 +00001201 }
1202 break;
1203 case MVT::f32:
1204 case MVT::f64:
1205 if (ArgRegIdx != NumArgRegs) {
1206 RegsToPass.push_back(std::make_pair(ArgRegs[ArgRegIdx++], Arg));
1207 } else {
Dale Johannesenea996922009-02-04 20:06:27 +00001208 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
Scott Michel5a6f17b2008-01-30 02:55:46 +00001209 ArgOffset += StackSlotSize;
Scott Michel8efdca42007-12-04 22:23:35 +00001210 }
1211 break;
Scott Michele2641a12008-12-04 21:01:44 +00001212 case MVT::v2i64:
1213 case MVT::v2f64:
Scott Michel8efdca42007-12-04 22:23:35 +00001214 case MVT::v4f32:
1215 case MVT::v4i32:
1216 case MVT::v8i16:
1217 case MVT::v16i8:
1218 if (ArgRegIdx != NumArgRegs) {
1219 RegsToPass.push_back(std::make_pair(ArgRegs[ArgRegIdx++], Arg));
1220 } else {
Dale Johannesenea996922009-02-04 20:06:27 +00001221 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
Scott Michel5a6f17b2008-01-30 02:55:46 +00001222 ArgOffset += StackSlotSize;
Scott Michel8efdca42007-12-04 22:23:35 +00001223 }
1224 break;
1225 }
1226 }
1227
1228 // Update number of stack bytes actually used, insert a call sequence start
1229 NumStackBytes = (ArgOffset - SPUFrameInfo::minStackSize());
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001230 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumStackBytes,
1231 true));
Scott Michel8efdca42007-12-04 22:23:35 +00001232
1233 if (!MemOpChains.empty()) {
1234 // Adjust the stack pointer for the stack arguments.
Dale Johannesenea996922009-02-04 20:06:27 +00001235 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Scott Michel8efdca42007-12-04 22:23:35 +00001236 &MemOpChains[0], MemOpChains.size());
1237 }
Scott Michel4ec722e2008-07-16 17:17:29 +00001238
Scott Michel8efdca42007-12-04 22:23:35 +00001239 // Build a sequence of copy-to-reg nodes chained together with token chain
1240 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman8181bd12008-07-27 21:46:04 +00001241 SDValue InFlag;
Scott Michel8efdca42007-12-04 22:23:35 +00001242 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel34712c32009-03-16 18:47:25 +00001243 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenea996922009-02-04 20:06:27 +00001244 RegsToPass[i].second, InFlag);
Scott Michel8efdca42007-12-04 22:23:35 +00001245 InFlag = Chain.getValue(1);
1246 }
Scott Michel4ec722e2008-07-16 17:17:29 +00001247
Dan Gohman8181bd12008-07-27 21:46:04 +00001248 SmallVector<SDValue, 8> Ops;
Scott Michel8efdca42007-12-04 22:23:35 +00001249 unsigned CallOpc = SPUISD::CALL;
Scott Michel4ec722e2008-07-16 17:17:29 +00001250
Bill Wendlingfef06052008-09-16 21:48:12 +00001251 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1252 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1253 // node so that legalize doesn't hack it.
Scott Michel5974f432008-11-11 03:06:06 +00001254 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Scott Michel8efdca42007-12-04 22:23:35 +00001255 GlobalValue *GV = G->getGlobal();
Duncan Sands92c43912008-06-06 12:08:01 +00001256 MVT CalleeVT = Callee.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00001257 SDValue Zero = DAG.getConstant(0, PtrVT);
1258 SDValue GA = DAG.getTargetGlobalAddress(GV, CalleeVT);
Scott Michel8efdca42007-12-04 22:23:35 +00001259
Scott Micheldbac4cf2008-01-11 02:53:15 +00001260 if (!ST->usingLargeMem()) {
1261 // Turn calls to targets that are defined (i.e., have bodies) into BRSL
1262 // style calls, otherwise, external symbols are BRASL calls. This assumes
1263 // that declared/defined symbols are in the same compilation unit and can
1264 // be reached through PC-relative jumps.
1265 //
1266 // NOTE:
1267 // This may be an unsafe assumption for JIT and really large compilation
1268 // units.
1269 if (GV->isDeclaration()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00001270 Callee = DAG.getNode(SPUISD::AFormAddr, dl, CalleeVT, GA, Zero);
Scott Micheldbac4cf2008-01-11 02:53:15 +00001271 } else {
Dale Johannesen175fdef2009-02-06 21:50:26 +00001272 Callee = DAG.getNode(SPUISD::PCRelAddr, dl, CalleeVT, GA, Zero);
Scott Micheldbac4cf2008-01-11 02:53:15 +00001273 }
Scott Michel8efdca42007-12-04 22:23:35 +00001274 } else {
Scott Micheldbac4cf2008-01-11 02:53:15 +00001275 // "Large memory" mode: Turn all calls into indirect calls with a X-form
1276 // address pairs:
Dale Johannesen175fdef2009-02-06 21:50:26 +00001277 Callee = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, GA, Zero);
Scott Michel8efdca42007-12-04 22:23:35 +00001278 }
Scott Michelae5cbf52008-12-29 03:23:36 +00001279 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1280 MVT CalleeVT = Callee.getValueType();
1281 SDValue Zero = DAG.getConstant(0, PtrVT);
1282 SDValue ExtSym = DAG.getTargetExternalSymbol(S->getSymbol(),
1283 Callee.getValueType());
1284
1285 if (!ST->usingLargeMem()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00001286 Callee = DAG.getNode(SPUISD::AFormAddr, dl, CalleeVT, ExtSym, Zero);
Scott Michelae5cbf52008-12-29 03:23:36 +00001287 } else {
Dale Johannesen175fdef2009-02-06 21:50:26 +00001288 Callee = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT, ExtSym, Zero);
Scott Michelae5cbf52008-12-29 03:23:36 +00001289 }
1290 } else if (SDNode *Dest = isLSAAddress(Callee, DAG)) {
Scott Michel8efdca42007-12-04 22:23:35 +00001291 // If this is an absolute destination address that appears to be a legal
1292 // local store address, use the munged value.
Dan Gohman8181bd12008-07-27 21:46:04 +00001293 Callee = SDValue(Dest, 0);
Scott Micheldbac4cf2008-01-11 02:53:15 +00001294 }
Scott Michel8efdca42007-12-04 22:23:35 +00001295
1296 Ops.push_back(Chain);
1297 Ops.push_back(Callee);
Scott Michel4ec722e2008-07-16 17:17:29 +00001298
Scott Michel8efdca42007-12-04 22:23:35 +00001299 // Add argument registers to the end of the list so that they are known live
1300 // into the call.
1301 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
Scott Michel4ec722e2008-07-16 17:17:29 +00001302 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
Scott Michel8efdca42007-12-04 22:23:35 +00001303 RegsToPass[i].second.getValueType()));
Scott Michel4ec722e2008-07-16 17:17:29 +00001304
Gabor Greif1c80d112008-08-28 21:40:38 +00001305 if (InFlag.getNode())
Scott Michel8efdca42007-12-04 22:23:35 +00001306 Ops.push_back(InFlag);
Duncan Sands698842f2008-07-02 17:40:58 +00001307 // Returns a chain and a flag for retval copy to use.
Dale Johannesenea996922009-02-04 20:06:27 +00001308 Chain = DAG.getNode(CallOpc, dl, DAG.getVTList(MVT::Other, MVT::Flag),
Duncan Sands698842f2008-07-02 17:40:58 +00001309 &Ops[0], Ops.size());
Scott Michel8efdca42007-12-04 22:23:35 +00001310 InFlag = Chain.getValue(1);
1311
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001312 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumStackBytes, true),
1313 DAG.getIntPtrConstant(0, true), InFlag);
Dan Gohman705e3f72008-09-13 01:54:27 +00001314 if (TheCall->getValueType(0) != MVT::Other)
Evan Cheng07322bb2008-02-05 22:44:06 +00001315 InFlag = Chain.getValue(1);
1316
Dan Gohman8181bd12008-07-27 21:46:04 +00001317 SDValue ResultVals[3];
Scott Michel8efdca42007-12-04 22:23:35 +00001318 unsigned NumResults = 0;
Scott Michel4ec722e2008-07-16 17:17:29 +00001319
Scott Michel8efdca42007-12-04 22:23:35 +00001320 // If the call has results, copy the values out of the ret val registers.
Dan Gohman705e3f72008-09-13 01:54:27 +00001321 switch (TheCall->getValueType(0).getSimpleVT()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00001322 default: llvm_unreachable("Unexpected ret value!");
Scott Michel8efdca42007-12-04 22:23:35 +00001323 case MVT::Other: break;
1324 case MVT::i32:
Dan Gohman705e3f72008-09-13 01:54:27 +00001325 if (TheCall->getValueType(1) == MVT::i32) {
Scott Michel34712c32009-03-16 18:47:25 +00001326 Chain = DAG.getCopyFromReg(Chain, dl, SPU::R4,
Dale Johannesenea996922009-02-04 20:06:27 +00001327 MVT::i32, InFlag).getValue(1);
Scott Michel8efdca42007-12-04 22:23:35 +00001328 ResultVals[0] = Chain.getValue(0);
Dale Johannesenea996922009-02-04 20:06:27 +00001329 Chain = DAG.getCopyFromReg(Chain, dl, SPU::R3, MVT::i32,
Scott Michel8efdca42007-12-04 22:23:35 +00001330 Chain.getValue(2)).getValue(1);
1331 ResultVals[1] = Chain.getValue(0);
1332 NumResults = 2;
Scott Michel8efdca42007-12-04 22:23:35 +00001333 } else {
Scott Michel34712c32009-03-16 18:47:25 +00001334 Chain = DAG.getCopyFromReg(Chain, dl, SPU::R3, MVT::i32,
Dale Johannesenea996922009-02-04 20:06:27 +00001335 InFlag).getValue(1);
Scott Michel8efdca42007-12-04 22:23:35 +00001336 ResultVals[0] = Chain.getValue(0);
1337 NumResults = 1;
1338 }
Scott Michel8efdca42007-12-04 22:23:35 +00001339 break;
1340 case MVT::i64:
Scott Michel34712c32009-03-16 18:47:25 +00001341 Chain = DAG.getCopyFromReg(Chain, dl, SPU::R3, MVT::i64,
Dale Johannesenea996922009-02-04 20:06:27 +00001342 InFlag).getValue(1);
Scott Michel8efdca42007-12-04 22:23:35 +00001343 ResultVals[0] = Chain.getValue(0);
1344 NumResults = 1;
Scott Michel8efdca42007-12-04 22:23:35 +00001345 break;
Scott Michel2ef773a2009-01-06 03:36:14 +00001346 case MVT::i128:
Scott Michel34712c32009-03-16 18:47:25 +00001347 Chain = DAG.getCopyFromReg(Chain, dl, SPU::R3, MVT::i128,
Dale Johannesenea996922009-02-04 20:06:27 +00001348 InFlag).getValue(1);
Scott Michel2ef773a2009-01-06 03:36:14 +00001349 ResultVals[0] = Chain.getValue(0);
1350 NumResults = 1;
1351 break;
Scott Michel8efdca42007-12-04 22:23:35 +00001352 case MVT::f32:
1353 case MVT::f64:
Dale Johannesenea996922009-02-04 20:06:27 +00001354 Chain = DAG.getCopyFromReg(Chain, dl, SPU::R3, TheCall->getValueType(0),
Scott Michel8efdca42007-12-04 22:23:35 +00001355 InFlag).getValue(1);
1356 ResultVals[0] = Chain.getValue(0);
1357 NumResults = 1;
Scott Michel8efdca42007-12-04 22:23:35 +00001358 break;
1359 case MVT::v2f64:
Scott Michele2641a12008-12-04 21:01:44 +00001360 case MVT::v2i64:
Scott Michel8efdca42007-12-04 22:23:35 +00001361 case MVT::v4f32:
1362 case MVT::v4i32:
1363 case MVT::v8i16:
1364 case MVT::v16i8:
Dale Johannesenea996922009-02-04 20:06:27 +00001365 Chain = DAG.getCopyFromReg(Chain, dl, SPU::R3, TheCall->getValueType(0),
Scott Michel8efdca42007-12-04 22:23:35 +00001366 InFlag).getValue(1);
1367 ResultVals[0] = Chain.getValue(0);
1368 NumResults = 1;
Scott Michel8efdca42007-12-04 22:23:35 +00001369 break;
1370 }
Duncan Sands698842f2008-07-02 17:40:58 +00001371
Scott Michel8efdca42007-12-04 22:23:35 +00001372 // If the function returns void, just return the chain.
1373 if (NumResults == 0)
1374 return Chain;
Scott Michel4ec722e2008-07-16 17:17:29 +00001375
Scott Michel8efdca42007-12-04 22:23:35 +00001376 // Otherwise, merge everything together with a MERGE_VALUES node.
1377 ResultVals[NumResults++] = Chain;
Dale Johannesenea996922009-02-04 20:06:27 +00001378 SDValue Res = DAG.getMergeValues(ResultVals, NumResults, dl);
Gabor Greif46bf5472008-08-26 22:36:50 +00001379 return Res.getValue(Op.getResNo());
Scott Michel8efdca42007-12-04 22:23:35 +00001380}
1381
Dan Gohman8181bd12008-07-27 21:46:04 +00001382static SDValue
1383LowerRET(SDValue Op, SelectionDAG &DAG, TargetMachine &TM) {
Scott Michel8efdca42007-12-04 22:23:35 +00001384 SmallVector<CCValAssign, 16> RVLocs;
1385 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
1386 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001387 DebugLoc dl = Op.getDebugLoc();
Owen Anderson175b6542009-07-22 00:24:57 +00001388 CCState CCInfo(CC, isVarArg, TM, RVLocs, *DAG.getContext());
Gabor Greif1c80d112008-08-28 21:40:38 +00001389 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_SPU);
Scott Michel4ec722e2008-07-16 17:17:29 +00001390
Scott Michel8efdca42007-12-04 22:23:35 +00001391 // If this is the first return lowered for this function, add the regs to the
1392 // liveout set for the function.
Chris Lattner1b989192007-12-31 04:13:23 +00001393 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Scott Michel8efdca42007-12-04 22:23:35 +00001394 for (unsigned i = 0; i != RVLocs.size(); ++i)
Chris Lattner1b989192007-12-31 04:13:23 +00001395 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Scott Michel8efdca42007-12-04 22:23:35 +00001396 }
1397
Dan Gohman8181bd12008-07-27 21:46:04 +00001398 SDValue Chain = Op.getOperand(0);
1399 SDValue Flag;
Scott Michel4ec722e2008-07-16 17:17:29 +00001400
Scott Michel8efdca42007-12-04 22:23:35 +00001401 // Copy the result values into the output registers.
1402 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1403 CCValAssign &VA = RVLocs[i];
1404 assert(VA.isRegLoc() && "Can only return in registers!");
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001405 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
1406 Op.getOperand(i*2+1), Flag);
Scott Michel8efdca42007-12-04 22:23:35 +00001407 Flag = Chain.getValue(1);
1408 }
1409
Gabor Greif1c80d112008-08-28 21:40:38 +00001410 if (Flag.getNode())
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001411 return DAG.getNode(SPUISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
Scott Michel8efdca42007-12-04 22:23:35 +00001412 else
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001413 return DAG.getNode(SPUISD::RET_FLAG, dl, MVT::Other, Chain);
Scott Michel8efdca42007-12-04 22:23:35 +00001414}
1415
1416
1417//===----------------------------------------------------------------------===//
1418// Vector related lowering:
1419//===----------------------------------------------------------------------===//
1420
1421static ConstantSDNode *
1422getVecImm(SDNode *N) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001423 SDValue OpVal(0, 0);
Scott Michel4ec722e2008-07-16 17:17:29 +00001424
Scott Michel8efdca42007-12-04 22:23:35 +00001425 // Check to see if this buildvec has a single non-undef value in its elements.
1426 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1427 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Gabor Greif1c80d112008-08-28 21:40:38 +00001428 if (OpVal.getNode() == 0)
Scott Michel8efdca42007-12-04 22:23:35 +00001429 OpVal = N->getOperand(i);
1430 else if (OpVal != N->getOperand(i))
1431 return 0;
1432 }
Scott Michel4ec722e2008-07-16 17:17:29 +00001433
Gabor Greif1c80d112008-08-28 21:40:38 +00001434 if (OpVal.getNode() != 0) {
Scott Michel5974f432008-11-11 03:06:06 +00001435 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Scott Michel8efdca42007-12-04 22:23:35 +00001436 return CN;
1437 }
1438 }
1439
Scott Michel0d5eae02009-03-17 01:15:45 +00001440 return 0;
Scott Michel8efdca42007-12-04 22:23:35 +00001441}
1442
1443/// get_vec_i18imm - Test if this vector is a vector filled with the same value
1444/// and the value fits into an unsigned 18-bit constant, and if so, return the
1445/// constant
Dan Gohman8181bd12008-07-27 21:46:04 +00001446SDValue SPU::get_vec_u18imm(SDNode *N, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00001447 MVT ValueType) {
Scott Michel8efdca42007-12-04 22:23:35 +00001448 if (ConstantSDNode *CN = getVecImm(N)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001449 uint64_t Value = CN->getZExtValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001450 if (ValueType == MVT::i64) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001451 uint64_t UValue = CN->getZExtValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001452 uint32_t upper = uint32_t(UValue >> 32);
1453 uint32_t lower = uint32_t(UValue);
1454 if (upper != lower)
Dan Gohman8181bd12008-07-27 21:46:04 +00001455 return SDValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001456 Value = Value >> 32;
1457 }
Scott Michel8efdca42007-12-04 22:23:35 +00001458 if (Value <= 0x3ffff)
Dan Gohman57d5d5d2008-11-05 02:06:09 +00001459 return DAG.getTargetConstant(Value, ValueType);
Scott Michel8efdca42007-12-04 22:23:35 +00001460 }
1461
Dan Gohman8181bd12008-07-27 21:46:04 +00001462 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001463}
1464
1465/// get_vec_i16imm - Test if this vector is a vector filled with the same value
1466/// and the value fits into a signed 16-bit constant, and if so, return the
1467/// constant
Dan Gohman8181bd12008-07-27 21:46:04 +00001468SDValue SPU::get_vec_i16imm(SDNode *N, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00001469 MVT ValueType) {
Scott Michel8efdca42007-12-04 22:23:35 +00001470 if (ConstantSDNode *CN = getVecImm(N)) {
Dan Gohman40686732008-09-26 21:54:37 +00001471 int64_t Value = CN->getSExtValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001472 if (ValueType == MVT::i64) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001473 uint64_t UValue = CN->getZExtValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001474 uint32_t upper = uint32_t(UValue >> 32);
1475 uint32_t lower = uint32_t(UValue);
1476 if (upper != lower)
Dan Gohman8181bd12008-07-27 21:46:04 +00001477 return SDValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001478 Value = Value >> 32;
1479 }
Scott Michel6baba072008-03-05 23:02:02 +00001480 if (Value >= -(1 << 15) && Value <= ((1 << 15) - 1)) {
Dan Gohman57d5d5d2008-11-05 02:06:09 +00001481 return DAG.getTargetConstant(Value, ValueType);
Scott Michel8efdca42007-12-04 22:23:35 +00001482 }
1483 }
1484
Dan Gohman8181bd12008-07-27 21:46:04 +00001485 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001486}
1487
1488/// get_vec_i10imm - Test if this vector is a vector filled with the same value
1489/// and the value fits into a signed 10-bit constant, and if so, return the
1490/// constant
Dan Gohman8181bd12008-07-27 21:46:04 +00001491SDValue SPU::get_vec_i10imm(SDNode *N, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00001492 MVT ValueType) {
Scott Michel8efdca42007-12-04 22:23:35 +00001493 if (ConstantSDNode *CN = getVecImm(N)) {
Dan Gohman40686732008-09-26 21:54:37 +00001494 int64_t Value = CN->getSExtValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001495 if (ValueType == MVT::i64) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001496 uint64_t UValue = CN->getZExtValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001497 uint32_t upper = uint32_t(UValue >> 32);
1498 uint32_t lower = uint32_t(UValue);
1499 if (upper != lower)
Dan Gohman8181bd12008-07-27 21:46:04 +00001500 return SDValue();
Scott Michelbcc7b672008-03-06 04:02:54 +00001501 Value = Value >> 32;
1502 }
Scott Michel6baba072008-03-05 23:02:02 +00001503 if (isS10Constant(Value))
Dan Gohman57d5d5d2008-11-05 02:06:09 +00001504 return DAG.getTargetConstant(Value, ValueType);
Scott Michel8efdca42007-12-04 22:23:35 +00001505 }
1506
Dan Gohman8181bd12008-07-27 21:46:04 +00001507 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001508}
1509
1510/// get_vec_i8imm - Test if this vector is a vector filled with the same value
1511/// and the value fits into a signed 8-bit constant, and if so, return the
1512/// constant.
1513///
1514/// @note: The incoming vector is v16i8 because that's the only way we can load
1515/// constant vectors. Thus, we test to see if the upper and lower bytes are the
1516/// same value.
Dan Gohman8181bd12008-07-27 21:46:04 +00001517SDValue SPU::get_vec_i8imm(SDNode *N, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00001518 MVT ValueType) {
Scott Michel8efdca42007-12-04 22:23:35 +00001519 if (ConstantSDNode *CN = getVecImm(N)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001520 int Value = (int) CN->getZExtValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001521 if (ValueType == MVT::i16
Scott Michel5a6f17b2008-01-30 02:55:46 +00001522 && Value <= 0xffff /* truncated from uint64_t */
1523 && ((short) Value >> 8) == ((short) Value & 0xff))
Dan Gohman57d5d5d2008-11-05 02:06:09 +00001524 return DAG.getTargetConstant(Value & 0xff, ValueType);
Scott Michel8efdca42007-12-04 22:23:35 +00001525 else if (ValueType == MVT::i8
Scott Michel5a6f17b2008-01-30 02:55:46 +00001526 && (Value & 0xff) == Value)
Dan Gohman57d5d5d2008-11-05 02:06:09 +00001527 return DAG.getTargetConstant(Value, ValueType);
Scott Michel8efdca42007-12-04 22:23:35 +00001528 }
1529
Dan Gohman8181bd12008-07-27 21:46:04 +00001530 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001531}
1532
1533/// get_ILHUvec_imm - Test if this vector is a vector filled with the same value
1534/// and the value fits into a signed 16-bit constant, and if so, return the
1535/// constant
Dan Gohman8181bd12008-07-27 21:46:04 +00001536SDValue SPU::get_ILHUvec_imm(SDNode *N, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00001537 MVT ValueType) {
Scott Michel8efdca42007-12-04 22:23:35 +00001538 if (ConstantSDNode *CN = getVecImm(N)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001539 uint64_t Value = CN->getZExtValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001540 if ((ValueType == MVT::i32
Scott Michel5a6f17b2008-01-30 02:55:46 +00001541 && ((unsigned) Value & 0xffff0000) == (unsigned) Value)
1542 || (ValueType == MVT::i64 && (Value & 0xffff0000) == Value))
Dan Gohman57d5d5d2008-11-05 02:06:09 +00001543 return DAG.getTargetConstant(Value >> 16, ValueType);
Scott Michel8efdca42007-12-04 22:23:35 +00001544 }
1545
Dan Gohman8181bd12008-07-27 21:46:04 +00001546 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001547}
1548
1549/// get_v4i32_imm - Catch-all for general 32-bit constant vectors
Dan Gohman8181bd12008-07-27 21:46:04 +00001550SDValue SPU::get_v4i32_imm(SDNode *N, SelectionDAG &DAG) {
Scott Michel8efdca42007-12-04 22:23:35 +00001551 if (ConstantSDNode *CN = getVecImm(N)) {
Dan Gohman57d5d5d2008-11-05 02:06:09 +00001552 return DAG.getTargetConstant((unsigned) CN->getZExtValue(), MVT::i32);
Scott Michel8efdca42007-12-04 22:23:35 +00001553 }
1554
Dan Gohman8181bd12008-07-27 21:46:04 +00001555 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001556}
1557
1558/// get_v4i32_imm - Catch-all for general 64-bit constant vectors
Dan Gohman8181bd12008-07-27 21:46:04 +00001559SDValue SPU::get_v2i64_imm(SDNode *N, SelectionDAG &DAG) {
Scott Michel8efdca42007-12-04 22:23:35 +00001560 if (ConstantSDNode *CN = getVecImm(N)) {
Dan Gohman57d5d5d2008-11-05 02:06:09 +00001561 return DAG.getTargetConstant((unsigned) CN->getZExtValue(), MVT::i64);
Scott Michel8efdca42007-12-04 22:23:35 +00001562 }
1563
Dan Gohman8181bd12008-07-27 21:46:04 +00001564 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001565}
1566
Scott Michel8c67fa42009-01-21 04:58:48 +00001567//! Lower a BUILD_VECTOR instruction creatively:
1568SDValue
pingbak2f387e82009-01-26 03:31:40 +00001569LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00001570 MVT VT = Op.getValueType();
Scott Michel0d5eae02009-03-17 01:15:45 +00001571 MVT EltVT = VT.getVectorElementType();
Dale Johannesen913ba762009-02-06 01:31:28 +00001572 DebugLoc dl = Op.getDebugLoc();
Scott Michel0d5eae02009-03-17 01:15:45 +00001573 BuildVectorSDNode *BCN = dyn_cast<BuildVectorSDNode>(Op.getNode());
1574 assert(BCN != 0 && "Expected BuildVectorSDNode in SPU LowerBUILD_VECTOR");
1575 unsigned minSplatBits = EltVT.getSizeInBits();
1576
1577 if (minSplatBits < 16)
1578 minSplatBits = 16;
1579
1580 APInt APSplatBits, APSplatUndef;
1581 unsigned SplatBitSize;
1582 bool HasAnyUndefs;
1583
1584 if (!BCN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
1585 HasAnyUndefs, minSplatBits)
1586 || minSplatBits < SplatBitSize)
1587 return SDValue(); // Wasn't a constant vector or splat exceeded min
1588
1589 uint64_t SplatBits = APSplatBits.getZExtValue();
Scott Michel4ec722e2008-07-16 17:17:29 +00001590
Duncan Sands92c43912008-06-06 12:08:01 +00001591 switch (VT.getSimpleVT()) {
Edwin Török4d9756a2009-07-08 20:53:28 +00001592 default: {
1593 std::string msg;
1594 raw_string_ostream Msg(msg);
1595 Msg << "CellSPU: Unhandled VT in LowerBUILD_VECTOR, VT = "
1596 << VT.getMVTString();
1597 llvm_report_error(Msg.str());
Scott Michel8c67fa42009-01-21 04:58:48 +00001598 /*NOTREACHED*/
Edwin Török4d9756a2009-07-08 20:53:28 +00001599 }
Scott Michel8efdca42007-12-04 22:23:35 +00001600 case MVT::v4f32: {
pingbak2f387e82009-01-26 03:31:40 +00001601 uint32_t Value32 = uint32_t(SplatBits);
Chris Lattner8579bab2009-03-26 05:29:34 +00001602 assert(SplatBitSize == 32
Scott Michel5a6f17b2008-01-30 02:55:46 +00001603 && "LowerBUILD_VECTOR: Unexpected floating point vector element.");
Scott Michel8efdca42007-12-04 22:23:35 +00001604 // NOTE: pretend the constant is an integer. LLVM won't load FP constants
Dan Gohman8181bd12008-07-27 21:46:04 +00001605 SDValue T = DAG.getConstant(Value32, MVT::i32);
Dale Johannesen913ba762009-02-06 01:31:28 +00001606 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32,
Chris Lattner8579bab2009-03-26 05:29:34 +00001607 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, T,T,T,T));
Scott Michel8efdca42007-12-04 22:23:35 +00001608 break;
1609 }
1610 case MVT::v2f64: {
pingbak2f387e82009-01-26 03:31:40 +00001611 uint64_t f64val = uint64_t(SplatBits);
Chris Lattner8579bab2009-03-26 05:29:34 +00001612 assert(SplatBitSize == 64
Scott Michelc630c412008-11-24 17:11:17 +00001613 && "LowerBUILD_VECTOR: 64-bit float vector size > 8 bytes.");
Scott Michel8efdca42007-12-04 22:23:35 +00001614 // NOTE: pretend the constant is an integer. LLVM won't load FP constants
Dan Gohman8181bd12008-07-27 21:46:04 +00001615 SDValue T = DAG.getConstant(f64val, MVT::i64);
Dale Johannesen913ba762009-02-06 01:31:28 +00001616 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64,
Evan Cheng907a2d22009-02-25 22:49:59 +00001617 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64, T, T));
Scott Michel8efdca42007-12-04 22:23:35 +00001618 break;
1619 }
1620 case MVT::v16i8: {
1621 // 8-bit constants have to be expanded to 16-bits
Scott Michel0d5eae02009-03-17 01:15:45 +00001622 unsigned short Value16 = SplatBits /* | (SplatBits << 8) */;
1623 SmallVector<SDValue, 8> Ops;
1624
1625 Ops.assign(8, DAG.getConstant(Value16, MVT::i16));
Dale Johannesen913ba762009-02-06 01:31:28 +00001626 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Scott Michel0d5eae02009-03-17 01:15:45 +00001627 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i16, &Ops[0], Ops.size()));
Scott Michel8efdca42007-12-04 22:23:35 +00001628 }
1629 case MVT::v8i16: {
Scott Michel0d5eae02009-03-17 01:15:45 +00001630 unsigned short Value16 = SplatBits;
1631 SDValue T = DAG.getConstant(Value16, EltVT);
1632 SmallVector<SDValue, 8> Ops;
1633
1634 Ops.assign(8, T);
1635 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Scott Michel8efdca42007-12-04 22:23:35 +00001636 }
1637 case MVT::v4i32: {
Scott Michel0d5eae02009-03-17 01:15:45 +00001638 SDValue T = DAG.getConstant(unsigned(SplatBits), VT.getVectorElementType());
Evan Cheng907a2d22009-02-25 22:49:59 +00001639 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, T, T, T, T);
Scott Michel8efdca42007-12-04 22:23:35 +00001640 }
Scott Michel70741542009-01-06 23:10:38 +00001641 case MVT::v2i32: {
Scott Michel0d5eae02009-03-17 01:15:45 +00001642 SDValue T = DAG.getConstant(unsigned(SplatBits), VT.getVectorElementType());
Evan Cheng907a2d22009-02-25 22:49:59 +00001643 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, T, T);
Scott Michel70741542009-01-06 23:10:38 +00001644 }
Scott Michel8efdca42007-12-04 22:23:35 +00001645 case MVT::v2i64: {
Scott Michel0d5eae02009-03-17 01:15:45 +00001646 return SPU::LowerV2I64Splat(VT, DAG, SplatBits, dl);
Scott Michel8efdca42007-12-04 22:23:35 +00001647 }
1648 }
Scott Michel4ec722e2008-07-16 17:17:29 +00001649
Dan Gohman8181bd12008-07-27 21:46:04 +00001650 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001651}
1652
Scott Michel0d5eae02009-03-17 01:15:45 +00001653/*!
1654 */
pingbak2f387e82009-01-26 03:31:40 +00001655SDValue
Scott Michel0d5eae02009-03-17 01:15:45 +00001656SPU::LowerV2I64Splat(MVT OpVT, SelectionDAG& DAG, uint64_t SplatVal,
1657 DebugLoc dl) {
pingbak2f387e82009-01-26 03:31:40 +00001658 uint32_t upper = uint32_t(SplatVal >> 32);
1659 uint32_t lower = uint32_t(SplatVal);
1660
1661 if (upper == lower) {
1662 // Magic constant that can be matched by IL, ILA, et. al.
1663 SDValue Val = DAG.getTargetConstant(upper, MVT::i32);
Dale Johannesen913ba762009-02-06 01:31:28 +00001664 return DAG.getNode(ISD::BIT_CONVERT, dl, OpVT,
Evan Cheng907a2d22009-02-25 22:49:59 +00001665 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
1666 Val, Val, Val, Val));
pingbak2f387e82009-01-26 03:31:40 +00001667 } else {
pingbak2f387e82009-01-26 03:31:40 +00001668 bool upper_special, lower_special;
1669
1670 // NOTE: This code creates common-case shuffle masks that can be easily
1671 // detected as common expressions. It is not attempting to create highly
1672 // specialized masks to replace any and all 0's, 0xff's and 0x80's.
1673
1674 // Detect if the upper or lower half is a special shuffle mask pattern:
1675 upper_special = (upper == 0 || upper == 0xffffffff || upper == 0x80000000);
1676 lower_special = (lower == 0 || lower == 0xffffffff || lower == 0x80000000);
1677
Scott Michel0d5eae02009-03-17 01:15:45 +00001678 // Both upper and lower are special, lower to a constant pool load:
1679 if (lower_special && upper_special) {
1680 SDValue SplatValCN = DAG.getConstant(SplatVal, MVT::i64);
1681 return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64,
1682 SplatValCN, SplatValCN);
1683 }
1684
1685 SDValue LO32;
1686 SDValue HI32;
1687 SmallVector<SDValue, 16> ShufBytes;
1688 SDValue Result;
1689
pingbak2f387e82009-01-26 03:31:40 +00001690 // Create lower vector if not a special pattern
1691 if (!lower_special) {
1692 SDValue LO32C = DAG.getConstant(lower, MVT::i32);
Dale Johannesen913ba762009-02-06 01:31:28 +00001693 LO32 = DAG.getNode(ISD::BIT_CONVERT, dl, OpVT,
Evan Cheng907a2d22009-02-25 22:49:59 +00001694 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
1695 LO32C, LO32C, LO32C, LO32C));
pingbak2f387e82009-01-26 03:31:40 +00001696 }
1697
1698 // Create upper vector if not a special pattern
1699 if (!upper_special) {
1700 SDValue HI32C = DAG.getConstant(upper, MVT::i32);
Dale Johannesen913ba762009-02-06 01:31:28 +00001701 HI32 = DAG.getNode(ISD::BIT_CONVERT, dl, OpVT,
Evan Cheng907a2d22009-02-25 22:49:59 +00001702 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
1703 HI32C, HI32C, HI32C, HI32C));
pingbak2f387e82009-01-26 03:31:40 +00001704 }
1705
1706 // If either upper or lower are special, then the two input operands are
1707 // the same (basically, one of them is a "don't care")
1708 if (lower_special)
1709 LO32 = HI32;
1710 if (upper_special)
1711 HI32 = LO32;
pingbak2f387e82009-01-26 03:31:40 +00001712
1713 for (int i = 0; i < 4; ++i) {
1714 uint64_t val = 0;
1715 for (int j = 0; j < 4; ++j) {
1716 SDValue V;
1717 bool process_upper, process_lower;
1718 val <<= 8;
1719 process_upper = (upper_special && (i & 1) == 0);
1720 process_lower = (lower_special && (i & 1) == 1);
1721
1722 if (process_upper || process_lower) {
1723 if ((process_upper && upper == 0)
1724 || (process_lower && lower == 0))
1725 val |= 0x80;
1726 else if ((process_upper && upper == 0xffffffff)
1727 || (process_lower && lower == 0xffffffff))
1728 val |= 0xc0;
1729 else if ((process_upper && upper == 0x80000000)
1730 || (process_lower && lower == 0x80000000))
1731 val |= (j == 0 ? 0xe0 : 0x80);
1732 } else
1733 val |= i * 4 + j + ((i & 1) * 16);
1734 }
1735
1736 ShufBytes.push_back(DAG.getConstant(val, MVT::i32));
1737 }
1738
Dale Johannesen913ba762009-02-06 01:31:28 +00001739 return DAG.getNode(SPUISD::SHUFB, dl, OpVT, HI32, LO32,
Evan Cheng907a2d22009-02-25 22:49:59 +00001740 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
1741 &ShufBytes[0], ShufBytes.size()));
pingbak2f387e82009-01-26 03:31:40 +00001742 }
1743}
1744
Scott Michel8efdca42007-12-04 22:23:35 +00001745/// LowerVECTOR_SHUFFLE - Lower a vector shuffle (V1, V2, V3) to something on
1746/// which the Cell can operate. The code inspects V3 to ascertain whether the
1747/// permutation vector, V3, is monotonically increasing with one "exception"
1748/// element, e.g., (0, 1, _, 3). If this is the case, then generate a
Scott Michel56a125e2008-11-22 23:50:42 +00001749/// SHUFFLE_MASK synthetic instruction. Otherwise, spill V3 to the constant pool.
Scott Michel8efdca42007-12-04 22:23:35 +00001750/// In either case, the net result is going to eventually invoke SHUFB to
1751/// permute/shuffle the bytes from V1 and V2.
1752/// \note
Scott Michel56a125e2008-11-22 23:50:42 +00001753/// SHUFFLE_MASK is eventually selected as one of the C*D instructions, generate
Scott Michel8efdca42007-12-04 22:23:35 +00001754/// control word for byte/halfword/word insertion. This takes care of a single
1755/// element move from V2 into V1.
1756/// \note
1757/// SPUISD::SHUFB is eventually selected as Cell's <i>shufb</i> instructions.
Dan Gohman8181bd12008-07-27 21:46:04 +00001758static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
Nate Begeman543d2142009-04-27 18:41:29 +00001759 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op);
Dan Gohman8181bd12008-07-27 21:46:04 +00001760 SDValue V1 = Op.getOperand(0);
1761 SDValue V2 = Op.getOperand(1);
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001762 DebugLoc dl = Op.getDebugLoc();
Scott Michel4ec722e2008-07-16 17:17:29 +00001763
Scott Michel8efdca42007-12-04 22:23:35 +00001764 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michel4ec722e2008-07-16 17:17:29 +00001765
Scott Michel8efdca42007-12-04 22:23:35 +00001766 // If we have a single element being moved from V1 to V2, this can be handled
1767 // using the C*[DX] compute mask instructions, but the vector elements have
1768 // to be monotonically increasing with one exception element.
Scott Michele2641a12008-12-04 21:01:44 +00001769 MVT VecVT = V1.getValueType();
1770 MVT EltVT = VecVT.getVectorElementType();
Scott Michel8efdca42007-12-04 22:23:35 +00001771 unsigned EltsFromV2 = 0;
1772 unsigned V2Elt = 0;
1773 unsigned V2EltIdx0 = 0;
1774 unsigned CurrElt = 0;
Scott Michele2641a12008-12-04 21:01:44 +00001775 unsigned MaxElts = VecVT.getVectorNumElements();
1776 unsigned PrevElt = 0;
1777 unsigned V0Elt = 0;
Scott Michel8efdca42007-12-04 22:23:35 +00001778 bool monotonic = true;
Scott Michele2641a12008-12-04 21:01:44 +00001779 bool rotate = true;
1780
1781 if (EltVT == MVT::i8) {
Scott Michel8efdca42007-12-04 22:23:35 +00001782 V2EltIdx0 = 16;
Scott Michele2641a12008-12-04 21:01:44 +00001783 } else if (EltVT == MVT::i16) {
Scott Michel8efdca42007-12-04 22:23:35 +00001784 V2EltIdx0 = 8;
Scott Michele2641a12008-12-04 21:01:44 +00001785 } else if (EltVT == MVT::i32 || EltVT == MVT::f32) {
Scott Michel8efdca42007-12-04 22:23:35 +00001786 V2EltIdx0 = 4;
Scott Michele2641a12008-12-04 21:01:44 +00001787 } else if (EltVT == MVT::i64 || EltVT == MVT::f64) {
1788 V2EltIdx0 = 2;
1789 } else
Edwin Törökbd448e32009-07-14 16:55:14 +00001790 llvm_unreachable("Unhandled vector type in LowerVECTOR_SHUFFLE");
Scott Michel8efdca42007-12-04 22:23:35 +00001791
Nate Begeman543d2142009-04-27 18:41:29 +00001792 for (unsigned i = 0; i != MaxElts; ++i) {
1793 if (SVN->getMaskElt(i) < 0)
1794 continue;
1795
1796 unsigned SrcElt = SVN->getMaskElt(i);
Scott Michel8efdca42007-12-04 22:23:35 +00001797
Nate Begeman543d2142009-04-27 18:41:29 +00001798 if (monotonic) {
1799 if (SrcElt >= V2EltIdx0) {
1800 if (1 >= (++EltsFromV2)) {
1801 V2Elt = (V2EltIdx0 - SrcElt) << 2;
Scott Michele2641a12008-12-04 21:01:44 +00001802 }
Nate Begeman543d2142009-04-27 18:41:29 +00001803 } else if (CurrElt != SrcElt) {
1804 monotonic = false;
Scott Michele2641a12008-12-04 21:01:44 +00001805 }
1806
Nate Begeman543d2142009-04-27 18:41:29 +00001807 ++CurrElt;
1808 }
1809
1810 if (rotate) {
1811 if (PrevElt > 0 && SrcElt < MaxElts) {
1812 if ((PrevElt == SrcElt - 1)
1813 || (PrevElt == MaxElts - 1 && SrcElt == 0)) {
Scott Michele2641a12008-12-04 21:01:44 +00001814 PrevElt = SrcElt;
Nate Begeman543d2142009-04-27 18:41:29 +00001815 if (SrcElt == 0)
1816 V0Elt = i;
Scott Michele2641a12008-12-04 21:01:44 +00001817 } else {
Scott Michele2641a12008-12-04 21:01:44 +00001818 rotate = false;
1819 }
Nate Begeman543d2142009-04-27 18:41:29 +00001820 } else if (PrevElt == 0) {
1821 // First time through, need to keep track of previous element
1822 PrevElt = SrcElt;
1823 } else {
1824 // This isn't a rotation, takes elements from vector 2
1825 rotate = false;
Scott Michele2641a12008-12-04 21:01:44 +00001826 }
Scott Michel8efdca42007-12-04 22:23:35 +00001827 }
Scott Michel8efdca42007-12-04 22:23:35 +00001828 }
1829
1830 if (EltsFromV2 == 1 && monotonic) {
1831 // Compute mask and shuffle
1832 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner1b989192007-12-31 04:13:23 +00001833 MachineRegisterInfo &RegInfo = MF.getRegInfo();
1834 unsigned VReg = RegInfo.createVirtualRegister(&SPU::R32CRegClass);
Duncan Sands92c43912008-06-06 12:08:01 +00001835 MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michel8efdca42007-12-04 22:23:35 +00001836 // Initialize temporary register to 0
Dan Gohman8181bd12008-07-27 21:46:04 +00001837 SDValue InitTempReg =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001838 DAG.getCopyToReg(DAG.getEntryNode(), dl, VReg, DAG.getConstant(0, PtrVT));
Scott Michel56a125e2008-11-22 23:50:42 +00001839 // Copy register's contents as index in SHUFFLE_MASK:
Dan Gohman8181bd12008-07-27 21:46:04 +00001840 SDValue ShufMaskOp =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001841 DAG.getNode(SPUISD::SHUFFLE_MASK, dl, MVT::v4i32,
Scott Michel5a6f17b2008-01-30 02:55:46 +00001842 DAG.getTargetConstant(V2Elt, MVT::i32),
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001843 DAG.getCopyFromReg(InitTempReg, dl, VReg, PtrVT));
Scott Michel8efdca42007-12-04 22:23:35 +00001844 // Use shuffle mask in SHUFB synthetic instruction:
Scott Michel34712c32009-03-16 18:47:25 +00001845 return DAG.getNode(SPUISD::SHUFB, dl, V1.getValueType(), V2, V1,
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001846 ShufMaskOp);
Scott Michele2641a12008-12-04 21:01:44 +00001847 } else if (rotate) {
1848 int rotamt = (MaxElts - V0Elt) * EltVT.getSizeInBits()/8;
Scott Michelae5cbf52008-12-29 03:23:36 +00001849
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001850 return DAG.getNode(SPUISD::ROTBYTES_LEFT, dl, V1.getValueType(),
Scott Michele2641a12008-12-04 21:01:44 +00001851 V1, DAG.getConstant(rotamt, MVT::i16));
Scott Michel8efdca42007-12-04 22:23:35 +00001852 } else {
Gabor Greife9f7f582008-08-31 15:37:04 +00001853 // Convert the SHUFFLE_VECTOR mask's input element units to the
1854 // actual bytes.
Duncan Sands92c43912008-06-06 12:08:01 +00001855 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michel4ec722e2008-07-16 17:17:29 +00001856
Dan Gohman8181bd12008-07-27 21:46:04 +00001857 SmallVector<SDValue, 16> ResultMask;
Nate Begeman543d2142009-04-27 18:41:29 +00001858 for (unsigned i = 0, e = MaxElts; i != e; ++i) {
1859 unsigned SrcElt = SVN->getMaskElt(i) < 0 ? 0 : SVN->getMaskElt(i);
Scott Michel4ec722e2008-07-16 17:17:29 +00001860
Nate Begeman543d2142009-04-27 18:41:29 +00001861 for (unsigned j = 0; j < BytesPerElement; ++j)
1862 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,MVT::i8));
Scott Michel8efdca42007-12-04 22:23:35 +00001863 }
Scott Michel4ec722e2008-07-16 17:17:29 +00001864
Evan Cheng907a2d22009-02-25 22:49:59 +00001865 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
1866 &ResultMask[0], ResultMask.size());
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00001867 return DAG.getNode(SPUISD::SHUFB, dl, V1.getValueType(), V1, V2, VPermMask);
Scott Michel8efdca42007-12-04 22:23:35 +00001868 }
1869}
1870
Dan Gohman8181bd12008-07-27 21:46:04 +00001871static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
1872 SDValue Op0 = Op.getOperand(0); // Op0 = the scalar
Dale Johannesen913ba762009-02-06 01:31:28 +00001873 DebugLoc dl = Op.getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +00001874
Gabor Greif1c80d112008-08-28 21:40:38 +00001875 if (Op0.getNode()->getOpcode() == ISD::Constant) {
Scott Michel8efdca42007-12-04 22:23:35 +00001876 // For a constant, build the appropriate constant vector, which will
1877 // eventually simplify to a vector register load.
1878
Gabor Greif1c80d112008-08-28 21:40:38 +00001879 ConstantSDNode *CN = cast<ConstantSDNode>(Op0.getNode());
Dan Gohman8181bd12008-07-27 21:46:04 +00001880 SmallVector<SDValue, 16> ConstVecValues;
Duncan Sands92c43912008-06-06 12:08:01 +00001881 MVT VT;
Scott Michel8efdca42007-12-04 22:23:35 +00001882 size_t n_copies;
1883
1884 // Create a constant vector:
Duncan Sands92c43912008-06-06 12:08:01 +00001885 switch (Op.getValueType().getSimpleVT()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00001886 default: llvm_unreachable("Unexpected constant value type in "
Edwin Törökb2de05e2009-07-14 12:22:58 +00001887 "LowerSCALAR_TO_VECTOR");
Scott Michel8efdca42007-12-04 22:23:35 +00001888 case MVT::v16i8: n_copies = 16; VT = MVT::i8; break;
1889 case MVT::v8i16: n_copies = 8; VT = MVT::i16; break;
1890 case MVT::v4i32: n_copies = 4; VT = MVT::i32; break;
1891 case MVT::v4f32: n_copies = 4; VT = MVT::f32; break;
1892 case MVT::v2i64: n_copies = 2; VT = MVT::i64; break;
1893 case MVT::v2f64: n_copies = 2; VT = MVT::f64; break;
1894 }
1895
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001896 SDValue CValue = DAG.getConstant(CN->getZExtValue(), VT);
Scott Michel8efdca42007-12-04 22:23:35 +00001897 for (size_t j = 0; j < n_copies; ++j)
1898 ConstVecValues.push_back(CValue);
1899
Evan Cheng907a2d22009-02-25 22:49:59 +00001900 return DAG.getNode(ISD::BUILD_VECTOR, dl, Op.getValueType(),
1901 &ConstVecValues[0], ConstVecValues.size());
Scott Michel8efdca42007-12-04 22:23:35 +00001902 } else {
1903 // Otherwise, copy the value from one register to another:
Duncan Sands92c43912008-06-06 12:08:01 +00001904 switch (Op0.getValueType().getSimpleVT()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00001905 default: llvm_unreachable("Unexpected value type in LowerSCALAR_TO_VECTOR");
Scott Michel8efdca42007-12-04 22:23:35 +00001906 case MVT::i8:
1907 case MVT::i16:
1908 case MVT::i32:
1909 case MVT::i64:
1910 case MVT::f32:
1911 case MVT::f64:
Dale Johannesen913ba762009-02-06 01:31:28 +00001912 return DAG.getNode(SPUISD::PREFSLOT2VEC, dl, Op.getValueType(), Op0, Op0);
Scott Michel8efdca42007-12-04 22:23:35 +00001913 }
1914 }
1915
Dan Gohman8181bd12008-07-27 21:46:04 +00001916 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001917}
1918
Dan Gohman8181bd12008-07-27 21:46:04 +00001919static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00001920 MVT VT = Op.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00001921 SDValue N = Op.getOperand(0);
1922 SDValue Elt = Op.getOperand(1);
Dale Johannesen913ba762009-02-06 01:31:28 +00001923 DebugLoc dl = Op.getDebugLoc();
Scott Michel56a125e2008-11-22 23:50:42 +00001924 SDValue retval;
Scott Michel8efdca42007-12-04 22:23:35 +00001925
Scott Michel56a125e2008-11-22 23:50:42 +00001926 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
1927 // Constant argument:
1928 int EltNo = (int) C->getZExtValue();
Scott Michel8efdca42007-12-04 22:23:35 +00001929
Scott Michel56a125e2008-11-22 23:50:42 +00001930 // sanity checks:
1931 if (VT == MVT::i8 && EltNo >= 16)
Edwin Törökbd448e32009-07-14 16:55:14 +00001932 llvm_unreachable("SPU LowerEXTRACT_VECTOR_ELT: i8 extraction slot > 15");
Scott Michel56a125e2008-11-22 23:50:42 +00001933 else if (VT == MVT::i16 && EltNo >= 8)
Edwin Törökbd448e32009-07-14 16:55:14 +00001934 llvm_unreachable("SPU LowerEXTRACT_VECTOR_ELT: i16 extraction slot > 7");
Scott Michel56a125e2008-11-22 23:50:42 +00001935 else if (VT == MVT::i32 && EltNo >= 4)
Edwin Törökbd448e32009-07-14 16:55:14 +00001936 llvm_unreachable("SPU LowerEXTRACT_VECTOR_ELT: i32 extraction slot > 4");
Scott Michel56a125e2008-11-22 23:50:42 +00001937 else if (VT == MVT::i64 && EltNo >= 2)
Edwin Törökbd448e32009-07-14 16:55:14 +00001938 llvm_unreachable("SPU LowerEXTRACT_VECTOR_ELT: i64 extraction slot > 2");
Scott Michel8efdca42007-12-04 22:23:35 +00001939
Scott Michel56a125e2008-11-22 23:50:42 +00001940 if (EltNo == 0 && (VT == MVT::i32 || VT == MVT::i64)) {
1941 // i32 and i64: Element 0 is the preferred slot
Dale Johannesen913ba762009-02-06 01:31:28 +00001942 return DAG.getNode(SPUISD::VEC2PREFSLOT, dl, VT, N);
Scott Michel56a125e2008-11-22 23:50:42 +00001943 }
Scott Michel8efdca42007-12-04 22:23:35 +00001944
Scott Michel56a125e2008-11-22 23:50:42 +00001945 // Need to generate shuffle mask and extract:
1946 int prefslot_begin = -1, prefslot_end = -1;
1947 int elt_byte = EltNo * VT.getSizeInBits() / 8;
1948
1949 switch (VT.getSimpleVT()) {
1950 default:
1951 assert(false && "Invalid value type!");
1952 case MVT::i8: {
1953 prefslot_begin = prefslot_end = 3;
1954 break;
1955 }
1956 case MVT::i16: {
1957 prefslot_begin = 2; prefslot_end = 3;
1958 break;
1959 }
1960 case MVT::i32:
1961 case MVT::f32: {
1962 prefslot_begin = 0; prefslot_end = 3;
1963 break;
1964 }
1965 case MVT::i64:
1966 case MVT::f64: {
1967 prefslot_begin = 0; prefslot_end = 7;
1968 break;
1969 }
1970 }
1971
1972 assert(prefslot_begin != -1 && prefslot_end != -1 &&
1973 "LowerEXTRACT_VECTOR_ELT: preferred slots uninitialized");
1974
1975 unsigned int ShufBytes[16];
1976 for (int i = 0; i < 16; ++i) {
1977 // zero fill uppper part of preferred slot, don't care about the
1978 // other slots:
1979 unsigned int mask_val;
1980 if (i <= prefslot_end) {
1981 mask_val =
1982 ((i < prefslot_begin)
1983 ? 0x80
1984 : elt_byte + (i - prefslot_begin));
1985
1986 ShufBytes[i] = mask_val;
1987 } else
1988 ShufBytes[i] = ShufBytes[i % (prefslot_end + 1)];
1989 }
1990
1991 SDValue ShufMask[4];
1992 for (unsigned i = 0; i < sizeof(ShufMask)/sizeof(ShufMask[0]); ++i) {
Scott Michele2641a12008-12-04 21:01:44 +00001993 unsigned bidx = i * 4;
Scott Michel56a125e2008-11-22 23:50:42 +00001994 unsigned int bits = ((ShufBytes[bidx] << 24) |
1995 (ShufBytes[bidx+1] << 16) |
1996 (ShufBytes[bidx+2] << 8) |
1997 ShufBytes[bidx+3]);
1998 ShufMask[i] = DAG.getConstant(bits, MVT::i32);
1999 }
2000
Scott Michel0d5eae02009-03-17 01:15:45 +00002001 SDValue ShufMaskVec =
2002 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
2003 &ShufMask[0], sizeof(ShufMask)/sizeof(ShufMask[0]));
Scott Michel56a125e2008-11-22 23:50:42 +00002004
Dale Johannesen913ba762009-02-06 01:31:28 +00002005 retval = DAG.getNode(SPUISD::VEC2PREFSLOT, dl, VT,
2006 DAG.getNode(SPUISD::SHUFB, dl, N.getValueType(),
Scott Michel56a125e2008-11-22 23:50:42 +00002007 N, N, ShufMaskVec));
2008 } else {
2009 // Variable index: Rotate the requested element into slot 0, then replicate
2010 // slot 0 across the vector
2011 MVT VecVT = N.getValueType();
2012 if (!VecVT.isSimple() || !VecVT.isVector() || !VecVT.is128BitVector()) {
Edwin Török4d9756a2009-07-08 20:53:28 +00002013 llvm_report_error("LowerEXTRACT_VECTOR_ELT: Must have a simple, 128-bit"
2014 "vector type!");
Scott Michel56a125e2008-11-22 23:50:42 +00002015 }
2016
2017 // Make life easier by making sure the index is zero-extended to i32
2018 if (Elt.getValueType() != MVT::i32)
Dale Johannesen913ba762009-02-06 01:31:28 +00002019 Elt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Elt);
Scott Michel56a125e2008-11-22 23:50:42 +00002020
2021 // Scale the index to a bit/byte shift quantity
2022 APInt scaleFactor =
Scott Michelc630c412008-11-24 17:11:17 +00002023 APInt(32, uint64_t(16 / N.getValueType().getVectorNumElements()), false);
2024 unsigned scaleShift = scaleFactor.logBase2();
Scott Michel56a125e2008-11-22 23:50:42 +00002025 SDValue vecShift;
Scott Michel56a125e2008-11-22 23:50:42 +00002026
Scott Michelc630c412008-11-24 17:11:17 +00002027 if (scaleShift > 0) {
2028 // Scale the shift factor:
Dale Johannesen913ba762009-02-06 01:31:28 +00002029 Elt = DAG.getNode(ISD::SHL, dl, MVT::i32, Elt,
Scott Michel0718cd82008-12-01 17:56:02 +00002030 DAG.getConstant(scaleShift, MVT::i32));
Scott Michel56a125e2008-11-22 23:50:42 +00002031 }
2032
Dale Johannesen913ba762009-02-06 01:31:28 +00002033 vecShift = DAG.getNode(SPUISD::SHLQUAD_L_BYTES, dl, VecVT, N, Elt);
Scott Michelc630c412008-11-24 17:11:17 +00002034
2035 // Replicate the bytes starting at byte 0 across the entire vector (for
2036 // consistency with the notion of a unified register set)
Scott Michel56a125e2008-11-22 23:50:42 +00002037 SDValue replicate;
2038
2039 switch (VT.getSimpleVT()) {
2040 default:
Edwin Török4d9756a2009-07-08 20:53:28 +00002041 llvm_report_error("LowerEXTRACT_VECTOR_ELT(varable): Unhandled vector"
2042 "type");
Scott Michel56a125e2008-11-22 23:50:42 +00002043 /*NOTREACHED*/
2044 case MVT::i8: {
Scott Michelc630c412008-11-24 17:11:17 +00002045 SDValue factor = DAG.getConstant(0x00000000, MVT::i32);
Scott Michel0d5eae02009-03-17 01:15:45 +00002046 replicate = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
2047 factor, factor, factor, factor);
Scott Michel56a125e2008-11-22 23:50:42 +00002048 break;
2049 }
2050 case MVT::i16: {
Scott Michelc630c412008-11-24 17:11:17 +00002051 SDValue factor = DAG.getConstant(0x00010001, MVT::i32);
Scott Michel0d5eae02009-03-17 01:15:45 +00002052 replicate = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
2053 factor, factor, factor, factor);
Scott Michel56a125e2008-11-22 23:50:42 +00002054 break;
2055 }
2056 case MVT::i32:
2057 case MVT::f32: {
2058 SDValue factor = DAG.getConstant(0x00010203, MVT::i32);
Scott Michel0d5eae02009-03-17 01:15:45 +00002059 replicate = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
2060 factor, factor, factor, factor);
Scott Michel56a125e2008-11-22 23:50:42 +00002061 break;
2062 }
2063 case MVT::i64:
2064 case MVT::f64: {
2065 SDValue loFactor = DAG.getConstant(0x00010203, MVT::i32);
2066 SDValue hiFactor = DAG.getConstant(0x04050607, MVT::i32);
Scott Michel0d5eae02009-03-17 01:15:45 +00002067 replicate = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Evan Cheng907a2d22009-02-25 22:49:59 +00002068 loFactor, hiFactor, loFactor, hiFactor);
Scott Michel56a125e2008-11-22 23:50:42 +00002069 break;
2070 }
2071 }
2072
Dale Johannesen913ba762009-02-06 01:31:28 +00002073 retval = DAG.getNode(SPUISD::VEC2PREFSLOT, dl, VT,
2074 DAG.getNode(SPUISD::SHUFB, dl, VecVT,
Scott Michel0718cd82008-12-01 17:56:02 +00002075 vecShift, vecShift, replicate));
Scott Michel8efdca42007-12-04 22:23:35 +00002076 }
2077
Scott Michel56a125e2008-11-22 23:50:42 +00002078 return retval;
Scott Michel8efdca42007-12-04 22:23:35 +00002079}
2080
Dan Gohman8181bd12008-07-27 21:46:04 +00002081static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
2082 SDValue VecOp = Op.getOperand(0);
2083 SDValue ValOp = Op.getOperand(1);
2084 SDValue IdxOp = Op.getOperand(2);
Dale Johannesen913ba762009-02-06 01:31:28 +00002085 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00002086 MVT VT = Op.getValueType();
Scott Michel8efdca42007-12-04 22:23:35 +00002087
2088 ConstantSDNode *CN = cast<ConstantSDNode>(IdxOp);
2089 assert(CN != 0 && "LowerINSERT_VECTOR_ELT: Index is not constant!");
2090
Duncan Sands92c43912008-06-06 12:08:01 +00002091 MVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michel0718cd82008-12-01 17:56:02 +00002092 // Use $sp ($1) because it's always 16-byte aligned and it's available:
Dale Johannesen913ba762009-02-06 01:31:28 +00002093 SDValue Pointer = DAG.getNode(SPUISD::IndirectAddr, dl, PtrVT,
Scott Michel0718cd82008-12-01 17:56:02 +00002094 DAG.getRegister(SPU::R1, PtrVT),
2095 DAG.getConstant(CN->getSExtValue(), PtrVT));
Dale Johannesen913ba762009-02-06 01:31:28 +00002096 SDValue ShufMask = DAG.getNode(SPUISD::SHUFFLE_MASK, dl, VT, Pointer);
Scott Michel8efdca42007-12-04 22:23:35 +00002097
Dan Gohman8181bd12008-07-27 21:46:04 +00002098 SDValue result =
Dale Johannesen913ba762009-02-06 01:31:28 +00002099 DAG.getNode(SPUISD::SHUFB, dl, VT,
2100 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, ValOp),
Scott Michelae5cbf52008-12-29 03:23:36 +00002101 VecOp,
Dale Johannesen913ba762009-02-06 01:31:28 +00002102 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, ShufMask));
Scott Michel8efdca42007-12-04 22:23:35 +00002103
2104 return result;
2105}
2106
Scott Michel06eabde2008-12-27 04:51:36 +00002107static SDValue LowerI8Math(SDValue Op, SelectionDAG &DAG, unsigned Opc,
2108 const TargetLowering &TLI)
Scott Michel97872d32008-02-23 18:41:37 +00002109{
Dan Gohman8181bd12008-07-27 21:46:04 +00002110 SDValue N0 = Op.getOperand(0); // Everything has at least one operand
Dale Johannesen913ba762009-02-06 01:31:28 +00002111 DebugLoc dl = Op.getDebugLoc();
Scott Michel06eabde2008-12-27 04:51:36 +00002112 MVT ShiftVT = TLI.getShiftAmountTy();
Scott Michel8efdca42007-12-04 22:23:35 +00002113
2114 assert(Op.getValueType() == MVT::i8);
2115 switch (Opc) {
2116 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00002117 llvm_unreachable("Unhandled i8 math operator");
Scott Michel8efdca42007-12-04 22:23:35 +00002118 /*NOTREACHED*/
2119 break;
Scott Michel4d07fb72008-12-30 23:28:25 +00002120 case ISD::ADD: {
2121 // 8-bit addition: Promote the arguments up to 16-bits and truncate
2122 // the result:
2123 SDValue N1 = Op.getOperand(1);
Dale Johannesen913ba762009-02-06 01:31:28 +00002124 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i16, N0);
2125 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i16, N1);
2126 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i8,
2127 DAG.getNode(Opc, dl, MVT::i16, N0, N1));
Scott Michel4d07fb72008-12-30 23:28:25 +00002128
2129 }
2130
Scott Michel8efdca42007-12-04 22:23:35 +00002131 case ISD::SUB: {
2132 // 8-bit subtraction: Promote the arguments up to 16-bits and truncate
2133 // the result:
Dan Gohman8181bd12008-07-27 21:46:04 +00002134 SDValue N1 = Op.getOperand(1);
Dale Johannesen913ba762009-02-06 01:31:28 +00002135 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i16, N0);
2136 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i16, N1);
2137 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i8,
2138 DAG.getNode(Opc, dl, MVT::i16, N0, N1));
Scott Michel4ec722e2008-07-16 17:17:29 +00002139 }
Scott Michel8efdca42007-12-04 22:23:35 +00002140 case ISD::ROTR:
2141 case ISD::ROTL: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002142 SDValue N1 = Op.getOperand(1);
Scott Michel0d5eae02009-03-17 01:15:45 +00002143 MVT N1VT = N1.getValueType();
2144
2145 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, N0);
2146 if (!N1VT.bitsEq(ShiftVT)) {
2147 unsigned N1Opc = N1.getValueType().bitsLT(ShiftVT)
2148 ? ISD::ZERO_EXTEND
2149 : ISD::TRUNCATE;
2150 N1 = DAG.getNode(N1Opc, dl, ShiftVT, N1);
2151 }
2152
2153 // Replicate lower 8-bits into upper 8:
Dan Gohman8181bd12008-07-27 21:46:04 +00002154 SDValue ExpandArg =
Dale Johannesen913ba762009-02-06 01:31:28 +00002155 DAG.getNode(ISD::OR, dl, MVT::i16, N0,
2156 DAG.getNode(ISD::SHL, dl, MVT::i16,
Duncan Sands7aef60d2008-10-30 19:24:28 +00002157 N0, DAG.getConstant(8, MVT::i32)));
Scott Michel0d5eae02009-03-17 01:15:45 +00002158
2159 // Truncate back down to i8
Dale Johannesen913ba762009-02-06 01:31:28 +00002160 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i8,
2161 DAG.getNode(Opc, dl, MVT::i16, ExpandArg, N1));
Scott Michel8efdca42007-12-04 22:23:35 +00002162 }
2163 case ISD::SRL:
2164 case ISD::SHL: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002165 SDValue N1 = Op.getOperand(1);
Scott Michel0d5eae02009-03-17 01:15:45 +00002166 MVT N1VT = N1.getValueType();
2167
2168 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, N0);
2169 if (!N1VT.bitsEq(ShiftVT)) {
2170 unsigned N1Opc = ISD::ZERO_EXTEND;
2171
2172 if (N1.getValueType().bitsGT(ShiftVT))
2173 N1Opc = ISD::TRUNCATE;
2174
2175 N1 = DAG.getNode(N1Opc, dl, ShiftVT, N1);
2176 }
2177
Dale Johannesen913ba762009-02-06 01:31:28 +00002178 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i8,
2179 DAG.getNode(Opc, dl, MVT::i16, N0, N1));
Scott Michel8efdca42007-12-04 22:23:35 +00002180 }
2181 case ISD::SRA: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002182 SDValue N1 = Op.getOperand(1);
Scott Michel0d5eae02009-03-17 01:15:45 +00002183 MVT N1VT = N1.getValueType();
2184
2185 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i16, N0);
2186 if (!N1VT.bitsEq(ShiftVT)) {
2187 unsigned N1Opc = ISD::SIGN_EXTEND;
2188
2189 if (N1VT.bitsGT(ShiftVT))
2190 N1Opc = ISD::TRUNCATE;
2191 N1 = DAG.getNode(N1Opc, dl, ShiftVT, N1);
2192 }
2193
Dale Johannesen913ba762009-02-06 01:31:28 +00002194 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i8,
2195 DAG.getNode(Opc, dl, MVT::i16, N0, N1));
Scott Michel8efdca42007-12-04 22:23:35 +00002196 }
2197 case ISD::MUL: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002198 SDValue N1 = Op.getOperand(1);
Scott Michel0d5eae02009-03-17 01:15:45 +00002199
2200 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i16, N0);
2201 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i16, N1);
Dale Johannesen913ba762009-02-06 01:31:28 +00002202 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i8,
2203 DAG.getNode(Opc, dl, MVT::i16, N0, N1));
Scott Michel8efdca42007-12-04 22:23:35 +00002204 break;
2205 }
2206 }
2207
Dan Gohman8181bd12008-07-27 21:46:04 +00002208 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00002209}
2210
2211//! Lower byte immediate operations for v16i8 vectors:
Dan Gohman8181bd12008-07-27 21:46:04 +00002212static SDValue
2213LowerByteImmed(SDValue Op, SelectionDAG &DAG) {
2214 SDValue ConstVec;
2215 SDValue Arg;
Duncan Sands92c43912008-06-06 12:08:01 +00002216 MVT VT = Op.getValueType();
Dale Johannesen913ba762009-02-06 01:31:28 +00002217 DebugLoc dl = Op.getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +00002218
2219 ConstVec = Op.getOperand(0);
2220 Arg = Op.getOperand(1);
Gabor Greif1c80d112008-08-28 21:40:38 +00002221 if (ConstVec.getNode()->getOpcode() != ISD::BUILD_VECTOR) {
2222 if (ConstVec.getNode()->getOpcode() == ISD::BIT_CONVERT) {
Scott Michel8efdca42007-12-04 22:23:35 +00002223 ConstVec = ConstVec.getOperand(0);
2224 } else {
2225 ConstVec = Op.getOperand(1);
2226 Arg = Op.getOperand(0);
Gabor Greif1c80d112008-08-28 21:40:38 +00002227 if (ConstVec.getNode()->getOpcode() == ISD::BIT_CONVERT) {
Scott Michel5a6f17b2008-01-30 02:55:46 +00002228 ConstVec = ConstVec.getOperand(0);
Scott Michel8efdca42007-12-04 22:23:35 +00002229 }
2230 }
2231 }
2232
Gabor Greif1c80d112008-08-28 21:40:38 +00002233 if (ConstVec.getNode()->getOpcode() == ISD::BUILD_VECTOR) {
Scott Michel0d5eae02009-03-17 01:15:45 +00002234 BuildVectorSDNode *BCN = dyn_cast<BuildVectorSDNode>(ConstVec.getNode());
2235 assert(BCN != 0 && "Expected BuildVectorSDNode in SPU LowerByteImmed");
Scott Michel8efdca42007-12-04 22:23:35 +00002236
Scott Michel0d5eae02009-03-17 01:15:45 +00002237 APInt APSplatBits, APSplatUndef;
2238 unsigned SplatBitSize;
2239 bool HasAnyUndefs;
2240 unsigned minSplatBits = VT.getVectorElementType().getSizeInBits();
2241
2242 if (BCN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
2243 HasAnyUndefs, minSplatBits)
2244 && minSplatBits <= SplatBitSize) {
2245 uint64_t SplatBits = APSplatBits.getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00002246 SDValue tc = DAG.getTargetConstant(SplatBits & 0xff, MVT::i8);
Scott Michel8efdca42007-12-04 22:23:35 +00002247
Scott Michel0d5eae02009-03-17 01:15:45 +00002248 SmallVector<SDValue, 16> tcVec;
2249 tcVec.assign(16, tc);
Dale Johannesen913ba762009-02-06 01:31:28 +00002250 return DAG.getNode(Op.getNode()->getOpcode(), dl, VT, Arg,
Scott Michel0d5eae02009-03-17 01:15:45 +00002251 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &tcVec[0], tcVec.size()));
Scott Michel8efdca42007-12-04 22:23:35 +00002252 }
2253 }
Scott Michelc899a122009-01-26 22:33:37 +00002254
Nate Begeman7569e762008-07-29 19:07:27 +00002255 // These operations (AND, OR, XOR) are legal, they just couldn't be custom
2256 // lowered. Return the operation, rather than a null SDValue.
2257 return Op;
Scott Michel8efdca42007-12-04 22:23:35 +00002258}
2259
Scott Michel8efdca42007-12-04 22:23:35 +00002260//! Custom lowering for CTPOP (count population)
2261/*!
2262 Custom lowering code that counts the number ones in the input
2263 operand. SPU has such an instruction, but it counts the number of
2264 ones per byte, which then have to be accumulated.
2265*/
Dan Gohman8181bd12008-07-27 21:46:04 +00002266static SDValue LowerCTPOP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002267 MVT VT = Op.getValueType();
2268 MVT vecVT = MVT::getVectorVT(VT, (128 / VT.getSizeInBits()));
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002269 DebugLoc dl = Op.getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +00002270
Duncan Sands92c43912008-06-06 12:08:01 +00002271 switch (VT.getSimpleVT()) {
2272 default:
2273 assert(false && "Invalid value type!");
Scott Michel8efdca42007-12-04 22:23:35 +00002274 case MVT::i8: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002275 SDValue N = Op.getOperand(0);
2276 SDValue Elt0 = DAG.getConstant(0, MVT::i32);
Scott Michel8efdca42007-12-04 22:23:35 +00002277
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002278 SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, dl, vecVT, N, N);
2279 SDValue CNTB = DAG.getNode(SPUISD::CNTB, dl, vecVT, Promote);
Scott Michel8efdca42007-12-04 22:23:35 +00002280
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002281 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i8, CNTB, Elt0);
Scott Michel8efdca42007-12-04 22:23:35 +00002282 }
2283
2284 case MVT::i16: {
2285 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner1b989192007-12-31 04:13:23 +00002286 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Scott Michel8efdca42007-12-04 22:23:35 +00002287
Chris Lattner1b989192007-12-31 04:13:23 +00002288 unsigned CNTB_reg = RegInfo.createVirtualRegister(&SPU::R16CRegClass);
Scott Michel8efdca42007-12-04 22:23:35 +00002289
Dan Gohman8181bd12008-07-27 21:46:04 +00002290 SDValue N = Op.getOperand(0);
2291 SDValue Elt0 = DAG.getConstant(0, MVT::i16);
2292 SDValue Mask0 = DAG.getConstant(0x0f, MVT::i16);
Duncan Sands7aef60d2008-10-30 19:24:28 +00002293 SDValue Shift1 = DAG.getConstant(8, MVT::i32);
Scott Michel8efdca42007-12-04 22:23:35 +00002294
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002295 SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, dl, vecVT, N, N);
2296 SDValue CNTB = DAG.getNode(SPUISD::CNTB, dl, vecVT, Promote);
Scott Michel8efdca42007-12-04 22:23:35 +00002297
2298 // CNTB_result becomes the chain to which all of the virtual registers
2299 // CNTB_reg, SUM1_reg become associated:
Dan Gohman8181bd12008-07-27 21:46:04 +00002300 SDValue CNTB_result =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002301 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, CNTB, Elt0);
Scott Michel4ec722e2008-07-16 17:17:29 +00002302
Dan Gohman8181bd12008-07-27 21:46:04 +00002303 SDValue CNTB_rescopy =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002304 DAG.getCopyToReg(CNTB_result, dl, CNTB_reg, CNTB_result);
Scott Michel8efdca42007-12-04 22:23:35 +00002305
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002306 SDValue Tmp1 = DAG.getCopyFromReg(CNTB_rescopy, dl, CNTB_reg, MVT::i16);
Scott Michel8efdca42007-12-04 22:23:35 +00002307
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002308 return DAG.getNode(ISD::AND, dl, MVT::i16,
2309 DAG.getNode(ISD::ADD, dl, MVT::i16,
2310 DAG.getNode(ISD::SRL, dl, MVT::i16,
Scott Michel5a6f17b2008-01-30 02:55:46 +00002311 Tmp1, Shift1),
2312 Tmp1),
2313 Mask0);
Scott Michel8efdca42007-12-04 22:23:35 +00002314 }
2315
2316 case MVT::i32: {
2317 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner1b989192007-12-31 04:13:23 +00002318 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Scott Michel8efdca42007-12-04 22:23:35 +00002319
Chris Lattner1b989192007-12-31 04:13:23 +00002320 unsigned CNTB_reg = RegInfo.createVirtualRegister(&SPU::R32CRegClass);
2321 unsigned SUM1_reg = RegInfo.createVirtualRegister(&SPU::R32CRegClass);
Scott Michel8efdca42007-12-04 22:23:35 +00002322
Dan Gohman8181bd12008-07-27 21:46:04 +00002323 SDValue N = Op.getOperand(0);
2324 SDValue Elt0 = DAG.getConstant(0, MVT::i32);
2325 SDValue Mask0 = DAG.getConstant(0xff, MVT::i32);
2326 SDValue Shift1 = DAG.getConstant(16, MVT::i32);
2327 SDValue Shift2 = DAG.getConstant(8, MVT::i32);
Scott Michel8efdca42007-12-04 22:23:35 +00002328
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002329 SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, dl, vecVT, N, N);
2330 SDValue CNTB = DAG.getNode(SPUISD::CNTB, dl, vecVT, Promote);
Scott Michel8efdca42007-12-04 22:23:35 +00002331
2332 // CNTB_result becomes the chain to which all of the virtual registers
2333 // CNTB_reg, SUM1_reg become associated:
Dan Gohman8181bd12008-07-27 21:46:04 +00002334 SDValue CNTB_result =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002335 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32, CNTB, Elt0);
Scott Michel4ec722e2008-07-16 17:17:29 +00002336
Dan Gohman8181bd12008-07-27 21:46:04 +00002337 SDValue CNTB_rescopy =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002338 DAG.getCopyToReg(CNTB_result, dl, CNTB_reg, CNTB_result);
Scott Michel8efdca42007-12-04 22:23:35 +00002339
Dan Gohman8181bd12008-07-27 21:46:04 +00002340 SDValue Comp1 =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002341 DAG.getNode(ISD::SRL, dl, MVT::i32,
Scott Michel34712c32009-03-16 18:47:25 +00002342 DAG.getCopyFromReg(CNTB_rescopy, dl, CNTB_reg, MVT::i32),
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002343 Shift1);
Scott Michel8efdca42007-12-04 22:23:35 +00002344
Dan Gohman8181bd12008-07-27 21:46:04 +00002345 SDValue Sum1 =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002346 DAG.getNode(ISD::ADD, dl, MVT::i32, Comp1,
2347 DAG.getCopyFromReg(CNTB_rescopy, dl, CNTB_reg, MVT::i32));
Scott Michel8efdca42007-12-04 22:23:35 +00002348
Dan Gohman8181bd12008-07-27 21:46:04 +00002349 SDValue Sum1_rescopy =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002350 DAG.getCopyToReg(CNTB_result, dl, SUM1_reg, Sum1);
Scott Michel8efdca42007-12-04 22:23:35 +00002351
Dan Gohman8181bd12008-07-27 21:46:04 +00002352 SDValue Comp2 =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002353 DAG.getNode(ISD::SRL, dl, MVT::i32,
2354 DAG.getCopyFromReg(Sum1_rescopy, dl, SUM1_reg, MVT::i32),
Scott Michel5a6f17b2008-01-30 02:55:46 +00002355 Shift2);
Dan Gohman8181bd12008-07-27 21:46:04 +00002356 SDValue Sum2 =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002357 DAG.getNode(ISD::ADD, dl, MVT::i32, Comp2,
2358 DAG.getCopyFromReg(Sum1_rescopy, dl, SUM1_reg, MVT::i32));
Scott Michel8efdca42007-12-04 22:23:35 +00002359
Dale Johannesenb03cc3f2009-02-04 23:02:30 +00002360 return DAG.getNode(ISD::AND, dl, MVT::i32, Sum2, Mask0);
Scott Michel8efdca42007-12-04 22:23:35 +00002361 }
2362
2363 case MVT::i64:
2364 break;
2365 }
2366
Dan Gohman8181bd12008-07-27 21:46:04 +00002367 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00002368}
2369
pingbak2f387e82009-01-26 03:31:40 +00002370//! Lower ISD::FP_TO_SINT, ISD::FP_TO_UINT for i32
Scott Michel8c67fa42009-01-21 04:58:48 +00002371/*!
pingbak2f387e82009-01-26 03:31:40 +00002372 f32->i32 passes through unchanged, whereas f64->i32 expands to a libcall.
2373 All conversions to i64 are expanded to a libcall.
Scott Michel8c67fa42009-01-21 04:58:48 +00002374 */
pingbak2f387e82009-01-26 03:31:40 +00002375static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
2376 SPUTargetLowering &TLI) {
Scott Michel8c67fa42009-01-21 04:58:48 +00002377 MVT OpVT = Op.getValueType();
Scott Michel8c67fa42009-01-21 04:58:48 +00002378 SDValue Op0 = Op.getOperand(0);
pingbak2f387e82009-01-26 03:31:40 +00002379 MVT Op0VT = Op0.getValueType();
Scott Michel8c67fa42009-01-21 04:58:48 +00002380
pingbak2f387e82009-01-26 03:31:40 +00002381 if ((OpVT == MVT::i32 && Op0VT == MVT::f64)
2382 || OpVT == MVT::i64) {
2383 // Convert f32 / f64 to i32 / i64 via libcall.
2384 RTLIB::Libcall LC =
2385 (Op.getOpcode() == ISD::FP_TO_SINT)
2386 ? RTLIB::getFPTOSINT(Op0VT, OpVT)
2387 : RTLIB::getFPTOUINT(Op0VT, OpVT);
2388 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
2389 SDValue Dummy;
2390 return ExpandLibCall(LC, Op, DAG, false, Dummy, TLI);
2391 }
Scott Michel8c67fa42009-01-21 04:58:48 +00002392
Eli Friedman9d77ac32009-05-27 00:47:34 +00002393 return Op;
pingbak2f387e82009-01-26 03:31:40 +00002394}
Scott Michel8c67fa42009-01-21 04:58:48 +00002395
pingbak2f387e82009-01-26 03:31:40 +00002396//! Lower ISD::SINT_TO_FP, ISD::UINT_TO_FP for i32
2397/*!
2398 i32->f32 passes through unchanged, whereas i32->f64 is expanded to a libcall.
2399 All conversions from i64 are expanded to a libcall.
2400 */
2401static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG,
2402 SPUTargetLowering &TLI) {
2403 MVT OpVT = Op.getValueType();
2404 SDValue Op0 = Op.getOperand(0);
2405 MVT Op0VT = Op0.getValueType();
2406
2407 if ((OpVT == MVT::f64 && Op0VT == MVT::i32)
2408 || Op0VT == MVT::i64) {
2409 // Convert i32, i64 to f64 via libcall:
2410 RTLIB::Libcall LC =
2411 (Op.getOpcode() == ISD::SINT_TO_FP)
2412 ? RTLIB::getSINTTOFP(Op0VT, OpVT)
2413 : RTLIB::getUINTTOFP(Op0VT, OpVT);
2414 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd int-to-fp conversion!");
2415 SDValue Dummy;
2416 return ExpandLibCall(LC, Op, DAG, false, Dummy, TLI);
2417 }
2418
Eli Friedman9d77ac32009-05-27 00:47:34 +00002419 return Op;
Scott Michel8c67fa42009-01-21 04:58:48 +00002420}
2421
2422//! Lower ISD::SETCC
2423/*!
2424 This handles MVT::f64 (double floating point) condition lowering
2425 */
Scott Michel8c67fa42009-01-21 04:58:48 +00002426static SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG,
2427 const TargetLowering &TLI) {
pingbak2f387e82009-01-26 03:31:40 +00002428 CondCodeSDNode *CC = dyn_cast<CondCodeSDNode>(Op.getOperand(2));
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00002429 DebugLoc dl = Op.getDebugLoc();
pingbak2f387e82009-01-26 03:31:40 +00002430 assert(CC != 0 && "LowerSETCC: CondCodeSDNode should not be null here!\n");
2431
Scott Michel8c67fa42009-01-21 04:58:48 +00002432 SDValue lhs = Op.getOperand(0);
2433 SDValue rhs = Op.getOperand(1);
Scott Michel8c67fa42009-01-21 04:58:48 +00002434 MVT lhsVT = lhs.getValueType();
Scott Michel8c67fa42009-01-21 04:58:48 +00002435 assert(lhsVT == MVT::f64 && "LowerSETCC: type other than MVT::64\n");
2436
pingbak2f387e82009-01-26 03:31:40 +00002437 MVT ccResultVT = TLI.getSetCCResultType(lhs.getValueType());
2438 APInt ccResultOnes = APInt::getAllOnesValue(ccResultVT.getSizeInBits());
2439 MVT IntVT(MVT::i64);
2440
2441 // Take advantage of the fact that (truncate (sra arg, 32)) is efficiently
2442 // selected to a NOP:
Dale Johannesen85fc0932009-02-04 01:48:28 +00002443 SDValue i64lhs = DAG.getNode(ISD::BIT_CONVERT, dl, IntVT, lhs);
pingbak2f387e82009-01-26 03:31:40 +00002444 SDValue lhsHi32 =
Dale Johannesen85fc0932009-02-04 01:48:28 +00002445 DAG.getNode(ISD::TRUNCATE, dl, MVT::i32,
2446 DAG.getNode(ISD::SRL, dl, IntVT,
pingbak2f387e82009-01-26 03:31:40 +00002447 i64lhs, DAG.getConstant(32, MVT::i32)));
2448 SDValue lhsHi32abs =
Dale Johannesen85fc0932009-02-04 01:48:28 +00002449 DAG.getNode(ISD::AND, dl, MVT::i32,
pingbak2f387e82009-01-26 03:31:40 +00002450 lhsHi32, DAG.getConstant(0x7fffffff, MVT::i32));
2451 SDValue lhsLo32 =
Dale Johannesen85fc0932009-02-04 01:48:28 +00002452 DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, i64lhs);
pingbak2f387e82009-01-26 03:31:40 +00002453
2454 // SETO and SETUO only use the lhs operand:
2455 if (CC->get() == ISD::SETO) {
2456 // Evaluates to true if Op0 is not [SQ]NaN - lowers to the inverse of
2457 // SETUO
2458 APInt ccResultAllOnes = APInt::getAllOnesValue(ccResultVT.getSizeInBits());
Dale Johannesen85fc0932009-02-04 01:48:28 +00002459 return DAG.getNode(ISD::XOR, dl, ccResultVT,
2460 DAG.getSetCC(dl, ccResultVT,
pingbak2f387e82009-01-26 03:31:40 +00002461 lhs, DAG.getConstantFP(0.0, lhsVT),
2462 ISD::SETUO),
2463 DAG.getConstant(ccResultAllOnes, ccResultVT));
2464 } else if (CC->get() == ISD::SETUO) {
2465 // Evaluates to true if Op0 is [SQ]NaN
Dale Johannesen85fc0932009-02-04 01:48:28 +00002466 return DAG.getNode(ISD::AND, dl, ccResultVT,
2467 DAG.getSetCC(dl, ccResultVT,
pingbak2f387e82009-01-26 03:31:40 +00002468 lhsHi32abs,
2469 DAG.getConstant(0x7ff00000, MVT::i32),
2470 ISD::SETGE),
Dale Johannesen85fc0932009-02-04 01:48:28 +00002471 DAG.getSetCC(dl, ccResultVT,
pingbak2f387e82009-01-26 03:31:40 +00002472 lhsLo32,
2473 DAG.getConstant(0, MVT::i32),
2474 ISD::SETGT));
2475 }
2476
Dale Johannesen24dd9a52009-02-07 00:55:49 +00002477 SDValue i64rhs = DAG.getNode(ISD::BIT_CONVERT, dl, IntVT, rhs);
pingbak2f387e82009-01-26 03:31:40 +00002478 SDValue rhsHi32 =
Dale Johannesen85fc0932009-02-04 01:48:28 +00002479 DAG.getNode(ISD::TRUNCATE, dl, MVT::i32,
2480 DAG.getNode(ISD::SRL, dl, IntVT,
pingbak2f387e82009-01-26 03:31:40 +00002481 i64rhs, DAG.getConstant(32, MVT::i32)));
2482
2483 // If a value is negative, subtract from the sign magnitude constant:
2484 SDValue signMag2TC = DAG.getConstant(0x8000000000000000ULL, IntVT);
2485
2486 // Convert the sign-magnitude representation into 2's complement:
Dale Johannesen85fc0932009-02-04 01:48:28 +00002487 SDValue lhsSelectMask = DAG.getNode(ISD::SRA, dl, ccResultVT,
pingbak2f387e82009-01-26 03:31:40 +00002488 lhsHi32, DAG.getConstant(31, MVT::i32));
Dale Johannesen85fc0932009-02-04 01:48:28 +00002489 SDValue lhsSignMag2TC = DAG.getNode(ISD::SUB, dl, IntVT, signMag2TC, i64lhs);
pingbak2f387e82009-01-26 03:31:40 +00002490 SDValue lhsSelect =
Dale Johannesen85fc0932009-02-04 01:48:28 +00002491 DAG.getNode(ISD::SELECT, dl, IntVT,
pingbak2f387e82009-01-26 03:31:40 +00002492 lhsSelectMask, lhsSignMag2TC, i64lhs);
2493
Dale Johannesen85fc0932009-02-04 01:48:28 +00002494 SDValue rhsSelectMask = DAG.getNode(ISD::SRA, dl, ccResultVT,
pingbak2f387e82009-01-26 03:31:40 +00002495 rhsHi32, DAG.getConstant(31, MVT::i32));
Dale Johannesen85fc0932009-02-04 01:48:28 +00002496 SDValue rhsSignMag2TC = DAG.getNode(ISD::SUB, dl, IntVT, signMag2TC, i64rhs);
pingbak2f387e82009-01-26 03:31:40 +00002497 SDValue rhsSelect =
Dale Johannesen85fc0932009-02-04 01:48:28 +00002498 DAG.getNode(ISD::SELECT, dl, IntVT,
pingbak2f387e82009-01-26 03:31:40 +00002499 rhsSelectMask, rhsSignMag2TC, i64rhs);
2500
2501 unsigned compareOp;
2502
Scott Michel8c67fa42009-01-21 04:58:48 +00002503 switch (CC->get()) {
2504 case ISD::SETOEQ:
Scott Michel8c67fa42009-01-21 04:58:48 +00002505 case ISD::SETUEQ:
pingbak2f387e82009-01-26 03:31:40 +00002506 compareOp = ISD::SETEQ; break;
2507 case ISD::SETOGT:
Scott Michel8c67fa42009-01-21 04:58:48 +00002508 case ISD::SETUGT:
pingbak2f387e82009-01-26 03:31:40 +00002509 compareOp = ISD::SETGT; break;
2510 case ISD::SETOGE:
Scott Michel8c67fa42009-01-21 04:58:48 +00002511 case ISD::SETUGE:
pingbak2f387e82009-01-26 03:31:40 +00002512 compareOp = ISD::SETGE; break;
2513 case ISD::SETOLT:
Scott Michel8c67fa42009-01-21 04:58:48 +00002514 case ISD::SETULT:
pingbak2f387e82009-01-26 03:31:40 +00002515 compareOp = ISD::SETLT; break;
2516 case ISD::SETOLE:
Scott Michel8c67fa42009-01-21 04:58:48 +00002517 case ISD::SETULE:
pingbak2f387e82009-01-26 03:31:40 +00002518 compareOp = ISD::SETLE; break;
Scott Michel8c67fa42009-01-21 04:58:48 +00002519 case ISD::SETUNE:
pingbak2f387e82009-01-26 03:31:40 +00002520 case ISD::SETONE:
2521 compareOp = ISD::SETNE; break;
Scott Michel8c67fa42009-01-21 04:58:48 +00002522 default:
Edwin Török4d9756a2009-07-08 20:53:28 +00002523 llvm_report_error("CellSPU ISel Select: unimplemented f64 condition");
Scott Michel8c67fa42009-01-21 04:58:48 +00002524 }
2525
pingbak2f387e82009-01-26 03:31:40 +00002526 SDValue result =
Scott Michel34712c32009-03-16 18:47:25 +00002527 DAG.getSetCC(dl, ccResultVT, lhsSelect, rhsSelect,
Dale Johannesen85fc0932009-02-04 01:48:28 +00002528 (ISD::CondCode) compareOp);
pingbak2f387e82009-01-26 03:31:40 +00002529
2530 if ((CC->get() & 0x8) == 0) {
2531 // Ordered comparison:
Dale Johannesen85fc0932009-02-04 01:48:28 +00002532 SDValue lhsNaN = DAG.getSetCC(dl, ccResultVT,
pingbak2f387e82009-01-26 03:31:40 +00002533 lhs, DAG.getConstantFP(0.0, MVT::f64),
2534 ISD::SETO);
Dale Johannesen85fc0932009-02-04 01:48:28 +00002535 SDValue rhsNaN = DAG.getSetCC(dl, ccResultVT,
pingbak2f387e82009-01-26 03:31:40 +00002536 rhs, DAG.getConstantFP(0.0, MVT::f64),
2537 ISD::SETO);
Dale Johannesen85fc0932009-02-04 01:48:28 +00002538 SDValue ordered = DAG.getNode(ISD::AND, dl, ccResultVT, lhsNaN, rhsNaN);
pingbak2f387e82009-01-26 03:31:40 +00002539
Dale Johannesen85fc0932009-02-04 01:48:28 +00002540 result = DAG.getNode(ISD::AND, dl, ccResultVT, ordered, result);
pingbak2f387e82009-01-26 03:31:40 +00002541 }
2542
2543 return result;
Scott Michel8c67fa42009-01-21 04:58:48 +00002544}
2545
Scott Michel56a125e2008-11-22 23:50:42 +00002546//! Lower ISD::SELECT_CC
2547/*!
2548 ISD::SELECT_CC can (generally) be implemented directly on the SPU using the
2549 SELB instruction.
2550
2551 \note Need to revisit this in the future: if the code path through the true
2552 and false value computations is longer than the latency of a branch (6
2553 cycles), then it would be more advantageous to branch and insert a new basic
2554 block and branch on the condition. However, this code does not make that
2555 assumption, given the simplisitc uses so far.
2556 */
2557
Scott Michel06eabde2008-12-27 04:51:36 +00002558static SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG,
2559 const TargetLowering &TLI) {
Scott Michel56a125e2008-11-22 23:50:42 +00002560 MVT VT = Op.getValueType();
2561 SDValue lhs = Op.getOperand(0);
2562 SDValue rhs = Op.getOperand(1);
2563 SDValue trueval = Op.getOperand(2);
2564 SDValue falseval = Op.getOperand(3);
2565 SDValue condition = Op.getOperand(4);
Dale Johannesen175fdef2009-02-06 21:50:26 +00002566 DebugLoc dl = Op.getDebugLoc();
Scott Michel56a125e2008-11-22 23:50:42 +00002567
Scott Michel06eabde2008-12-27 04:51:36 +00002568 // NOTE: SELB's arguments: $rA, $rB, $mask
2569 //
2570 // SELB selects bits from $rA where bits in $mask are 0, bits from $rB
2571 // where bits in $mask are 1. CCond will be inverted, having 1s where the
2572 // condition was true and 0s where the condition was false. Hence, the
2573 // arguments to SELB get reversed.
2574
Scott Michel56a125e2008-11-22 23:50:42 +00002575 // Note: Really should be ISD::SELECT instead of SPUISD::SELB, but LLVM's
2576 // legalizer insists on combining SETCC/SELECT into SELECT_CC, so we end up
2577 // with another "cannot select select_cc" assert:
2578
Dale Johannesen175fdef2009-02-06 21:50:26 +00002579 SDValue compare = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00002580 TLI.getSetCCResultType(Op.getValueType()),
Scott Michel06eabde2008-12-27 04:51:36 +00002581 lhs, rhs, condition);
Dale Johannesen175fdef2009-02-06 21:50:26 +00002582 return DAG.getNode(SPUISD::SELB, dl, VT, falseval, trueval, compare);
Scott Michel56a125e2008-11-22 23:50:42 +00002583}
2584
Scott Michelec8c82e2008-12-02 19:53:53 +00002585//! Custom lower ISD::TRUNCATE
2586static SDValue LowerTRUNCATE(SDValue Op, SelectionDAG &DAG)
2587{
Scott Michel34712c32009-03-16 18:47:25 +00002588 // Type to truncate to
Scott Michelec8c82e2008-12-02 19:53:53 +00002589 MVT VT = Op.getValueType();
2590 MVT::SimpleValueType simpleVT = VT.getSimpleVT();
2591 MVT VecVT = MVT::getVectorVT(VT, (128 / VT.getSizeInBits()));
Dale Johannesen175fdef2009-02-06 21:50:26 +00002592 DebugLoc dl = Op.getDebugLoc();
Scott Michelec8c82e2008-12-02 19:53:53 +00002593
Scott Michel34712c32009-03-16 18:47:25 +00002594 // Type to truncate from
Scott Michelec8c82e2008-12-02 19:53:53 +00002595 SDValue Op0 = Op.getOperand(0);
2596 MVT Op0VT = Op0.getValueType();
Scott Michelec8c82e2008-12-02 19:53:53 +00002597
Scott Michel06eabde2008-12-27 04:51:36 +00002598 if (Op0VT.getSimpleVT() == MVT::i128 && simpleVT == MVT::i64) {
Scott Michelc5a29fe2009-01-03 00:27:53 +00002599 // Create shuffle mask, least significant doubleword of quadword
Scott Michel06eabde2008-12-27 04:51:36 +00002600 unsigned maskHigh = 0x08090a0b;
2601 unsigned maskLow = 0x0c0d0e0f;
2602 // Use a shuffle to perform the truncation
Evan Cheng907a2d22009-02-25 22:49:59 +00002603 SDValue shufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
2604 DAG.getConstant(maskHigh, MVT::i32),
2605 DAG.getConstant(maskLow, MVT::i32),
2606 DAG.getConstant(maskHigh, MVT::i32),
2607 DAG.getConstant(maskLow, MVT::i32));
Scott Michel06eabde2008-12-27 04:51:36 +00002608
Scott Michel34712c32009-03-16 18:47:25 +00002609 SDValue truncShuffle = DAG.getNode(SPUISD::SHUFB, dl, VecVT,
2610 Op0, Op0, shufMask);
Scott Michel06eabde2008-12-27 04:51:36 +00002611
Scott Michel34712c32009-03-16 18:47:25 +00002612 return DAG.getNode(SPUISD::VEC2PREFSLOT, dl, VT, truncShuffle);
Scott Michelec8c82e2008-12-02 19:53:53 +00002613 }
2614
Scott Michel06eabde2008-12-27 04:51:36 +00002615 return SDValue(); // Leave the truncate unmolested
Scott Michelec8c82e2008-12-02 19:53:53 +00002616}
2617
Scott Michel56a125e2008-11-22 23:50:42 +00002618//! Custom (target-specific) lowering entry point
2619/*!
2620 This is where LLVM's DAG selection process calls to do target-specific
2621 lowering of nodes.
2622 */
Dan Gohman8181bd12008-07-27 21:46:04 +00002623SDValue
2624SPUTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG)
Scott Michel8efdca42007-12-04 22:23:35 +00002625{
Scott Michel97872d32008-02-23 18:41:37 +00002626 unsigned Opc = (unsigned) Op.getOpcode();
Duncan Sands92c43912008-06-06 12:08:01 +00002627 MVT VT = Op.getValueType();
Scott Michel97872d32008-02-23 18:41:37 +00002628
2629 switch (Opc) {
Scott Michel8efdca42007-12-04 22:23:35 +00002630 default: {
Edwin Török4d9756a2009-07-08 20:53:28 +00002631#ifndef NDEBUG
Scott Michel8efdca42007-12-04 22:23:35 +00002632 cerr << "SPUTargetLowering::LowerOperation(): need to lower this!\n";
Scott Michel97872d32008-02-23 18:41:37 +00002633 cerr << "Op.getOpcode() = " << Opc << "\n";
Gabor Greif1c80d112008-08-28 21:40:38 +00002634 cerr << "*Op.getNode():\n";
2635 Op.getNode()->dump();
Edwin Török4d9756a2009-07-08 20:53:28 +00002636#endif
Edwin Törökbd448e32009-07-14 16:55:14 +00002637 llvm_unreachable(0);
Scott Michel8efdca42007-12-04 22:23:35 +00002638 }
2639 case ISD::LOAD:
Scott Michelec8c82e2008-12-02 19:53:53 +00002640 case ISD::EXTLOAD:
Scott Michel8efdca42007-12-04 22:23:35 +00002641 case ISD::SEXTLOAD:
2642 case ISD::ZEXTLOAD:
2643 return LowerLOAD(Op, DAG, SPUTM.getSubtargetImpl());
2644 case ISD::STORE:
2645 return LowerSTORE(Op, DAG, SPUTM.getSubtargetImpl());
2646 case ISD::ConstantPool:
2647 return LowerConstantPool(Op, DAG, SPUTM.getSubtargetImpl());
2648 case ISD::GlobalAddress:
2649 return LowerGlobalAddress(Op, DAG, SPUTM.getSubtargetImpl());
2650 case ISD::JumpTable:
2651 return LowerJumpTable(Op, DAG, SPUTM.getSubtargetImpl());
Scott Michel8efdca42007-12-04 22:23:35 +00002652 case ISD::ConstantFP:
2653 return LowerConstantFP(Op, DAG);
2654 case ISD::FORMAL_ARGUMENTS:
Scott Michel394e26d2008-01-17 20:38:41 +00002655 return LowerFORMAL_ARGUMENTS(Op, DAG, VarArgsFrameIndex);
Scott Michel8efdca42007-12-04 22:23:35 +00002656 case ISD::CALL:
Scott Micheldbac4cf2008-01-11 02:53:15 +00002657 return LowerCALL(Op, DAG, SPUTM.getSubtargetImpl());
Scott Michel8efdca42007-12-04 22:23:35 +00002658 case ISD::RET:
2659 return LowerRET(Op, DAG, getTargetMachine());
2660
Scott Michel4d07fb72008-12-30 23:28:25 +00002661 // i8, i64 math ops:
Scott Michel67224b22008-06-02 22:18:03 +00002662 case ISD::ADD:
Scott Michel8efdca42007-12-04 22:23:35 +00002663 case ISD::SUB:
2664 case ISD::ROTR:
2665 case ISD::ROTL:
2666 case ISD::SRL:
2667 case ISD::SHL:
Scott Michel67224b22008-06-02 22:18:03 +00002668 case ISD::SRA: {
Scott Michel97872d32008-02-23 18:41:37 +00002669 if (VT == MVT::i8)
Scott Michel06eabde2008-12-27 04:51:36 +00002670 return LowerI8Math(Op, DAG, Opc, *this);
Scott Michel97872d32008-02-23 18:41:37 +00002671 break;
Scott Michel67224b22008-06-02 22:18:03 +00002672 }
Scott Michel8efdca42007-12-04 22:23:35 +00002673
pingbak2f387e82009-01-26 03:31:40 +00002674 case ISD::FP_TO_SINT:
2675 case ISD::FP_TO_UINT:
2676 return LowerFP_TO_INT(Op, DAG, *this);
2677
2678 case ISD::SINT_TO_FP:
2679 case ISD::UINT_TO_FP:
2680 return LowerINT_TO_FP(Op, DAG, *this);
Scott Michel8c67fa42009-01-21 04:58:48 +00002681
Scott Michel8efdca42007-12-04 22:23:35 +00002682 // Vector-related lowering.
2683 case ISD::BUILD_VECTOR:
pingbak2f387e82009-01-26 03:31:40 +00002684 return LowerBUILD_VECTOR(Op, DAG);
Scott Michel8efdca42007-12-04 22:23:35 +00002685 case ISD::SCALAR_TO_VECTOR:
2686 return LowerSCALAR_TO_VECTOR(Op, DAG);
2687 case ISD::VECTOR_SHUFFLE:
2688 return LowerVECTOR_SHUFFLE(Op, DAG);
2689 case ISD::EXTRACT_VECTOR_ELT:
2690 return LowerEXTRACT_VECTOR_ELT(Op, DAG);
2691 case ISD::INSERT_VECTOR_ELT:
2692 return LowerINSERT_VECTOR_ELT(Op, DAG);
2693
2694 // Look for ANDBI, ORBI and XORBI opportunities and lower appropriately:
2695 case ISD::AND:
2696 case ISD::OR:
2697 case ISD::XOR:
2698 return LowerByteImmed(Op, DAG);
2699
2700 // Vector and i8 multiply:
2701 case ISD::MUL:
Scott Michel4d07fb72008-12-30 23:28:25 +00002702 if (VT == MVT::i8)
Scott Michel06eabde2008-12-27 04:51:36 +00002703 return LowerI8Math(Op, DAG, Opc, *this);
Scott Michel8efdca42007-12-04 22:23:35 +00002704
Scott Michel8efdca42007-12-04 22:23:35 +00002705 case ISD::CTPOP:
2706 return LowerCTPOP(Op, DAG);
Scott Michel56a125e2008-11-22 23:50:42 +00002707
2708 case ISD::SELECT_CC:
Scott Michel06eabde2008-12-27 04:51:36 +00002709 return LowerSELECT_CC(Op, DAG, *this);
Scott Michelec8c82e2008-12-02 19:53:53 +00002710
Scott Michel8c67fa42009-01-21 04:58:48 +00002711 case ISD::SETCC:
2712 return LowerSETCC(Op, DAG, *this);
2713
Scott Michelec8c82e2008-12-02 19:53:53 +00002714 case ISD::TRUNCATE:
2715 return LowerTRUNCATE(Op, DAG);
Scott Michel8efdca42007-12-04 22:23:35 +00002716 }
2717
Dan Gohman8181bd12008-07-27 21:46:04 +00002718 return SDValue();
Scott Michel8efdca42007-12-04 22:23:35 +00002719}
2720
Duncan Sands7d9834b2008-12-01 11:39:25 +00002721void SPUTargetLowering::ReplaceNodeResults(SDNode *N,
2722 SmallVectorImpl<SDValue>&Results,
2723 SelectionDAG &DAG)
Scott Michel6e2d68b2008-11-10 23:43:06 +00002724{
2725#if 0
2726 unsigned Opc = (unsigned) N->getOpcode();
2727 MVT OpVT = N->getValueType(0);
2728
2729 switch (Opc) {
2730 default: {
2731 cerr << "SPUTargetLowering::ReplaceNodeResults(): need to fix this!\n";
2732 cerr << "Op.getOpcode() = " << Opc << "\n";
2733 cerr << "*Op.getNode():\n";
2734 N->dump();
2735 abort();
2736 /*NOTREACHED*/
2737 }
2738 }
2739#endif
2740
2741 /* Otherwise, return unchanged */
Scott Michel6e2d68b2008-11-10 23:43:06 +00002742}
2743
Scott Michel8efdca42007-12-04 22:23:35 +00002744//===----------------------------------------------------------------------===//
Scott Michel8efdca42007-12-04 22:23:35 +00002745// Target Optimization Hooks
2746//===----------------------------------------------------------------------===//
2747
Dan Gohman8181bd12008-07-27 21:46:04 +00002748SDValue
Scott Michel8efdca42007-12-04 22:23:35 +00002749SPUTargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const
2750{
2751#if 0
2752 TargetMachine &TM = getTargetMachine();
Scott Michelf9f42e62008-01-29 02:16:57 +00002753#endif
2754 const SPUSubtarget *ST = SPUTM.getSubtargetImpl();
Scott Michel8efdca42007-12-04 22:23:35 +00002755 SelectionDAG &DAG = DCI.DAG;
Scott Michel0718cd82008-12-01 17:56:02 +00002756 SDValue Op0 = N->getOperand(0); // everything has at least one operand
2757 MVT NodeVT = N->getValueType(0); // The node's value type
Scott Michel06eabde2008-12-27 04:51:36 +00002758 MVT Op0VT = Op0.getValueType(); // The first operand's result
Scott Michel0718cd82008-12-01 17:56:02 +00002759 SDValue Result; // Initially, empty result
Dale Johannesen175fdef2009-02-06 21:50:26 +00002760 DebugLoc dl = N->getDebugLoc();
Scott Michel8efdca42007-12-04 22:23:35 +00002761
2762 switch (N->getOpcode()) {
2763 default: break;
Scott Michelf9f42e62008-01-29 02:16:57 +00002764 case ISD::ADD: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002765 SDValue Op1 = N->getOperand(1);
Scott Michelf9f42e62008-01-29 02:16:57 +00002766
Scott Michel06eabde2008-12-27 04:51:36 +00002767 if (Op0.getOpcode() == SPUISD::IndirectAddr
2768 || Op1.getOpcode() == SPUISD::IndirectAddr) {
2769 // Normalize the operands to reduce repeated code
2770 SDValue IndirectArg = Op0, AddArg = Op1;
Scott Michelae5cbf52008-12-29 03:23:36 +00002771
Scott Michel06eabde2008-12-27 04:51:36 +00002772 if (Op1.getOpcode() == SPUISD::IndirectAddr) {
2773 IndirectArg = Op1;
2774 AddArg = Op0;
2775 }
2776
2777 if (isa<ConstantSDNode>(AddArg)) {
2778 ConstantSDNode *CN0 = cast<ConstantSDNode > (AddArg);
2779 SDValue IndOp1 = IndirectArg.getOperand(1);
2780
2781 if (CN0->isNullValue()) {
2782 // (add (SPUindirect <arg>, <arg>), 0) ->
2783 // (SPUindirect <arg>, <arg>)
Scott Michelf9f42e62008-01-29 02:16:57 +00002784
Scott Michel8c2746e2008-12-04 17:16:59 +00002785#if !defined(NDEBUG)
Scott Michel06eabde2008-12-27 04:51:36 +00002786 if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) {
Scott Michel6ccefab2008-12-04 03:02:42 +00002787 cerr << "\n"
Scott Michel06eabde2008-12-27 04:51:36 +00002788 << "Replace: (add (SPUindirect <arg>, <arg>), 0)\n"
2789 << "With: (SPUindirect <arg>, <arg>)\n";
2790 }
Scott Michel6ccefab2008-12-04 03:02:42 +00002791#endif
2792
Scott Michel06eabde2008-12-27 04:51:36 +00002793 return IndirectArg;
2794 } else if (isa<ConstantSDNode>(IndOp1)) {
2795 // (add (SPUindirect <arg>, <const>), <const>) ->
2796 // (SPUindirect <arg>, <const + const>)
2797 ConstantSDNode *CN1 = cast<ConstantSDNode > (IndOp1);
2798 int64_t combinedConst = CN0->getSExtValue() + CN1->getSExtValue();
2799 SDValue combinedValue = DAG.getConstant(combinedConst, Op0VT);
Scott Michelf9f42e62008-01-29 02:16:57 +00002800
Scott Michel06eabde2008-12-27 04:51:36 +00002801#if !defined(NDEBUG)
2802 if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) {
2803 cerr << "\n"
2804 << "Replace: (add (SPUindirect <arg>, " << CN1->getSExtValue()
2805 << "), " << CN0->getSExtValue() << ")\n"
2806 << "With: (SPUindirect <arg>, "
2807 << combinedConst << ")\n";
2808 }
2809#endif
Scott Michelf9f42e62008-01-29 02:16:57 +00002810
Dale Johannesen175fdef2009-02-06 21:50:26 +00002811 return DAG.getNode(SPUISD::IndirectAddr, dl, Op0VT,
Scott Michel06eabde2008-12-27 04:51:36 +00002812 IndirectArg, combinedValue);
2813 }
Scott Michelf9f42e62008-01-29 02:16:57 +00002814 }
2815 }
Scott Michel97872d32008-02-23 18:41:37 +00002816 break;
2817 }
2818 case ISD::SIGN_EXTEND:
2819 case ISD::ZERO_EXTEND:
2820 case ISD::ANY_EXTEND: {
Scott Michel0718cd82008-12-01 17:56:02 +00002821 if (Op0.getOpcode() == SPUISD::VEC2PREFSLOT && NodeVT == Op0VT) {
Scott Michel97872d32008-02-23 18:41:37 +00002822 // (any_extend (SPUextract_elt0 <arg>)) ->
2823 // (SPUextract_elt0 <arg>)
2824 // Types must match, however...
Scott Michel8c2746e2008-12-04 17:16:59 +00002825#if !defined(NDEBUG)
2826 if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) {
Scott Michel6ccefab2008-12-04 03:02:42 +00002827 cerr << "\nReplace: ";
2828 N->dump(&DAG);
2829 cerr << "\nWith: ";
2830 Op0.getNode()->dump(&DAG);
2831 cerr << "\n";
Scott Michel8c2746e2008-12-04 17:16:59 +00002832 }
Scott Michel6ccefab2008-12-04 03:02:42 +00002833#endif
Scott Michel97872d32008-02-23 18:41:37 +00002834
2835 return Op0;
2836 }
2837 break;
2838 }
2839 case SPUISD::IndirectAddr: {
2840 if (!ST->usingLargeMem() && Op0.getOpcode() == SPUISD::AFormAddr) {
Scott Michel8c67fa42009-01-21 04:58:48 +00002841 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N->getOperand(1));
2842 if (CN != 0 && CN->getZExtValue() == 0) {
Scott Michel97872d32008-02-23 18:41:37 +00002843 // (SPUindirect (SPUaform <addr>, 0), 0) ->
2844 // (SPUaform <addr>, 0)
2845
2846 DEBUG(cerr << "Replace: ");
2847 DEBUG(N->dump(&DAG));
2848 DEBUG(cerr << "\nWith: ");
Gabor Greif1c80d112008-08-28 21:40:38 +00002849 DEBUG(Op0.getNode()->dump(&DAG));
Scott Michel97872d32008-02-23 18:41:37 +00002850 DEBUG(cerr << "\n");
2851
2852 return Op0;
2853 }
Scott Michel06eabde2008-12-27 04:51:36 +00002854 } else if (Op0.getOpcode() == ISD::ADD) {
2855 SDValue Op1 = N->getOperand(1);
2856 if (ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(Op1)) {
2857 // (SPUindirect (add <arg>, <arg>), 0) ->
2858 // (SPUindirect <arg>, <arg>)
2859 if (CN1->isNullValue()) {
2860
2861#if !defined(NDEBUG)
2862 if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) {
2863 cerr << "\n"
2864 << "Replace: (SPUindirect (add <arg>, <arg>), 0)\n"
2865 << "With: (SPUindirect <arg>, <arg>)\n";
2866 }
2867#endif
2868
Dale Johannesen175fdef2009-02-06 21:50:26 +00002869 return DAG.getNode(SPUISD::IndirectAddr, dl, Op0VT,
Scott Michel06eabde2008-12-27 04:51:36 +00002870 Op0.getOperand(0), Op0.getOperand(1));
2871 }
2872 }
Scott Michel97872d32008-02-23 18:41:37 +00002873 }
2874 break;
2875 }
2876 case SPUISD::SHLQUAD_L_BITS:
2877 case SPUISD::SHLQUAD_L_BYTES:
2878 case SPUISD::VEC_SHL:
2879 case SPUISD::VEC_SRL:
2880 case SPUISD::VEC_SRA:
Scott Michel06eabde2008-12-27 04:51:36 +00002881 case SPUISD::ROTBYTES_LEFT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002882 SDValue Op1 = N->getOperand(1);
Scott Michel97872d32008-02-23 18:41:37 +00002883
Scott Michel06eabde2008-12-27 04:51:36 +00002884 // Kill degenerate vector shifts:
2885 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1)) {
2886 if (CN->isNullValue()) {
Scott Michel97872d32008-02-23 18:41:37 +00002887 Result = Op0;
2888 }
2889 }
2890 break;
2891 }
Scott Michel06eabde2008-12-27 04:51:36 +00002892 case SPUISD::PREFSLOT2VEC: {
Scott Michel97872d32008-02-23 18:41:37 +00002893 switch (Op0.getOpcode()) {
2894 default:
2895 break;
2896 case ISD::ANY_EXTEND:
2897 case ISD::ZERO_EXTEND:
2898 case ISD::SIGN_EXTEND: {
Scott Michelae5cbf52008-12-29 03:23:36 +00002899 // (SPUprefslot2vec (any|zero|sign_extend (SPUvec2prefslot <arg>))) ->
Scott Michel97872d32008-02-23 18:41:37 +00002900 // <arg>
Scott Michelae5cbf52008-12-29 03:23:36 +00002901 // but only if the SPUprefslot2vec and <arg> types match.
Dan Gohman8181bd12008-07-27 21:46:04 +00002902 SDValue Op00 = Op0.getOperand(0);
Scott Michelc630c412008-11-24 17:11:17 +00002903 if (Op00.getOpcode() == SPUISD::VEC2PREFSLOT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002904 SDValue Op000 = Op00.getOperand(0);
Scott Michel0718cd82008-12-01 17:56:02 +00002905 if (Op000.getValueType() == NodeVT) {
Scott Michel97872d32008-02-23 18:41:37 +00002906 Result = Op000;
2907 }
2908 }
2909 break;
2910 }
Scott Michelc630c412008-11-24 17:11:17 +00002911 case SPUISD::VEC2PREFSLOT: {
Scott Michelae5cbf52008-12-29 03:23:36 +00002912 // (SPUprefslot2vec (SPUvec2prefslot <arg>)) ->
Scott Michel97872d32008-02-23 18:41:37 +00002913 // <arg>
2914 Result = Op0.getOperand(0);
2915 break;
Scott Michel4ec722e2008-07-16 17:17:29 +00002916 }
Scott Michel97872d32008-02-23 18:41:37 +00002917 }
2918 break;
Scott Michelf9f42e62008-01-29 02:16:57 +00002919 }
2920 }
Scott Michel8c67fa42009-01-21 04:58:48 +00002921
Scott Michel394e26d2008-01-17 20:38:41 +00002922 // Otherwise, return unchanged.
Scott Michel0718cd82008-12-01 17:56:02 +00002923#ifndef NDEBUG
Gabor Greif1c80d112008-08-28 21:40:38 +00002924 if (Result.getNode()) {
Scott Michel97872d32008-02-23 18:41:37 +00002925 DEBUG(cerr << "\nReplace.SPU: ");
2926 DEBUG(N->dump(&DAG));
2927 DEBUG(cerr << "\nWith: ");
Gabor Greif1c80d112008-08-28 21:40:38 +00002928 DEBUG(Result.getNode()->dump(&DAG));
Scott Michel97872d32008-02-23 18:41:37 +00002929 DEBUG(cerr << "\n");
2930 }
2931#endif
2932
2933 return Result;
Scott Michel8efdca42007-12-04 22:23:35 +00002934}
2935
2936//===----------------------------------------------------------------------===//
2937// Inline Assembly Support
2938//===----------------------------------------------------------------------===//
2939
2940/// getConstraintType - Given a constraint letter, return the type of
2941/// constraint it is for this target.
Scott Michel4ec722e2008-07-16 17:17:29 +00002942SPUTargetLowering::ConstraintType
Scott Michel8efdca42007-12-04 22:23:35 +00002943SPUTargetLowering::getConstraintType(const std::string &ConstraintLetter) const {
2944 if (ConstraintLetter.size() == 1) {
2945 switch (ConstraintLetter[0]) {
2946 default: break;
2947 case 'b':
2948 case 'r':
2949 case 'f':
2950 case 'v':
2951 case 'y':
2952 return C_RegisterClass;
Scott Michel4ec722e2008-07-16 17:17:29 +00002953 }
Scott Michel8efdca42007-12-04 22:23:35 +00002954 }
2955 return TargetLowering::getConstraintType(ConstraintLetter);
2956}
2957
Scott Michel4ec722e2008-07-16 17:17:29 +00002958std::pair<unsigned, const TargetRegisterClass*>
Scott Michel8efdca42007-12-04 22:23:35 +00002959SPUTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00002960 MVT VT) const
Scott Michel8efdca42007-12-04 22:23:35 +00002961{
2962 if (Constraint.size() == 1) {
2963 // GCC RS6000 Constraint Letters
2964 switch (Constraint[0]) {
2965 case 'b': // R1-R31
2966 case 'r': // R0-R31
2967 if (VT == MVT::i64)
2968 return std::make_pair(0U, SPU::R64CRegisterClass);
2969 return std::make_pair(0U, SPU::R32CRegisterClass);
2970 case 'f':
2971 if (VT == MVT::f32)
2972 return std::make_pair(0U, SPU::R32FPRegisterClass);
2973 else if (VT == MVT::f64)
2974 return std::make_pair(0U, SPU::R64FPRegisterClass);
2975 break;
Scott Michel4ec722e2008-07-16 17:17:29 +00002976 case 'v':
Scott Michel8efdca42007-12-04 22:23:35 +00002977 return std::make_pair(0U, SPU::GPRCRegisterClass);
2978 }
2979 }
Scott Michel4ec722e2008-07-16 17:17:29 +00002980
Scott Michel8efdca42007-12-04 22:23:35 +00002981 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
2982}
2983
Scott Michel97872d32008-02-23 18:41:37 +00002984//! Compute used/known bits for a SPU operand
Scott Michel8efdca42007-12-04 22:23:35 +00002985void
Dan Gohman8181bd12008-07-27 21:46:04 +00002986SPUTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00002987 const APInt &Mask,
Scott Michel4ec722e2008-07-16 17:17:29 +00002988 APInt &KnownZero,
Dan Gohman229fa052008-02-13 00:35:47 +00002989 APInt &KnownOne,
Scott Michel5a6f17b2008-01-30 02:55:46 +00002990 const SelectionDAG &DAG,
2991 unsigned Depth ) const {
Scott Michelbc5fbc12008-04-30 00:30:08 +00002992#if 0
Dan Gohmand06cad62009-04-01 18:45:54 +00002993 const uint64_t uint64_sizebits = sizeof(uint64_t) * CHAR_BIT;
Scott Michel97872d32008-02-23 18:41:37 +00002994
2995 switch (Op.getOpcode()) {
2996 default:
2997 // KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);
2998 break;
Scott Michel97872d32008-02-23 18:41:37 +00002999 case CALL:
3000 case SHUFB:
Scott Michel56a125e2008-11-22 23:50:42 +00003001 case SHUFFLE_MASK:
Scott Michel97872d32008-02-23 18:41:37 +00003002 case CNTB:
Scott Michel8c67fa42009-01-21 04:58:48 +00003003 case SPUISD::PREFSLOT2VEC:
Scott Michel97872d32008-02-23 18:41:37 +00003004 case SPUISD::LDRESULT:
Scott Michel8c67fa42009-01-21 04:58:48 +00003005 case SPUISD::VEC2PREFSLOT:
Scott Michelbc5fbc12008-04-30 00:30:08 +00003006 case SPUISD::SHLQUAD_L_BITS:
3007 case SPUISD::SHLQUAD_L_BYTES:
3008 case SPUISD::VEC_SHL:
3009 case SPUISD::VEC_SRL:
3010 case SPUISD::VEC_SRA:
3011 case SPUISD::VEC_ROTL:
3012 case SPUISD::VEC_ROTR:
Scott Michelbc5fbc12008-04-30 00:30:08 +00003013 case SPUISD::ROTBYTES_LEFT:
Scott Michel67224b22008-06-02 22:18:03 +00003014 case SPUISD::SELECT_MASK:
3015 case SPUISD::SELB:
Scott Michel97872d32008-02-23 18:41:37 +00003016 }
Scott Michel8c67fa42009-01-21 04:58:48 +00003017#endif
Scott Michel8efdca42007-12-04 22:23:35 +00003018}
Scott Michel4d07fb72008-12-30 23:28:25 +00003019
Scott Michel06eabde2008-12-27 04:51:36 +00003020unsigned
3021SPUTargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
3022 unsigned Depth) const {
3023 switch (Op.getOpcode()) {
3024 default:
3025 return 1;
Scott Michel8efdca42007-12-04 22:23:35 +00003026
Scott Michel06eabde2008-12-27 04:51:36 +00003027 case ISD::SETCC: {
3028 MVT VT = Op.getValueType();
3029
3030 if (VT != MVT::i8 && VT != MVT::i16 && VT != MVT::i32) {
3031 VT = MVT::i32;
3032 }
3033 return VT.getSizeInBits();
3034 }
3035 }
3036}
Scott Michelae5cbf52008-12-29 03:23:36 +00003037
Scott Michelbc5fbc12008-04-30 00:30:08 +00003038// LowerAsmOperandForConstraint
3039void
Dan Gohman8181bd12008-07-27 21:46:04 +00003040SPUTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Scott Michelbc5fbc12008-04-30 00:30:08 +00003041 char ConstraintLetter,
Evan Cheng7f250d62008-09-24 00:05:32 +00003042 bool hasMemory,
Dan Gohman8181bd12008-07-27 21:46:04 +00003043 std::vector<SDValue> &Ops,
Scott Michelbc5fbc12008-04-30 00:30:08 +00003044 SelectionDAG &DAG) const {
3045 // Default, for the time being, to the base class handler
Evan Cheng7f250d62008-09-24 00:05:32 +00003046 TargetLowering::LowerAsmOperandForConstraint(Op, ConstraintLetter, hasMemory,
3047 Ops, DAG);
Scott Michelbc5fbc12008-04-30 00:30:08 +00003048}
3049
Scott Michel8efdca42007-12-04 22:23:35 +00003050/// isLegalAddressImmediate - Return true if the integer value can be used
3051/// as the offset of the target addressing mode.
Gabor Greife9f7f582008-08-31 15:37:04 +00003052bool SPUTargetLowering::isLegalAddressImmediate(int64_t V,
3053 const Type *Ty) const {
Scott Michel8efdca42007-12-04 22:23:35 +00003054 // SPU's addresses are 256K:
3055 return (V > -(1 << 18) && V < (1 << 18) - 1);
3056}
3057
3058bool SPUTargetLowering::isLegalAddressImmediate(llvm::GlobalValue* GV) const {
Scott Michel4ec722e2008-07-16 17:17:29 +00003059 return false;
Scott Michel8efdca42007-12-04 22:23:35 +00003060}
Dan Gohman36322c72008-10-18 02:06:02 +00003061
3062bool
3063SPUTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
3064 // The SPU target isn't yet aware of offsets.
3065 return false;
3066}