blob: c2741059b03a01ced677a102ed51f37b9e37fb6b [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,
Chris Lattner9072c052006-01-30 06:14:02 +000036 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
40 SELECT_ICC, // Select between two values using the current ICC flags.
41 SELECT_FCC, // Select between two values using the current FCC flags.
Chris Lattnere3572462005-12-18 02:10:39 +000042
Chris Lattner9072c052006-01-30 06:14:02 +000043 Hi, Lo, // Hi/Lo operations, typically on a global address.
Chris Lattner8fa54dc2005-12-18 06:59:57 +000044
Chris Lattner9072c052006-01-30 06:14:02 +000045 FTOI, // FP to Int within a FP register.
46 ITOF, // Int to FP within a FP register.
47
48 CALL, // A V8 call instruction.
49 RET_FLAG, // Return with a flag operand.
Chris Lattner4d55aca2005-12-18 01:20:35 +000050 };
51}
52
Chris Lattner3772bcb2006-01-30 07:43:04 +000053/// IntCondCCodeToICC - Convert a DAG integer condition code to a SPARC ICC
54/// condition.
55static V8CC::CondCodes IntCondCCodeToICC(ISD::CondCode CC) {
56 switch (CC) {
57 default: assert(0 && "Unknown integer condition code!");
58 case ISD::SETEQ: return V8CC::ICC_E;
59 case ISD::SETNE: return V8CC::ICC_NE;
60 case ISD::SETLT: return V8CC::ICC_L;
61 case ISD::SETGT: return V8CC::ICC_G;
62 case ISD::SETLE: return V8CC::ICC_LE;
63 case ISD::SETGE: return V8CC::ICC_GE;
64 case ISD::SETULT: return V8CC::ICC_CS;
65 case ISD::SETULE: return V8CC::ICC_LEU;
66 case ISD::SETUGT: return V8CC::ICC_GU;
67 case ISD::SETUGE: return V8CC::ICC_CC;
68 }
69}
70
71/// FPCondCCodeToFCC - Convert a DAG floatingp oint condition code to a SPARC
72/// FCC condition.
73static V8CC::CondCodes FPCondCCodeToFCC(ISD::CondCode CC) {
74 switch (CC) {
75 default: assert(0 && "Unknown fp condition code!");
76 case ISD::SETEQ: return V8CC::FCC_E;
77 case ISD::SETNE: return V8CC::FCC_NE;
78 case ISD::SETLT: return V8CC::FCC_L;
79 case ISD::SETGT: return V8CC::FCC_G;
80 case ISD::SETLE: return V8CC::FCC_LE;
81 case ISD::SETGE: return V8CC::FCC_GE;
82 case ISD::SETULT: return V8CC::FCC_UL;
83 case ISD::SETULE: return V8CC::FCC_ULE;
84 case ISD::SETUGT: return V8CC::FCC_UG;
85 case ISD::SETUGE: return V8CC::FCC_UGE;
86 case ISD::SETUO: return V8CC::FCC_U;
87 case ISD::SETO: return V8CC::FCC_O;
88 case ISD::SETONE: return V8CC::FCC_LG;
89 case ISD::SETUEQ: return V8CC::FCC_UE;
90 }
91}
Chris Lattner3772bcb2006-01-30 07:43:04 +000092
Chris Lattner6c18b102005-12-17 07:47:01 +000093namespace {
94 class SparcV8TargetLowering : public TargetLowering {
Chris Lattner2db3ff62005-12-18 15:55:15 +000095 int VarArgsFrameOffset; // Frame offset to start of varargs area.
Chris Lattner6c18b102005-12-17 07:47:01 +000096 public:
97 SparcV8TargetLowering(TargetMachine &TM);
Chris Lattner4d55aca2005-12-18 01:20:35 +000098 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
Chris Lattner4a397e02006-01-30 03:51:45 +000099
100 /// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
101 /// be zero. Op is expected to be a target specific node. Used by DAG
102 /// combiner.
103 virtual bool isMaskedValueZeroForTargetNode(const SDOperand &Op,
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000104 uint64_t Mask) const;
Chris Lattner4a397e02006-01-30 03:51:45 +0000105
Chris Lattner6c18b102005-12-17 07:47:01 +0000106 virtual std::vector<SDOperand>
107 LowerArguments(Function &F, SelectionDAG &DAG);
108 virtual std::pair<SDOperand, SDOperand>
109 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
110 unsigned CC,
111 bool isTailCall, SDOperand Callee, ArgListTy &Args,
112 SelectionDAG &DAG);
Chris Lattner6c18b102005-12-17 07:47:01 +0000113 virtual std::pair<SDOperand, SDOperand>
114 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
115 SelectionDAG &DAG);
Chris Lattner33084492005-12-18 08:13:54 +0000116 virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI,
117 MachineBasicBlock *MBB);
Chris Lattner72878a42006-01-12 07:31:15 +0000118
119 virtual const char *getTargetNodeName(unsigned Opcode) const;
Chris Lattner6c18b102005-12-17 07:47:01 +0000120 };
121}
122
123SparcV8TargetLowering::SparcV8TargetLowering(TargetMachine &TM)
124 : TargetLowering(TM) {
125
126 // Set up the register classes.
127 addRegisterClass(MVT::i32, V8::IntRegsRegisterClass);
128 addRegisterClass(MVT::f32, V8::FPRegsRegisterClass);
129 addRegisterClass(MVT::f64, V8::DFPRegsRegisterClass);
Chris Lattner9a60ff62005-12-17 20:50:42 +0000130
Chris Lattnere3572462005-12-18 02:10:39 +0000131 // Custom legalize GlobalAddress nodes into LO/HI parts.
132 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Chris Lattner76acc872005-12-18 02:37:35 +0000133 setOperationAction(ISD::ConstantPool , MVT::i32, Custom);
Chris Lattnere3572462005-12-18 02:10:39 +0000134
Chris Lattner9a60ff62005-12-17 20:50:42 +0000135 // Sparc doesn't have sext_inreg, replace them with shl/sra
Chris Lattner33084492005-12-18 08:13:54 +0000136 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
137 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
138 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
Chris Lattner7087e572005-12-17 22:39:19 +0000139
140 // Sparc has no REM operation.
141 setOperationAction(ISD::UREM, MVT::i32, Expand);
142 setOperationAction(ISD::SREM, MVT::i32, Expand);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000143
144 // Custom expand fp<->sint
145 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
146 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
147
148 // Expand fp<->uint
149 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
150 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Chris Lattner6c18b102005-12-17 07:47:01 +0000151
Chris Lattner53e88452005-12-23 05:13:35 +0000152 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
153 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
154
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000155 // Turn FP extload into load/fextend
Chris Lattner065c8962005-12-18 07:13:32 +0000156 setOperationAction(ISD::EXTLOAD, MVT::f32, Expand);
157
Chris Lattner4d55aca2005-12-18 01:20:35 +0000158 // Sparc has no select or setcc: expand to SELECT_CC.
159 setOperationAction(ISD::SELECT, MVT::i32, Expand);
160 setOperationAction(ISD::SELECT, MVT::f32, Expand);
161 setOperationAction(ISD::SELECT, MVT::f64, Expand);
162 setOperationAction(ISD::SETCC, MVT::i32, Expand);
163 setOperationAction(ISD::SETCC, MVT::f32, Expand);
164 setOperationAction(ISD::SETCC, MVT::f64, Expand);
165
166 // Sparc doesn't have BRCOND either, it has BR_CC.
167 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
168 setOperationAction(ISD::BRCONDTWOWAY, MVT::Other, Expand);
169 setOperationAction(ISD::BRTWOWAY_CC, MVT::Other, Expand);
170 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
171 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
172 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
173
Chris Lattner33084492005-12-18 08:13:54 +0000174 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
175 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
176 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
177
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000178 // V8 has no intrinsics for these particular operations.
179 setOperationAction(ISD::MEMMOVE, MVT::Other, Expand);
180 setOperationAction(ISD::MEMSET, MVT::Other, Expand);
181 setOperationAction(ISD::MEMCPY, MVT::Other, Expand);
182
Chris Lattner61772c22005-12-19 01:39:40 +0000183 setOperationAction(ISD::FSIN , MVT::f64, Expand);
184 setOperationAction(ISD::FCOS , MVT::f64, Expand);
185 setOperationAction(ISD::FSIN , MVT::f32, Expand);
186 setOperationAction(ISD::FCOS , MVT::f32, Expand);
187 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
188 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
189 setOperationAction(ISD::CTLZ , MVT::i32, Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000190 setOperationAction(ISD::ROTL , MVT::i32, Expand);
191 setOperationAction(ISD::ROTR , MVT::i32, Expand);
Nate Begemand88fc032006-01-14 03:14:10 +0000192 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000193
194 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
195 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
196 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000197
198 // We don't have line number support yet.
199 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +0000200 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
201 setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000202
Nate Begemanee625572006-01-27 21:09:22 +0000203 // RET must be custom lowered, to meet ABI requirements
204 setOperationAction(ISD::RET , MVT::Other, Custom);
205
Nate Begemanacc398c2006-01-25 18:21:52 +0000206 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
207 setOperationAction(ISD::VASTART , MVT::Other, Custom);
208
209 // Use the default implementation.
210 setOperationAction(ISD::VAARG , MVT::Other, Expand);
211 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
212 setOperationAction(ISD::VAEND , MVT::Other, Expand);
213 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
214 setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
Chris Lattner9072c052006-01-30 06:14:02 +0000215 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Expand);
Chris Lattner934ea492006-01-15 08:55:25 +0000216
Chris Lattner2adc05c2006-01-30 22:20:49 +0000217 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
218 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
219
Chris Lattner934ea492006-01-15 08:55:25 +0000220 setStackPointerRegisterToSaveRestore(V8::O6);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000221
Chris Lattner9072c052006-01-30 06:14:02 +0000222 if (TM.getSubtarget<SparcV8Subtarget>().isV9()) {
223 setOperationAction(ISD::CTPOP, MVT::i32, Legal);
224 }
225
Chris Lattner6c18b102005-12-17 07:47:01 +0000226 computeRegisterProperties();
227}
228
Chris Lattner72878a42006-01-12 07:31:15 +0000229const char *SparcV8TargetLowering::getTargetNodeName(unsigned Opcode) const {
230 switch (Opcode) {
Chris Lattner138d3222006-01-12 07:38:04 +0000231 default: return 0;
Chris Lattner72878a42006-01-12 07:31:15 +0000232 case V8ISD::CMPICC: return "V8ISD::CMPICC";
233 case V8ISD::CMPFCC: return "V8ISD::CMPFCC";
234 case V8ISD::BRICC: return "V8ISD::BRICC";
235 case V8ISD::BRFCC: return "V8ISD::BRFCC";
Chris Lattner9072c052006-01-30 06:14:02 +0000236 case V8ISD::SELECT_ICC: return "V8ISD::SELECT_ICC";
237 case V8ISD::SELECT_FCC: return "V8ISD::SELECT_FCC";
Chris Lattner72878a42006-01-12 07:31:15 +0000238 case V8ISD::Hi: return "V8ISD::Hi";
239 case V8ISD::Lo: return "V8ISD::Lo";
240 case V8ISD::FTOI: return "V8ISD::FTOI";
241 case V8ISD::ITOF: return "V8ISD::ITOF";
Chris Lattner44ea7b12006-01-27 23:30:03 +0000242 case V8ISD::CALL: return "V8ISD::CALL";
Chris Lattner72878a42006-01-12 07:31:15 +0000243 case V8ISD::RET_FLAG: return "V8ISD::RET_FLAG";
244 }
245}
246
Chris Lattner4a397e02006-01-30 03:51:45 +0000247/// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
248/// be zero. Op is expected to be a target specific node. Used by DAG
249/// combiner.
250bool SparcV8TargetLowering::
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000251isMaskedValueZeroForTargetNode(const SDOperand &Op, uint64_t Mask) const {
Chris Lattner4a397e02006-01-30 03:51:45 +0000252 switch (Op.getOpcode()) {
253 default: return false;
254 case V8ISD::SELECT_ICC:
255 case V8ISD::SELECT_FCC:
256 assert(MVT::isInteger(Op.getValueType()) && "Not an integer select!");
257 // These operations are masked zero if both the left and the right are zero.
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000258 return MaskedValueIsZero(Op.getOperand(0), Mask) &&
259 MaskedValueIsZero(Op.getOperand(1), Mask);
Chris Lattner4a397e02006-01-30 03:51:45 +0000260 }
261}
262
263
Chris Lattner384e5ef2005-12-18 13:33:06 +0000264/// LowerArguments - V8 uses a very simple ABI, where all values are passed in
265/// either one or two GPRs, including FP values. TODO: we should pass FP values
266/// in FP registers for fastcc functions.
Chris Lattner6c18b102005-12-17 07:47:01 +0000267std::vector<SDOperand>
268SparcV8TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
Chris Lattnera01b7572005-12-17 08:03:24 +0000269 MachineFunction &MF = DAG.getMachineFunction();
270 SSARegMap *RegMap = MF.getSSARegMap();
271 std::vector<SDOperand> ArgValues;
272
Chris Lattner384e5ef2005-12-18 13:33:06 +0000273 static const unsigned ArgRegs[] = {
Chris Lattnera01b7572005-12-17 08:03:24 +0000274 V8::I0, V8::I1, V8::I2, V8::I3, V8::I4, V8::I5
275 };
Chris Lattner384e5ef2005-12-18 13:33:06 +0000276
277 const unsigned *CurArgReg = ArgRegs, *ArgRegEnd = ArgRegs+6;
278 unsigned ArgOffset = 68;
279
280 SDOperand Root = DAG.getRoot();
281 std::vector<SDOperand> OutChains;
282
Chris Lattnera01b7572005-12-17 08:03:24 +0000283 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
284 MVT::ValueType ObjectVT = getValueType(I->getType());
Chris Lattnera01b7572005-12-17 08:03:24 +0000285
286 switch (ObjectVT) {
287 default: assert(0 && "Unhandled argument type!");
Chris Lattnera01b7572005-12-17 08:03:24 +0000288 case MVT::i1:
289 case MVT::i8:
290 case MVT::i16:
Chris Lattner384e5ef2005-12-18 13:33:06 +0000291 case MVT::i32:
292 if (I->use_empty()) { // Argument is dead.
293 if (CurArgReg < ArgRegEnd) ++CurArgReg;
294 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
295 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
296 unsigned VReg = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
297 MF.addLiveIn(*CurArgReg++, VReg);
298 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
299 if (ObjectVT != MVT::i32) {
300 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
301 : ISD::AssertZext;
302 Arg = DAG.getNode(AssertOp, MVT::i32, Arg,
303 DAG.getValueType(ObjectVT));
304 Arg = DAG.getNode(ISD::TRUNCATE, ObjectVT, Arg);
305 }
306 ArgValues.push_back(Arg);
307 } else {
308 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
309 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
310 SDOperand Load;
311 if (ObjectVT == MVT::i32) {
312 Load = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
313 } else {
314 unsigned LoadOp =
315 I->getType()->isSigned() ? ISD::SEXTLOAD : ISD::ZEXTLOAD;
316
Chris Lattner99cf5092006-01-16 01:40:00 +0000317 // Sparc is big endian, so add an offset based on the ObjectVT.
318 unsigned Offset = 4-std::max(1U, MVT::getSizeInBits(ObjectVT)/8);
319 FIPtr = DAG.getNode(ISD::ADD, MVT::i32, FIPtr,
320 DAG.getConstant(Offset, MVT::i32));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000321 Load = DAG.getExtLoad(LoadOp, MVT::i32, Root, FIPtr,
322 DAG.getSrcValue(0), ObjectVT);
Chris Lattnerf7511b42006-01-15 22:22:01 +0000323 Load = DAG.getNode(ISD::TRUNCATE, ObjectVT, Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000324 }
325 ArgValues.push_back(Load);
Chris Lattnera01b7572005-12-17 08:03:24 +0000326 }
Chris Lattner384e5ef2005-12-18 13:33:06 +0000327
328 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000329 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000330 case MVT::f32:
331 if (I->use_empty()) { // Argument is dead.
332 if (CurArgReg < ArgRegEnd) ++CurArgReg;
333 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
334 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
335 // FP value is passed in an integer register.
336 unsigned VReg = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
337 MF.addLiveIn(*CurArgReg++, VReg);
338 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
339
Chris Lattnera01874f2005-12-23 02:31:39 +0000340 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Arg);
341 ArgValues.push_back(Arg);
Chris Lattner46030a62006-01-19 07:22:29 +0000342 } else {
343 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
344 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
345 SDOperand Load = DAG.getLoad(MVT::f32, Root, FIPtr, DAG.getSrcValue(0));
346 ArgValues.push_back(Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000347 }
348 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000349 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000350
351 case MVT::i64:
352 case MVT::f64:
353 if (I->use_empty()) { // Argument is dead.
354 if (CurArgReg < ArgRegEnd) ++CurArgReg;
355 if (CurArgReg < ArgRegEnd) ++CurArgReg;
356 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
Chris Lattnerb7163432006-01-31 02:45:52 +0000357 } else if (/* FIXME: Apparently this isn't safe?? */
358 0 && CurArgReg == ArgRegEnd && ObjectVT == MVT::f64 &&
Chris Lattner384e5ef2005-12-18 13:33:06 +0000359 ((CurArgReg-ArgRegs) & 1) == 0) {
360 // If this is a double argument and the whole thing lives on the stack,
361 // and the argument is aligned, load the double straight from the stack.
362 // We can't do a load in cases like void foo([6ints], int,double),
363 // because the double wouldn't be aligned!
364 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(8, ArgOffset);
365 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
366 ArgValues.push_back(DAG.getLoad(MVT::f64, Root, FIPtr,
367 DAG.getSrcValue(0)));
368 } else {
369 SDOperand HiVal;
370 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
371 unsigned VRegHi = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
372 MF.addLiveIn(*CurArgReg++, VRegHi);
373 HiVal = DAG.getCopyFromReg(Root, VRegHi, MVT::i32);
374 } else {
375 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
376 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
377 HiVal = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
378 }
379
380 SDOperand LoVal;
381 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
382 unsigned VRegLo = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
383 MF.addLiveIn(*CurArgReg++, VRegLo);
384 LoVal = DAG.getCopyFromReg(Root, VRegLo, MVT::i32);
385 } else {
386 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset+4);
387 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
388 LoVal = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
389 }
390
391 // Compose the two halves together into an i64 unit.
392 SDOperand WholeValue =
393 DAG.getNode(ISD::BUILD_PAIR, MVT::i64, LoVal, HiVal);
Chris Lattnera01874f2005-12-23 02:31:39 +0000394
395 // If we want a double, do a bit convert.
396 if (ObjectVT == MVT::f64)
397 WholeValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f64, WholeValue);
398
399 ArgValues.push_back(WholeValue);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000400 }
401 ArgOffset += 8;
402 break;
Chris Lattnera01b7572005-12-17 08:03:24 +0000403 }
404 }
405
Chris Lattner384e5ef2005-12-18 13:33:06 +0000406 // Store remaining ArgRegs to the stack if this is a varargs function.
407 if (F.getFunctionType()->isVarArg()) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000408 // Remember the vararg offset for the va_start implementation.
409 VarArgsFrameOffset = ArgOffset;
410
Chris Lattner384e5ef2005-12-18 13:33:06 +0000411 for (; CurArgReg != ArgRegEnd; ++CurArgReg) {
412 unsigned VReg = RegMap->createVirtualRegister(&V8::IntRegsRegClass);
413 MF.addLiveIn(*CurArgReg, VReg);
414 SDOperand Arg = DAG.getCopyFromReg(DAG.getRoot(), VReg, MVT::i32);
415
416 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
417 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
418
419 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, DAG.getRoot(),
420 Arg, FIPtr, DAG.getSrcValue(0)));
421 ArgOffset += 4;
422 }
423 }
424
425 if (!OutChains.empty())
426 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
Chris Lattnera01b7572005-12-17 08:03:24 +0000427
428 // Finally, inform the code generator which regs we return values in.
429 switch (getValueType(F.getReturnType())) {
430 default: assert(0 && "Unknown type!");
431 case MVT::isVoid: break;
432 case MVT::i1:
433 case MVT::i8:
434 case MVT::i16:
435 case MVT::i32:
436 MF.addLiveOut(V8::I0);
437 break;
438 case MVT::i64:
439 MF.addLiveOut(V8::I0);
440 MF.addLiveOut(V8::I1);
441 break;
442 case MVT::f32:
443 MF.addLiveOut(V8::F0);
444 break;
445 case MVT::f64:
446 MF.addLiveOut(V8::D0);
447 break;
448 }
449
450 return ArgValues;
Chris Lattner6c18b102005-12-17 07:47:01 +0000451}
452
453std::pair<SDOperand, SDOperand>
454SparcV8TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
455 bool isVarArg, unsigned CC,
456 bool isTailCall, SDOperand Callee,
457 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000458 MachineFunction &MF = DAG.getMachineFunction();
459 // Count the size of the outgoing arguments.
460 unsigned ArgsSize = 0;
461 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
462 switch (getValueType(Args[i].second)) {
463 default: assert(0 && "Unknown value type!");
464 case MVT::i1:
465 case MVT::i8:
466 case MVT::i16:
467 case MVT::i32:
468 case MVT::f32:
469 ArgsSize += 4;
470 break;
471 case MVT::i64:
472 case MVT::f64:
473 ArgsSize += 8;
474 break;
475 }
476 }
477 if (ArgsSize > 4*6)
478 ArgsSize -= 4*6; // Space for first 6 arguments is prereserved.
479 else
480 ArgsSize = 0;
481
Chris Lattner6554bef2005-12-19 01:15:13 +0000482 // Keep stack frames 8-byte aligned.
483 ArgsSize = (ArgsSize+7) & ~7;
484
Chris Lattner2db3ff62005-12-18 15:55:15 +0000485 Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
486 DAG.getConstant(ArgsSize, getPointerTy()));
487
488 SDOperand StackPtr, NullSV;
489 std::vector<SDOperand> Stores;
490 std::vector<SDOperand> RegValuesToPass;
491 unsigned ArgOffset = 68;
492 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
493 SDOperand Val = Args[i].first;
494 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercb833742006-01-06 17:56:38 +0000495 SDOperand ValToStore(0, 0);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000496 unsigned ObjSize;
497 switch (ObjectVT) {
498 default: assert(0 && "Unhandled argument type!");
499 case MVT::i1:
500 case MVT::i8:
501 case MVT::i16:
502 // Promote the integer to 32-bits. If the input type is signed, use a
503 // sign extend, otherwise use a zero extend.
504 if (Args[i].second->isSigned())
505 Val = DAG.getNode(ISD::SIGN_EXTEND, MVT::i32, Val);
506 else
507 Val = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Val);
508 // FALL THROUGH
509 case MVT::i32:
510 ObjSize = 4;
511
512 if (RegValuesToPass.size() >= 6) {
513 ValToStore = Val;
514 } else {
515 RegValuesToPass.push_back(Val);
516 }
517 break;
518 case MVT::f32:
519 ObjSize = 4;
520 if (RegValuesToPass.size() >= 6) {
521 ValToStore = Val;
522 } else {
523 // Convert this to a FP value in an int reg.
Chris Lattnera01874f2005-12-23 02:31:39 +0000524 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000525 RegValuesToPass.push_back(Val);
526 }
527 break;
Chris Lattnera01874f2005-12-23 02:31:39 +0000528 case MVT::f64:
Chris Lattner2db3ff62005-12-18 15:55:15 +0000529 ObjSize = 8;
530 // If we can store this directly into the outgoing slot, do so. We can
531 // do this when all ArgRegs are used and if the outgoing slot is aligned.
Chris Lattner7f9975a2006-01-15 19:15:46 +0000532 // FIXME: McGill/misr fails with this.
533 if (0 && RegValuesToPass.size() >= 6 && ((ArgOffset-68) & 7) == 0) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000534 ValToStore = Val;
535 break;
536 }
537
538 // Otherwise, convert this to a FP value in int regs.
Chris Lattnera01874f2005-12-23 02:31:39 +0000539 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000540 // FALL THROUGH
541 case MVT::i64:
542 ObjSize = 8;
543 if (RegValuesToPass.size() >= 6) {
544 ValToStore = Val; // Whole thing is passed in memory.
545 break;
546 }
547
548 // Split the value into top and bottom part. Top part goes in a reg.
549 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Val,
550 DAG.getConstant(1, MVT::i32));
551 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Val,
552 DAG.getConstant(0, MVT::i32));
553 RegValuesToPass.push_back(Hi);
554
555 if (RegValuesToPass.size() >= 6) {
556 ValToStore = Lo;
Chris Lattner7c423b42005-12-19 07:57:53 +0000557 ArgOffset += 4;
558 ObjSize = 4;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000559 } else {
560 RegValuesToPass.push_back(Lo);
561 }
562 break;
563 }
564
565 if (ValToStore.Val) {
566 if (!StackPtr.Val) {
Chris Lattner7c423b42005-12-19 07:57:53 +0000567 StackPtr = DAG.getRegister(V8::O6, MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000568 NullSV = DAG.getSrcValue(NULL);
569 }
570 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
571 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
572 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
573 ValToStore, PtrOff, NullSV));
574 }
575 ArgOffset += ObjSize;
576 }
577
578 // Emit all stores, make sure the occur before any copies into physregs.
579 if (!Stores.empty())
580 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
581
582 static const unsigned ArgRegs[] = {
583 V8::O0, V8::O1, V8::O2, V8::O3, V8::O4, V8::O5
584 };
585
586 // Build a sequence of copy-to-reg nodes chained together with token chain
587 // and flag operands which copy the outgoing args into O[0-5].
588 SDOperand InFlag;
589 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
590 Chain = DAG.getCopyToReg(Chain, ArgRegs[i], RegValuesToPass[i], InFlag);
591 InFlag = Chain.getValue(1);
592 }
593
Chris Lattner2db3ff62005-12-18 15:55:15 +0000594 // If the callee is a GlobalAddress node (quite common, every direct call is)
595 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
596 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
597 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i32);
598
599 std::vector<MVT::ValueType> NodeTys;
600 NodeTys.push_back(MVT::Other); // Returns a chain
601 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Chris Lattner44ea7b12006-01-27 23:30:03 +0000602 std::vector<SDOperand> Ops;
603 Ops.push_back(Chain);
604 Ops.push_back(Callee);
Chris Lattnerb4d899e2005-12-18 22:57:47 +0000605 if (InFlag.Val)
Chris Lattner44ea7b12006-01-27 23:30:03 +0000606 Ops.push_back(InFlag);
607 Chain = DAG.getNode(V8ISD::CALL, NodeTys, Ops);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000608 InFlag = Chain.getValue(1);
609
610 MVT::ValueType RetTyVT = getValueType(RetTy);
611 SDOperand RetVal;
612 if (RetTyVT != MVT::isVoid) {
613 switch (RetTyVT) {
614 default: assert(0 && "Unknown value type to return!");
615 case MVT::i1:
616 case MVT::i8:
617 case MVT::i16:
618 RetVal = DAG.getCopyFromReg(Chain, V8::O0, MVT::i32, InFlag);
619 Chain = RetVal.getValue(1);
620
621 // Add a note to keep track of whether it is sign or zero extended.
622 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
623 MVT::i32, RetVal, DAG.getValueType(RetTyVT));
624 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
625 break;
626 case MVT::i32:
627 RetVal = DAG.getCopyFromReg(Chain, V8::O0, MVT::i32, InFlag);
628 Chain = RetVal.getValue(1);
629 break;
630 case MVT::f32:
631 RetVal = DAG.getCopyFromReg(Chain, V8::F0, MVT::f32, InFlag);
632 Chain = RetVal.getValue(1);
633 break;
634 case MVT::f64:
635 RetVal = DAG.getCopyFromReg(Chain, V8::D0, MVT::f64, InFlag);
636 Chain = RetVal.getValue(1);
637 break;
638 case MVT::i64:
Chris Lattnereb096662005-12-19 02:15:51 +0000639 SDOperand Lo = DAG.getCopyFromReg(Chain, V8::O1, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000640 SDOperand Hi = DAG.getCopyFromReg(Lo.getValue(1), V8::O0, MVT::i32,
641 Lo.getValue(2));
642 RetVal = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
643 Chain = Hi.getValue(1);
644 break;
645 }
646 }
647
648 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
649 DAG.getConstant(ArgsSize, getPointerTy()));
650
Chris Lattner2db3ff62005-12-18 15:55:15 +0000651 return std::make_pair(RetVal, Chain);
Chris Lattner6c18b102005-12-17 07:47:01 +0000652}
653
Chris Lattner4d55aca2005-12-18 01:20:35 +0000654std::pair<SDOperand, SDOperand> SparcV8TargetLowering::
655LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
656 SelectionDAG &DAG) {
Chris Lattner6c18b102005-12-17 07:47:01 +0000657 assert(0 && "Unimp");
658 abort();
659}
660
Chris Lattner86638b92006-01-31 05:05:52 +0000661// Look at LHS/RHS/CC and see if they are a lowered V8 setcc instruction. If so
662// set LHS/RHS and V8CC to the LHS/RHS of the setcc and V8CC to the condition.
663static void LookThroughSetCC(SDOperand &LHS, SDOperand &RHS,
664 ISD::CondCode CC, unsigned &V8CC) {
665 if (isa<ConstantSDNode>(RHS) && cast<ConstantSDNode>(RHS)->getValue() == 0 &&
666 CC == ISD::SETNE &&
667 ((LHS.getOpcode() == V8ISD::SELECT_ICC &&
668 LHS.getOperand(3).getOpcode() == V8ISD::CMPICC) ||
669 (LHS.getOpcode() == V8ISD::SELECT_FCC &&
670 LHS.getOperand(3).getOpcode() == V8ISD::CMPFCC)) &&
671 isa<ConstantSDNode>(LHS.getOperand(0)) &&
672 isa<ConstantSDNode>(LHS.getOperand(1)) &&
673 cast<ConstantSDNode>(LHS.getOperand(0))->getValue() == 1 &&
674 cast<ConstantSDNode>(LHS.getOperand(1))->getValue() == 0) {
675 SDOperand CMPCC = LHS.getOperand(3);
676 V8CC = cast<ConstantSDNode>(LHS.getOperand(2))->getValue();
677 LHS = CMPCC.getOperand(0);
678 RHS = CMPCC.getOperand(1);
679 }
680}
681
682
Chris Lattner4d55aca2005-12-18 01:20:35 +0000683SDOperand SparcV8TargetLowering::
684LowerOperation(SDOperand Op, SelectionDAG &DAG) {
685 switch (Op.getOpcode()) {
686 default: assert(0 && "Should not custom lower this!");
Chris Lattnere3572462005-12-18 02:10:39 +0000687 case ISD::GlobalAddress: {
688 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
689 SDOperand GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
690 SDOperand Hi = DAG.getNode(V8ISD::Hi, MVT::i32, GA);
691 SDOperand Lo = DAG.getNode(V8ISD::Lo, MVT::i32, GA);
692 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
693 }
Chris Lattner76acc872005-12-18 02:37:35 +0000694 case ISD::ConstantPool: {
695 Constant *C = cast<ConstantPoolSDNode>(Op)->get();
Evan Chengb8973bd2006-01-31 22:23:14 +0000696 SDOperand CP = DAG.getTargetConstantPool(C, MVT::i32,
697 cast<ConstantPoolSDNode>(Op)->getAlignment());
Chris Lattner76acc872005-12-18 02:37:35 +0000698 SDOperand Hi = DAG.getNode(V8ISD::Hi, MVT::i32, CP);
699 SDOperand Lo = DAG.getNode(V8ISD::Lo, MVT::i32, CP);
700 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
701 }
Chris Lattner3cb71872005-12-23 05:00:16 +0000702 case ISD::FP_TO_SINT:
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000703 // Convert the fp value to integer in an FP register.
Chris Lattner3cb71872005-12-23 05:00:16 +0000704 assert(Op.getValueType() == MVT::i32);
705 Op = DAG.getNode(V8ISD::FTOI, MVT::f32, Op.getOperand(0));
706 return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000707 case ISD::SINT_TO_FP: {
Chris Lattner3cb71872005-12-23 05:00:16 +0000708 assert(Op.getOperand(0).getValueType() == MVT::i32);
Chris Lattner3fbb7262006-01-11 07:27:40 +0000709 SDOperand Tmp = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000710 // Convert the int value to FP in an FP register.
Chris Lattner3fbb7262006-01-11 07:27:40 +0000711 return DAG.getNode(V8ISD::ITOF, Op.getValueType(), Tmp);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000712 }
Chris Lattner33084492005-12-18 08:13:54 +0000713 case ISD::BR_CC: {
714 SDOperand Chain = Op.getOperand(0);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000715 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000716 SDOperand LHS = Op.getOperand(2);
717 SDOperand RHS = Op.getOperand(3);
718 SDOperand Dest = Op.getOperand(4);
Chris Lattner86638b92006-01-31 05:05:52 +0000719 unsigned Opc, V8CC = ~0U;
720
721 // If this is a br_cc of a "setcc", and if the setcc got lowered into
722 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
723 LookThroughSetCC(LHS, RHS, CC, V8CC);
Chris Lattner33084492005-12-18 08:13:54 +0000724
725 // Get the condition flag.
Chris Lattner86638b92006-01-31 05:05:52 +0000726 SDOperand CompareFlag;
Chris Lattner33084492005-12-18 08:13:54 +0000727 if (LHS.getValueType() == MVT::i32) {
Chris Lattnerb9169ce2006-01-11 07:49:38 +0000728 std::vector<MVT::ValueType> VTs;
729 VTs.push_back(MVT::i32);
730 VTs.push_back(MVT::Flag);
731 std::vector<SDOperand> Ops;
732 Ops.push_back(LHS);
733 Ops.push_back(RHS);
Chris Lattner86638b92006-01-31 05:05:52 +0000734 CompareFlag = DAG.getNode(V8ISD::CMPICC, VTs, Ops).getValue(1);
735 if (V8CC == ~0U) V8CC = IntCondCCodeToICC(CC);
736 Opc = V8ISD::BRICC;
Chris Lattner33084492005-12-18 08:13:54 +0000737 } else {
Chris Lattner86638b92006-01-31 05:05:52 +0000738 CompareFlag = DAG.getNode(V8ISD::CMPFCC, MVT::Flag, LHS, RHS);
739 if (V8CC == ~0U) V8CC = FPCondCCodeToFCC(CC);
740 Opc = V8ISD::BRFCC;
Chris Lattner33084492005-12-18 08:13:54 +0000741 }
Chris Lattner86638b92006-01-31 05:05:52 +0000742 return DAG.getNode(Opc, MVT::Other, Chain, Dest,
743 DAG.getConstant(V8CC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000744 }
745 case ISD::SELECT_CC: {
746 SDOperand LHS = Op.getOperand(0);
747 SDOperand RHS = Op.getOperand(1);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000748 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000749 SDOperand TrueVal = Op.getOperand(2);
750 SDOperand FalseVal = Op.getOperand(3);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000751 unsigned Opc, V8CC = ~0U;
752
Chris Lattnerdea95282006-01-30 04:34:44 +0000753 // If this is a select_cc of a "setcc", and if the setcc got lowered into
754 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner86638b92006-01-31 05:05:52 +0000755 LookThroughSetCC(LHS, RHS, CC, V8CC);
Chris Lattnerdea95282006-01-30 04:34:44 +0000756
Chris Lattner4bb91022006-01-12 17:05:32 +0000757 SDOperand CompareFlag;
Chris Lattner4bb91022006-01-12 17:05:32 +0000758 if (LHS.getValueType() == MVT::i32) {
759 std::vector<MVT::ValueType> VTs;
760 VTs.push_back(LHS.getValueType()); // subcc returns a value
761 VTs.push_back(MVT::Flag);
762 std::vector<SDOperand> Ops;
763 Ops.push_back(LHS);
764 Ops.push_back(RHS);
765 CompareFlag = DAG.getNode(V8ISD::CMPICC, VTs, Ops).getValue(1);
766 Opc = V8ISD::SELECT_ICC;
Chris Lattner3772bcb2006-01-30 07:43:04 +0000767 if (V8CC == ~0U) V8CC = IntCondCCodeToICC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000768 } else {
769 CompareFlag = DAG.getNode(V8ISD::CMPFCC, MVT::Flag, LHS, RHS);
770 Opc = V8ISD::SELECT_FCC;
Chris Lattner3772bcb2006-01-30 07:43:04 +0000771 if (V8CC == ~0U) V8CC = FPCondCCodeToFCC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000772 }
Chris Lattner33084492005-12-18 08:13:54 +0000773 return DAG.getNode(Opc, TrueVal.getValueType(), TrueVal, FalseVal,
Chris Lattner3772bcb2006-01-30 07:43:04 +0000774 DAG.getConstant(V8CC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000775 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000776 case ISD::VASTART: {
777 // vastart just stores the address of the VarArgsFrameIndex slot into the
778 // memory location argument.
779 SDOperand Offset = DAG.getNode(ISD::ADD, MVT::i32,
780 DAG.getRegister(V8::I6, MVT::i32),
781 DAG.getConstant(VarArgsFrameOffset, MVT::i32));
782 return DAG.getNode(ISD::STORE, MVT::Other, Op.getOperand(0), Offset,
783 Op.getOperand(1), Op.getOperand(2));
784 }
Nate Begemanee625572006-01-27 21:09:22 +0000785 case ISD::RET: {
786 SDOperand Copy;
787
788 switch(Op.getNumOperands()) {
789 default:
790 assert(0 && "Do not know how to return this many arguments!");
791 abort();
792 case 1:
793 return SDOperand(); // ret void is legal
794 case 2: {
795 unsigned ArgReg;
796 switch(Op.getOperand(1).getValueType()) {
797 default: assert(0 && "Unknown type to return!");
798 case MVT::i32: ArgReg = V8::I0; break;
799 case MVT::f32: ArgReg = V8::F0; break;
800 case MVT::f64: ArgReg = V8::D0; break;
801 }
802 Copy = DAG.getCopyToReg(Op.getOperand(0), ArgReg, Op.getOperand(1),
803 SDOperand());
804 break;
805 }
806 case 3:
807 Copy = DAG.getCopyToReg(Op.getOperand(0), V8::I0, Op.getOperand(2),
808 SDOperand());
809 Copy = DAG.getCopyToReg(Copy, V8::I1, Op.getOperand(1), Copy.getValue(1));
810 break;
811 }
812 return DAG.getNode(V8ISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
813 }
Chris Lattnerbce88872006-01-15 08:43:57 +0000814 }
Chris Lattner4d55aca2005-12-18 01:20:35 +0000815}
816
Chris Lattner33084492005-12-18 08:13:54 +0000817MachineBasicBlock *
818SparcV8TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
819 MachineBasicBlock *BB) {
820 unsigned BROpcode;
Chris Lattner7a4d2912006-01-31 06:56:30 +0000821 unsigned CC;
Chris Lattner33084492005-12-18 08:13:54 +0000822 // Figure out the conditional branch opcode to use for this select_cc.
823 switch (MI->getOpcode()) {
824 default: assert(0 && "Unknown SELECT_CC!");
825 case V8::SELECT_CC_Int_ICC:
826 case V8::SELECT_CC_FP_ICC:
827 case V8::SELECT_CC_DFP_ICC:
Chris Lattner7a4d2912006-01-31 06:56:30 +0000828 BROpcode = V8::BCOND;
Chris Lattnerc03468b2006-01-31 17:20:06 +0000829 break;
Chris Lattner33084492005-12-18 08:13:54 +0000830 case V8::SELECT_CC_Int_FCC:
831 case V8::SELECT_CC_FP_FCC:
832 case V8::SELECT_CC_DFP_FCC:
Chris Lattner7a4d2912006-01-31 06:56:30 +0000833 BROpcode = V8::FBCOND;
Chris Lattner33084492005-12-18 08:13:54 +0000834 break;
835 }
Chris Lattner7a4d2912006-01-31 06:56:30 +0000836
837 CC = (V8CC::CondCodes)MI->getOperand(3).getImmedValue();
Chris Lattner33084492005-12-18 08:13:54 +0000838
839 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
840 // control-flow pattern. The incoming instruction knows the destination vreg
841 // to set, the condition code register to branch on, the true/false values to
842 // select between, and a branch opcode to use.
843 const BasicBlock *LLVM_BB = BB->getBasicBlock();
844 ilist<MachineBasicBlock>::iterator It = BB;
845 ++It;
846
847 // thisMBB:
848 // ...
849 // TrueVal = ...
850 // [f]bCC copy1MBB
851 // fallthrough --> copy0MBB
852 MachineBasicBlock *thisMBB = BB;
853 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
854 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
Chris Lattner7a4d2912006-01-31 06:56:30 +0000855 BuildMI(BB, BROpcode, 2).addMBB(sinkMBB).addImm(CC);
Chris Lattner33084492005-12-18 08:13:54 +0000856 MachineFunction *F = BB->getParent();
857 F->getBasicBlockList().insert(It, copy0MBB);
858 F->getBasicBlockList().insert(It, sinkMBB);
859 // Update machine-CFG edges
860 BB->addSuccessor(copy0MBB);
861 BB->addSuccessor(sinkMBB);
862
863 // copy0MBB:
864 // %FalseValue = ...
865 // # fallthrough to sinkMBB
866 BB = copy0MBB;
867
868 // Update machine-CFG edges
869 BB->addSuccessor(sinkMBB);
870
871 // sinkMBB:
872 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
873 // ...
874 BB = sinkMBB;
875 BuildMI(BB, V8::PHI, 4, MI->getOperand(0).getReg())
876 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
877 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
878
879 delete MI; // The pseudo instruction is gone now.
880 return BB;
881}
882
Chris Lattner6c18b102005-12-17 07:47:01 +0000883//===----------------------------------------------------------------------===//
884// Instruction Selector Implementation
885//===----------------------------------------------------------------------===//
886
887//===--------------------------------------------------------------------===//
Chris Lattner4dcfaac2006-01-26 07:22:22 +0000888/// SparcV8DAGToDAGISel - SPARC specific code to select Sparc V8 machine
Chris Lattner6c18b102005-12-17 07:47:01 +0000889/// instructions for SelectionDAG operations.
890///
891namespace {
892class SparcV8DAGToDAGISel : public SelectionDAGISel {
893 SparcV8TargetLowering V8Lowering;
Chris Lattner76afdc92006-01-30 05:35:57 +0000894
895 /// Subtarget - Keep a pointer to the Sparc Subtarget around so that we can
896 /// make the right decision when generating code for different targets.
897 const SparcV8Subtarget &Subtarget;
Chris Lattner6c18b102005-12-17 07:47:01 +0000898public:
899 SparcV8DAGToDAGISel(TargetMachine &TM)
Chris Lattner76afdc92006-01-30 05:35:57 +0000900 : SelectionDAGISel(V8Lowering), V8Lowering(TM),
901 Subtarget(TM.getSubtarget<SparcV8Subtarget>()) {
902 }
Chris Lattner6c18b102005-12-17 07:47:01 +0000903
904 SDOperand Select(SDOperand Op);
905
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000906 // Complex Pattern Selectors.
907 bool SelectADDRrr(SDOperand N, SDOperand &R1, SDOperand &R2);
908 bool SelectADDRri(SDOperand N, SDOperand &Base, SDOperand &Offset);
909
Chris Lattner6c18b102005-12-17 07:47:01 +0000910 /// InstructionSelectBasicBlock - This callback is invoked by
911 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
912 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
913
914 virtual const char *getPassName() const {
Chris Lattner4dcfaac2006-01-26 07:22:22 +0000915 return "SparcV8 DAG->DAG Pattern Instruction Selection";
Chris Lattner6c18b102005-12-17 07:47:01 +0000916 }
917
918 // Include the pieces autogenerated from the target description.
919#include "SparcV8GenDAGISel.inc"
920};
921} // end anonymous namespace
922
923/// InstructionSelectBasicBlock - This callback is invoked by
924/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
925void SparcV8DAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
926 DEBUG(BB->dump());
927
928 // Select target instructions for the DAG.
929 DAG.setRoot(Select(DAG.getRoot()));
930 CodeGenMap.clear();
931 DAG.RemoveDeadNodes();
932
933 // Emit machine code to BB.
934 ScheduleAndEmitDAG(DAG);
935}
936
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000937bool SparcV8DAGToDAGISel::SelectADDRri(SDOperand Addr, SDOperand &Base,
938 SDOperand &Offset) {
Chris Lattnerd5aae052005-12-18 07:09:06 +0000939 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
940 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000941 Offset = CurDAG->getTargetConstant(0, MVT::i32);
942 return true;
943 }
944
945 if (Addr.getOpcode() == ISD::ADD) {
946 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
947 if (Predicate_simm13(CN)) {
Chris Lattnerd5aae052005-12-18 07:09:06 +0000948 if (FrameIndexSDNode *FIN =
949 dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) {
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000950 // Constant offset from frame ref.
Chris Lattnerd5aae052005-12-18 07:09:06 +0000951 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000952 } else {
953 Base = Select(Addr.getOperand(0));
954 }
955 Offset = CurDAG->getTargetConstant(CN->getValue(), MVT::i32);
956 return true;
957 }
958 }
959 if (Addr.getOperand(0).getOpcode() == V8ISD::Lo) {
960 Base = Select(Addr.getOperand(1));
961 Offset = Addr.getOperand(0).getOperand(0);
962 return true;
963 }
964 if (Addr.getOperand(1).getOpcode() == V8ISD::Lo) {
965 Base = Select(Addr.getOperand(0));
966 Offset = Addr.getOperand(1).getOperand(0);
967 return true;
968 }
969 }
970 Base = Select(Addr);
971 Offset = CurDAG->getTargetConstant(0, MVT::i32);
972 return true;
973}
974
Chris Lattner9034b882005-12-17 21:25:27 +0000975bool SparcV8DAGToDAGISel::SelectADDRrr(SDOperand Addr, SDOperand &R1,
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000976 SDOperand &R2) {
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000977 if (Addr.getOpcode() == ISD::FrameIndex) return false;
Chris Lattner9034b882005-12-17 21:25:27 +0000978 if (Addr.getOpcode() == ISD::ADD) {
979 if (isa<ConstantSDNode>(Addr.getOperand(1)) &&
980 Predicate_simm13(Addr.getOperand(1).Val))
981 return false; // Let the reg+imm pattern catch this!
Chris Lattnere1389ad2005-12-18 02:27:00 +0000982 if (Addr.getOperand(0).getOpcode() == V8ISD::Lo ||
983 Addr.getOperand(1).getOpcode() == V8ISD::Lo)
984 return false; // Let the reg+imm pattern catch this!
Chris Lattnere3572462005-12-18 02:10:39 +0000985 R1 = Select(Addr.getOperand(0));
986 R2 = Select(Addr.getOperand(1));
Chris Lattner9034b882005-12-17 21:25:27 +0000987 return true;
988 }
989
990 R1 = Select(Addr);
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000991 R2 = CurDAG->getRegister(V8::G0, MVT::i32);
992 return true;
993}
994
Chris Lattner6c18b102005-12-17 07:47:01 +0000995SDOperand SparcV8DAGToDAGISel::Select(SDOperand Op) {
996 SDNode *N = Op.Val;
Chris Lattner4d55aca2005-12-18 01:20:35 +0000997 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
998 N->getOpcode() < V8ISD::FIRST_NUMBER)
Chris Lattner6c18b102005-12-17 07:47:01 +0000999 return Op; // Already selected.
1000 // If this has already been converted, use it.
1001 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
1002 if (CGMI != CodeGenMap.end()) return CGMI->second;
1003
1004 switch (N->getOpcode()) {
1005 default: break;
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001006 case ISD::FrameIndex: {
1007 int FI = cast<FrameIndexSDNode>(N)->getIndex();
1008 if (N->hasOneUse())
1009 return CurDAG->SelectNodeTo(N, V8::ADDri, MVT::i32,
1010 CurDAG->getTargetFrameIndex(FI, MVT::i32),
1011 CurDAG->getTargetConstant(0, MVT::i32));
1012 return CodeGenMap[Op] =
1013 CurDAG->getTargetNode(V8::ADDri, MVT::i32,
1014 CurDAG->getTargetFrameIndex(FI, MVT::i32),
1015 CurDAG->getTargetConstant(0, MVT::i32));
1016 }
Chris Lattnerd19fc652005-12-17 22:55:57 +00001017 case ISD::ADD_PARTS: {
1018 SDOperand LHSL = Select(N->getOperand(0));
1019 SDOperand LHSH = Select(N->getOperand(1));
1020 SDOperand RHSL = Select(N->getOperand(2));
1021 SDOperand RHSH = Select(N->getOperand(3));
1022 // FIXME, handle immediate RHS.
1023 SDOperand Low = CurDAG->getTargetNode(V8::ADDCCrr, MVT::i32, MVT::Flag,
1024 LHSL, RHSL);
1025 SDOperand Hi = CurDAG->getTargetNode(V8::ADDXrr, MVT::i32, LHSH, RHSH,
1026 Low.getValue(1));
1027 CodeGenMap[SDOperand(N, 0)] = Low;
1028 CodeGenMap[SDOperand(N, 1)] = Hi;
1029 return Op.ResNo ? Hi : Low;
1030 }
1031 case ISD::SUB_PARTS: {
1032 SDOperand LHSL = Select(N->getOperand(0));
1033 SDOperand LHSH = Select(N->getOperand(1));
1034 SDOperand RHSL = Select(N->getOperand(2));
1035 SDOperand RHSH = Select(N->getOperand(3));
1036 // FIXME, handle immediate RHS.
1037 SDOperand Low = CurDAG->getTargetNode(V8::SUBCCrr, MVT::i32, MVT::Flag,
1038 LHSL, RHSL);
1039 SDOperand Hi = CurDAG->getTargetNode(V8::SUBXrr, MVT::i32, LHSH, RHSH,
1040 Low.getValue(1));
1041 CodeGenMap[SDOperand(N, 0)] = Low;
1042 CodeGenMap[SDOperand(N, 1)] = Hi;
1043 return Op.ResNo ? Hi : Low;
1044 }
Chris Lattner7087e572005-12-17 22:39:19 +00001045 case ISD::SDIV:
1046 case ISD::UDIV: {
1047 // FIXME: should use a custom expander to expose the SRA to the dag.
1048 SDOperand DivLHS = Select(N->getOperand(0));
1049 SDOperand DivRHS = Select(N->getOperand(1));
1050
1051 // Set the Y register to the high-part.
1052 SDOperand TopPart;
1053 if (N->getOpcode() == ISD::SDIV) {
1054 TopPart = CurDAG->getTargetNode(V8::SRAri, MVT::i32, DivLHS,
1055 CurDAG->getTargetConstant(31, MVT::i32));
1056 } else {
1057 TopPart = CurDAG->getRegister(V8::G0, MVT::i32);
1058 }
1059 TopPart = CurDAG->getTargetNode(V8::WRYrr, MVT::Flag, TopPart,
1060 CurDAG->getRegister(V8::G0, MVT::i32));
1061
1062 // FIXME: Handle div by immediate.
1063 unsigned Opcode = N->getOpcode() == ISD::SDIV ? V8::SDIVrr : V8::UDIVrr;
1064 return CurDAG->SelectNodeTo(N, Opcode, MVT::i32, DivLHS, DivRHS, TopPart);
1065 }
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001066 case ISD::MULHU:
1067 case ISD::MULHS: {
Chris Lattner7087e572005-12-17 22:39:19 +00001068 // FIXME: Handle mul by immediate.
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001069 SDOperand MulLHS = Select(N->getOperand(0));
1070 SDOperand MulRHS = Select(N->getOperand(1));
1071 unsigned Opcode = N->getOpcode() == ISD::MULHU ? V8::UMULrr : V8::SMULrr;
1072 SDOperand Mul = CurDAG->getTargetNode(Opcode, MVT::i32, MVT::Flag,
1073 MulLHS, MulRHS);
1074 // The high part is in the Y register.
1075 return CurDAG->SelectNodeTo(N, V8::RDY, MVT::i32, Mul.getValue(1));
1076 }
Chris Lattner44ea7b12006-01-27 23:30:03 +00001077 case V8ISD::CALL:
Chris Lattner2db3ff62005-12-18 15:55:15 +00001078 // FIXME: This is a workaround for a bug in tblgen.
1079 { // Pattern #47: (call:Flag (tglobaladdr:i32):$dst, ICC:Flag)
1080 // Emits: (CALL:void (tglobaladdr:i32):$dst)
1081 // Pattern complexity = 2 cost = 1
1082 SDOperand N1 = N->getOperand(1);
Chris Lattner311f8c22005-12-18 23:07:11 +00001083 if (N1.getOpcode() != ISD::TargetGlobalAddress &&
1084 N1.getOpcode() != ISD::ExternalSymbol) goto P47Fail;
Chris Lattnerb4d899e2005-12-18 22:57:47 +00001085 SDOperand InFlag = SDOperand(0, 0);
Chris Lattner2db3ff62005-12-18 15:55:15 +00001086 SDOperand Chain = N->getOperand(0);
1087 SDOperand Tmp0 = N1;
1088 Chain = Select(Chain);
Chris Lattnerb4d899e2005-12-18 22:57:47 +00001089 SDOperand Result;
1090 if (N->getNumOperands() == 3) {
1091 InFlag = Select(N->getOperand(2));
1092 Result = CurDAG->getTargetNode(V8::CALL, MVT::Other, MVT::Flag, Tmp0,
1093 Chain, InFlag);
1094 } else {
1095 Result = CurDAG->getTargetNode(V8::CALL, MVT::Other, MVT::Flag, Tmp0,
1096 Chain);
1097 }
Chris Lattner2db3ff62005-12-18 15:55:15 +00001098 Chain = CodeGenMap[SDOperand(N, 0)] = Result.getValue(0);
1099 CodeGenMap[SDOperand(N, 1)] = Result.getValue(1);
1100 return Result.getValue(Op.ResNo);
1101 }
1102 P47Fail:;
1103
Chris Lattner6c18b102005-12-17 07:47:01 +00001104 }
1105
1106 return SelectCode(Op);
1107}
1108
1109
Chris Lattner4dcfaac2006-01-26 07:22:22 +00001110/// createSparcV8ISelDag - This pass converts a legalized DAG into a
1111/// SPARC-specific DAG, ready for instruction scheduling.
Chris Lattner6c18b102005-12-17 07:47:01 +00001112///
1113FunctionPass *llvm::createSparcV8ISelDag(TargetMachine &TM) {
1114 return new SparcV8DAGToDAGISel(TM);
1115}