blob: 8c7465f4ed6e11f4eac0d60657296283f977f46d [file] [log] [blame]
Chris Lattner6c18b102005-12-17 07:47:01 +00001//===-- SparcV8ISelDAGToDAG.cpp - A dag to dag inst selector for SparcV8 --===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines an instruction selector for the V8 target
11//
12//===----------------------------------------------------------------------===//
13
14#include "SparcV8.h"
15#include "SparcV8TargetMachine.h"
Chris Lattner384e5ef2005-12-18 13:33:06 +000016#include "llvm/DerivedTypes.h"
Chris Lattnera01b7572005-12-17 08:03:24 +000017#include "llvm/Function.h"
Chris Lattner8fa54dc2005-12-18 06:59:57 +000018#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnera01b7572005-12-17 08:03:24 +000019#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner33084492005-12-18 08:13:54 +000020#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner6c18b102005-12-17 07:47:01 +000021#include "llvm/CodeGen/SelectionDAG.h"
22#include "llvm/CodeGen/SelectionDAGISel.h"
Chris Lattnera01b7572005-12-17 08:03:24 +000023#include "llvm/CodeGen/SSARegMap.h"
Chris Lattner6c18b102005-12-17 07:47:01 +000024#include "llvm/Target/TargetLowering.h"
25#include "llvm/Support/Debug.h"
26#include <iostream>
27using namespace llvm;
28
29//===----------------------------------------------------------------------===//
30// TargetLowering Implementation
31//===----------------------------------------------------------------------===//
32
Chris Lattner4d55aca2005-12-18 01:20:35 +000033namespace V8ISD {
34 enum {
35 FIRST_NUMBER = ISD::BUILTIN_OP_END+V8::INSTRUCTION_LIST_END,
36 CMPICC, // Compare two GPR operands, set icc.
37 CMPFCC, // Compare two FP operands, set fcc.
38 BRICC, // Branch to dest on icc condition
39 BRFCC, // Branch to dest on fcc condition
Chris Lattnere3572462005-12-18 02:10:39 +000040
41 Hi, Lo, // Hi/Lo operations, typically on a global address.
Chris Lattner8fa54dc2005-12-18 06:59:57 +000042
43 FTOI, // FP to Int within a FP register.
44 ITOF, // Int to FP within a FP register.
Chris Lattner33084492005-12-18 08:13:54 +000045
46 SELECT_ICC, // Select between two values using the current ICC flags.
47 SELECT_FCC, // Select between two values using the current FCC flags.
Chris Lattnerdab05f02005-12-18 21:03:04 +000048
49 RET_FLAG, // Return with a flag operand.
Chris Lattner4d55aca2005-12-18 01:20:35 +000050 };
51}
52
Chris Lattner6c18b102005-12-17 07:47:01 +000053namespace {
54 class SparcV8TargetLowering : public TargetLowering {
Chris Lattner2db3ff62005-12-18 15:55:15 +000055 int VarArgsFrameOffset; // Frame offset to start of varargs area.
Chris Lattner6c18b102005-12-17 07:47:01 +000056 public:
57 SparcV8TargetLowering(TargetMachine &TM);
Chris Lattner4d55aca2005-12-18 01:20:35 +000058 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
Chris Lattner6c18b102005-12-17 07:47:01 +000059 virtual std::vector<SDOperand>
60 LowerArguments(Function &F, SelectionDAG &DAG);
61 virtual std::pair<SDOperand, SDOperand>
62 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
63 unsigned CC,
64 bool isTailCall, SDOperand Callee, ArgListTy &Args,
65 SelectionDAG &DAG);
66
67 virtual SDOperand LowerReturnTo(SDOperand Chain, SDOperand Op,
68 SelectionDAG &DAG);
69 virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
70 Value *VAListV, SelectionDAG &DAG);
71 virtual std::pair<SDOperand,SDOperand>
72 LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
73 const Type *ArgTy, SelectionDAG &DAG);
74 virtual std::pair<SDOperand, SDOperand>
75 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
76 SelectionDAG &DAG);
Chris Lattner33084492005-12-18 08:13:54 +000077 virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI,
78 MachineBasicBlock *MBB);
Chris Lattner6c18b102005-12-17 07:47:01 +000079 };
80}
81
82SparcV8TargetLowering::SparcV8TargetLowering(TargetMachine &TM)
83 : TargetLowering(TM) {
84
85 // Set up the register classes.
86 addRegisterClass(MVT::i32, V8::IntRegsRegisterClass);
87 addRegisterClass(MVT::f32, V8::FPRegsRegisterClass);
88 addRegisterClass(MVT::f64, V8::DFPRegsRegisterClass);
Chris Lattner9a60ff62005-12-17 20:50:42 +000089
Chris Lattnere3572462005-12-18 02:10:39 +000090 // Custom legalize GlobalAddress nodes into LO/HI parts.
91 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Chris Lattner76acc872005-12-18 02:37:35 +000092 setOperationAction(ISD::ConstantPool , MVT::i32, Custom);
Chris Lattnere3572462005-12-18 02:10:39 +000093
Chris Lattner9a60ff62005-12-17 20:50:42 +000094 // Sparc doesn't have sext_inreg, replace them with shl/sra
Chris Lattner33084492005-12-18 08:13:54 +000095 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
96 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
97 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
Chris Lattner7087e572005-12-17 22:39:19 +000098
99 // Sparc has no REM operation.
100 setOperationAction(ISD::UREM, MVT::i32, Expand);
101 setOperationAction(ISD::SREM, MVT::i32, Expand);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000102
103 // Custom expand fp<->sint
104 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
105 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
106
107 // Expand fp<->uint
108 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
109 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Chris Lattner6c18b102005-12-17 07:47:01 +0000110
Chris Lattner53e88452005-12-23 05:13:35 +0000111 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
112 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
113
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000114 // Turn FP extload into load/fextend
Chris Lattner065c8962005-12-18 07:13:32 +0000115 setOperationAction(ISD::EXTLOAD, MVT::f32, Expand);
116
Chris Lattner4d55aca2005-12-18 01:20:35 +0000117 // Sparc has no select or setcc: expand to SELECT_CC.
118 setOperationAction(ISD::SELECT, MVT::i32, Expand);
119 setOperationAction(ISD::SELECT, MVT::f32, Expand);
120 setOperationAction(ISD::SELECT, MVT::f64, Expand);
121 setOperationAction(ISD::SETCC, MVT::i32, Expand);
122 setOperationAction(ISD::SETCC, MVT::f32, Expand);
123 setOperationAction(ISD::SETCC, MVT::f64, Expand);
124
125 // Sparc doesn't have BRCOND either, it has BR_CC.
126 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
127 setOperationAction(ISD::BRCONDTWOWAY, MVT::Other, Expand);
128 setOperationAction(ISD::BRTWOWAY_CC, MVT::Other, Expand);
129 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
130 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
131 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
132
Chris Lattner33084492005-12-18 08:13:54 +0000133 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
134 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
135 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
136
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000137 // V8 has no intrinsics for these particular operations.
138 setOperationAction(ISD::MEMMOVE, MVT::Other, Expand);
139 setOperationAction(ISD::MEMSET, MVT::Other, Expand);
140 setOperationAction(ISD::MEMCPY, MVT::Other, Expand);
141
Chris Lattner61772c22005-12-19 01:39:40 +0000142 setOperationAction(ISD::FSIN , MVT::f64, Expand);
143 setOperationAction(ISD::FCOS , MVT::f64, Expand);
144 setOperationAction(ISD::FSIN , MVT::f32, Expand);
145 setOperationAction(ISD::FCOS , MVT::f32, Expand);
146 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
147 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
148 setOperationAction(ISD::CTLZ , MVT::i32, Expand);
149
150 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
151 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
152 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000153
154 // We don't have line number support yet.
155 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
156 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
157
Chris Lattner6c18b102005-12-17 07:47:01 +0000158 computeRegisterProperties();
159}
160
Chris Lattner384e5ef2005-12-18 13:33:06 +0000161/// LowerArguments - V8 uses a very simple ABI, where all values are passed in
162/// either one or two GPRs, including FP values. TODO: we should pass FP values
163/// in FP registers for fastcc functions.
Chris Lattner6c18b102005-12-17 07:47:01 +0000164std::vector<SDOperand>
165SparcV8TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
Chris Lattnera01b7572005-12-17 08:03:24 +0000166 MachineFunction &MF = DAG.getMachineFunction();
167 SSARegMap *RegMap = MF.getSSARegMap();
168 std::vector<SDOperand> ArgValues;
169
Chris Lattner384e5ef2005-12-18 13:33:06 +0000170 static const unsigned ArgRegs[] = {
Chris Lattnera01b7572005-12-17 08:03:24 +0000171 V8::I0, V8::I1, V8::I2, V8::I3, V8::I4, V8::I5
172 };
Chris Lattner384e5ef2005-12-18 13:33:06 +0000173
174 const unsigned *CurArgReg = ArgRegs, *ArgRegEnd = ArgRegs+6;
175 unsigned ArgOffset = 68;
176
177 SDOperand Root = DAG.getRoot();
178 std::vector<SDOperand> OutChains;
179
Chris Lattnera01b7572005-12-17 08:03:24 +0000180 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
181 MVT::ValueType ObjectVT = getValueType(I->getType());
Chris Lattnera01b7572005-12-17 08:03:24 +0000182
183 switch (ObjectVT) {
184 default: assert(0 && "Unhandled argument type!");
Chris Lattnera01b7572005-12-17 08:03:24 +0000185 case MVT::i1:
186 case MVT::i8:
187 case MVT::i16:
Chris Lattner384e5ef2005-12-18 13:33:06 +0000188 case MVT::i32:
189 if (I->use_empty()) { // Argument is dead.
190 if (CurArgReg < ArgRegEnd) ++CurArgReg;
191 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
192 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
193 unsigned VReg = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
194 MF.addLiveIn(*CurArgReg++, VReg);
195 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
196 if (ObjectVT != MVT::i32) {
197 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
198 : ISD::AssertZext;
199 Arg = DAG.getNode(AssertOp, MVT::i32, Arg,
200 DAG.getValueType(ObjectVT));
201 Arg = DAG.getNode(ISD::TRUNCATE, ObjectVT, Arg);
202 }
203 ArgValues.push_back(Arg);
204 } else {
205 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
206 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
207 SDOperand Load;
208 if (ObjectVT == MVT::i32) {
209 Load = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
210 } else {
211 unsigned LoadOp =
212 I->getType()->isSigned() ? ISD::SEXTLOAD : ISD::ZEXTLOAD;
213
214 Load = DAG.getExtLoad(LoadOp, MVT::i32, Root, FIPtr,
215 DAG.getSrcValue(0), ObjectVT);
216 }
217 ArgValues.push_back(Load);
Chris Lattnera01b7572005-12-17 08:03:24 +0000218 }
Chris Lattner384e5ef2005-12-18 13:33:06 +0000219
220 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000221 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000222 case MVT::f32:
223 if (I->use_empty()) { // Argument is dead.
224 if (CurArgReg < ArgRegEnd) ++CurArgReg;
225 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
226 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
227 // FP value is passed in an integer register.
228 unsigned VReg = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
229 MF.addLiveIn(*CurArgReg++, VReg);
230 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
231
Chris Lattnera01874f2005-12-23 02:31:39 +0000232 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Arg);
233 ArgValues.push_back(Arg);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000234 }
235 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000236 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000237
238 case MVT::i64:
239 case MVT::f64:
240 if (I->use_empty()) { // Argument is dead.
241 if (CurArgReg < ArgRegEnd) ++CurArgReg;
242 if (CurArgReg < ArgRegEnd) ++CurArgReg;
243 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
244 } else if (CurArgReg == ArgRegEnd && ObjectVT == MVT::f64 &&
245 ((CurArgReg-ArgRegs) & 1) == 0) {
246 // If this is a double argument and the whole thing lives on the stack,
247 // and the argument is aligned, load the double straight from the stack.
248 // We can't do a load in cases like void foo([6ints], int,double),
249 // because the double wouldn't be aligned!
250 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(8, ArgOffset);
251 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
252 ArgValues.push_back(DAG.getLoad(MVT::f64, Root, FIPtr,
253 DAG.getSrcValue(0)));
254 } else {
255 SDOperand HiVal;
256 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
257 unsigned VRegHi = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
258 MF.addLiveIn(*CurArgReg++, VRegHi);
259 HiVal = DAG.getCopyFromReg(Root, VRegHi, MVT::i32);
260 } else {
261 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
262 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
263 HiVal = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
264 }
265
266 SDOperand LoVal;
267 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
268 unsigned VRegLo = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
269 MF.addLiveIn(*CurArgReg++, VRegLo);
270 LoVal = DAG.getCopyFromReg(Root, VRegLo, MVT::i32);
271 } else {
272 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset+4);
273 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
274 LoVal = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
275 }
276
277 // Compose the two halves together into an i64 unit.
278 SDOperand WholeValue =
279 DAG.getNode(ISD::BUILD_PAIR, MVT::i64, LoVal, HiVal);
Chris Lattnera01874f2005-12-23 02:31:39 +0000280
281 // If we want a double, do a bit convert.
282 if (ObjectVT == MVT::f64)
283 WholeValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f64, WholeValue);
284
285 ArgValues.push_back(WholeValue);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000286 }
287 ArgOffset += 8;
288 break;
Chris Lattnera01b7572005-12-17 08:03:24 +0000289 }
290 }
291
Chris Lattner384e5ef2005-12-18 13:33:06 +0000292 // Store remaining ArgRegs to the stack if this is a varargs function.
293 if (F.getFunctionType()->isVarArg()) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000294 // Remember the vararg offset for the va_start implementation.
295 VarArgsFrameOffset = ArgOffset;
296
Chris Lattner384e5ef2005-12-18 13:33:06 +0000297 for (; CurArgReg != ArgRegEnd; ++CurArgReg) {
298 unsigned VReg = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
299 MF.addLiveIn(*CurArgReg, VReg);
300 SDOperand Arg = DAG.getCopyFromReg(DAG.getRoot(), VReg, MVT::i32);
301
302 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
303 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
304
305 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, DAG.getRoot(),
306 Arg, FIPtr, DAG.getSrcValue(0)));
307 ArgOffset += 4;
308 }
309 }
310
311 if (!OutChains.empty())
312 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
Chris Lattnera01b7572005-12-17 08:03:24 +0000313
314 // Finally, inform the code generator which regs we return values in.
315 switch (getValueType(F.getReturnType())) {
316 default: assert(0 && "Unknown type!");
317 case MVT::isVoid: break;
318 case MVT::i1:
319 case MVT::i8:
320 case MVT::i16:
321 case MVT::i32:
322 MF.addLiveOut(V8::I0);
323 break;
324 case MVT::i64:
325 MF.addLiveOut(V8::I0);
326 MF.addLiveOut(V8::I1);
327 break;
328 case MVT::f32:
329 MF.addLiveOut(V8::F0);
330 break;
331 case MVT::f64:
332 MF.addLiveOut(V8::D0);
333 break;
334 }
335
336 return ArgValues;
Chris Lattner6c18b102005-12-17 07:47:01 +0000337}
338
339std::pair<SDOperand, SDOperand>
340SparcV8TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
341 bool isVarArg, unsigned CC,
342 bool isTailCall, SDOperand Callee,
343 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000344 MachineFunction &MF = DAG.getMachineFunction();
345 // Count the size of the outgoing arguments.
346 unsigned ArgsSize = 0;
347 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
348 switch (getValueType(Args[i].second)) {
349 default: assert(0 && "Unknown value type!");
350 case MVT::i1:
351 case MVT::i8:
352 case MVT::i16:
353 case MVT::i32:
354 case MVT::f32:
355 ArgsSize += 4;
356 break;
357 case MVT::i64:
358 case MVT::f64:
359 ArgsSize += 8;
360 break;
361 }
362 }
363 if (ArgsSize > 4*6)
364 ArgsSize -= 4*6; // Space for first 6 arguments is prereserved.
365 else
366 ArgsSize = 0;
367
Chris Lattner6554bef2005-12-19 01:15:13 +0000368 // Keep stack frames 8-byte aligned.
369 ArgsSize = (ArgsSize+7) & ~7;
370
Chris Lattner2db3ff62005-12-18 15:55:15 +0000371 Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
372 DAG.getConstant(ArgsSize, getPointerTy()));
373
374 SDOperand StackPtr, NullSV;
375 std::vector<SDOperand> Stores;
376 std::vector<SDOperand> RegValuesToPass;
377 unsigned ArgOffset = 68;
378 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
379 SDOperand Val = Args[i].first;
380 MVT::ValueType ObjectVT = Val.getValueType();
381 SDOperand ValToStore;
382 unsigned ObjSize;
383 switch (ObjectVT) {
384 default: assert(0 && "Unhandled argument type!");
385 case MVT::i1:
386 case MVT::i8:
387 case MVT::i16:
388 // Promote the integer to 32-bits. If the input type is signed, use a
389 // sign extend, otherwise use a zero extend.
390 if (Args[i].second->isSigned())
391 Val = DAG.getNode(ISD::SIGN_EXTEND, MVT::i32, Val);
392 else
393 Val = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Val);
394 // FALL THROUGH
395 case MVT::i32:
396 ObjSize = 4;
397
398 if (RegValuesToPass.size() >= 6) {
399 ValToStore = Val;
400 } else {
401 RegValuesToPass.push_back(Val);
402 }
403 break;
404 case MVT::f32:
405 ObjSize = 4;
406 if (RegValuesToPass.size() >= 6) {
407 ValToStore = Val;
408 } else {
409 // Convert this to a FP value in an int reg.
Chris Lattnera01874f2005-12-23 02:31:39 +0000410 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000411 RegValuesToPass.push_back(Val);
412 }
413 break;
Chris Lattnera01874f2005-12-23 02:31:39 +0000414 case MVT::f64:
Chris Lattner2db3ff62005-12-18 15:55:15 +0000415 ObjSize = 8;
416 // If we can store this directly into the outgoing slot, do so. We can
417 // do this when all ArgRegs are used and if the outgoing slot is aligned.
418 if (RegValuesToPass.size() >= 6 && ((ArgOffset-68) & 7) == 0) {
419 ValToStore = Val;
420 break;
421 }
422
423 // Otherwise, convert this to a FP value in int regs.
Chris Lattnera01874f2005-12-23 02:31:39 +0000424 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000425 // FALL THROUGH
426 case MVT::i64:
427 ObjSize = 8;
428 if (RegValuesToPass.size() >= 6) {
429 ValToStore = Val; // Whole thing is passed in memory.
430 break;
431 }
432
433 // Split the value into top and bottom part. Top part goes in a reg.
434 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Val,
435 DAG.getConstant(1, MVT::i32));
436 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Val,
437 DAG.getConstant(0, MVT::i32));
438 RegValuesToPass.push_back(Hi);
439
440 if (RegValuesToPass.size() >= 6) {
441 ValToStore = Lo;
Chris Lattner7c423b42005-12-19 07:57:53 +0000442 ArgOffset += 4;
443 ObjSize = 4;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000444 } else {
445 RegValuesToPass.push_back(Lo);
446 }
447 break;
448 }
449
450 if (ValToStore.Val) {
451 if (!StackPtr.Val) {
Chris Lattner7c423b42005-12-19 07:57:53 +0000452 StackPtr = DAG.getRegister(V8::O6, MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000453 NullSV = DAG.getSrcValue(NULL);
454 }
455 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
456 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
457 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
458 ValToStore, PtrOff, NullSV));
459 }
460 ArgOffset += ObjSize;
461 }
462
463 // Emit all stores, make sure the occur before any copies into physregs.
464 if (!Stores.empty())
465 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
466
467 static const unsigned ArgRegs[] = {
468 V8::O0, V8::O1, V8::O2, V8::O3, V8::O4, V8::O5
469 };
470
471 // Build a sequence of copy-to-reg nodes chained together with token chain
472 // and flag operands which copy the outgoing args into O[0-5].
473 SDOperand InFlag;
474 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
475 Chain = DAG.getCopyToReg(Chain, ArgRegs[i], RegValuesToPass[i], InFlag);
476 InFlag = Chain.getValue(1);
477 }
478
479 std::vector<MVT::ValueType> RetVals;
480 RetVals.push_back(MVT::Other);
481 RetVals.push_back(MVT::Flag);
482
483 // If the callee is a GlobalAddress node (quite common, every direct call is)
484 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
485 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
486 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i32);
487
488 std::vector<MVT::ValueType> NodeTys;
489 NodeTys.push_back(MVT::Other); // Returns a chain
490 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Chris Lattnerb4d899e2005-12-18 22:57:47 +0000491 if (InFlag.Val)
492 Chain = SDOperand(DAG.getCall(NodeTys, Chain, Callee, InFlag), 0);
493 else
494 Chain = SDOperand(DAG.getCall(NodeTys, Chain, Callee), 0);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000495 InFlag = Chain.getValue(1);
496
497 MVT::ValueType RetTyVT = getValueType(RetTy);
498 SDOperand RetVal;
499 if (RetTyVT != MVT::isVoid) {
500 switch (RetTyVT) {
501 default: assert(0 && "Unknown value type to return!");
502 case MVT::i1:
503 case MVT::i8:
504 case MVT::i16:
505 RetVal = DAG.getCopyFromReg(Chain, V8::O0, MVT::i32, InFlag);
506 Chain = RetVal.getValue(1);
507
508 // Add a note to keep track of whether it is sign or zero extended.
509 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
510 MVT::i32, RetVal, DAG.getValueType(RetTyVT));
511 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
512 break;
513 case MVT::i32:
514 RetVal = DAG.getCopyFromReg(Chain, V8::O0, MVT::i32, InFlag);
515 Chain = RetVal.getValue(1);
516 break;
517 case MVT::f32:
518 RetVal = DAG.getCopyFromReg(Chain, V8::F0, MVT::f32, InFlag);
519 Chain = RetVal.getValue(1);
520 break;
521 case MVT::f64:
522 RetVal = DAG.getCopyFromReg(Chain, V8::D0, MVT::f64, InFlag);
523 Chain = RetVal.getValue(1);
524 break;
525 case MVT::i64:
Chris Lattnereb096662005-12-19 02:15:51 +0000526 SDOperand Lo = DAG.getCopyFromReg(Chain, V8::O1, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000527 SDOperand Hi = DAG.getCopyFromReg(Lo.getValue(1), V8::O0, MVT::i32,
528 Lo.getValue(2));
529 RetVal = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
530 Chain = Hi.getValue(1);
531 break;
532 }
533 }
534
535 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
536 DAG.getConstant(ArgsSize, getPointerTy()));
537
Chris Lattner2db3ff62005-12-18 15:55:15 +0000538 return std::make_pair(RetVal, Chain);
Chris Lattner6c18b102005-12-17 07:47:01 +0000539}
540
541SDOperand SparcV8TargetLowering::LowerReturnTo(SDOperand Chain, SDOperand Op,
542 SelectionDAG &DAG) {
Chris Lattnerdab05f02005-12-18 21:03:04 +0000543 SDOperand Copy;
544 switch (Op.getValueType()) {
545 default: assert(0 && "Unknown type to return!");
546 case MVT::i32:
547 Copy = DAG.getCopyToReg(Chain, V8::I0, Op, SDOperand());
548 break;
549 case MVT::f32:
550 Copy = DAG.getCopyToReg(Chain, V8::F0, Op, SDOperand());
551 break;
552 case MVT::f64:
553 Copy = DAG.getCopyToReg(Chain, V8::D0, Op, SDOperand());
554 break;
555 case MVT::i64:
Chris Lattner4b486312005-12-17 08:15:09 +0000556 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op,
557 DAG.getConstant(1, MVT::i32));
558 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op,
559 DAG.getConstant(0, MVT::i32));
Chris Lattnerdab05f02005-12-18 21:03:04 +0000560 Copy = DAG.getCopyToReg(Chain, V8::I0, Hi, SDOperand());
561 Copy = DAG.getCopyToReg(Copy, V8::I1, Lo, Copy.getValue(1));
562 break;
Chris Lattner4b486312005-12-17 08:15:09 +0000563 }
Chris Lattnerdab05f02005-12-18 21:03:04 +0000564 return DAG.getNode(V8ISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
Chris Lattner6c18b102005-12-17 07:47:01 +0000565}
566
Chris Lattner4d55aca2005-12-18 01:20:35 +0000567SDOperand SparcV8TargetLowering::
568LowerVAStart(SDOperand Chain, SDOperand VAListP, Value *VAListV,
569 SelectionDAG &DAG) {
570
Chris Lattnerc4769bb2005-12-23 06:24:04 +0000571 SDOperand Offset = DAG.getNode(ISD::ADD, MVT::i32,
572 DAG.getRegister(V8::I6, MVT::i32),
573 DAG.getConstant(VarArgsFrameOffset, MVT::i32));
574 return DAG.getNode(ISD::STORE, MVT::Other, Chain, Offset,
575 VAListP, DAG.getSrcValue(VAListV));
Chris Lattner6c18b102005-12-17 07:47:01 +0000576}
577
Chris Lattner4d55aca2005-12-18 01:20:35 +0000578std::pair<SDOperand,SDOperand> SparcV8TargetLowering::
579LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
580 const Type *ArgTy, SelectionDAG &DAG) {
Chris Lattner74fa64b2005-12-23 06:37:38 +0000581 // Load the pointer out of the valist.
582 SDOperand Ptr = DAG.getLoad(MVT::i32, Chain,
583 VAListP, DAG.getSrcValue(VAListV));
584 MVT::ValueType ArgVT = getValueType(ArgTy);
585 SDOperand Val = DAG.getLoad(ArgVT, Ptr.getValue(1),
586 Ptr, DAG.getSrcValue(NULL));
587 // Increment the pointer.
588 Ptr = DAG.getNode(ISD::ADD, MVT::i32, Ptr,
589 DAG.getConstant(MVT::getSizeInBits(ArgVT)/8, MVT::i32));
590 // Store it back to the valist.
591 Chain = DAG.getNode(ISD::STORE, MVT::Other, Chain, Ptr,
592 VAListP, DAG.getSrcValue(VAListV));
593 return std::make_pair(Val, Chain);
Chris Lattner6c18b102005-12-17 07:47:01 +0000594}
595
Chris Lattner4d55aca2005-12-18 01:20:35 +0000596std::pair<SDOperand, SDOperand> SparcV8TargetLowering::
597LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
598 SelectionDAG &DAG) {
Chris Lattner6c18b102005-12-17 07:47:01 +0000599 assert(0 && "Unimp");
600 abort();
601}
602
Chris Lattner4d55aca2005-12-18 01:20:35 +0000603SDOperand SparcV8TargetLowering::
604LowerOperation(SDOperand Op, SelectionDAG &DAG) {
605 switch (Op.getOpcode()) {
606 default: assert(0 && "Should not custom lower this!");
Chris Lattnere3572462005-12-18 02:10:39 +0000607 case ISD::GlobalAddress: {
608 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
609 SDOperand GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
610 SDOperand Hi = DAG.getNode(V8ISD::Hi, MVT::i32, GA);
611 SDOperand Lo = DAG.getNode(V8ISD::Lo, MVT::i32, GA);
612 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
613 }
Chris Lattner76acc872005-12-18 02:37:35 +0000614 case ISD::ConstantPool: {
615 Constant *C = cast<ConstantPoolSDNode>(Op)->get();
616 SDOperand CP = DAG.getTargetConstantPool(C, MVT::i32);
617 SDOperand Hi = DAG.getNode(V8ISD::Hi, MVT::i32, CP);
618 SDOperand Lo = DAG.getNode(V8ISD::Lo, MVT::i32, CP);
619 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
620 }
Chris Lattner3cb71872005-12-23 05:00:16 +0000621 case ISD::FP_TO_SINT:
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000622 // Convert the fp value to integer in an FP register.
Chris Lattner3cb71872005-12-23 05:00:16 +0000623 assert(Op.getValueType() == MVT::i32);
624 Op = DAG.getNode(V8ISD::FTOI, MVT::f32, Op.getOperand(0));
625 return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000626 case ISD::SINT_TO_FP: {
Chris Lattner3cb71872005-12-23 05:00:16 +0000627 assert(Op.getOperand(0).getValueType() == MVT::i32);
Chris Lattner330ea122005-12-23 07:08:39 +0000628 Op = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000629 // Convert the int value to FP in an FP register.
630 return DAG.getNode(V8ISD::ITOF, Op.getValueType(), Op);
631 }
Chris Lattner33084492005-12-18 08:13:54 +0000632 case ISD::BR_CC: {
633 SDOperand Chain = Op.getOperand(0);
634 SDOperand CC = Op.getOperand(1);
635 SDOperand LHS = Op.getOperand(2);
636 SDOperand RHS = Op.getOperand(3);
637 SDOperand Dest = Op.getOperand(4);
638
639 // Get the condition flag.
640 if (LHS.getValueType() == MVT::i32) {
641 SDOperand Cond = DAG.getNode(V8ISD::CMPICC, MVT::Flag, LHS, RHS);
642 return DAG.getNode(V8ISD::BRICC, MVT::Other, Chain, Dest, CC, Cond);
643 } else {
644 SDOperand Cond = DAG.getNode(V8ISD::CMPFCC, MVT::Flag, LHS, RHS);
645 return DAG.getNode(V8ISD::BRFCC, MVT::Other, Chain, Dest, CC, Cond);
646 }
647 }
648 case ISD::SELECT_CC: {
649 SDOperand LHS = Op.getOperand(0);
650 SDOperand RHS = Op.getOperand(1);
651 unsigned CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
652 SDOperand TrueVal = Op.getOperand(2);
653 SDOperand FalseVal = Op.getOperand(3);
654
655 unsigned Opc;
656 Opc = LHS.getValueType() == MVT::i32 ? V8ISD::CMPICC : V8ISD::CMPFCC;
657 SDOperand CompareFlag = DAG.getNode(Opc, MVT::Flag, LHS, RHS);
658
659 Opc = LHS.getValueType() == MVT::i32 ?
660 V8ISD::SELECT_ICC : V8ISD::SELECT_FCC;
661 return DAG.getNode(Opc, TrueVal.getValueType(), TrueVal, FalseVal,
662 DAG.getConstant(CC, MVT::i32), CompareFlag);
663 }
Chris Lattner4d55aca2005-12-18 01:20:35 +0000664 }
665}
666
Chris Lattner33084492005-12-18 08:13:54 +0000667MachineBasicBlock *
668SparcV8TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
669 MachineBasicBlock *BB) {
670 unsigned BROpcode;
671 // Figure out the conditional branch opcode to use for this select_cc.
672 switch (MI->getOpcode()) {
673 default: assert(0 && "Unknown SELECT_CC!");
674 case V8::SELECT_CC_Int_ICC:
675 case V8::SELECT_CC_FP_ICC:
676 case V8::SELECT_CC_DFP_ICC:
677 // Integer compare.
678 switch ((ISD::CondCode)MI->getOperand(3).getImmedValue()) {
679 default: assert(0 && "Unknown integer condition code!");
680 case ISD::SETEQ: BROpcode = V8::BE; break;
681 case ISD::SETNE: BROpcode = V8::BNE; break;
682 case ISD::SETLT: BROpcode = V8::BL; break;
683 case ISD::SETGT: BROpcode = V8::BG; break;
684 case ISD::SETLE: BROpcode = V8::BLE; break;
685 case ISD::SETGE: BROpcode = V8::BGE; break;
686 case ISD::SETULT: BROpcode = V8::BCS; break;
687 case ISD::SETULE: BROpcode = V8::BLEU; break;
688 case ISD::SETUGT: BROpcode = V8::BGU; break;
689 case ISD::SETUGE: BROpcode = V8::BCC; break;
690 }
691 break;
692 case V8::SELECT_CC_Int_FCC:
693 case V8::SELECT_CC_FP_FCC:
694 case V8::SELECT_CC_DFP_FCC:
695 // FP compare.
696 switch ((ISD::CondCode)MI->getOperand(3).getImmedValue()) {
697 default: assert(0 && "Unknown fp condition code!");
698 case ISD::SETEQ: BROpcode = V8::FBE; break;
699 case ISD::SETNE: BROpcode = V8::FBNE; break;
700 case ISD::SETLT: BROpcode = V8::FBL; break;
701 case ISD::SETGT: BROpcode = V8::FBG; break;
702 case ISD::SETLE: BROpcode = V8::FBLE; break;
703 case ISD::SETGE: BROpcode = V8::FBGE; break;
704 case ISD::SETULT: BROpcode = V8::FBUL; break;
705 case ISD::SETULE: BROpcode = V8::FBULE; break;
706 case ISD::SETUGT: BROpcode = V8::FBUG; break;
707 case ISD::SETUGE: BROpcode = V8::FBUGE; break;
708 case ISD::SETUO: BROpcode = V8::FBU; break;
709 case ISD::SETO: BROpcode = V8::FBO; break;
710 case ISD::SETONE: BROpcode = V8::FBLG; break;
711 case ISD::SETUEQ: BROpcode = V8::FBUE; break;
712 }
713 break;
714 }
715
716 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
717 // control-flow pattern. The incoming instruction knows the destination vreg
718 // to set, the condition code register to branch on, the true/false values to
719 // select between, and a branch opcode to use.
720 const BasicBlock *LLVM_BB = BB->getBasicBlock();
721 ilist<MachineBasicBlock>::iterator It = BB;
722 ++It;
723
724 // thisMBB:
725 // ...
726 // TrueVal = ...
727 // [f]bCC copy1MBB
728 // fallthrough --> copy0MBB
729 MachineBasicBlock *thisMBB = BB;
730 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
731 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
732 BuildMI(BB, BROpcode, 1).addMBB(sinkMBB);
733 MachineFunction *F = BB->getParent();
734 F->getBasicBlockList().insert(It, copy0MBB);
735 F->getBasicBlockList().insert(It, sinkMBB);
736 // Update machine-CFG edges
737 BB->addSuccessor(copy0MBB);
738 BB->addSuccessor(sinkMBB);
739
740 // copy0MBB:
741 // %FalseValue = ...
742 // # fallthrough to sinkMBB
743 BB = copy0MBB;
744
745 // Update machine-CFG edges
746 BB->addSuccessor(sinkMBB);
747
748 // sinkMBB:
749 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
750 // ...
751 BB = sinkMBB;
752 BuildMI(BB, V8::PHI, 4, MI->getOperand(0).getReg())
753 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
754 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
755
756 delete MI; // The pseudo instruction is gone now.
757 return BB;
758}
759
Chris Lattner6c18b102005-12-17 07:47:01 +0000760//===----------------------------------------------------------------------===//
761// Instruction Selector Implementation
762//===----------------------------------------------------------------------===//
763
764//===--------------------------------------------------------------------===//
765/// SparcV8DAGToDAGISel - PPC specific code to select Sparc V8 machine
766/// instructions for SelectionDAG operations.
767///
768namespace {
769class SparcV8DAGToDAGISel : public SelectionDAGISel {
770 SparcV8TargetLowering V8Lowering;
771public:
772 SparcV8DAGToDAGISel(TargetMachine &TM)
773 : SelectionDAGISel(V8Lowering), V8Lowering(TM) {}
774
775 SDOperand Select(SDOperand Op);
776
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000777 // Complex Pattern Selectors.
778 bool SelectADDRrr(SDOperand N, SDOperand &R1, SDOperand &R2);
779 bool SelectADDRri(SDOperand N, SDOperand &Base, SDOperand &Offset);
780
Chris Lattner6c18b102005-12-17 07:47:01 +0000781 /// InstructionSelectBasicBlock - This callback is invoked by
782 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
783 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
784
785 virtual const char *getPassName() const {
786 return "PowerPC DAG->DAG Pattern Instruction Selection";
787 }
788
789 // Include the pieces autogenerated from the target description.
790#include "SparcV8GenDAGISel.inc"
791};
792} // end anonymous namespace
793
794/// InstructionSelectBasicBlock - This callback is invoked by
795/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
796void SparcV8DAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
797 DEBUG(BB->dump());
798
799 // Select target instructions for the DAG.
800 DAG.setRoot(Select(DAG.getRoot()));
801 CodeGenMap.clear();
802 DAG.RemoveDeadNodes();
803
804 // Emit machine code to BB.
805 ScheduleAndEmitDAG(DAG);
806}
807
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000808bool SparcV8DAGToDAGISel::SelectADDRri(SDOperand Addr, SDOperand &Base,
809 SDOperand &Offset) {
Chris Lattnerd5aae052005-12-18 07:09:06 +0000810 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
811 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000812 Offset = CurDAG->getTargetConstant(0, MVT::i32);
813 return true;
814 }
815
816 if (Addr.getOpcode() == ISD::ADD) {
817 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
818 if (Predicate_simm13(CN)) {
Chris Lattnerd5aae052005-12-18 07:09:06 +0000819 if (FrameIndexSDNode *FIN =
820 dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) {
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000821 // Constant offset from frame ref.
Chris Lattnerd5aae052005-12-18 07:09:06 +0000822 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000823 } else {
824 Base = Select(Addr.getOperand(0));
825 }
826 Offset = CurDAG->getTargetConstant(CN->getValue(), MVT::i32);
827 return true;
828 }
829 }
830 if (Addr.getOperand(0).getOpcode() == V8ISD::Lo) {
831 Base = Select(Addr.getOperand(1));
832 Offset = Addr.getOperand(0).getOperand(0);
833 return true;
834 }
835 if (Addr.getOperand(1).getOpcode() == V8ISD::Lo) {
836 Base = Select(Addr.getOperand(0));
837 Offset = Addr.getOperand(1).getOperand(0);
838 return true;
839 }
840 }
841 Base = Select(Addr);
842 Offset = CurDAG->getTargetConstant(0, MVT::i32);
843 return true;
844}
845
Chris Lattner9034b882005-12-17 21:25:27 +0000846bool SparcV8DAGToDAGISel::SelectADDRrr(SDOperand Addr, SDOperand &R1,
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000847 SDOperand &R2) {
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000848 if (Addr.getOpcode() == ISD::FrameIndex) return false;
Chris Lattner9034b882005-12-17 21:25:27 +0000849 if (Addr.getOpcode() == ISD::ADD) {
850 if (isa<ConstantSDNode>(Addr.getOperand(1)) &&
851 Predicate_simm13(Addr.getOperand(1).Val))
852 return false; // Let the reg+imm pattern catch this!
Chris Lattnere1389ad2005-12-18 02:27:00 +0000853 if (Addr.getOperand(0).getOpcode() == V8ISD::Lo ||
854 Addr.getOperand(1).getOpcode() == V8ISD::Lo)
855 return false; // Let the reg+imm pattern catch this!
Chris Lattnere3572462005-12-18 02:10:39 +0000856 R1 = Select(Addr.getOperand(0));
857 R2 = Select(Addr.getOperand(1));
Chris Lattner9034b882005-12-17 21:25:27 +0000858 return true;
859 }
860
861 R1 = Select(Addr);
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000862 R2 = CurDAG->getRegister(V8::G0, MVT::i32);
863 return true;
864}
865
Chris Lattner6c18b102005-12-17 07:47:01 +0000866SDOperand SparcV8DAGToDAGISel::Select(SDOperand Op) {
867 SDNode *N = Op.Val;
Chris Lattner4d55aca2005-12-18 01:20:35 +0000868 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
869 N->getOpcode() < V8ISD::FIRST_NUMBER)
Chris Lattner6c18b102005-12-17 07:47:01 +0000870 return Op; // Already selected.
871 // If this has already been converted, use it.
872 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
873 if (CGMI != CodeGenMap.end()) return CGMI->second;
874
875 switch (N->getOpcode()) {
876 default: break;
Chris Lattner7c423b42005-12-19 07:57:53 +0000877 case ISD::Register: return Op;
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000878 case ISD::FrameIndex: {
879 int FI = cast<FrameIndexSDNode>(N)->getIndex();
880 if (N->hasOneUse())
881 return CurDAG->SelectNodeTo(N, V8::ADDri, MVT::i32,
882 CurDAG->getTargetFrameIndex(FI, MVT::i32),
883 CurDAG->getTargetConstant(0, MVT::i32));
884 return CodeGenMap[Op] =
885 CurDAG->getTargetNode(V8::ADDri, MVT::i32,
886 CurDAG->getTargetFrameIndex(FI, MVT::i32),
887 CurDAG->getTargetConstant(0, MVT::i32));
888 }
Chris Lattner4d55aca2005-12-18 01:20:35 +0000889 case V8ISD::CMPICC: {
890 // FIXME: Handle compare with immediate.
891 SDOperand LHS = Select(N->getOperand(0));
892 SDOperand RHS = Select(N->getOperand(1));
893 SDOperand Result = CurDAG->getTargetNode(V8::SUBCCrr, MVT::i32, MVT::Flag,
894 LHS, RHS);
895 return CodeGenMap[Op] = Result.getValue(1);
896 }
Chris Lattnerd19fc652005-12-17 22:55:57 +0000897 case ISD::ADD_PARTS: {
898 SDOperand LHSL = Select(N->getOperand(0));
899 SDOperand LHSH = Select(N->getOperand(1));
900 SDOperand RHSL = Select(N->getOperand(2));
901 SDOperand RHSH = Select(N->getOperand(3));
902 // FIXME, handle immediate RHS.
903 SDOperand Low = CurDAG->getTargetNode(V8::ADDCCrr, MVT::i32, MVT::Flag,
904 LHSL, RHSL);
905 SDOperand Hi = CurDAG->getTargetNode(V8::ADDXrr, MVT::i32, LHSH, RHSH,
906 Low.getValue(1));
907 CodeGenMap[SDOperand(N, 0)] = Low;
908 CodeGenMap[SDOperand(N, 1)] = Hi;
909 return Op.ResNo ? Hi : Low;
910 }
911 case ISD::SUB_PARTS: {
912 SDOperand LHSL = Select(N->getOperand(0));
913 SDOperand LHSH = Select(N->getOperand(1));
914 SDOperand RHSL = Select(N->getOperand(2));
915 SDOperand RHSH = Select(N->getOperand(3));
916 // FIXME, handle immediate RHS.
917 SDOperand Low = CurDAG->getTargetNode(V8::SUBCCrr, MVT::i32, MVT::Flag,
918 LHSL, RHSL);
919 SDOperand Hi = CurDAG->getTargetNode(V8::SUBXrr, MVT::i32, LHSH, RHSH,
920 Low.getValue(1));
921 CodeGenMap[SDOperand(N, 0)] = Low;
922 CodeGenMap[SDOperand(N, 1)] = Hi;
923 return Op.ResNo ? Hi : Low;
924 }
Chris Lattner7087e572005-12-17 22:39:19 +0000925 case ISD::SDIV:
926 case ISD::UDIV: {
927 // FIXME: should use a custom expander to expose the SRA to the dag.
928 SDOperand DivLHS = Select(N->getOperand(0));
929 SDOperand DivRHS = Select(N->getOperand(1));
930
931 // Set the Y register to the high-part.
932 SDOperand TopPart;
933 if (N->getOpcode() == ISD::SDIV) {
934 TopPart = CurDAG->getTargetNode(V8::SRAri, MVT::i32, DivLHS,
935 CurDAG->getTargetConstant(31, MVT::i32));
936 } else {
937 TopPart = CurDAG->getRegister(V8::G0, MVT::i32);
938 }
939 TopPart = CurDAG->getTargetNode(V8::WRYrr, MVT::Flag, TopPart,
940 CurDAG->getRegister(V8::G0, MVT::i32));
941
942 // FIXME: Handle div by immediate.
943 unsigned Opcode = N->getOpcode() == ISD::SDIV ? V8::SDIVrr : V8::UDIVrr;
944 return CurDAG->SelectNodeTo(N, Opcode, MVT::i32, DivLHS, DivRHS, TopPart);
945 }
Chris Lattneree3d5fb2005-12-17 22:30:00 +0000946 case ISD::MULHU:
947 case ISD::MULHS: {
Chris Lattner7087e572005-12-17 22:39:19 +0000948 // FIXME: Handle mul by immediate.
Chris Lattneree3d5fb2005-12-17 22:30:00 +0000949 SDOperand MulLHS = Select(N->getOperand(0));
950 SDOperand MulRHS = Select(N->getOperand(1));
951 unsigned Opcode = N->getOpcode() == ISD::MULHU ? V8::UMULrr : V8::SMULrr;
952 SDOperand Mul = CurDAG->getTargetNode(Opcode, MVT::i32, MVT::Flag,
953 MulLHS, MulRHS);
954 // The high part is in the Y register.
955 return CurDAG->SelectNodeTo(N, V8::RDY, MVT::i32, Mul.getValue(1));
956 }
Chris Lattner2db3ff62005-12-18 15:55:15 +0000957 case ISD::CALL:
958 // FIXME: This is a workaround for a bug in tblgen.
959 { // Pattern #47: (call:Flag (tglobaladdr:i32):$dst, ICC:Flag)
960 // Emits: (CALL:void (tglobaladdr:i32):$dst)
961 // Pattern complexity = 2 cost = 1
962 SDOperand N1 = N->getOperand(1);
Chris Lattner311f8c22005-12-18 23:07:11 +0000963 if (N1.getOpcode() != ISD::TargetGlobalAddress &&
964 N1.getOpcode() != ISD::ExternalSymbol) goto P47Fail;
Chris Lattnerb4d899e2005-12-18 22:57:47 +0000965 SDOperand InFlag = SDOperand(0, 0);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000966 SDOperand Chain = N->getOperand(0);
967 SDOperand Tmp0 = N1;
968 Chain = Select(Chain);
Chris Lattnerb4d899e2005-12-18 22:57:47 +0000969 SDOperand Result;
970 if (N->getNumOperands() == 3) {
971 InFlag = Select(N->getOperand(2));
972 Result = CurDAG->getTargetNode(V8::CALL, MVT::Other, MVT::Flag, Tmp0,
973 Chain, InFlag);
974 } else {
975 Result = CurDAG->getTargetNode(V8::CALL, MVT::Other, MVT::Flag, Tmp0,
976 Chain);
977 }
Chris Lattner2db3ff62005-12-18 15:55:15 +0000978 Chain = CodeGenMap[SDOperand(N, 0)] = Result.getValue(0);
979 CodeGenMap[SDOperand(N, 1)] = Result.getValue(1);
980 return Result.getValue(Op.ResNo);
981 }
982 P47Fail:;
983
Chris Lattner6c18b102005-12-17 07:47:01 +0000984 }
985
986 return SelectCode(Op);
987}
988
989
990/// createPPCISelDag - This pass converts a legalized DAG into a
991/// PowerPC-specific DAG, ready for instruction scheduling.
992///
993FunctionPass *llvm::createSparcV8ISelDag(TargetMachine &TM) {
994 return new SparcV8DAGToDAGISel(TM);
995}