blob: e9176e1bf28ad56952d35168596abdf65307bc10 [file] [log] [blame]
Duraid Madinaf2db9b82005-10-28 17:46:35 +00001//===-- IA64ISelLowering.cpp - IA64 DAG Lowering Implementation -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Duraid Madina and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the IA64ISelLowering class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "IA64ISelLowering.h"
15#include "IA64MachineFunctionInfo.h"
16#include "IA64TargetMachine.h"
17#include "llvm/CodeGen/MachineFrameInfo.h"
18#include "llvm/CodeGen/MachineFunction.h"
19#include "llvm/CodeGen/MachineInstrBuilder.h"
20#include "llvm/CodeGen/SelectionDAG.h"
21#include "llvm/CodeGen/SSARegMap.h"
22#include "llvm/Constants.h"
23#include "llvm/Function.h"
24using namespace llvm;
25
26IA64TargetLowering::IA64TargetLowering(TargetMachine &TM)
27 : TargetLowering(TM) {
28
29 // register class for general registers
30 addRegisterClass(MVT::i64, IA64::GRRegisterClass);
31
32 // register class for FP registers
33 addRegisterClass(MVT::f64, IA64::FPRegisterClass);
34
35 // register class for predicate registers
36 addRegisterClass(MVT::i1, IA64::PRRegisterClass);
37
Evan Chengc5484282006-10-04 00:56:09 +000038 setLoadXAction(ISD::EXTLOAD , MVT::i1 , Promote);
39
40 setLoadXAction(ISD::ZEXTLOAD , MVT::i1 , Expand);
41
42 setLoadXAction(ISD::SEXTLOAD , MVT::i1 , Expand);
43 setLoadXAction(ISD::SEXTLOAD , MVT::i8 , Expand);
44 setLoadXAction(ISD::SEXTLOAD , MVT::i16 , Expand);
45 setLoadXAction(ISD::SEXTLOAD , MVT::i32 , Expand);
46
Evan Chengc35497f2006-10-30 08:02:39 +000047 setOperationAction(ISD::BRIND , MVT::Other, Expand);
48 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
Nate Begeman750ac1b2006-02-01 07:19:44 +000049 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000050 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
51
Nate Begeman750ac1b2006-02-01 07:19:44 +000052 // ia64 uses SELECT not SELECT_CC
53 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
54
Duraid Madinabea99472006-01-20 20:24:31 +000055 // We need to handle ISD::RET for void functions ourselves,
56 // so we get a chance to restore ar.pfs before adding a
57 // br.ret insn
58 setOperationAction(ISD::RET, MVT::Other, Custom);
59
Duraid Madinaf2db9b82005-10-28 17:46:35 +000060 setSetCCResultType(MVT::i1);
61 setShiftAmountType(MVT::i64);
62
Duraid Madinaf2db9b82005-10-28 17:46:35 +000063 setOperationAction(ISD::FREM , MVT::f32 , Expand);
64 setOperationAction(ISD::FREM , MVT::f64 , Expand);
65
66 setOperationAction(ISD::UREM , MVT::f32 , Expand);
67 setOperationAction(ISD::UREM , MVT::f64 , Expand);
68
69 setOperationAction(ISD::MEMMOVE , MVT::Other, Expand);
70 setOperationAction(ISD::MEMSET , MVT::Other, Expand);
71 setOperationAction(ISD::MEMCPY , MVT::Other, Expand);
72
73 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
74 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
75
76 // We don't support sin/cos/sqrt
77 setOperationAction(ISD::FSIN , MVT::f64, Expand);
78 setOperationAction(ISD::FCOS , MVT::f64, Expand);
79 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
80 setOperationAction(ISD::FSIN , MVT::f32, Expand);
81 setOperationAction(ISD::FCOS , MVT::f32, Expand);
82 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
83
Chris Lattner9601a862006-03-05 05:08:37 +000084 // FIXME: IA64 supports fcopysign natively!
85 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
86 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
87
Chris Lattnerf73bae12005-11-29 06:16:21 +000088 // We don't have line number support yet.
89 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +000090 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
91 setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand);
Chris Lattnerf73bae12005-11-29 06:16:21 +000092
Duraid Madinaf2db9b82005-10-28 17:46:35 +000093 //IA64 has these, but they are not implemented
94 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
95 setOperationAction(ISD::CTLZ , MVT::i64 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +000096 setOperationAction(ISD::ROTL , MVT::i64 , Expand);
97 setOperationAction(ISD::ROTR , MVT::i64 , Expand);
Nate Begemand88fc032006-01-14 03:14:10 +000098 setOperationAction(ISD::BSWAP, MVT::i64 , Expand); // mux @rev
Duraid Madinaf2db9b82005-10-28 17:46:35 +000099
Nate Begemanacc398c2006-01-25 18:21:52 +0000100 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
101 setOperationAction(ISD::VAARG , MVT::Other, Custom);
102 setOperationAction(ISD::VASTART , MVT::Other, Custom);
103
104 // Use the default implementation.
105 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
106 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Chris Lattner33f79df2006-01-13 02:40:58 +0000107 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
108 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Duraid Madina2e0348e2006-01-15 09:45:23 +0000109 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
110
111 setStackPointerRegisterToSaveRestore(IA64::r12);
Chris Lattner33f79df2006-01-13 02:40:58 +0000112
Duraid Madina2a0013f2006-09-04 06:21:35 +0000113 setJumpBufSize(704); // on ia64-linux, jmp_bufs are 704 bytes..
114 setJumpBufAlignment(16); // ...and must be 16-byte aligned
115
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000116 computeRegisterProperties();
117
Chris Lattnera54aa942006-01-29 06:26:08 +0000118 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000119 addLegalFPImmediate(+0.0);
120 addLegalFPImmediate(+1.0);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000121}
122
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000123const char *IA64TargetLowering::getTargetNodeName(unsigned Opcode) const {
124 switch (Opcode) {
125 default: return 0;
126 case IA64ISD::GETFD: return "IA64ISD::GETFD";
127 case IA64ISD::BRCALL: return "IA64ISD::BRCALL";
Duraid Madinabea99472006-01-20 20:24:31 +0000128 case IA64ISD::RET_FLAG: return "IA64ISD::RET_FLAG";
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000129 }
130}
131
132
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000133/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
134static bool isFloatingPointZero(SDOperand Op) {
135 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
136 return CFP->isExactlyValue(-0.0) || CFP->isExactlyValue(0.0);
Evan Cheng466685d2006-10-09 20:57:25 +0000137 else if (ISD::isEXTLoad(Op.Val) || ISD::isNON_EXTLoad(Op.Val)) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000138 // Maybe this has already been legalized into the constant pool?
139 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Evan Chengc356a572006-09-12 21:04:05 +0000140 if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000141 return CFP->isExactlyValue(-0.0) || CFP->isExactlyValue(0.0);
142 }
143 return false;
144}
145
146std::vector<SDOperand>
147IA64TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
148 std::vector<SDOperand> ArgValues;
149 //
150 // add beautiful description of IA64 stack frame format
151 // here (from intel 24535803.pdf most likely)
152 //
153 MachineFunction &MF = DAG.getMachineFunction();
154 MachineFrameInfo *MFI = MF.getFrameInfo();
155
156 GP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
157 SP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
158 RP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
159
160 MachineBasicBlock& BB = MF.front();
161
162 unsigned args_int[] = {IA64::r32, IA64::r33, IA64::r34, IA64::r35,
163 IA64::r36, IA64::r37, IA64::r38, IA64::r39};
164
165 unsigned args_FP[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
166 IA64::F12,IA64::F13,IA64::F14, IA64::F15};
167
168 unsigned argVreg[8];
169 unsigned argPreg[8];
170 unsigned argOpc[8];
171
172 unsigned used_FPArgs = 0; // how many FP args have been used so far?
173
174 unsigned ArgOffset = 0;
175 int count = 0;
176
177 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
178 {
179 SDOperand newroot, argt;
180 if(count < 8) { // need to fix this logic? maybe.
181
182 switch (getValueType(I->getType())) {
183 default:
184 assert(0 && "ERROR in LowerArgs: can't lower this type of arg.\n");
185 case MVT::f32:
186 // fixme? (well, will need to for weird FP structy stuff,
187 // see intel ABI docs)
188 case MVT::f64:
189//XXX BuildMI(&BB, IA64::IDEF, 0, args_FP[used_FPArgs]);
190 MF.addLiveIn(args_FP[used_FPArgs]); // mark this reg as liveIn
191 // floating point args go into f8..f15 as-needed, the increment
192 argVreg[count] = // is below..:
193 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::f64));
194 // FP args go into f8..f15 as needed: (hence the ++)
195 argPreg[count] = args_FP[used_FPArgs++];
196 argOpc[count] = IA64::FMOV;
197 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(), argVreg[count],
198 MVT::f64);
199 if (I->getType() == Type::FloatTy)
200 argt = DAG.getNode(ISD::FP_ROUND, MVT::f32, argt);
201 break;
202 case MVT::i1: // NOTE: as far as C abi stuff goes,
203 // bools are just boring old ints
204 case MVT::i8:
205 case MVT::i16:
206 case MVT::i32:
207 case MVT::i64:
208//XXX BuildMI(&BB, IA64::IDEF, 0, args_int[count]);
209 MF.addLiveIn(args_int[count]); // mark this register as liveIn
210 argVreg[count] =
211 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
212 argPreg[count] = args_int[count];
213 argOpc[count] = IA64::MOV;
214 argt = newroot =
215 DAG.getCopyFromReg(DAG.getRoot(), argVreg[count], MVT::i64);
216 if ( getValueType(I->getType()) != MVT::i64)
217 argt = DAG.getNode(ISD::TRUNCATE, getValueType(I->getType()),
218 newroot);
219 break;
220 }
221 } else { // more than 8 args go into the frame
222 // Create the frame index object for this incoming parameter...
223 ArgOffset = 16 + 8 * (count - 8);
224 int FI = MFI->CreateFixedObject(8, ArgOffset);
225
226 // Create the SelectionDAG nodes corresponding to a load
227 //from this parameter
228 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i64);
229 argt = newroot = DAG.getLoad(getValueType(I->getType()),
Evan Cheng466685d2006-10-09 20:57:25 +0000230 DAG.getEntryNode(), FIN, NULL, 0);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000231 }
232 ++count;
233 DAG.setRoot(newroot.getValue(1));
234 ArgValues.push_back(argt);
235 }
236
237
238 // Create a vreg to hold the output of (what will become)
239 // the "alloc" instruction
240 VirtGPR = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
241 BuildMI(&BB, IA64::PSEUDO_ALLOC, 0, VirtGPR);
242 // we create a PSEUDO_ALLOC (pseudo)instruction for now
Duraid Madinab97cc992005-11-04 10:01:10 +0000243/*
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000244 BuildMI(&BB, IA64::IDEF, 0, IA64::r1);
245
246 // hmm:
247 BuildMI(&BB, IA64::IDEF, 0, IA64::r12);
248 BuildMI(&BB, IA64::IDEF, 0, IA64::rp);
249 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000250
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000251 BuildMI(&BB, IA64::MOV, 1, GP).addReg(IA64::r1);
252
253 // hmm:
254 BuildMI(&BB, IA64::MOV, 1, SP).addReg(IA64::r12);
255 BuildMI(&BB, IA64::MOV, 1, RP).addReg(IA64::rp);
256 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000257*/
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000258
259 unsigned tempOffset=0;
260
261 // if this is a varargs function, we simply lower llvm.va_start by
262 // pointing to the first entry
263 if(F.isVarArg()) {
264 tempOffset=0;
265 VarArgsFrameIndex = MFI->CreateFixedObject(8, tempOffset);
266 }
267
268 // here we actually do the moving of args, and store them to the stack
269 // too if this is a varargs function:
270 for (int i = 0; i < count && i < 8; ++i) {
271 BuildMI(&BB, argOpc[i], 1, argVreg[i]).addReg(argPreg[i]);
272 if(F.isVarArg()) {
273 // if this is a varargs function, we copy the input registers to the stack
274 int FI = MFI->CreateFixedObject(8, tempOffset);
275 tempOffset+=8; //XXX: is it safe to use r22 like this?
276 BuildMI(&BB, IA64::MOV, 1, IA64::r22).addFrameIndex(FI);
277 // FIXME: we should use st8.spill here, one day
278 BuildMI(&BB, IA64::ST8, 1, IA64::r22).addReg(argPreg[i]);
279 }
280 }
281
282 // Finally, inform the code generator which regs we return values in.
283 // (see the ISD::RET: case in the instruction selector)
284 switch (getValueType(F.getReturnType())) {
285 default: assert(0 && "i have no idea where to return this type!");
286 case MVT::isVoid: break;
287 case MVT::i1:
288 case MVT::i8:
289 case MVT::i16:
290 case MVT::i32:
291 case MVT::i64:
292 MF.addLiveOut(IA64::r8);
293 break;
294 case MVT::f32:
295 case MVT::f64:
296 MF.addLiveOut(IA64::F8);
297 break;
298 }
299
300 return ArgValues;
301}
302
303std::pair<SDOperand, SDOperand>
304IA64TargetLowering::LowerCallTo(SDOperand Chain,
305 const Type *RetTy, bool isVarArg,
306 unsigned CallingConv, bool isTailCall,
307 SDOperand Callee, ArgListTy &Args,
308 SelectionDAG &DAG) {
309
310 MachineFunction &MF = DAG.getMachineFunction();
311
312 unsigned NumBytes = 16;
313 unsigned outRegsUsed = 0;
314
315 if (Args.size() > 8) {
316 NumBytes += (Args.size() - 8) * 8;
317 outRegsUsed = 8;
318 } else {
319 outRegsUsed = Args.size();
320 }
321
322 // FIXME? this WILL fail if we ever try to pass around an arg that
323 // consumes more than a single output slot (a 'real' double, int128
324 // some sort of aggregate etc.), as we'll underestimate how many 'outX'
325 // registers we use. Hopefully, the assembler will notice.
326 MF.getInfo<IA64FunctionInfo>()->outRegsUsed=
327 std::max(outRegsUsed, MF.getInfo<IA64FunctionInfo>()->outRegsUsed);
328
Duraid Madina98d13782005-12-22 04:07:40 +0000329 // keep stack frame 16-byte aligned
330 //assert(NumBytes==((NumBytes+15) & ~15) && "stack frame not 16-byte aligned!");
331 NumBytes = (NumBytes+15) & ~15;
332
Chris Lattner94dd2922006-02-13 09:00:43 +0000333 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes, getPointerTy()));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000334
Evan Cheng8b2794a2006-10-13 21:14:26 +0000335 SDOperand StackPtr;
Duraid Madina98d13782005-12-22 04:07:40 +0000336 std::vector<SDOperand> Stores;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000337 std::vector<SDOperand> Converts;
Duraid Madina98d13782005-12-22 04:07:40 +0000338 std::vector<SDOperand> RegValuesToPass;
339 unsigned ArgOffset = 16;
340
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000341 for (unsigned i = 0, e = Args.size(); i != e; ++i)
342 {
Duraid Madina98d13782005-12-22 04:07:40 +0000343 SDOperand Val = Args[i].first;
344 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercd618ef2006-01-10 19:45:18 +0000345 SDOperand ValToStore(0, 0), ValToConvert(0, 0);
Duraid Madina98d13782005-12-22 04:07:40 +0000346 unsigned ObjSize=8;
347 switch (ObjectVT) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000348 default: assert(0 && "unexpected argument type!");
349 case MVT::i1:
350 case MVT::i8:
351 case MVT::i16:
352 case MVT::i32:
353 //promote to 64-bits, sign/zero extending based on type
354 //of the argument
355 if(Args[i].second->isSigned())
Duraid Madina98d13782005-12-22 04:07:40 +0000356 Val = DAG.getNode(ISD::SIGN_EXTEND, MVT::i64, Val);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000357 else
Duraid Madina98d13782005-12-22 04:07:40 +0000358 Val = DAG.getNode(ISD::ZERO_EXTEND, MVT::i64, Val);
359 // XXX: fall through
360 case MVT::i64:
361 //ObjSize = 8;
362 if(RegValuesToPass.size() >= 8) {
363 ValToStore = Val;
364 } else {
365 RegValuesToPass.push_back(Val);
366 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000367 break;
368 case MVT::f32:
369 //promote to 64-bits
Duraid Madina98d13782005-12-22 04:07:40 +0000370 Val = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Val);
371 // XXX: fall through
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000372 case MVT::f64:
Duraid Madina98d13782005-12-22 04:07:40 +0000373 if(RegValuesToPass.size() >= 8) {
374 ValToStore = Val;
375 } else {
376 RegValuesToPass.push_back(Val);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000377 if(1 /* TODO: if(calling external or varadic function)*/ ) {
378 ValToConvert = Val; // additionally pass this FP value as an int
379 }
Duraid Madina98d13782005-12-22 04:07:40 +0000380 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000381 break;
382 }
Duraid Madina98d13782005-12-22 04:07:40 +0000383
384 if(ValToStore.Val) {
385 if(!StackPtr.Val) {
386 StackPtr = DAG.getRegister(IA64::r12, MVT::i64);
Duraid Madina98d13782005-12-22 04:07:40 +0000387 }
388 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
389 PtrOff = DAG.getNode(ISD::ADD, MVT::i64, StackPtr, PtrOff);
Evan Cheng8b2794a2006-10-13 21:14:26 +0000390 Stores.push_back(DAG.getStore(Chain, ValToStore, PtrOff, NULL, 0));
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000391 ArgOffset += ObjSize;
Duraid Madina98d13782005-12-22 04:07:40 +0000392 }
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000393
394 if(ValToConvert.Val) {
395 Converts.push_back(DAG.getNode(IA64ISD::GETFD, MVT::i64, ValToConvert));
396 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000397 }
398
Duraid Madina98d13782005-12-22 04:07:40 +0000399 // Emit all stores, make sure they occur before any copies into physregs.
400 if (!Stores.empty())
Chris Lattnere2199452006-08-11 17:38:39 +0000401 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Stores[0],Stores.size());
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000402
Duraid Madina98d13782005-12-22 04:07:40 +0000403 static const unsigned IntArgRegs[] = {
404 IA64::out0, IA64::out1, IA64::out2, IA64::out3,
405 IA64::out4, IA64::out5, IA64::out6, IA64::out7
406 };
407
408 static const unsigned FPArgRegs[] = {
409 IA64::F8, IA64::F9, IA64::F10, IA64::F11,
410 IA64::F12, IA64::F13, IA64::F14, IA64::F15
411 };
412
413 SDOperand InFlag;
414
415 // save the current GP, SP and RP : FIXME: do we need to do all 3 always?
416 SDOperand GPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r1, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000417 Chain = GPBeforeCall.getValue(1);
418 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000419 SDOperand SPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r12, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000420 Chain = SPBeforeCall.getValue(1);
421 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000422 SDOperand RPBeforeCall = DAG.getCopyFromReg(Chain, IA64::rp, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000423 Chain = RPBeforeCall.getValue(1);
424 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000425
426 // Build a sequence of copy-to-reg nodes chained together with token chain
427 // and flag operands which copy the outgoing integer args into regs out[0-7]
428 // mapped 1:1 and the FP args into regs F8-F15 "lazily"
429 // TODO: for performance, we should only copy FP args into int regs when we
430 // know this is required (i.e. for varardic or external (unknown) functions)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000431
432 // first to the FP->(integer representation) conversions, these are
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000433 // flagged for now, but shouldn't have to be (TODO)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000434 unsigned seenConverts = 0;
435 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
436 if(MVT::isFloatingPoint(RegValuesToPass[i].getValueType())) {
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000437 Chain = DAG.getCopyToReg(Chain, IntArgRegs[i], Converts[seenConverts++], InFlag);
438 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000439 }
440 }
441
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000442 // next copy args into the usual places, these are flagged
Duraid Madina98d13782005-12-22 04:07:40 +0000443 unsigned usedFPArgs = 0;
444 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
445 Chain = DAG.getCopyToReg(Chain,
446 MVT::isInteger(RegValuesToPass[i].getValueType()) ?
447 IntArgRegs[i] : FPArgRegs[usedFPArgs++],
448 RegValuesToPass[i], InFlag);
449 InFlag = Chain.getValue(1);
Duraid Madina98d13782005-12-22 04:07:40 +0000450 }
451
Duraid Madina98d13782005-12-22 04:07:40 +0000452 // If the callee is a GlobalAddress node (quite common, every direct call is)
453 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000454/*
455 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Duraid Madina98d13782005-12-22 04:07:40 +0000456 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i64);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000457 }
458*/
Duraid Madina98d13782005-12-22 04:07:40 +0000459
460 std::vector<MVT::ValueType> NodeTys;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000461 std::vector<SDOperand> CallOperands;
Duraid Madina98d13782005-12-22 04:07:40 +0000462 NodeTys.push_back(MVT::Other); // Returns a chain
463 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000464 CallOperands.push_back(Chain);
465 CallOperands.push_back(Callee);
466
467 // emit the call itself
Duraid Madina98d13782005-12-22 04:07:40 +0000468 if (InFlag.Val)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000469 CallOperands.push_back(InFlag);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000470 else
471 assert(0 && "this should never happen!\n");
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000472
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000473 // to make way for a hack:
Chris Lattnere0e42d42006-08-11 17:21:12 +0000474 Chain = DAG.getNode(IA64ISD::BRCALL, NodeTys,
475 &CallOperands[0], CallOperands.size());
Duraid Madina98d13782005-12-22 04:07:40 +0000476 InFlag = Chain.getValue(1);
477
478 // restore the GP, SP and RP after the call
479 Chain = DAG.getCopyToReg(Chain, IA64::r1, GPBeforeCall, InFlag);
480 InFlag = Chain.getValue(1);
481 Chain = DAG.getCopyToReg(Chain, IA64::r12, SPBeforeCall, InFlag);
482 InFlag = Chain.getValue(1);
483 Chain = DAG.getCopyToReg(Chain, IA64::rp, RPBeforeCall, InFlag);
484 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000485
486 std::vector<MVT::ValueType> RetVals;
487 RetVals.push_back(MVT::Other);
488 RetVals.push_back(MVT::Flag);
489
Duraid Madina98d13782005-12-22 04:07:40 +0000490 MVT::ValueType RetTyVT = getValueType(RetTy);
491 SDOperand RetVal;
492 if (RetTyVT != MVT::isVoid) {
493 switch (RetTyVT) {
Duraid Madinae7916e62006-01-19 08:31:51 +0000494 default: assert(0 && "Unknown value type to return!");
Duraid Madinac1d3d102006-01-10 05:08:25 +0000495 case MVT::i1: { // bools are just like other integers (returned in r8)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000496 // we *could* fall through to the truncate below, but this saves a
497 // few redundant predicate ops
Duraid Madina98d13782005-12-22 04:07:40 +0000498 SDOperand boolInR8 = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
Duraid Madinac1d3d102006-01-10 05:08:25 +0000499 InFlag = boolInR8.getValue(2);
500 Chain = boolInR8.getValue(1);
501 SDOperand zeroReg = DAG.getCopyFromReg(Chain, IA64::r0, MVT::i64, InFlag);
502 InFlag = zeroReg.getValue(2);
503 Chain = zeroReg.getValue(1);
504
Duraid Madina15d014b2006-01-10 05:26:01 +0000505 RetVal = DAG.getSetCC(MVT::i1, boolInR8, zeroReg, ISD::SETNE);
Duraid Madina98d13782005-12-22 04:07:40 +0000506 break;
Duraid Madinac1d3d102006-01-10 05:08:25 +0000507 }
Duraid Madina98d13782005-12-22 04:07:40 +0000508 case MVT::i8:
509 case MVT::i16:
510 case MVT::i32:
511 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
512 Chain = RetVal.getValue(1);
513
Duraid Madinae7916e62006-01-19 08:31:51 +0000514 // keep track of whether it is sign or zero extended (todo: bools?)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000515/* XXX
Duraid Madina98d13782005-12-22 04:07:40 +0000516 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
517 MVT::i64, RetVal, DAG.getValueType(RetTyVT));
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000518*/
Duraid Madina98d13782005-12-22 04:07:40 +0000519 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
Duraid Madina98b3a832005-12-22 06:39:57 +0000520 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000521 case MVT::i64:
522 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
523 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000524 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000525 break;
Duraid Madinae7916e62006-01-19 08:31:51 +0000526 case MVT::f32:
527 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
528 Chain = RetVal.getValue(1);
529 RetVal = DAG.getNode(ISD::TRUNCATE, MVT::f32, RetVal);
530 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000531 case MVT::f64:
532 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
533 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000534 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000535 break;
536 }
537 }
538
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000539 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
540 DAG.getConstant(NumBytes, getPointerTy()));
Duraid Madina98d13782005-12-22 04:07:40 +0000541
542 return std::make_pair(RetVal, Chain);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000543}
544
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000545std::pair<SDOperand, SDOperand> IA64TargetLowering::
546LowerFrameReturnAddress(bool isFrameAddress, SDOperand Chain, unsigned Depth,
547 SelectionDAG &DAG) {
548 assert(0 && "LowerFrameReturnAddress unimplemented");
549 abort();
550}
551
Duraid Madinabea99472006-01-20 20:24:31 +0000552SDOperand IA64TargetLowering::
553LowerOperation(SDOperand Op, SelectionDAG &DAG) {
554 switch (Op.getOpcode()) {
555 default: assert(0 && "Should not custom lower this!");
Nate Begemanee625572006-01-27 21:09:22 +0000556 case ISD::RET: {
557 SDOperand AR_PFSVal, Copy;
Duraid Madinabea99472006-01-20 20:24:31 +0000558
Nate Begemanee625572006-01-27 21:09:22 +0000559 switch(Op.getNumOperands()) {
560 default:
561 assert(0 && "Do not know how to return this many arguments!");
562 abort();
563 case 1:
564 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), VirtGPR, MVT::i64);
565 AR_PFSVal = DAG.getCopyToReg(AR_PFSVal.getValue(1), IA64::AR_PFS,
566 AR_PFSVal);
567 return DAG.getNode(IA64ISD::RET_FLAG, MVT::Other, AR_PFSVal);
Evan Cheng6848be12006-05-26 23:10:12 +0000568 case 3: {
Nate Begemanee625572006-01-27 21:09:22 +0000569 // Copy the result into the output register & restore ar.pfs
570 MVT::ValueType ArgVT = Op.getOperand(1).getValueType();
571 unsigned ArgReg = MVT::isInteger(ArgVT) ? IA64::r8 : IA64::F8;
Duraid Madinabea99472006-01-20 20:24:31 +0000572
Nate Begemanee625572006-01-27 21:09:22 +0000573 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), VirtGPR, MVT::i64);
574 Copy = DAG.getCopyToReg(AR_PFSVal.getValue(1), ArgReg, Op.getOperand(1),
575 SDOperand());
576 AR_PFSVal = DAG.getCopyToReg(Copy.getValue(0), IA64::AR_PFS, AR_PFSVal,
577 Copy.getValue(1));
Evan Cheng4b790572006-08-16 07:28:58 +0000578 return DAG.getNode(IA64ISD::RET_FLAG, MVT::Other,
579 AR_PFSVal, AR_PFSVal.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000580 }
581 }
582 return SDOperand();
Duraid Madinabea99472006-01-20 20:24:31 +0000583 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000584 case ISD::VAARG: {
585 MVT::ValueType VT = getPointerTy();
Evan Cheng466685d2006-10-09 20:57:25 +0000586 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +0000587 SDOperand VAList = DAG.getLoad(VT, Op.getOperand(0), Op.getOperand(1),
Evan Cheng466685d2006-10-09 20:57:25 +0000588 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +0000589 // Increment the pointer, VAList, to the next vaarg
590 SDOperand VAIncr = DAG.getNode(ISD::ADD, VT, VAList,
591 DAG.getConstant(MVT::getSizeInBits(VT)/8,
592 VT));
593 // Store the incremented VAList to the legalized pointer
Evan Cheng786225a2006-10-05 23:01:46 +0000594 VAIncr = DAG.getStore(VAList.getValue(1), VAIncr,
Evan Cheng8b2794a2006-10-13 21:14:26 +0000595 Op.getOperand(1), SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +0000596 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +0000597 return DAG.getLoad(Op.getValueType(), VAIncr, VAList, NULL, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +0000598 }
599 case ISD::VASTART: {
600 // vastart just stores the address of the VarArgsFrameIndex slot into the
601 // memory location argument.
602 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i64);
Evan Cheng8b2794a2006-10-13 21:14:26 +0000603 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
Evan Cheng786225a2006-10-05 23:01:46 +0000604 return DAG.getStore(Op.getOperand(0), FR,
Evan Cheng8b2794a2006-10-13 21:14:26 +0000605 Op.getOperand(1), SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +0000606 }
Duraid Madinabea99472006-01-20 20:24:31 +0000607 }
608}