blob: c02cd1bcc746dd530ab7cb430b55e6044e36c110 [file] [log] [blame]
Duraid Madinaf2db9b82005-10-28 17:46:35 +00001//===-- IA64ISelLowering.cpp - IA64 DAG Lowering Implementation -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Duraid Madinaf2db9b82005-10-28 17:46:35 +00007//
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
Dan Gohmanf96e4de2007-10-11 23:21:31 +000076 // We don't support sin/cos/sqrt/pow
Duraid Madinaf2db9b82005-10-28 17:46:35 +000077 setOperationAction(ISD::FSIN , MVT::f64, Expand);
78 setOperationAction(ISD::FCOS , MVT::f64, Expand);
79 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +000080 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000081 setOperationAction(ISD::FSIN , MVT::f32, Expand);
82 setOperationAction(ISD::FCOS , MVT::f32, Expand);
83 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +000084 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000085
Chris Lattner9601a862006-03-05 05:08:37 +000086 // FIXME: IA64 supports fcopysign natively!
87 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
88 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
89
Chris Lattnerf73bae12005-11-29 06:16:21 +000090 // We don't have line number support yet.
91 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +000092 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Jim Laskey1ee29252007-01-26 14:34:52 +000093 setOperationAction(ISD::LABEL, MVT::Other, Expand);
Chris Lattnerf73bae12005-11-29 06:16:21 +000094
Duraid Madinaf2db9b82005-10-28 17:46:35 +000095 //IA64 has these, but they are not implemented
96 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
97 setOperationAction(ISD::CTLZ , MVT::i64 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +000098 setOperationAction(ISD::ROTL , MVT::i64 , Expand);
99 setOperationAction(ISD::ROTR , MVT::i64 , Expand);
Nate Begemand88fc032006-01-14 03:14:10 +0000100 setOperationAction(ISD::BSWAP, MVT::i64 , Expand); // mux @rev
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000101
Nate Begemanacc398c2006-01-25 18:21:52 +0000102 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
103 setOperationAction(ISD::VAARG , MVT::Other, Custom);
104 setOperationAction(ISD::VASTART , MVT::Other, Custom);
105
106 // Use the default implementation.
107 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
108 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Chris Lattner33f79df2006-01-13 02:40:58 +0000109 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
110 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Duraid Madina2e0348e2006-01-15 09:45:23 +0000111 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
112
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000113 // Thread Local Storage
114 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
115
Duraid Madina2e0348e2006-01-15 09:45:23 +0000116 setStackPointerRegisterToSaveRestore(IA64::r12);
Chris Lattner33f79df2006-01-13 02:40:58 +0000117
Duraid Madina2a0013f2006-09-04 06:21:35 +0000118 setJumpBufSize(704); // on ia64-linux, jmp_bufs are 704 bytes..
119 setJumpBufAlignment(16); // ...and must be 16-byte aligned
120
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000121 computeRegisterProperties();
122
Chris Lattnera54aa942006-01-29 06:26:08 +0000123 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000124 addLegalFPImmediate(APFloat(+0.0));
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000125 addLegalFPImmediate(APFloat(+0.0f));
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000126 addLegalFPImmediate(APFloat(+1.0));
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000127 addLegalFPImmediate(APFloat(+1.0f));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000128}
129
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000130const char *IA64TargetLowering::getTargetNodeName(unsigned Opcode) const {
131 switch (Opcode) {
132 default: return 0;
133 case IA64ISD::GETFD: return "IA64ISD::GETFD";
134 case IA64ISD::BRCALL: return "IA64ISD::BRCALL";
Duraid Madinabea99472006-01-20 20:24:31 +0000135 case IA64ISD::RET_FLAG: return "IA64ISD::RET_FLAG";
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000136 }
137}
138
139
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000140std::vector<SDOperand>
141IA64TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
142 std::vector<SDOperand> ArgValues;
143 //
144 // add beautiful description of IA64 stack frame format
145 // here (from intel 24535803.pdf most likely)
146 //
147 MachineFunction &MF = DAG.getMachineFunction();
148 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Chengc0f64ff2006-11-27 23:37:22 +0000149 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000150
151 GP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
152 SP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
153 RP = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
154
155 MachineBasicBlock& BB = MF.front();
156
157 unsigned args_int[] = {IA64::r32, IA64::r33, IA64::r34, IA64::r35,
158 IA64::r36, IA64::r37, IA64::r38, IA64::r39};
159
160 unsigned args_FP[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
161 IA64::F12,IA64::F13,IA64::F14, IA64::F15};
162
163 unsigned argVreg[8];
164 unsigned argPreg[8];
165 unsigned argOpc[8];
166
167 unsigned used_FPArgs = 0; // how many FP args have been used so far?
168
169 unsigned ArgOffset = 0;
170 int count = 0;
171
172 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
173 {
174 SDOperand newroot, argt;
175 if(count < 8) { // need to fix this logic? maybe.
176
177 switch (getValueType(I->getType())) {
178 default:
179 assert(0 && "ERROR in LowerArgs: can't lower this type of arg.\n");
180 case MVT::f32:
181 // fixme? (well, will need to for weird FP structy stuff,
182 // see intel ABI docs)
183 case MVT::f64:
184//XXX BuildMI(&BB, IA64::IDEF, 0, args_FP[used_FPArgs]);
185 MF.addLiveIn(args_FP[used_FPArgs]); // mark this reg as liveIn
186 // floating point args go into f8..f15 as-needed, the increment
187 argVreg[count] = // is below..:
188 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::f64));
189 // FP args go into f8..f15 as needed: (hence the ++)
190 argPreg[count] = args_FP[used_FPArgs++];
191 argOpc[count] = IA64::FMOV;
192 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(), argVreg[count],
193 MVT::f64);
194 if (I->getType() == Type::FloatTy)
195 argt = DAG.getNode(ISD::FP_ROUND, MVT::f32, argt);
196 break;
197 case MVT::i1: // NOTE: as far as C abi stuff goes,
198 // bools are just boring old ints
199 case MVT::i8:
200 case MVT::i16:
201 case MVT::i32:
202 case MVT::i64:
203//XXX BuildMI(&BB, IA64::IDEF, 0, args_int[count]);
204 MF.addLiveIn(args_int[count]); // mark this register as liveIn
205 argVreg[count] =
206 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
207 argPreg[count] = args_int[count];
208 argOpc[count] = IA64::MOV;
209 argt = newroot =
210 DAG.getCopyFromReg(DAG.getRoot(), argVreg[count], MVT::i64);
211 if ( getValueType(I->getType()) != MVT::i64)
212 argt = DAG.getNode(ISD::TRUNCATE, getValueType(I->getType()),
213 newroot);
214 break;
215 }
216 } else { // more than 8 args go into the frame
217 // Create the frame index object for this incoming parameter...
218 ArgOffset = 16 + 8 * (count - 8);
219 int FI = MFI->CreateFixedObject(8, ArgOffset);
220
221 // Create the SelectionDAG nodes corresponding to a load
222 //from this parameter
223 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i64);
224 argt = newroot = DAG.getLoad(getValueType(I->getType()),
Evan Cheng466685d2006-10-09 20:57:25 +0000225 DAG.getEntryNode(), FIN, NULL, 0);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000226 }
227 ++count;
228 DAG.setRoot(newroot.getValue(1));
229 ArgValues.push_back(argt);
230 }
231
232
233 // Create a vreg to hold the output of (what will become)
234 // the "alloc" instruction
235 VirtGPR = MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i64));
Evan Chengc0f64ff2006-11-27 23:37:22 +0000236 BuildMI(&BB, TII->get(IA64::PSEUDO_ALLOC), VirtGPR);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000237 // we create a PSEUDO_ALLOC (pseudo)instruction for now
Duraid Madinab97cc992005-11-04 10:01:10 +0000238/*
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000239 BuildMI(&BB, IA64::IDEF, 0, IA64::r1);
240
241 // hmm:
242 BuildMI(&BB, IA64::IDEF, 0, IA64::r12);
243 BuildMI(&BB, IA64::IDEF, 0, IA64::rp);
244 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000245
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000246 BuildMI(&BB, IA64::MOV, 1, GP).addReg(IA64::r1);
247
248 // hmm:
249 BuildMI(&BB, IA64::MOV, 1, SP).addReg(IA64::r12);
250 BuildMI(&BB, IA64::MOV, 1, RP).addReg(IA64::rp);
251 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000252*/
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000253
254 unsigned tempOffset=0;
255
256 // if this is a varargs function, we simply lower llvm.va_start by
257 // pointing to the first entry
258 if(F.isVarArg()) {
259 tempOffset=0;
260 VarArgsFrameIndex = MFI->CreateFixedObject(8, tempOffset);
261 }
262
263 // here we actually do the moving of args, and store them to the stack
264 // too if this is a varargs function:
265 for (int i = 0; i < count && i < 8; ++i) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000266 BuildMI(&BB, TII->get(argOpc[i]), argVreg[i]).addReg(argPreg[i]);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000267 if(F.isVarArg()) {
268 // if this is a varargs function, we copy the input registers to the stack
269 int FI = MFI->CreateFixedObject(8, tempOffset);
270 tempOffset+=8; //XXX: is it safe to use r22 like this?
Evan Chengc0f64ff2006-11-27 23:37:22 +0000271 BuildMI(&BB, TII->get(IA64::MOV), IA64::r22).addFrameIndex(FI);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000272 // FIXME: we should use st8.spill here, one day
Evan Chengc0f64ff2006-11-27 23:37:22 +0000273 BuildMI(&BB, TII->get(IA64::ST8), IA64::r22).addReg(argPreg[i]);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000274 }
275 }
276
277 // Finally, inform the code generator which regs we return values in.
278 // (see the ISD::RET: case in the instruction selector)
279 switch (getValueType(F.getReturnType())) {
280 default: assert(0 && "i have no idea where to return this type!");
281 case MVT::isVoid: break;
282 case MVT::i1:
283 case MVT::i8:
284 case MVT::i16:
285 case MVT::i32:
286 case MVT::i64:
287 MF.addLiveOut(IA64::r8);
288 break;
289 case MVT::f32:
290 case MVT::f64:
291 MF.addLiveOut(IA64::F8);
292 break;
293 }
294
295 return ArgValues;
296}
297
298std::pair<SDOperand, SDOperand>
299IA64TargetLowering::LowerCallTo(SDOperand Chain,
Reid Spencer47857812006-12-31 05:55:36 +0000300 const Type *RetTy, bool RetTyIsSigned,
301 bool isVarArg, unsigned CallingConv,
302 bool isTailCall, SDOperand Callee,
303 ArgListTy &Args, SelectionDAG &DAG) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000304
305 MachineFunction &MF = DAG.getMachineFunction();
306
307 unsigned NumBytes = 16;
308 unsigned outRegsUsed = 0;
309
310 if (Args.size() > 8) {
311 NumBytes += (Args.size() - 8) * 8;
312 outRegsUsed = 8;
313 } else {
314 outRegsUsed = Args.size();
315 }
316
317 // FIXME? this WILL fail if we ever try to pass around an arg that
318 // consumes more than a single output slot (a 'real' double, int128
319 // some sort of aggregate etc.), as we'll underestimate how many 'outX'
320 // registers we use. Hopefully, the assembler will notice.
321 MF.getInfo<IA64FunctionInfo>()->outRegsUsed=
322 std::max(outRegsUsed, MF.getInfo<IA64FunctionInfo>()->outRegsUsed);
323
Duraid Madina98d13782005-12-22 04:07:40 +0000324 // keep stack frame 16-byte aligned
Reid Spencer47857812006-12-31 05:55:36 +0000325 // assert(NumBytes==((NumBytes+15) & ~15) &&
326 // "stack frame not 16-byte aligned!");
Duraid Madina98d13782005-12-22 04:07:40 +0000327 NumBytes = (NumBytes+15) & ~15;
328
Chris Lattner94dd2922006-02-13 09:00:43 +0000329 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes, getPointerTy()));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000330
Evan Cheng8b2794a2006-10-13 21:14:26 +0000331 SDOperand StackPtr;
Duraid Madina98d13782005-12-22 04:07:40 +0000332 std::vector<SDOperand> Stores;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000333 std::vector<SDOperand> Converts;
Duraid Madina98d13782005-12-22 04:07:40 +0000334 std::vector<SDOperand> RegValuesToPass;
335 unsigned ArgOffset = 16;
336
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000337 for (unsigned i = 0, e = Args.size(); i != e; ++i)
338 {
Reid Spencer47857812006-12-31 05:55:36 +0000339 SDOperand Val = Args[i].Node;
Duraid Madina98d13782005-12-22 04:07:40 +0000340 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercd618ef2006-01-10 19:45:18 +0000341 SDOperand ValToStore(0, 0), ValToConvert(0, 0);
Duraid Madina98d13782005-12-22 04:07:40 +0000342 unsigned ObjSize=8;
343 switch (ObjectVT) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000344 default: assert(0 && "unexpected argument type!");
345 case MVT::i1:
346 case MVT::i8:
347 case MVT::i16:
Reid Spencer47857812006-12-31 05:55:36 +0000348 case MVT::i32: {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000349 //promote to 64-bits, sign/zero extending based on type
350 //of the argument
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000351 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
352 if (Args[i].isSExt)
Reid Spencer47857812006-12-31 05:55:36 +0000353 ExtendKind = ISD::SIGN_EXTEND;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000354 else if (Args[i].isZExt)
355 ExtendKind = ISD::ZERO_EXTEND;
Reid Spencer47857812006-12-31 05:55:36 +0000356 Val = DAG.getNode(ExtendKind, MVT::i64, Val);
Duraid Madina98d13782005-12-22 04:07:40 +0000357 // XXX: fall through
Reid Spencer47857812006-12-31 05:55:36 +0000358 }
Duraid Madina98d13782005-12-22 04:07:40 +0000359 case MVT::i64:
360 //ObjSize = 8;
361 if(RegValuesToPass.size() >= 8) {
362 ValToStore = Val;
363 } else {
364 RegValuesToPass.push_back(Val);
365 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000366 break;
367 case MVT::f32:
368 //promote to 64-bits
Duraid Madina98d13782005-12-22 04:07:40 +0000369 Val = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Val);
370 // XXX: fall through
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000371 case MVT::f64:
Duraid Madina98d13782005-12-22 04:07:40 +0000372 if(RegValuesToPass.size() >= 8) {
373 ValToStore = Val;
374 } else {
375 RegValuesToPass.push_back(Val);
Anton Korobeynikovbed29462007-04-16 18:10:23 +0000376 if(1 /* TODO: if(calling external or varadic function)*/ ) {
377 ValToConvert = Val; // additionally pass this FP value as an int
378 }
Duraid Madina98d13782005-12-22 04:07:40 +0000379 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000380 break;
381 }
Duraid Madina98d13782005-12-22 04:07:40 +0000382
383 if(ValToStore.Val) {
384 if(!StackPtr.Val) {
385 StackPtr = DAG.getRegister(IA64::r12, MVT::i64);
Duraid Madina98d13782005-12-22 04:07:40 +0000386 }
387 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
388 PtrOff = DAG.getNode(ISD::ADD, MVT::i64, StackPtr, PtrOff);
Evan Cheng8b2794a2006-10-13 21:14:26 +0000389 Stores.push_back(DAG.getStore(Chain, ValToStore, PtrOff, NULL, 0));
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000390 ArgOffset += ObjSize;
Duraid Madina98d13782005-12-22 04:07:40 +0000391 }
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000392
393 if(ValToConvert.Val) {
Anton Korobeynikovbed29462007-04-16 18:10:23 +0000394 Converts.push_back(DAG.getNode(IA64ISD::GETFD, MVT::i64, ValToConvert));
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000395 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000396 }
397
Duraid Madina98d13782005-12-22 04:07:40 +0000398 // Emit all stores, make sure they occur before any copies into physregs.
399 if (!Stores.empty())
Chris Lattnere2199452006-08-11 17:38:39 +0000400 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Stores[0],Stores.size());
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000401
Duraid Madina98d13782005-12-22 04:07:40 +0000402 static const unsigned IntArgRegs[] = {
403 IA64::out0, IA64::out1, IA64::out2, IA64::out3,
404 IA64::out4, IA64::out5, IA64::out6, IA64::out7
405 };
406
407 static const unsigned FPArgRegs[] = {
408 IA64::F8, IA64::F9, IA64::F10, IA64::F11,
409 IA64::F12, IA64::F13, IA64::F14, IA64::F15
410 };
411
412 SDOperand InFlag;
413
414 // save the current GP, SP and RP : FIXME: do we need to do all 3 always?
415 SDOperand GPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r1, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000416 Chain = GPBeforeCall.getValue(1);
417 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000418 SDOperand SPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r12, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000419 Chain = SPBeforeCall.getValue(1);
420 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000421 SDOperand RPBeforeCall = DAG.getCopyFromReg(Chain, IA64::rp, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000422 Chain = RPBeforeCall.getValue(1);
423 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000424
425 // Build a sequence of copy-to-reg nodes chained together with token chain
426 // and flag operands which copy the outgoing integer args into regs out[0-7]
427 // mapped 1:1 and the FP args into regs F8-F15 "lazily"
428 // TODO: for performance, we should only copy FP args into int regs when we
429 // know this is required (i.e. for varardic or external (unknown) functions)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000430
431 // first to the FP->(integer representation) conversions, these are
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000432 // flagged for now, but shouldn't have to be (TODO)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000433 unsigned seenConverts = 0;
434 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
435 if(MVT::isFloatingPoint(RegValuesToPass[i].getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +0000436 Chain = DAG.getCopyToReg(Chain, IntArgRegs[i], Converts[seenConverts++],
437 InFlag);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000438 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()) ?
Reid Spencer47857812006-12-31 05:55:36 +0000447 IntArgRegs[i] : FPArgRegs[usedFPArgs++], RegValuesToPass[i], InFlag);
Duraid Madina98d13782005-12-22 04:07:40 +0000448 InFlag = Chain.getValue(1);
Duraid Madina98d13782005-12-22 04:07:40 +0000449 }
450
Duraid Madina98d13782005-12-22 04:07:40 +0000451 // If the callee is a GlobalAddress node (quite common, every direct call is)
452 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000453/*
454 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Duraid Madina98d13782005-12-22 04:07:40 +0000455 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i64);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000456 }
457*/
Duraid Madina98d13782005-12-22 04:07:40 +0000458
459 std::vector<MVT::ValueType> NodeTys;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000460 std::vector<SDOperand> CallOperands;
Duraid Madina98d13782005-12-22 04:07:40 +0000461 NodeTys.push_back(MVT::Other); // Returns a chain
462 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000463 CallOperands.push_back(Chain);
464 CallOperands.push_back(Callee);
465
466 // emit the call itself
Duraid Madina98d13782005-12-22 04:07:40 +0000467 if (InFlag.Val)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000468 CallOperands.push_back(InFlag);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000469 else
470 assert(0 && "this should never happen!\n");
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000471
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000472 // to make way for a hack:
Chris Lattnere0e42d42006-08-11 17:21:12 +0000473 Chain = DAG.getNode(IA64ISD::BRCALL, NodeTys,
474 &CallOperands[0], CallOperands.size());
Duraid Madina98d13782005-12-22 04:07:40 +0000475 InFlag = Chain.getValue(1);
476
477 // restore the GP, SP and RP after the call
478 Chain = DAG.getCopyToReg(Chain, IA64::r1, GPBeforeCall, InFlag);
479 InFlag = Chain.getValue(1);
480 Chain = DAG.getCopyToReg(Chain, IA64::r12, SPBeforeCall, InFlag);
481 InFlag = Chain.getValue(1);
482 Chain = DAG.getCopyToReg(Chain, IA64::rp, RPBeforeCall, InFlag);
483 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000484
485 std::vector<MVT::ValueType> RetVals;
486 RetVals.push_back(MVT::Other);
487 RetVals.push_back(MVT::Flag);
488
Duraid Madina98d13782005-12-22 04:07:40 +0000489 MVT::ValueType RetTyVT = getValueType(RetTy);
490 SDOperand RetVal;
491 if (RetTyVT != MVT::isVoid) {
492 switch (RetTyVT) {
Duraid Madinae7916e62006-01-19 08:31:51 +0000493 default: assert(0 && "Unknown value type to return!");
Duraid Madinac1d3d102006-01-10 05:08:25 +0000494 case MVT::i1: { // bools are just like other integers (returned in r8)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000495 // we *could* fall through to the truncate below, but this saves a
496 // few redundant predicate ops
Reid Spencer47857812006-12-31 05:55:36 +0000497 SDOperand boolInR8 = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64,InFlag);
Duraid Madinac1d3d102006-01-10 05:08:25 +0000498 InFlag = boolInR8.getValue(2);
499 Chain = boolInR8.getValue(1);
500 SDOperand zeroReg = DAG.getCopyFromReg(Chain, IA64::r0, MVT::i64, InFlag);
501 InFlag = zeroReg.getValue(2);
Anton Korobeynikovbed29462007-04-16 18:10:23 +0000502 Chain = zeroReg.getValue(1);
Duraid Madinac1d3d102006-01-10 05:08:25 +0000503
Duraid Madina15d014b2006-01-10 05:26:01 +0000504 RetVal = DAG.getSetCC(MVT::i1, boolInR8, zeroReg, ISD::SETNE);
Duraid Madina98d13782005-12-22 04:07:40 +0000505 break;
Duraid Madinac1d3d102006-01-10 05:08:25 +0000506 }
Duraid Madina98d13782005-12-22 04:07:40 +0000507 case MVT::i8:
508 case MVT::i16:
509 case MVT::i32:
510 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
511 Chain = RetVal.getValue(1);
512
Duraid Madinae7916e62006-01-19 08:31:51 +0000513 // keep track of whether it is sign or zero extended (todo: bools?)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000514/* XXX
Duraid Madina98d13782005-12-22 04:07:40 +0000515 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
516 MVT::i64, RetVal, DAG.getValueType(RetTyVT));
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000517*/
Duraid Madina98d13782005-12-22 04:07:40 +0000518 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
Duraid Madina98b3a832005-12-22 06:39:57 +0000519 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000520 case MVT::i64:
521 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
522 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000523 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000524 break;
Duraid Madinae7916e62006-01-19 08:31:51 +0000525 case MVT::f32:
526 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
527 Chain = RetVal.getValue(1);
528 RetVal = DAG.getNode(ISD::TRUNCATE, MVT::f32, RetVal);
529 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000530 case MVT::f64:
531 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
532 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000533 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000534 break;
535 }
536 }
537
Bill Wendling0f8d9c02007-11-13 00:44:25 +0000538 Chain = DAG.getCALLSEQ_END(Chain,
539 DAG.getConstant(NumBytes, getPointerTy()),
540 DAG.getConstant(0, getPointerTy()),
541 SDOperand());
Duraid Madina98d13782005-12-22 04:07:40 +0000542 return std::make_pair(RetVal, Chain);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000543}
544
Duraid Madinabea99472006-01-20 20:24:31 +0000545SDOperand IA64TargetLowering::
546LowerOperation(SDOperand Op, SelectionDAG &DAG) {
547 switch (Op.getOpcode()) {
548 default: assert(0 && "Should not custom lower this!");
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000549 case ISD::GlobalTLSAddress:
550 assert(0 && "TLS not implemented for IA64.");
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);
Evan Cheng6848be12006-05-26 23:10:12 +0000563 case 3: {
Nate Begemanee625572006-01-27 21:09:22 +0000564 // 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));
Evan Cheng4b790572006-08-16 07:28:58 +0000573 return DAG.getNode(IA64ISD::RET_FLAG, MVT::Other,
574 AR_PFSVal, AR_PFSVal.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000575 }
576 }
577 return SDOperand();
Duraid Madinabea99472006-01-20 20:24:31 +0000578 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000579 case ISD::VAARG: {
580 MVT::ValueType VT = getPointerTy();
Evan Cheng466685d2006-10-09 20:57:25 +0000581 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +0000582 SDOperand VAList = DAG.getLoad(VT, Op.getOperand(0), Op.getOperand(1),
Evan Cheng466685d2006-10-09 20:57:25 +0000583 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +0000584 // 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
Evan Cheng786225a2006-10-05 23:01:46 +0000589 VAIncr = DAG.getStore(VAList.getValue(1), VAIncr,
Evan Cheng8b2794a2006-10-13 21:14:26 +0000590 Op.getOperand(1), SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +0000591 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +0000592 return DAG.getLoad(Op.getValueType(), VAIncr, VAList, NULL, 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);
Evan Cheng8b2794a2006-10-13 21:14:26 +0000598 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
Evan Cheng786225a2006-10-05 23:01:46 +0000599 return DAG.getStore(Op.getOperand(0), FR,
Evan Cheng8b2794a2006-10-13 21:14:26 +0000600 Op.getOperand(1), SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +0000601 }
Nate Begemanbcc5f362007-01-29 22:58:52 +0000602 // Frame & Return address. Currently unimplemented
603 case ISD::RETURNADDR: break;
604 case ISD::FRAMEADDR: break;
Duraid Madinabea99472006-01-20 20:24:31 +0000605 }
Nate Begemanbcc5f362007-01-29 22:58:52 +0000606 return SDOperand();
Duraid Madinabea99472006-01-20 20:24:31 +0000607}