blob: 8b711d89bd3a69c15f5353937f163e0c8ca3e0e0 [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"
Chris Lattner84bc5422007-12-31 04:13:23 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Duraid Madinaf2db9b82005-10-28 17:46:35 +000022#include "llvm/Constants.h"
23#include "llvm/Function.h"
24using namespace llvm;
25
26IA64TargetLowering::IA64TargetLowering(TargetMachine &TM)
27 : TargetLowering(TM) {
28
Chris Lattneraec8d822008-05-28 03:59:32 +000029 // register class for general registers
30 addRegisterClass(MVT::i64, IA64::GRRegisterClass);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000031
Chris Lattneraec8d822008-05-28 03:59:32 +000032 // register class for FP registers
33 addRegisterClass(MVT::f64, IA64::FPRegisterClass);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000034
Chris Lattneraec8d822008-05-28 03:59:32 +000035 // register class for predicate registers
36 addRegisterClass(MVT::i1, IA64::PRRegisterClass);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000037
Chris Lattneraec8d822008-05-28 03:59:32 +000038 setLoadXAction(ISD::EXTLOAD , MVT::i1 , Promote);
Evan Chengc5484282006-10-04 00:56:09 +000039
Chris Lattneraec8d822008-05-28 03:59:32 +000040 setLoadXAction(ISD::ZEXTLOAD , MVT::i1 , Promote);
Evan Chengc5484282006-10-04 00:56:09 +000041
Chris Lattneraec8d822008-05-28 03:59:32 +000042 setLoadXAction(ISD::SEXTLOAD , MVT::i1 , Promote);
43 setLoadXAction(ISD::SEXTLOAD , MVT::i8 , Expand);
44 setLoadXAction(ISD::SEXTLOAD , MVT::i16 , Expand);
45 setLoadXAction(ISD::SEXTLOAD , MVT::i32 , Expand);
Evan Chengc5484282006-10-04 00:56:09 +000046
Chris Lattneraec8d822008-05-28 03:59:32 +000047 setOperationAction(ISD::BRIND , MVT::Other, Expand);
48 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
49 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
50 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000051
Chris Lattneraec8d822008-05-28 03:59:32 +000052 // ia64 uses SELECT not SELECT_CC
53 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
54
55 // 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);
Duraid Madinabea99472006-01-20 20:24:31 +000059
Chris Lattneraec8d822008-05-28 03:59:32 +000060 setShiftAmountType(MVT::i64);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000061
Chris Lattneraec8d822008-05-28 03:59:32 +000062 setOperationAction(ISD::FREM , MVT::f32 , Expand);
63 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000064
Chris Lattneraec8d822008-05-28 03:59:32 +000065 setOperationAction(ISD::UREM , MVT::f32 , Expand);
66 setOperationAction(ISD::UREM , MVT::f64 , Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000067
Chris Lattneraec8d822008-05-28 03:59:32 +000068 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +000069
Chris Lattneraec8d822008-05-28 03:59:32 +000070 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
71 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000072
Chris Lattneraec8d822008-05-28 03:59:32 +000073 // We don't support sin/cos/sqrt/pow
74 setOperationAction(ISD::FSIN , MVT::f64, Expand);
75 setOperationAction(ISD::FCOS , MVT::f64, Expand);
76 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
77 setOperationAction(ISD::FPOW , MVT::f64, Expand);
78 setOperationAction(ISD::FSIN , MVT::f32, Expand);
79 setOperationAction(ISD::FCOS , MVT::f32, Expand);
80 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
81 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000082
Chris Lattner9b07d3d2008-05-28 04:00:06 +000083 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
84
Chris Lattneraec8d822008-05-28 03:59:32 +000085 // FIXME: IA64 supports fcopysign natively!
86 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
87 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
88
89 // We don't have line number support yet.
90 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
91 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
92 setOperationAction(ISD::LABEL, MVT::Other, Expand);
Chris Lattnerf73bae12005-11-29 06:16:21 +000093
Nate Begeman73e4d592008-05-28 16:31:36 +000094 // IA64 has ctlz in the form of the 'fnorm' instruction. The Legalizer
95 // expansion for ctlz/cttz in terms of ctpop is much larger, but lower
96 // latency.
97 // FIXME: Custom lower CTLZ when compiling for size?
Chris Lattneraec8d822008-05-28 03:59:32 +000098 setOperationAction(ISD::CTLZ , MVT::i64 , Expand);
Nate Begeman73e4d592008-05-28 16:31:36 +000099 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chris Lattneraec8d822008-05-28 03:59:32 +0000100 setOperationAction(ISD::ROTL , MVT::i64 , Expand);
101 setOperationAction(ISD::ROTR , MVT::i64 , Expand);
Nate Begeman73e4d592008-05-28 16:31:36 +0000102
103 // FIXME: IA64 has this, but is not implemented. should be mux @rev
104 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000105
Chris Lattneraec8d822008-05-28 03:59:32 +0000106 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
107 setOperationAction(ISD::VAARG , MVT::Other, Custom);
108 setOperationAction(ISD::VASTART , MVT::Other, Custom);
109
110 // Use the default implementation.
111 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
112 setOperationAction(ISD::VAEND , MVT::Other, Expand);
113 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
114 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
115 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Duraid Madina2e0348e2006-01-15 09:45:23 +0000116
Chris Lattneraec8d822008-05-28 03:59:32 +0000117 // Thread Local Storage
118 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000119
Chris Lattneraec8d822008-05-28 03:59:32 +0000120 setStackPointerRegisterToSaveRestore(IA64::r12);
Chris Lattner33f79df2006-01-13 02:40:58 +0000121
Chris Lattneraec8d822008-05-28 03:59:32 +0000122 setJumpBufSize(704); // on ia64-linux, jmp_bufs are 704 bytes..
123 setJumpBufAlignment(16); // ...and must be 16-byte aligned
124
125 computeRegisterProperties();
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000126
Chris Lattneraec8d822008-05-28 03:59:32 +0000127 addLegalFPImmediate(APFloat(+0.0));
128 addLegalFPImmediate(APFloat(-0.0));
129 addLegalFPImmediate(APFloat(+1.0));
130 addLegalFPImmediate(APFloat(-1.0));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000131}
132
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000133const char *IA64TargetLowering::getTargetNodeName(unsigned Opcode) const {
134 switch (Opcode) {
135 default: return 0;
136 case IA64ISD::GETFD: return "IA64ISD::GETFD";
137 case IA64ISD::BRCALL: return "IA64ISD::BRCALL";
Duraid Madinabea99472006-01-20 20:24:31 +0000138 case IA64ISD::RET_FLAG: return "IA64ISD::RET_FLAG";
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000139 }
140}
141
Duncan Sands83ec4b62008-06-06 12:08:01 +0000142MVT IA64TargetLowering::getSetCCResultType(const SDOperand &) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000143 return MVT::i1;
144}
Chris Lattnerbc0f4602006-01-14 22:27:21 +0000145
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000146std::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();
Evan Chengc0f64ff2006-11-27 23:37:22 +0000155 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000156
Chris Lattner84bc5422007-12-31 04:13:23 +0000157 GP = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
158 SP = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
159 RP = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000160
161 MachineBasicBlock& BB = MF.front();
162
163 unsigned args_int[] = {IA64::r32, IA64::r33, IA64::r34, IA64::r35,
164 IA64::r36, IA64::r37, IA64::r38, IA64::r39};
165
166 unsigned args_FP[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
167 IA64::F12,IA64::F13,IA64::F14, IA64::F15};
168
169 unsigned argVreg[8];
170 unsigned argPreg[8];
171 unsigned argOpc[8];
172
173 unsigned used_FPArgs = 0; // how many FP args have been used so far?
174
175 unsigned ArgOffset = 0;
176 int count = 0;
177
178 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
179 {
180 SDOperand newroot, argt;
181 if(count < 8) { // need to fix this logic? maybe.
182
Duncan Sands83ec4b62008-06-06 12:08:01 +0000183 switch (getValueType(I->getType()).getSimpleVT()) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000184 default:
185 assert(0 && "ERROR in LowerArgs: can't lower this type of arg.\n");
186 case MVT::f32:
187 // fixme? (well, will need to for weird FP structy stuff,
188 // see intel ABI docs)
189 case MVT::f64:
190//XXX BuildMI(&BB, IA64::IDEF, 0, args_FP[used_FPArgs]);
Chris Lattner84bc5422007-12-31 04:13:23 +0000191 MF.getRegInfo().addLiveIn(args_FP[used_FPArgs]);
192 // mark this reg as liveIn
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000193 // floating point args go into f8..f15 as-needed, the increment
194 argVreg[count] = // is below..:
Chris Lattner84bc5422007-12-31 04:13:23 +0000195 MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::f64));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000196 // FP args go into f8..f15 as needed: (hence the ++)
197 argPreg[count] = args_FP[used_FPArgs++];
198 argOpc[count] = IA64::FMOV;
199 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(), argVreg[count],
200 MVT::f64);
201 if (I->getType() == Type::FloatTy)
Chris Lattner0bd48932008-01-17 07:00:52 +0000202 argt = DAG.getNode(ISD::FP_ROUND, MVT::f32, argt,
203 DAG.getIntPtrConstant(0));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000204 break;
205 case MVT::i1: // NOTE: as far as C abi stuff goes,
206 // bools are just boring old ints
207 case MVT::i8:
208 case MVT::i16:
209 case MVT::i32:
210 case MVT::i64:
211//XXX BuildMI(&BB, IA64::IDEF, 0, args_int[count]);
Chris Lattner84bc5422007-12-31 04:13:23 +0000212 MF.getRegInfo().addLiveIn(args_int[count]);
213 // mark this register as liveIn
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000214 argVreg[count] =
Chris Lattner84bc5422007-12-31 04:13:23 +0000215 MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000216 argPreg[count] = args_int[count];
217 argOpc[count] = IA64::MOV;
218 argt = newroot =
219 DAG.getCopyFromReg(DAG.getRoot(), argVreg[count], MVT::i64);
220 if ( getValueType(I->getType()) != MVT::i64)
221 argt = DAG.getNode(ISD::TRUNCATE, getValueType(I->getType()),
222 newroot);
223 break;
224 }
225 } else { // more than 8 args go into the frame
226 // Create the frame index object for this incoming parameter...
227 ArgOffset = 16 + 8 * (count - 8);
228 int FI = MFI->CreateFixedObject(8, ArgOffset);
229
230 // Create the SelectionDAG nodes corresponding to a load
231 //from this parameter
232 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i64);
233 argt = newroot = DAG.getLoad(getValueType(I->getType()),
Evan Cheng466685d2006-10-09 20:57:25 +0000234 DAG.getEntryNode(), FIN, NULL, 0);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000235 }
236 ++count;
237 DAG.setRoot(newroot.getValue(1));
238 ArgValues.push_back(argt);
239 }
240
241
242 // Create a vreg to hold the output of (what will become)
243 // the "alloc" instruction
Chris Lattner84bc5422007-12-31 04:13:23 +0000244 VirtGPR = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Evan Chengc0f64ff2006-11-27 23:37:22 +0000245 BuildMI(&BB, TII->get(IA64::PSEUDO_ALLOC), VirtGPR);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000246 // we create a PSEUDO_ALLOC (pseudo)instruction for now
Duraid Madinab97cc992005-11-04 10:01:10 +0000247/*
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000248 BuildMI(&BB, IA64::IDEF, 0, IA64::r1);
249
250 // hmm:
251 BuildMI(&BB, IA64::IDEF, 0, IA64::r12);
252 BuildMI(&BB, IA64::IDEF, 0, IA64::rp);
253 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000254
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000255 BuildMI(&BB, IA64::MOV, 1, GP).addReg(IA64::r1);
256
257 // hmm:
258 BuildMI(&BB, IA64::MOV, 1, SP).addReg(IA64::r12);
259 BuildMI(&BB, IA64::MOV, 1, RP).addReg(IA64::rp);
260 // ..hmm.
Duraid Madinab97cc992005-11-04 10:01:10 +0000261*/
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000262
263 unsigned tempOffset=0;
264
265 // if this is a varargs function, we simply lower llvm.va_start by
266 // pointing to the first entry
267 if(F.isVarArg()) {
268 tempOffset=0;
269 VarArgsFrameIndex = MFI->CreateFixedObject(8, tempOffset);
270 }
271
272 // here we actually do the moving of args, and store them to the stack
273 // too if this is a varargs function:
274 for (int i = 0; i < count && i < 8; ++i) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000275 BuildMI(&BB, TII->get(argOpc[i]), argVreg[i]).addReg(argPreg[i]);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000276 if(F.isVarArg()) {
277 // if this is a varargs function, we copy the input registers to the stack
278 int FI = MFI->CreateFixedObject(8, tempOffset);
279 tempOffset+=8; //XXX: is it safe to use r22 like this?
Evan Chengc0f64ff2006-11-27 23:37:22 +0000280 BuildMI(&BB, TII->get(IA64::MOV), IA64::r22).addFrameIndex(FI);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000281 // FIXME: we should use st8.spill here, one day
Evan Chengc0f64ff2006-11-27 23:37:22 +0000282 BuildMI(&BB, TII->get(IA64::ST8), IA64::r22).addReg(argPreg[i]);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000283 }
284 }
285
286 // Finally, inform the code generator which regs we return values in.
287 // (see the ISD::RET: case in the instruction selector)
Duncan Sands83ec4b62008-06-06 12:08:01 +0000288 switch (getValueType(F.getReturnType()).getSimpleVT()) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000289 default: assert(0 && "i have no idea where to return this type!");
290 case MVT::isVoid: break;
291 case MVT::i1:
292 case MVT::i8:
293 case MVT::i16:
294 case MVT::i32:
295 case MVT::i64:
Chris Lattner84bc5422007-12-31 04:13:23 +0000296 MF.getRegInfo().addLiveOut(IA64::r8);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000297 break;
298 case MVT::f32:
299 case MVT::f64:
Chris Lattner84bc5422007-12-31 04:13:23 +0000300 MF.getRegInfo().addLiveOut(IA64::F8);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000301 break;
302 }
303
304 return ArgValues;
305}
306
307std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +0000308IA64TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
309 bool RetSExt, bool RetZExt,
Reid Spencer47857812006-12-31 05:55:36 +0000310 bool isVarArg, unsigned CallingConv,
311 bool isTailCall, SDOperand Callee,
312 ArgListTy &Args, SelectionDAG &DAG) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000313
314 MachineFunction &MF = DAG.getMachineFunction();
315
316 unsigned NumBytes = 16;
317 unsigned outRegsUsed = 0;
318
319 if (Args.size() > 8) {
320 NumBytes += (Args.size() - 8) * 8;
321 outRegsUsed = 8;
322 } else {
323 outRegsUsed = Args.size();
324 }
325
326 // FIXME? this WILL fail if we ever try to pass around an arg that
327 // consumes more than a single output slot (a 'real' double, int128
328 // some sort of aggregate etc.), as we'll underestimate how many 'outX'
329 // registers we use. Hopefully, the assembler will notice.
330 MF.getInfo<IA64FunctionInfo>()->outRegsUsed=
331 std::max(outRegsUsed, MF.getInfo<IA64FunctionInfo>()->outRegsUsed);
332
Duraid Madina98d13782005-12-22 04:07:40 +0000333 // keep stack frame 16-byte aligned
Reid Spencer47857812006-12-31 05:55:36 +0000334 // assert(NumBytes==((NumBytes+15) & ~15) &&
335 // "stack frame not 16-byte aligned!");
Duraid Madina98d13782005-12-22 04:07:40 +0000336 NumBytes = (NumBytes+15) & ~15;
337
Chris Lattner94dd2922006-02-13 09:00:43 +0000338 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes, getPointerTy()));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000339
Evan Cheng8b2794a2006-10-13 21:14:26 +0000340 SDOperand StackPtr;
Duraid Madina98d13782005-12-22 04:07:40 +0000341 std::vector<SDOperand> Stores;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000342 std::vector<SDOperand> Converts;
Duraid Madina98d13782005-12-22 04:07:40 +0000343 std::vector<SDOperand> RegValuesToPass;
344 unsigned ArgOffset = 16;
345
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000346 for (unsigned i = 0, e = Args.size(); i != e; ++i)
347 {
Reid Spencer47857812006-12-31 05:55:36 +0000348 SDOperand Val = Args[i].Node;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000349 MVT ObjectVT = Val.getValueType();
Chris Lattnercd618ef2006-01-10 19:45:18 +0000350 SDOperand ValToStore(0, 0), ValToConvert(0, 0);
Duraid Madina98d13782005-12-22 04:07:40 +0000351 unsigned ObjSize=8;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000352 switch (ObjectVT.getSimpleVT()) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000353 default: assert(0 && "unexpected argument type!");
354 case MVT::i1:
355 case MVT::i8:
356 case MVT::i16:
Reid Spencer47857812006-12-31 05:55:36 +0000357 case MVT::i32: {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000358 //promote to 64-bits, sign/zero extending based on type
359 //of the argument
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000360 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
361 if (Args[i].isSExt)
Reid Spencer47857812006-12-31 05:55:36 +0000362 ExtendKind = ISD::SIGN_EXTEND;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000363 else if (Args[i].isZExt)
364 ExtendKind = ISD::ZERO_EXTEND;
Reid Spencer47857812006-12-31 05:55:36 +0000365 Val = DAG.getNode(ExtendKind, MVT::i64, Val);
Duraid Madina98d13782005-12-22 04:07:40 +0000366 // XXX: fall through
Reid Spencer47857812006-12-31 05:55:36 +0000367 }
Duraid Madina98d13782005-12-22 04:07:40 +0000368 case MVT::i64:
369 //ObjSize = 8;
370 if(RegValuesToPass.size() >= 8) {
371 ValToStore = Val;
372 } else {
373 RegValuesToPass.push_back(Val);
374 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000375 break;
376 case MVT::f32:
377 //promote to 64-bits
Duraid Madina98d13782005-12-22 04:07:40 +0000378 Val = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Val);
379 // XXX: fall through
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000380 case MVT::f64:
Duraid Madina98d13782005-12-22 04:07:40 +0000381 if(RegValuesToPass.size() >= 8) {
382 ValToStore = Val;
383 } else {
384 RegValuesToPass.push_back(Val);
Anton Korobeynikovbed29462007-04-16 18:10:23 +0000385 if(1 /* TODO: if(calling external or varadic function)*/ ) {
386 ValToConvert = Val; // additionally pass this FP value as an int
387 }
Duraid Madina98d13782005-12-22 04:07:40 +0000388 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000389 break;
390 }
Duraid Madina98d13782005-12-22 04:07:40 +0000391
392 if(ValToStore.Val) {
393 if(!StackPtr.Val) {
394 StackPtr = DAG.getRegister(IA64::r12, MVT::i64);
Duraid Madina98d13782005-12-22 04:07:40 +0000395 }
396 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
397 PtrOff = DAG.getNode(ISD::ADD, MVT::i64, StackPtr, PtrOff);
Evan Cheng8b2794a2006-10-13 21:14:26 +0000398 Stores.push_back(DAG.getStore(Chain, ValToStore, PtrOff, NULL, 0));
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000399 ArgOffset += ObjSize;
Duraid Madina98d13782005-12-22 04:07:40 +0000400 }
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000401
402 if(ValToConvert.Val) {
Anton Korobeynikovbed29462007-04-16 18:10:23 +0000403 Converts.push_back(DAG.getNode(IA64ISD::GETFD, MVT::i64, ValToConvert));
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000404 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000405 }
406
Duraid Madina98d13782005-12-22 04:07:40 +0000407 // Emit all stores, make sure they occur before any copies into physregs.
408 if (!Stores.empty())
Chris Lattnere2199452006-08-11 17:38:39 +0000409 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Stores[0],Stores.size());
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000410
Duraid Madina98d13782005-12-22 04:07:40 +0000411 static const unsigned IntArgRegs[] = {
412 IA64::out0, IA64::out1, IA64::out2, IA64::out3,
413 IA64::out4, IA64::out5, IA64::out6, IA64::out7
414 };
415
416 static const unsigned FPArgRegs[] = {
417 IA64::F8, IA64::F9, IA64::F10, IA64::F11,
418 IA64::F12, IA64::F13, IA64::F14, IA64::F15
419 };
420
421 SDOperand InFlag;
422
423 // save the current GP, SP and RP : FIXME: do we need to do all 3 always?
424 SDOperand GPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r1, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000425 Chain = GPBeforeCall.getValue(1);
426 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000427 SDOperand SPBeforeCall = DAG.getCopyFromReg(Chain, IA64::r12, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000428 Chain = SPBeforeCall.getValue(1);
429 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000430 SDOperand RPBeforeCall = DAG.getCopyFromReg(Chain, IA64::rp, MVT::i64, InFlag);
Chris Lattner271426a2006-01-12 01:33:08 +0000431 Chain = RPBeforeCall.getValue(1);
432 InFlag = Chain.getValue(2);
Duraid Madina98d13782005-12-22 04:07:40 +0000433
434 // Build a sequence of copy-to-reg nodes chained together with token chain
435 // and flag operands which copy the outgoing integer args into regs out[0-7]
436 // mapped 1:1 and the FP args into regs F8-F15 "lazily"
437 // TODO: for performance, we should only copy FP args into int regs when we
438 // know this is required (i.e. for varardic or external (unknown) functions)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000439
440 // first to the FP->(integer representation) conversions, these are
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000441 // flagged for now, but shouldn't have to be (TODO)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000442 unsigned seenConverts = 0;
443 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000444 if(RegValuesToPass[i].getValueType().isFloatingPoint()) {
Reid Spencer47857812006-12-31 05:55:36 +0000445 Chain = DAG.getCopyToReg(Chain, IntArgRegs[i], Converts[seenConverts++],
446 InFlag);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000447 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000448 }
449 }
450
Duraid Madina9b3e4c82005-12-27 10:17:03 +0000451 // next copy args into the usual places, these are flagged
Duraid Madina98d13782005-12-22 04:07:40 +0000452 unsigned usedFPArgs = 0;
453 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
454 Chain = DAG.getCopyToReg(Chain,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000455 RegValuesToPass[i].getValueType().isInteger() ?
Reid Spencer47857812006-12-31 05:55:36 +0000456 IntArgRegs[i] : FPArgRegs[usedFPArgs++], RegValuesToPass[i], InFlag);
Duraid Madina98d13782005-12-22 04:07:40 +0000457 InFlag = Chain.getValue(1);
Duraid Madina98d13782005-12-22 04:07:40 +0000458 }
459
Duraid Madina98d13782005-12-22 04:07:40 +0000460 // If the callee is a GlobalAddress node (quite common, every direct call is)
461 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000462/*
463 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Duraid Madina98d13782005-12-22 04:07:40 +0000464 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i64);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000465 }
466*/
Duraid Madina98d13782005-12-22 04:07:40 +0000467
Duncan Sands83ec4b62008-06-06 12:08:01 +0000468 std::vector<MVT> NodeTys;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000469 std::vector<SDOperand> CallOperands;
Duraid Madina98d13782005-12-22 04:07:40 +0000470 NodeTys.push_back(MVT::Other); // Returns a chain
471 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000472 CallOperands.push_back(Chain);
473 CallOperands.push_back(Callee);
474
475 // emit the call itself
Duraid Madina98d13782005-12-22 04:07:40 +0000476 if (InFlag.Val)
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000477 CallOperands.push_back(InFlag);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000478 else
479 assert(0 && "this should never happen!\n");
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000480
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000481 // to make way for a hack:
Chris Lattnere0e42d42006-08-11 17:21:12 +0000482 Chain = DAG.getNode(IA64ISD::BRCALL, NodeTys,
483 &CallOperands[0], CallOperands.size());
Duraid Madina98d13782005-12-22 04:07:40 +0000484 InFlag = Chain.getValue(1);
485
486 // restore the GP, SP and RP after the call
487 Chain = DAG.getCopyToReg(Chain, IA64::r1, GPBeforeCall, InFlag);
488 InFlag = Chain.getValue(1);
489 Chain = DAG.getCopyToReg(Chain, IA64::r12, SPBeforeCall, InFlag);
490 InFlag = Chain.getValue(1);
491 Chain = DAG.getCopyToReg(Chain, IA64::rp, RPBeforeCall, InFlag);
492 InFlag = Chain.getValue(1);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000493
Duncan Sands83ec4b62008-06-06 12:08:01 +0000494 std::vector<MVT> RetVals;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000495 RetVals.push_back(MVT::Other);
496 RetVals.push_back(MVT::Flag);
497
Duncan Sands83ec4b62008-06-06 12:08:01 +0000498 MVT RetTyVT = getValueType(RetTy);
Duraid Madina98d13782005-12-22 04:07:40 +0000499 SDOperand RetVal;
500 if (RetTyVT != MVT::isVoid) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000501 switch (RetTyVT.getSimpleVT()) {
Duraid Madinae7916e62006-01-19 08:31:51 +0000502 default: assert(0 && "Unknown value type to return!");
Duraid Madinac1d3d102006-01-10 05:08:25 +0000503 case MVT::i1: { // bools are just like other integers (returned in r8)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000504 // we *could* fall through to the truncate below, but this saves a
505 // few redundant predicate ops
Reid Spencer47857812006-12-31 05:55:36 +0000506 SDOperand boolInR8 = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64,InFlag);
Duraid Madinac1d3d102006-01-10 05:08:25 +0000507 InFlag = boolInR8.getValue(2);
508 Chain = boolInR8.getValue(1);
509 SDOperand zeroReg = DAG.getCopyFromReg(Chain, IA64::r0, MVT::i64, InFlag);
510 InFlag = zeroReg.getValue(2);
Anton Korobeynikovbed29462007-04-16 18:10:23 +0000511 Chain = zeroReg.getValue(1);
Duraid Madinac1d3d102006-01-10 05:08:25 +0000512
Duraid Madina15d014b2006-01-10 05:26:01 +0000513 RetVal = DAG.getSetCC(MVT::i1, boolInR8, zeroReg, ISD::SETNE);
Duraid Madina98d13782005-12-22 04:07:40 +0000514 break;
Duraid Madinac1d3d102006-01-10 05:08:25 +0000515 }
Duraid Madina98d13782005-12-22 04:07:40 +0000516 case MVT::i8:
517 case MVT::i16:
518 case MVT::i32:
519 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
520 Chain = RetVal.getValue(1);
521
Duraid Madinae7916e62006-01-19 08:31:51 +0000522 // keep track of whether it is sign or zero extended (todo: bools?)
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000523/* XXX
Duraid Madina98d13782005-12-22 04:07:40 +0000524 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
525 MVT::i64, RetVal, DAG.getValueType(RetTyVT));
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000526*/
Duraid Madina98d13782005-12-22 04:07:40 +0000527 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
Duraid Madina98b3a832005-12-22 06:39:57 +0000528 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000529 case MVT::i64:
530 RetVal = DAG.getCopyFromReg(Chain, IA64::r8, MVT::i64, InFlag);
531 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000532 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000533 break;
Duraid Madinae7916e62006-01-19 08:31:51 +0000534 case MVT::f32:
535 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
536 Chain = RetVal.getValue(1);
Chris Lattner3f1891c2008-05-28 04:14:30 +0000537 RetVal = DAG.getNode(ISD::FP_ROUND, MVT::f32, RetVal,
538 DAG.getIntPtrConstant(0));
Duraid Madinae7916e62006-01-19 08:31:51 +0000539 break;
Duraid Madina98d13782005-12-22 04:07:40 +0000540 case MVT::f64:
541 RetVal = DAG.getCopyFromReg(Chain, IA64::F8, MVT::f64, InFlag);
542 Chain = RetVal.getValue(1);
Duraid Madinaa5959bf2006-01-12 03:28:40 +0000543 InFlag = RetVal.getValue(2); // XXX dead
Duraid Madina98d13782005-12-22 04:07:40 +0000544 break;
545 }
546 }
547
Bill Wendling0f8d9c02007-11-13 00:44:25 +0000548 Chain = DAG.getCALLSEQ_END(Chain,
549 DAG.getConstant(NumBytes, getPointerTy()),
550 DAG.getConstant(0, getPointerTy()),
551 SDOperand());
Duraid Madina98d13782005-12-22 04:07:40 +0000552 return std::make_pair(RetVal, Chain);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000553}
554
Duraid Madinabea99472006-01-20 20:24:31 +0000555SDOperand IA64TargetLowering::
556LowerOperation(SDOperand Op, SelectionDAG &DAG) {
557 switch (Op.getOpcode()) {
558 default: assert(0 && "Should not custom lower this!");
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000559 case ISD::GlobalTLSAddress:
560 assert(0 && "TLS not implemented for IA64.");
Nate Begemanee625572006-01-27 21:09:22 +0000561 case ISD::RET: {
562 SDOperand AR_PFSVal, Copy;
Duraid Madinabea99472006-01-20 20:24:31 +0000563
Nate Begemanee625572006-01-27 21:09:22 +0000564 switch(Op.getNumOperands()) {
565 default:
566 assert(0 && "Do not know how to return this many arguments!");
567 abort();
568 case 1:
569 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), VirtGPR, MVT::i64);
570 AR_PFSVal = DAG.getCopyToReg(AR_PFSVal.getValue(1), IA64::AR_PFS,
571 AR_PFSVal);
572 return DAG.getNode(IA64ISD::RET_FLAG, MVT::Other, AR_PFSVal);
Evan Cheng6848be12006-05-26 23:10:12 +0000573 case 3: {
Nate Begemanee625572006-01-27 21:09:22 +0000574 // Copy the result into the output register & restore ar.pfs
Duncan Sands83ec4b62008-06-06 12:08:01 +0000575 MVT ArgVT = Op.getOperand(1).getValueType();
576 unsigned ArgReg = ArgVT.isInteger() ? IA64::r8 : IA64::F8;
Duraid Madinabea99472006-01-20 20:24:31 +0000577
Nate Begemanee625572006-01-27 21:09:22 +0000578 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), VirtGPR, MVT::i64);
579 Copy = DAG.getCopyToReg(AR_PFSVal.getValue(1), ArgReg, Op.getOperand(1),
580 SDOperand());
581 AR_PFSVal = DAG.getCopyToReg(Copy.getValue(0), IA64::AR_PFS, AR_PFSVal,
582 Copy.getValue(1));
Evan Cheng4b790572006-08-16 07:28:58 +0000583 return DAG.getNode(IA64ISD::RET_FLAG, MVT::Other,
584 AR_PFSVal, AR_PFSVal.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000585 }
586 }
587 return SDOperand();
Duraid Madinabea99472006-01-20 20:24:31 +0000588 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000589 case ISD::VAARG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000590 MVT VT = getPointerTy();
Dan Gohman69de1932008-02-06 22:27:42 +0000591 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Nate Begemanacc398c2006-01-25 18:21:52 +0000592 SDOperand VAList = DAG.getLoad(VT, Op.getOperand(0), Op.getOperand(1),
Dan Gohman69de1932008-02-06 22:27:42 +0000593 SV, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +0000594 // Increment the pointer, VAList, to the next vaarg
595 SDOperand VAIncr = DAG.getNode(ISD::ADD, VT, VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000596 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +0000597 VT));
598 // Store the incremented VAList to the legalized pointer
Evan Cheng786225a2006-10-05 23:01:46 +0000599 VAIncr = DAG.getStore(VAList.getValue(1), VAIncr,
Dan Gohman69de1932008-02-06 22:27:42 +0000600 Op.getOperand(1), SV, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +0000601 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +0000602 return DAG.getLoad(Op.getValueType(), VAIncr, VAList, NULL, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +0000603 }
604 case ISD::VASTART: {
605 // vastart just stores the address of the VarArgsFrameIndex slot into the
606 // memory location argument.
607 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i64);
Dan Gohman69de1932008-02-06 22:27:42 +0000608 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
609 return DAG.getStore(Op.getOperand(0), FR, Op.getOperand(1), SV, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +0000610 }
Nate Begemanbcc5f362007-01-29 22:58:52 +0000611 // Frame & Return address. Currently unimplemented
612 case ISD::RETURNADDR: break;
613 case ISD::FRAMEADDR: break;
Duraid Madinabea99472006-01-20 20:24:31 +0000614 }
Nate Begemanbcc5f362007-01-29 22:58:52 +0000615 return SDOperand();
Duraid Madinabea99472006-01-20 20:24:31 +0000616}