blob: 780cb08dd238a4acd9e9a7c38c8cca21916c1ccc [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
38 setOperationAction(ISD::BRCONDTWOWAY , MVT::Other, Expand);
39 setOperationAction(ISD::BRTWOWAY_CC , MVT::Other, Expand);
40 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
41
Duraid Madinabea99472006-01-20 20:24:31 +000042 // We need to handle ISD::RET for void functions ourselves,
43 // so we get a chance to restore ar.pfs before adding a
44 // br.ret insn
45 setOperationAction(ISD::RET, MVT::Other, Custom);
46
Duraid Madinaf2db9b82005-10-28 17:46:35 +000047 setSetCCResultType(MVT::i1);
48 setShiftAmountType(MVT::i64);
49
50 setOperationAction(ISD::EXTLOAD , MVT::i1 , Promote);
51
52 setOperationAction(ISD::ZEXTLOAD , MVT::i1 , Expand);
53
54 setOperationAction(ISD::SEXTLOAD , MVT::i1 , Expand);
55 setOperationAction(ISD::SEXTLOAD , MVT::i8 , Expand);
56 setOperationAction(ISD::SEXTLOAD , MVT::i16 , Expand);
57 setOperationAction(ISD::SEXTLOAD , MVT::i32 , Expand);
58
59 setOperationAction(ISD::FREM , MVT::f32 , Expand);
60 setOperationAction(ISD::FREM , MVT::f64 , Expand);
61
62 setOperationAction(ISD::UREM , MVT::f32 , Expand);
63 setOperationAction(ISD::UREM , MVT::f64 , Expand);
64
65 setOperationAction(ISD::MEMMOVE , MVT::Other, Expand);
66 setOperationAction(ISD::MEMSET , MVT::Other, Expand);
67 setOperationAction(ISD::MEMCPY , MVT::Other, Expand);
68
69 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
70 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
71
72 // We don't support sin/cos/sqrt
73 setOperationAction(ISD::FSIN , MVT::f64, Expand);
74 setOperationAction(ISD::FCOS , MVT::f64, Expand);
75 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
76 setOperationAction(ISD::FSIN , MVT::f32, Expand);
77 setOperationAction(ISD::FCOS , MVT::f32, Expand);
78 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
79
Chris Lattnerf73bae12005-11-29 06:16:21 +000080 // We don't have line number support yet.
81 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +000082 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
83 setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand);
Chris Lattnerf73bae12005-11-29 06:16:21 +000084
Duraid Madinaf2db9b82005-10-28 17:46:35 +000085 //IA64 has these, but they are not implemented
86 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
87 setOperationAction(ISD::CTLZ , MVT::i64 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +000088 setOperationAction(ISD::ROTL , MVT::i64 , Expand);
89 setOperationAction(ISD::ROTR , MVT::i64 , Expand);
Nate Begemand88fc032006-01-14 03:14:10 +000090 setOperationAction(ISD::BSWAP, MVT::i64 , Expand); // mux @rev
Duraid Madinaf2db9b82005-10-28 17:46:35 +000091
Nate Begemanacc398c2006-01-25 18:21:52 +000092 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
93 setOperationAction(ISD::VAARG , MVT::Other, Custom);
94 setOperationAction(ISD::VASTART , MVT::Other, Custom);
95
96 // Use the default implementation.
97 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
98 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Chris Lattner33f79df2006-01-13 02:40:58 +000099 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
100 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Duraid Madina2e0348e2006-01-15 09:45:23 +0000101 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
102
103 setStackPointerRegisterToSaveRestore(IA64::r12);
Chris Lattner33f79df2006-01-13 02:40:58 +0000104
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000105 computeRegisterProperties();
106
107 addLegalFPImmediate(+0.0);
108 addLegalFPImmediate(+1.0);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000109}
110
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000111const char *IA64TargetLowering::getTargetNodeName(unsigned Opcode) const {
112 switch (Opcode) {
113 default: return 0;
114 case IA64ISD::GETFD: return "IA64ISD::GETFD";
115 case IA64ISD::BRCALL: return "IA64ISD::BRCALL";
Duraid Madinabea99472006-01-20 20:24:31 +0000116 case IA64ISD::RET_FLAG: return "IA64ISD::RET_FLAG";
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000117 }
118}
119
120
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000121/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
122static bool isFloatingPointZero(SDOperand Op) {
123 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
124 return CFP->isExactlyValue(-0.0) || CFP->isExactlyValue(0.0);
125 else if (Op.getOpcode() == ISD::EXTLOAD || Op.getOpcode() == ISD::LOAD) {
126 // Maybe this has already been legalized into the constant pool?
127 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
128 if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->get()))
129 return CFP->isExactlyValue(-0.0) || CFP->isExactlyValue(0.0);
130 }
131 return false;
132}
133
134std::vector<SDOperand>
135IA64TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
136 std::vector<SDOperand> ArgValues;
137 //
138 // add beautiful description of IA64 stack frame format
139 // here (from intel 24535803.pdf most likely)
140 //
141 MachineFunction &MF = DAG.getMachineFunction();
142 MachineFrameInfo *MFI = MF.getFrameInfo();
143
144 GP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
145 SP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
146 RP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
147
148 MachineBasicBlock& BB = MF.front();
149
150 unsigned args_int[] = {IA64::r32, IA64::r33, IA64::r34, IA64::r35,
151 IA64::r36, IA64::r37, IA64::r38, IA64::r39};
152
153 unsigned args_FP[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
154 IA64::F12,IA64::F13,IA64::F14, IA64::F15};
155
156 unsigned argVreg[8];
157 unsigned argPreg[8];
158 unsigned argOpc[8];
159
160 unsigned used_FPArgs = 0; // how many FP args have been used so far?
161
162 unsigned ArgOffset = 0;
163 int count = 0;
164
165 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
166 {
167 SDOperand newroot, argt;
168 if(count < 8) { // need to fix this logic? maybe.
169
170 switch (getValueType(I->getType())) {
171 default:
172 assert(0 && "ERROR in LowerArgs: can't lower this type of arg.\n");
173 case MVT::f32:
174 // fixme? (well, will need to for weird FP structy stuff,
175 // see intel ABI docs)
176 case MVT::f64:
177//XXX BuildMI(&BB, IA64::IDEF, 0, args_FP[used_FPArgs]);
178 MF.addLiveIn(args_FP[used_FPArgs]); // mark this reg as liveIn
179 // floating point args go into f8..f15 as-needed, the increment
180 argVreg[count] = // is below..:
181 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::f64));
182 // FP args go into f8..f15 as needed: (hence the ++)
183 argPreg[count] = args_FP[used_FPArgs++];
184 argOpc[count] = IA64::FMOV;
185 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(), argVreg[count],
186 MVT::f64);
187 if (I->getType() == Type::FloatTy)
188 argt = DAG.getNode(ISD::FP_ROUND, MVT::f32, argt);
189 break;
190 case MVT::i1: // NOTE: as far as C abi stuff goes,
191 // bools are just boring old ints
192 case MVT::i8:
193 case MVT::i16:
194 case MVT::i32:
195 case MVT::i64:
196//XXX BuildMI(&BB, IA64::IDEF, 0, args_int[count]);
197 MF.addLiveIn(args_int[count]); // mark this register as liveIn
198 argVreg[count] =
199 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
200 argPreg[count] = args_int[count];
201 argOpc[count] = IA64::MOV;
202 argt = newroot =
203 DAG.getCopyFromReg(DAG.getRoot(), argVreg[count], MVT::i64);
204 if ( getValueType(I->getType()) != MVT::i64)
205 argt = DAG.getNode(ISD::TRUNCATE, getValueType(I->getType()),
206 newroot);
207 break;
208 }
209 } else { // more than 8 args go into the frame
210 // Create the frame index object for this incoming parameter...
211 ArgOffset = 16 + 8 * (count - 8);
212 int FI = MFI->CreateFixedObject(8, ArgOffset);
213
214 // Create the SelectionDAG nodes corresponding to a load
215 //from this parameter
216 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i64);
217 argt = newroot = DAG.getLoad(getValueType(I->getType()),
218 DAG.getEntryNode(), FIN, DAG.getSrcValue(NULL));
219 }
220 ++count;
221 DAG.setRoot(newroot.getValue(1));
222 ArgValues.push_back(argt);
223 }
224
225
226 // Create a vreg to hold the output of (what will become)
227 // the "alloc" instruction
228 VirtGPR = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
229 BuildMI(&BB, IA64::PSEUDO_ALLOC, 0, VirtGPR);
230 // we create a PSEUDO_ALLOC (pseudo)instruction for now
Duraid Madinab97cc992005-11-04 10:01:10 +0000231/*
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000232 BuildMI(&BB, IA64::IDEF, 0, IA64::r1);
233
234 // hmm:
235 BuildMI(&BB, IA64::IDEF, 0, IA64::r12);
236 BuildMI(&BB, IA64::IDEF, 0, IA64::rp);
237 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000238
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000239 BuildMI(&BB, IA64::MOV, 1, GP).addReg(IA64::r1);
240
241 // hmm:
242 BuildMI(&BB, IA64::MOV, 1, SP).addReg(IA64::r12);
243 BuildMI(&BB, IA64::MOV, 1, RP).addReg(IA64::rp);
244 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000245*/
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000246
247 unsigned tempOffset=0;
248
249 // if this is a varargs function, we simply lower llvm.va_start by
250 // pointing to the first entry
251 if(F.isVarArg()) {
252 tempOffset=0;
253 VarArgsFrameIndex = MFI->CreateFixedObject(8, tempOffset);
254 }
255
256 // here we actually do the moving of args, and store them to the stack
257 // too if this is a varargs function:
258 for (int i = 0; i < count && i < 8; ++i) {
259 BuildMI(&BB, argOpc[i], 1, argVreg[i]).addReg(argPreg[i]);
260 if(F.isVarArg()) {
261 // if this is a varargs function, we copy the input registers to the stack
262 int FI = MFI->CreateFixedObject(8, tempOffset);
263 tempOffset+=8; //XXX: is it safe to use r22 like this?
264 BuildMI(&BB, IA64::MOV, 1, IA64::r22).addFrameIndex(FI);
265 // FIXME: we should use st8.spill here, one day
266 BuildMI(&BB, IA64::ST8, 1, IA64::r22).addReg(argPreg[i]);
267 }
268 }
269
270 // Finally, inform the code generator which regs we return values in.
271 // (see the ISD::RET: case in the instruction selector)
272 switch (getValueType(F.getReturnType())) {
273 default: assert(0 && "i have no idea where to return this type!");
274 case MVT::isVoid: break;
275 case MVT::i1:
276 case MVT::i8:
277 case MVT::i16:
278 case MVT::i32:
279 case MVT::i64:
280 MF.addLiveOut(IA64::r8);
281 break;
282 case MVT::f32:
283 case MVT::f64:
284 MF.addLiveOut(IA64::F8);
285 break;
286 }
287
288 return ArgValues;
289}
290
291std::pair<SDOperand, SDOperand>
292IA64TargetLowering::LowerCallTo(SDOperand Chain,
293 const Type *RetTy, bool isVarArg,
294 unsigned CallingConv, bool isTailCall,
295 SDOperand Callee, ArgListTy &Args,
296 SelectionDAG &DAG) {
297
298 MachineFunction &MF = DAG.getMachineFunction();
299
300 unsigned NumBytes = 16;
301 unsigned outRegsUsed = 0;
302
303 if (Args.size() > 8) {
304 NumBytes += (Args.size() - 8) * 8;
305 outRegsUsed = 8;
306 } else {
307 outRegsUsed = Args.size();
308 }
309
310 // FIXME? this WILL fail if we ever try to pass around an arg that
311 // consumes more than a single output slot (a 'real' double, int128
312 // some sort of aggregate etc.), as we'll underestimate how many 'outX'
313 // registers we use. Hopefully, the assembler will notice.
314 MF.getInfo<IA64FunctionInfo>()->outRegsUsed=
315 std::max(outRegsUsed, MF.getInfo<IA64FunctionInfo>()->outRegsUsed);
316
Duraid Madina98d13782005-12-22 04:07:40 +0000317 // keep stack frame 16-byte aligned
318 //assert(NumBytes==((NumBytes+15) & ~15) && "stack frame not 16-byte aligned!");
319 NumBytes = (NumBytes+15) & ~15;
320
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000321 Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
322 DAG.getConstant(NumBytes, getPointerTy()));
323
Duraid Madina98d13782005-12-22 04:07:40 +0000324 SDOperand StackPtr, NullSV;
325 std::vector<SDOperand> Stores;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000326 std::vector<SDOperand> Converts;
Duraid Madina98d13782005-12-22 04:07:40 +0000327 std::vector<SDOperand> RegValuesToPass;
328 unsigned ArgOffset = 16;
329
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000330 for (unsigned i = 0, e = Args.size(); i != e; ++i)
331 {
Duraid Madina98d13782005-12-22 04:07:40 +0000332 SDOperand Val = Args[i].first;
333 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercd618ef2006-01-10 19:45:18 +0000334 SDOperand ValToStore(0, 0), ValToConvert(0, 0);
Duraid Madina98d13782005-12-22 04:07:40 +0000335 unsigned ObjSize=8;
336 switch (ObjectVT) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000337 default: assert(0 && "unexpected argument type!");
338 case MVT::i1:
339 case MVT::i8:
340 case MVT::i16:
341 case MVT::i32:
342 //promote to 64-bits, sign/zero extending based on type
343 //of the argument
344 if(Args[i].second->isSigned())
Duraid Madina98d13782005-12-22 04:07:40 +0000345 Val = DAG.getNode(ISD::SIGN_EXTEND, MVT::i64, Val);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000346 else
Duraid Madina98d13782005-12-22 04:07:40 +0000347 Val = DAG.getNode(ISD::ZERO_EXTEND, MVT::i64, Val);
348 // XXX: fall through
349 case MVT::i64:
350 //ObjSize = 8;
351 if(RegValuesToPass.size() >= 8) {
352 ValToStore = Val;
353 } else {
354 RegValuesToPass.push_back(Val);
355 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000356 break;
357 case MVT::f32:
358 //promote to 64-bits
Duraid Madina98d13782005-12-22 04:07:40 +0000359 Val = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Val);
360 // XXX: fall through
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000361 case MVT::f64:
Duraid Madina98d13782005-12-22 04:07:40 +0000362 if(RegValuesToPass.size() >= 8) {
363 ValToStore = Val;
364 } else {
365 RegValuesToPass.push_back(Val);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000366 if(1 /* TODO: if(calling external or varadic function)*/ ) {
367 ValToConvert = Val; // additionally pass this FP value as an int
368 }
Duraid Madina98d13782005-12-22 04:07:40 +0000369 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000370 break;
371 }
Duraid Madina98d13782005-12-22 04:07:40 +0000372
373 if(ValToStore.Val) {
374 if(!StackPtr.Val) {
375 StackPtr = DAG.getRegister(IA64::r12, MVT::i64);
376 NullSV = DAG.getSrcValue(NULL);
377 }
378 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
379 PtrOff = DAG.getNode(ISD::ADD, MVT::i64, StackPtr, PtrOff);
380 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
381 ValToStore, PtrOff, NullSV));
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000382 ArgOffset += ObjSize;
Duraid Madina98d13782005-12-22 04:07:40 +0000383 }
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000384
385 if(ValToConvert.Val) {
386 Converts.push_back(DAG.getNode(IA64ISD::GETFD, MVT::i64, ValToConvert));
387 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000388 }
389
Duraid Madina98d13782005-12-22 04:07:40 +0000390 // Emit all stores, make sure they occur before any copies into physregs.
391 if (!Stores.empty())
392 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000393
Duraid Madina98d13782005-12-22 04:07:40 +0000394 static const unsigned IntArgRegs[] = {
395 IA64::out0, IA64::out1, IA64::out2, IA64::out3,
396 IA64::out4, IA64::out5, IA64::out6, IA64::out7
397 };
398
399 static const unsigned FPArgRegs[] = {
400 IA64::F8, IA64::F9, IA64::F10, IA64::F11,
401 IA64::F12, IA64::F13, IA64::F14, IA64::F15
402 };
403
404 SDOperand InFlag;
405
406 // save the current GP, SP and RP : FIXME: do we need to do all 3 always?
407 SDOperand GPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r1, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000408 Chain = GPBeforeCall.getValue(1);
409 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000410 SDOperand SPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r12, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000411 Chain = SPBeforeCall.getValue(1);
412 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000413 SDOperand RPBeforeCall = DAG.getCopyFromReg(Chain, IA64::rp, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000414 Chain = RPBeforeCall.getValue(1);
415 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000416
417 // Build a sequence of copy-to-reg nodes chained together with token chain
418 // and flag operands which copy the outgoing integer args into regs out[0-7]
419 // mapped 1:1 and the FP args into regs F8-F15 "lazily"
420 // TODO: for performance, we should only copy FP args into int regs when we
421 // know this is required (i.e. for varardic or external (unknown) functions)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000422
423 // first to the FP->(integer representation) conversions, these are
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000424 // flagged for now, but shouldn't have to be (TODO)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000425 unsigned seenConverts = 0;
426 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
427 if(MVT::isFloatingPoint(RegValuesToPass[i].getValueType())) {
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000428 Chain = DAG.getCopyToReg(Chain, IntArgRegs[i], Converts[seenConverts++], InFlag);
429 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000430 }
431 }
432
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000433 // next copy args into the usual places, these are flagged
Duraid Madina98d13782005-12-22 04:07:40 +0000434 unsigned usedFPArgs = 0;
435 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
436 Chain = DAG.getCopyToReg(Chain,
437 MVT::isInteger(RegValuesToPass[i].getValueType()) ?
438 IntArgRegs[i] : FPArgRegs[usedFPArgs++],
439 RegValuesToPass[i], InFlag);
440 InFlag = Chain.getValue(1);
Duraid Madina98d13782005-12-22 04:07:40 +0000441 }
442
Duraid Madina98d13782005-12-22 04:07:40 +0000443 // If the callee is a GlobalAddress node (quite common, every direct call is)
444 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000445/*
446 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Duraid Madina98d13782005-12-22 04:07:40 +0000447 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i64);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000448 }
449*/
Duraid Madina98d13782005-12-22 04:07:40 +0000450
451 std::vector<MVT::ValueType> NodeTys;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000452 std::vector<SDOperand> CallOperands;
Duraid Madina98d13782005-12-22 04:07:40 +0000453 NodeTys.push_back(MVT::Other); // Returns a chain
454 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000455 CallOperands.push_back(Chain);
456 CallOperands.push_back(Callee);
457
458 // emit the call itself
Duraid Madina98d13782005-12-22 04:07:40 +0000459 if (InFlag.Val)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000460 CallOperands.push_back(InFlag);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000461 else
462 assert(0 && "this should never happen!\n");
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000463
464/* out with the old...
Duraid Madina98d13782005-12-22 04:07:40 +0000465 Chain = SDOperand(DAG.getCall(NodeTys, Chain, Callee, InFlag), 0);
466 else
467 Chain = SDOperand(DAG.getCall(NodeTys, Chain, Callee), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000468*/
469 // to make way for a hack:
470 Chain = DAG.getNode(IA64ISD::BRCALL, NodeTys, CallOperands);
Duraid Madina98d13782005-12-22 04:07:40 +0000471 InFlag = Chain.getValue(1);
472
473 // restore the GP, SP and RP after the call
474 Chain = DAG.getCopyToReg(Chain, IA64::r1, GPBeforeCall, InFlag);
475 InFlag = Chain.getValue(1);
476 Chain = DAG.getCopyToReg(Chain, IA64::r12, SPBeforeCall, InFlag);
477 InFlag = Chain.getValue(1);
478 Chain = DAG.getCopyToReg(Chain, IA64::rp, RPBeforeCall, InFlag);
479 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000480
481 std::vector<MVT::ValueType> RetVals;
482 RetVals.push_back(MVT::Other);
483 RetVals.push_back(MVT::Flag);
484
Duraid Madina98d13782005-12-22 04:07:40 +0000485 MVT::ValueType RetTyVT = getValueType(RetTy);
486 SDOperand RetVal;
487 if (RetTyVT != MVT::isVoid) {
488 switch (RetTyVT) {
Duraid Madinae7916e62006-01-19 08:31:51 +0000489 default: assert(0 && "Unknown value type to return!");
Duraid Madinac1d3d102006-01-10 05:08:25 +0000490 case MVT::i1: { // bools are just like other integers (returned in r8)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000491 // we *could* fall through to the truncate below, but this saves a
492 // few redundant predicate ops
Duraid Madina98d13782005-12-22 04:07:40 +0000493 SDOperand boolInR8 = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
Duraid Madinac1d3d102006-01-10 05:08:25 +0000494 InFlag = boolInR8.getValue(2);
495 Chain = boolInR8.getValue(1);
496 SDOperand zeroReg = DAG.getCopyFromReg(Chain, IA64::r0, MVT::i64, InFlag);
497 InFlag = zeroReg.getValue(2);
498 Chain = zeroReg.getValue(1);
499
Duraid Madina15d014b2006-01-10 05:26:01 +0000500 RetVal = DAG.getSetCC(MVT::i1, boolInR8, zeroReg, ISD::SETNE);
Duraid Madina98d13782005-12-22 04:07:40 +0000501 break;
Duraid Madinac1d3d102006-01-10 05:08:25 +0000502 }
Duraid Madina98d13782005-12-22 04:07:40 +0000503 case MVT::i8:
504 case MVT::i16:
505 case MVT::i32:
506 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
507 Chain = RetVal.getValue(1);
508
Duraid Madinae7916e62006-01-19 08:31:51 +0000509 // keep track of whether it is sign or zero extended (todo: bools?)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000510/* XXX
Duraid Madina98d13782005-12-22 04:07:40 +0000511 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
512 MVT::i64, RetVal, DAG.getValueType(RetTyVT));
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000513*/
Duraid Madina98d13782005-12-22 04:07:40 +0000514 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
Duraid Madina98b3a832005-12-22 06:39:57 +0000515 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000516 case MVT::i64:
517 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
518 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000519 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000520 break;
Duraid Madinae7916e62006-01-19 08:31:51 +0000521 case MVT::f32:
522 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
523 Chain = RetVal.getValue(1);
524 RetVal = DAG.getNode(ISD::TRUNCATE, MVT::f32, RetVal);
525 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000526 case MVT::f64:
527 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
528 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000529 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000530 break;
531 }
532 }
533
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000534 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
535 DAG.getConstant(NumBytes, getPointerTy()));
Duraid Madina98d13782005-12-22 04:07:40 +0000536
537 return std::make_pair(RetVal, Chain);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000538}
539
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000540std::pair<SDOperand, SDOperand> IA64TargetLowering::
541LowerFrameReturnAddress(bool isFrameAddress, SDOperand Chain, unsigned Depth,
542 SelectionDAG &DAG) {
543 assert(0 && "LowerFrameReturnAddress unimplemented");
544 abort();
545}
546
Duraid Madinabea99472006-01-20 20:24:31 +0000547SDOperand IA64TargetLowering::
548LowerOperation(SDOperand Op, SelectionDAG &DAG) {
549 switch (Op.getOpcode()) {
550 default: assert(0 && "Should not custom lower this!");
Nate Begemanee625572006-01-27 21:09:22 +0000551 case ISD::RET: {
552 SDOperand AR_PFSVal, Copy;
Duraid Madinabea99472006-01-20 20:24:31 +0000553
Nate Begemanee625572006-01-27 21:09:22 +0000554 switch(Op.getNumOperands()) {
555 default:
556 assert(0 && "Do not know how to return this many arguments!");
557 abort();
558 case 1:
559 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), VirtGPR, MVT::i64);
560 AR_PFSVal = DAG.getCopyToReg(AR_PFSVal.getValue(1), IA64::AR_PFS,
561 AR_PFSVal);
562 return DAG.getNode(IA64ISD::RET_FLAG, MVT::Other, AR_PFSVal);
563 case 2: {
564 // Copy the result into the output register & restore ar.pfs
565 MVT::ValueType ArgVT = Op.getOperand(1).getValueType();
566 unsigned ArgReg = MVT::isInteger(ArgVT) ? IA64::r8 : IA64::F8;
Duraid Madinabea99472006-01-20 20:24:31 +0000567
Nate Begemanee625572006-01-27 21:09:22 +0000568 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), VirtGPR, MVT::i64);
569 Copy = DAG.getCopyToReg(AR_PFSVal.getValue(1), ArgReg, Op.getOperand(1),
570 SDOperand());
571 AR_PFSVal = DAG.getCopyToReg(Copy.getValue(0), IA64::AR_PFS, AR_PFSVal,
572 Copy.getValue(1));
573 std::vector<MVT::ValueType> NodeTys;
574 std::vector<SDOperand> RetOperands;
575 NodeTys.push_back(MVT::Other);
576 NodeTys.push_back(MVT::Flag);
577 RetOperands.push_back(AR_PFSVal);
578 RetOperands.push_back(AR_PFSVal.getValue(1));
579 return DAG.getNode(IA64ISD::RET_FLAG, NodeTys, RetOperands);
580 }
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();
586 SDOperand VAList = DAG.getLoad(VT, Op.getOperand(0), Op.getOperand(1),
587 Op.getOperand(2));
588 // Increment the pointer, VAList, to the next vaarg
589 SDOperand VAIncr = DAG.getNode(ISD::ADD, VT, VAList,
590 DAG.getConstant(MVT::getSizeInBits(VT)/8,
591 VT));
592 // Store the incremented VAList to the legalized pointer
593 VAIncr = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), VAIncr,
594 Op.getOperand(1), Op.getOperand(2));
595 // Load the actual argument out of the pointer VAList
596 return DAG.getLoad(VT, VAIncr, VAList, DAG.getSrcValue(0));
597 }
598 case ISD::VASTART: {
599 // vastart just stores the address of the VarArgsFrameIndex slot into the
600 // memory location argument.
601 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i64);
602 return DAG.getNode(ISD::STORE, MVT::Other, Op.getOperand(0), FR,
603 Op.getOperand(1), Op.getOperand(2));
604 }
Duraid Madinabea99472006-01-20 20:24:31 +0000605 }
606}