blob: 11b95c4e02e2591baf8900e7103a75f1536da4d1 [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
Chris Lattnera54aa942006-01-29 06:26:08 +0000107 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000108 addLegalFPImmediate(+0.0);
109 addLegalFPImmediate(+1.0);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000110}
111
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000112const char *IA64TargetLowering::getTargetNodeName(unsigned Opcode) const {
113 switch (Opcode) {
114 default: return 0;
115 case IA64ISD::GETFD: return "IA64ISD::GETFD";
116 case IA64ISD::BRCALL: return "IA64ISD::BRCALL";
Duraid Madinabea99472006-01-20 20:24:31 +0000117 case IA64ISD::RET_FLAG: return "IA64ISD::RET_FLAG";
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000118 }
119}
120
121
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000122/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
123static bool isFloatingPointZero(SDOperand Op) {
124 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
125 return CFP->isExactlyValue(-0.0) || CFP->isExactlyValue(0.0);
126 else if (Op.getOpcode() == ISD::EXTLOAD || Op.getOpcode() == ISD::LOAD) {
127 // Maybe this has already been legalized into the constant pool?
128 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
129 if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->get()))
130 return CFP->isExactlyValue(-0.0) || CFP->isExactlyValue(0.0);
131 }
132 return false;
133}
134
135std::vector<SDOperand>
136IA64TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
137 std::vector<SDOperand> ArgValues;
138 //
139 // add beautiful description of IA64 stack frame format
140 // here (from intel 24535803.pdf most likely)
141 //
142 MachineFunction &MF = DAG.getMachineFunction();
143 MachineFrameInfo *MFI = MF.getFrameInfo();
144
145 GP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
146 SP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
147 RP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
148
149 MachineBasicBlock& BB = MF.front();
150
151 unsigned args_int[] = {IA64::r32, IA64::r33, IA64::r34, IA64::r35,
152 IA64::r36, IA64::r37, IA64::r38, IA64::r39};
153
154 unsigned args_FP[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
155 IA64::F12,IA64::F13,IA64::F14, IA64::F15};
156
157 unsigned argVreg[8];
158 unsigned argPreg[8];
159 unsigned argOpc[8];
160
161 unsigned used_FPArgs = 0; // how many FP args have been used so far?
162
163 unsigned ArgOffset = 0;
164 int count = 0;
165
166 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
167 {
168 SDOperand newroot, argt;
169 if(count < 8) { // need to fix this logic? maybe.
170
171 switch (getValueType(I->getType())) {
172 default:
173 assert(0 && "ERROR in LowerArgs: can't lower this type of arg.\n");
174 case MVT::f32:
175 // fixme? (well, will need to for weird FP structy stuff,
176 // see intel ABI docs)
177 case MVT::f64:
178//XXX BuildMI(&BB, IA64::IDEF, 0, args_FP[used_FPArgs]);
179 MF.addLiveIn(args_FP[used_FPArgs]); // mark this reg as liveIn
180 // floating point args go into f8..f15 as-needed, the increment
181 argVreg[count] = // is below..:
182 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::f64));
183 // FP args go into f8..f15 as needed: (hence the ++)
184 argPreg[count] = args_FP[used_FPArgs++];
185 argOpc[count] = IA64::FMOV;
186 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(), argVreg[count],
187 MVT::f64);
188 if (I->getType() == Type::FloatTy)
189 argt = DAG.getNode(ISD::FP_ROUND, MVT::f32, argt);
190 break;
191 case MVT::i1: // NOTE: as far as C abi stuff goes,
192 // bools are just boring old ints
193 case MVT::i8:
194 case MVT::i16:
195 case MVT::i32:
196 case MVT::i64:
197//XXX BuildMI(&BB, IA64::IDEF, 0, args_int[count]);
198 MF.addLiveIn(args_int[count]); // mark this register as liveIn
199 argVreg[count] =
200 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
201 argPreg[count] = args_int[count];
202 argOpc[count] = IA64::MOV;
203 argt = newroot =
204 DAG.getCopyFromReg(DAG.getRoot(), argVreg[count], MVT::i64);
205 if ( getValueType(I->getType()) != MVT::i64)
206 argt = DAG.getNode(ISD::TRUNCATE, getValueType(I->getType()),
207 newroot);
208 break;
209 }
210 } else { // more than 8 args go into the frame
211 // Create the frame index object for this incoming parameter...
212 ArgOffset = 16 + 8 * (count - 8);
213 int FI = MFI->CreateFixedObject(8, ArgOffset);
214
215 // Create the SelectionDAG nodes corresponding to a load
216 //from this parameter
217 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i64);
218 argt = newroot = DAG.getLoad(getValueType(I->getType()),
219 DAG.getEntryNode(), FIN, DAG.getSrcValue(NULL));
220 }
221 ++count;
222 DAG.setRoot(newroot.getValue(1));
223 ArgValues.push_back(argt);
224 }
225
226
227 // Create a vreg to hold the output of (what will become)
228 // the "alloc" instruction
229 VirtGPR = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
230 BuildMI(&BB, IA64::PSEUDO_ALLOC, 0, VirtGPR);
231 // we create a PSEUDO_ALLOC (pseudo)instruction for now
Duraid Madinab97cc992005-11-04 10:01:10 +0000232/*
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000233 BuildMI(&BB, IA64::IDEF, 0, IA64::r1);
234
235 // hmm:
236 BuildMI(&BB, IA64::IDEF, 0, IA64::r12);
237 BuildMI(&BB, IA64::IDEF, 0, IA64::rp);
238 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000239
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000240 BuildMI(&BB, IA64::MOV, 1, GP).addReg(IA64::r1);
241
242 // hmm:
243 BuildMI(&BB, IA64::MOV, 1, SP).addReg(IA64::r12);
244 BuildMI(&BB, IA64::MOV, 1, RP).addReg(IA64::rp);
245 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000246*/
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000247
248 unsigned tempOffset=0;
249
250 // if this is a varargs function, we simply lower llvm.va_start by
251 // pointing to the first entry
252 if(F.isVarArg()) {
253 tempOffset=0;
254 VarArgsFrameIndex = MFI->CreateFixedObject(8, tempOffset);
255 }
256
257 // here we actually do the moving of args, and store them to the stack
258 // too if this is a varargs function:
259 for (int i = 0; i < count && i < 8; ++i) {
260 BuildMI(&BB, argOpc[i], 1, argVreg[i]).addReg(argPreg[i]);
261 if(F.isVarArg()) {
262 // if this is a varargs function, we copy the input registers to the stack
263 int FI = MFI->CreateFixedObject(8, tempOffset);
264 tempOffset+=8; //XXX: is it safe to use r22 like this?
265 BuildMI(&BB, IA64::MOV, 1, IA64::r22).addFrameIndex(FI);
266 // FIXME: we should use st8.spill here, one day
267 BuildMI(&BB, IA64::ST8, 1, IA64::r22).addReg(argPreg[i]);
268 }
269 }
270
271 // Finally, inform the code generator which regs we return values in.
272 // (see the ISD::RET: case in the instruction selector)
273 switch (getValueType(F.getReturnType())) {
274 default: assert(0 && "i have no idea where to return this type!");
275 case MVT::isVoid: break;
276 case MVT::i1:
277 case MVT::i8:
278 case MVT::i16:
279 case MVT::i32:
280 case MVT::i64:
281 MF.addLiveOut(IA64::r8);
282 break;
283 case MVT::f32:
284 case MVT::f64:
285 MF.addLiveOut(IA64::F8);
286 break;
287 }
288
289 return ArgValues;
290}
291
292std::pair<SDOperand, SDOperand>
293IA64TargetLowering::LowerCallTo(SDOperand Chain,
294 const Type *RetTy, bool isVarArg,
295 unsigned CallingConv, bool isTailCall,
296 SDOperand Callee, ArgListTy &Args,
297 SelectionDAG &DAG) {
298
299 MachineFunction &MF = DAG.getMachineFunction();
300
301 unsigned NumBytes = 16;
302 unsigned outRegsUsed = 0;
303
304 if (Args.size() > 8) {
305 NumBytes += (Args.size() - 8) * 8;
306 outRegsUsed = 8;
307 } else {
308 outRegsUsed = Args.size();
309 }
310
311 // FIXME? this WILL fail if we ever try to pass around an arg that
312 // consumes more than a single output slot (a 'real' double, int128
313 // some sort of aggregate etc.), as we'll underestimate how many 'outX'
314 // registers we use. Hopefully, the assembler will notice.
315 MF.getInfo<IA64FunctionInfo>()->outRegsUsed=
316 std::max(outRegsUsed, MF.getInfo<IA64FunctionInfo>()->outRegsUsed);
317
Duraid Madina98d13782005-12-22 04:07:40 +0000318 // keep stack frame 16-byte aligned
319 //assert(NumBytes==((NumBytes+15) & ~15) && "stack frame not 16-byte aligned!");
320 NumBytes = (NumBytes+15) & ~15;
321
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000322 Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
323 DAG.getConstant(NumBytes, getPointerTy()));
324
Duraid Madina98d13782005-12-22 04:07:40 +0000325 SDOperand StackPtr, NullSV;
326 std::vector<SDOperand> Stores;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000327 std::vector<SDOperand> Converts;
Duraid Madina98d13782005-12-22 04:07:40 +0000328 std::vector<SDOperand> RegValuesToPass;
329 unsigned ArgOffset = 16;
330
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000331 for (unsigned i = 0, e = Args.size(); i != e; ++i)
332 {
Duraid Madina98d13782005-12-22 04:07:40 +0000333 SDOperand Val = Args[i].first;
334 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercd618ef2006-01-10 19:45:18 +0000335 SDOperand ValToStore(0, 0), ValToConvert(0, 0);
Duraid Madina98d13782005-12-22 04:07:40 +0000336 unsigned ObjSize=8;
337 switch (ObjectVT) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000338 default: assert(0 && "unexpected argument type!");
339 case MVT::i1:
340 case MVT::i8:
341 case MVT::i16:
342 case MVT::i32:
343 //promote to 64-bits, sign/zero extending based on type
344 //of the argument
345 if(Args[i].second->isSigned())
Duraid Madina98d13782005-12-22 04:07:40 +0000346 Val = DAG.getNode(ISD::SIGN_EXTEND, MVT::i64, Val);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000347 else
Duraid Madina98d13782005-12-22 04:07:40 +0000348 Val = DAG.getNode(ISD::ZERO_EXTEND, MVT::i64, Val);
349 // XXX: fall through
350 case MVT::i64:
351 //ObjSize = 8;
352 if(RegValuesToPass.size() >= 8) {
353 ValToStore = Val;
354 } else {
355 RegValuesToPass.push_back(Val);
356 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000357 break;
358 case MVT::f32:
359 //promote to 64-bits
Duraid Madina98d13782005-12-22 04:07:40 +0000360 Val = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Val);
361 // XXX: fall through
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000362 case MVT::f64:
Duraid Madina98d13782005-12-22 04:07:40 +0000363 if(RegValuesToPass.size() >= 8) {
364 ValToStore = Val;
365 } else {
366 RegValuesToPass.push_back(Val);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000367 if(1 /* TODO: if(calling external or varadic function)*/ ) {
368 ValToConvert = Val; // additionally pass this FP value as an int
369 }
Duraid Madina98d13782005-12-22 04:07:40 +0000370 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000371 break;
372 }
Duraid Madina98d13782005-12-22 04:07:40 +0000373
374 if(ValToStore.Val) {
375 if(!StackPtr.Val) {
376 StackPtr = DAG.getRegister(IA64::r12, MVT::i64);
377 NullSV = DAG.getSrcValue(NULL);
378 }
379 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
380 PtrOff = DAG.getNode(ISD::ADD, MVT::i64, StackPtr, PtrOff);
381 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
382 ValToStore, PtrOff, NullSV));
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000383 ArgOffset += ObjSize;
Duraid Madina98d13782005-12-22 04:07:40 +0000384 }
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000385
386 if(ValToConvert.Val) {
387 Converts.push_back(DAG.getNode(IA64ISD::GETFD, MVT::i64, ValToConvert));
388 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000389 }
390
Duraid Madina98d13782005-12-22 04:07:40 +0000391 // Emit all stores, make sure they occur before any copies into physregs.
392 if (!Stores.empty())
393 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000394
Duraid Madina98d13782005-12-22 04:07:40 +0000395 static const unsigned IntArgRegs[] = {
396 IA64::out0, IA64::out1, IA64::out2, IA64::out3,
397 IA64::out4, IA64::out5, IA64::out6, IA64::out7
398 };
399
400 static const unsigned FPArgRegs[] = {
401 IA64::F8, IA64::F9, IA64::F10, IA64::F11,
402 IA64::F12, IA64::F13, IA64::F14, IA64::F15
403 };
404
405 SDOperand InFlag;
406
407 // save the current GP, SP and RP : FIXME: do we need to do all 3 always?
408 SDOperand GPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r1, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000409 Chain = GPBeforeCall.getValue(1);
410 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000411 SDOperand SPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r12, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000412 Chain = SPBeforeCall.getValue(1);
413 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000414 SDOperand RPBeforeCall = DAG.getCopyFromReg(Chain, IA64::rp, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000415 Chain = RPBeforeCall.getValue(1);
416 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000417
418 // Build a sequence of copy-to-reg nodes chained together with token chain
419 // and flag operands which copy the outgoing integer args into regs out[0-7]
420 // mapped 1:1 and the FP args into regs F8-F15 "lazily"
421 // TODO: for performance, we should only copy FP args into int regs when we
422 // know this is required (i.e. for varardic or external (unknown) functions)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000423
424 // first to the FP->(integer representation) conversions, these are
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000425 // flagged for now, but shouldn't have to be (TODO)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000426 unsigned seenConverts = 0;
427 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
428 if(MVT::isFloatingPoint(RegValuesToPass[i].getValueType())) {
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000429 Chain = DAG.getCopyToReg(Chain, IntArgRegs[i], Converts[seenConverts++], InFlag);
430 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000431 }
432 }
433
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000434 // next copy args into the usual places, these are flagged
Duraid Madina98d13782005-12-22 04:07:40 +0000435 unsigned usedFPArgs = 0;
436 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
437 Chain = DAG.getCopyToReg(Chain,
438 MVT::isInteger(RegValuesToPass[i].getValueType()) ?
439 IntArgRegs[i] : FPArgRegs[usedFPArgs++],
440 RegValuesToPass[i], InFlag);
441 InFlag = Chain.getValue(1);
Duraid Madina98d13782005-12-22 04:07:40 +0000442 }
443
Duraid Madina98d13782005-12-22 04:07:40 +0000444 // If the callee is a GlobalAddress node (quite common, every direct call is)
445 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000446/*
447 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Duraid Madina98d13782005-12-22 04:07:40 +0000448 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i64);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000449 }
450*/
Duraid Madina98d13782005-12-22 04:07:40 +0000451
452 std::vector<MVT::ValueType> NodeTys;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000453 std::vector<SDOperand> CallOperands;
Duraid Madina98d13782005-12-22 04:07:40 +0000454 NodeTys.push_back(MVT::Other); // Returns a chain
455 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000456 CallOperands.push_back(Chain);
457 CallOperands.push_back(Callee);
458
459 // emit the call itself
Duraid Madina98d13782005-12-22 04:07:40 +0000460 if (InFlag.Val)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000461 CallOperands.push_back(InFlag);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000462 else
463 assert(0 && "this should never happen!\n");
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000464
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000465 // to make way for a hack:
466 Chain = DAG.getNode(IA64ISD::BRCALL, NodeTys, CallOperands);
Duraid Madina98d13782005-12-22 04:07:40 +0000467 InFlag = Chain.getValue(1);
468
469 // restore the GP, SP and RP after the call
470 Chain = DAG.getCopyToReg(Chain, IA64::r1, GPBeforeCall, InFlag);
471 InFlag = Chain.getValue(1);
472 Chain = DAG.getCopyToReg(Chain, IA64::r12, SPBeforeCall, InFlag);
473 InFlag = Chain.getValue(1);
474 Chain = DAG.getCopyToReg(Chain, IA64::rp, RPBeforeCall, InFlag);
475 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000476
477 std::vector<MVT::ValueType> RetVals;
478 RetVals.push_back(MVT::Other);
479 RetVals.push_back(MVT::Flag);
480
Duraid Madina98d13782005-12-22 04:07:40 +0000481 MVT::ValueType RetTyVT = getValueType(RetTy);
482 SDOperand RetVal;
483 if (RetTyVT != MVT::isVoid) {
484 switch (RetTyVT) {
Duraid Madinae7916e62006-01-19 08:31:51 +0000485 default: assert(0 && "Unknown value type to return!");
Duraid Madinac1d3d102006-01-10 05:08:25 +0000486 case MVT::i1: { // bools are just like other integers (returned in r8)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000487 // we *could* fall through to the truncate below, but this saves a
488 // few redundant predicate ops
Duraid Madina98d13782005-12-22 04:07:40 +0000489 SDOperand boolInR8 = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
Duraid Madinac1d3d102006-01-10 05:08:25 +0000490 InFlag = boolInR8.getValue(2);
491 Chain = boolInR8.getValue(1);
492 SDOperand zeroReg = DAG.getCopyFromReg(Chain, IA64::r0, MVT::i64, InFlag);
493 InFlag = zeroReg.getValue(2);
494 Chain = zeroReg.getValue(1);
495
Duraid Madina15d014b2006-01-10 05:26:01 +0000496 RetVal = DAG.getSetCC(MVT::i1, boolInR8, zeroReg, ISD::SETNE);
Duraid Madina98d13782005-12-22 04:07:40 +0000497 break;
Duraid Madinac1d3d102006-01-10 05:08:25 +0000498 }
Duraid Madina98d13782005-12-22 04:07:40 +0000499 case MVT::i8:
500 case MVT::i16:
501 case MVT::i32:
502 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
503 Chain = RetVal.getValue(1);
504
Duraid Madinae7916e62006-01-19 08:31:51 +0000505 // keep track of whether it is sign or zero extended (todo: bools?)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000506/* XXX
Duraid Madina98d13782005-12-22 04:07:40 +0000507 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
508 MVT::i64, RetVal, DAG.getValueType(RetTyVT));
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000509*/
Duraid Madina98d13782005-12-22 04:07:40 +0000510 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
Duraid Madina98b3a832005-12-22 06:39:57 +0000511 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000512 case MVT::i64:
513 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
514 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000515 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000516 break;
Duraid Madinae7916e62006-01-19 08:31:51 +0000517 case MVT::f32:
518 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
519 Chain = RetVal.getValue(1);
520 RetVal = DAG.getNode(ISD::TRUNCATE, MVT::f32, RetVal);
521 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000522 case MVT::f64:
523 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
524 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000525 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000526 break;
527 }
528 }
529
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000530 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
531 DAG.getConstant(NumBytes, getPointerTy()));
Duraid Madina98d13782005-12-22 04:07:40 +0000532
533 return std::make_pair(RetVal, Chain);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000534}
535
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000536std::pair<SDOperand, SDOperand> IA64TargetLowering::
537LowerFrameReturnAddress(bool isFrameAddress, SDOperand Chain, unsigned Depth,
538 SelectionDAG &DAG) {
539 assert(0 && "LowerFrameReturnAddress unimplemented");
540 abort();
541}
542
Duraid Madinabea99472006-01-20 20:24:31 +0000543SDOperand IA64TargetLowering::
544LowerOperation(SDOperand Op, SelectionDAG &DAG) {
545 switch (Op.getOpcode()) {
546 default: assert(0 && "Should not custom lower this!");
Nate Begemanee625572006-01-27 21:09:22 +0000547 case ISD::RET: {
548 SDOperand AR_PFSVal, Copy;
Duraid Madinabea99472006-01-20 20:24:31 +0000549
Nate Begemanee625572006-01-27 21:09:22 +0000550 switch(Op.getNumOperands()) {
551 default:
552 assert(0 && "Do not know how to return this many arguments!");
553 abort();
554 case 1:
555 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), VirtGPR, MVT::i64);
556 AR_PFSVal = DAG.getCopyToReg(AR_PFSVal.getValue(1), IA64::AR_PFS,
557 AR_PFSVal);
558 return DAG.getNode(IA64ISD::RET_FLAG, MVT::Other, AR_PFSVal);
559 case 2: {
560 // Copy the result into the output register & restore ar.pfs
561 MVT::ValueType ArgVT = Op.getOperand(1).getValueType();
562 unsigned ArgReg = MVT::isInteger(ArgVT) ? IA64::r8 : IA64::F8;
Duraid Madinabea99472006-01-20 20:24:31 +0000563
Nate Begemanee625572006-01-27 21:09:22 +0000564 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), VirtGPR, MVT::i64);
565 Copy = DAG.getCopyToReg(AR_PFSVal.getValue(1), ArgReg, Op.getOperand(1),
566 SDOperand());
567 AR_PFSVal = DAG.getCopyToReg(Copy.getValue(0), IA64::AR_PFS, AR_PFSVal,
568 Copy.getValue(1));
569 std::vector<MVT::ValueType> NodeTys;
570 std::vector<SDOperand> RetOperands;
571 NodeTys.push_back(MVT::Other);
572 NodeTys.push_back(MVT::Flag);
573 RetOperands.push_back(AR_PFSVal);
574 RetOperands.push_back(AR_PFSVal.getValue(1));
575 return DAG.getNode(IA64ISD::RET_FLAG, NodeTys, RetOperands);
576 }
577 }
578 return SDOperand();
Duraid Madinabea99472006-01-20 20:24:31 +0000579 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000580 case ISD::VAARG: {
581 MVT::ValueType VT = getPointerTy();
582 SDOperand VAList = DAG.getLoad(VT, Op.getOperand(0), Op.getOperand(1),
583 Op.getOperand(2));
584 // Increment the pointer, VAList, to the next vaarg
585 SDOperand VAIncr = DAG.getNode(ISD::ADD, VT, VAList,
586 DAG.getConstant(MVT::getSizeInBits(VT)/8,
587 VT));
588 // Store the incremented VAList to the legalized pointer
589 VAIncr = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), VAIncr,
590 Op.getOperand(1), Op.getOperand(2));
591 // Load the actual argument out of the pointer VAList
Nate Begeman0aed7842006-01-28 03:14:31 +0000592 return DAG.getLoad(Op.getValueType(), VAIncr, VAList, DAG.getSrcValue(0));
Nate Begemanacc398c2006-01-25 18:21:52 +0000593 }
594 case ISD::VASTART: {
595 // vastart just stores the address of the VarArgsFrameIndex slot into the
596 // memory location argument.
597 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i64);
598 return DAG.getNode(ISD::STORE, MVT::Other, Op.getOperand(0), FR,
599 Op.getOperand(1), Op.getOperand(2));
600 }
Duraid Madinabea99472006-01-20 20:24:31 +0000601 }
602}