blob: 587860c5b5c4c8f2cc12a98dc1a1d046b4413c5b [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- IA64ISelLowering.cpp - IA64 DAG Lowering Implementation -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Lattner1b989192007-12-31 04:13:23 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Edwin Török2b331342009-07-08 19:04:27 +000022#include "llvm/Support/ErrorHandling.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000023#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/Constants.h"
25#include "llvm/Function.h"
26using namespace llvm;
27
28IA64TargetLowering::IA64TargetLowering(TargetMachine &TM)
29 : TargetLowering(TM) {
30
Chris Lattner9a45c0f2008-05-28 03:59:32 +000031 // register class for general registers
32 addRegisterClass(MVT::i64, IA64::GRRegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033
Chris Lattner9a45c0f2008-05-28 03:59:32 +000034 // register class for FP registers
35 addRegisterClass(MVT::f64, IA64::FPRegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036
Chris Lattner9a45c0f2008-05-28 03:59:32 +000037 // register class for predicate registers
38 addRegisterClass(MVT::i1, IA64::PRRegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039
Evan Cheng08c171a2008-10-14 21:26:46 +000040 setLoadExtAction(ISD::EXTLOAD , MVT::i1 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041
Evan Cheng08c171a2008-10-14 21:26:46 +000042 setLoadExtAction(ISD::ZEXTLOAD , MVT::i1 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043
Evan Cheng08c171a2008-10-14 21:26:46 +000044 setLoadExtAction(ISD::SEXTLOAD , MVT::i1 , Promote);
45 setLoadExtAction(ISD::SEXTLOAD , MVT::i8 , Expand);
46 setLoadExtAction(ISD::SEXTLOAD , MVT::i16 , Expand);
47 setLoadExtAction(ISD::SEXTLOAD , MVT::i32 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048
Chris Lattner9a45c0f2008-05-28 03:59:32 +000049 setOperationAction(ISD::BRIND , MVT::Other, Expand);
50 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
51 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
52 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053
Chris Lattner9a45c0f2008-05-28 03:59:32 +000054 // ia64 uses SELECT not SELECT_CC
55 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
56
57 // We need to handle ISD::RET for void functions ourselves,
58 // so we get a chance to restore ar.pfs before adding a
59 // br.ret insn
60 setOperationAction(ISD::RET, MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
Chris Lattner9a45c0f2008-05-28 03:59:32 +000062 setShiftAmountType(MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063
Chris Lattner9a45c0f2008-05-28 03:59:32 +000064 setOperationAction(ISD::FREM , MVT::f32 , Expand);
65 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066
Chris Lattner9a45c0f2008-05-28 03:59:32 +000067 setOperationAction(ISD::UREM , MVT::f32 , Expand);
68 setOperationAction(ISD::UREM , MVT::f64 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069
Chris Lattner9a45c0f2008-05-28 03:59:32 +000070 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
Andrew Lenharth0531ec52008-02-16 14:46:26 +000071
Chris Lattner9a45c0f2008-05-28 03:59:32 +000072 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
73 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074
Chris Lattner9a45c0f2008-05-28 03:59:32 +000075 // We don't support sin/cos/sqrt/pow
76 setOperationAction(ISD::FSIN , MVT::f64, Expand);
77 setOperationAction(ISD::FCOS , MVT::f64, Expand);
78 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
79 setOperationAction(ISD::FPOW , MVT::f64, Expand);
80 setOperationAction(ISD::FSIN , MVT::f32, Expand);
81 setOperationAction(ISD::FCOS , MVT::f32, Expand);
82 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
83 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084
Chris Lattnercfb9ec42008-05-28 04:00:06 +000085 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
86
Chris Lattner9a45c0f2008-05-28 03:59:32 +000087 // FIXME: IA64 supports fcopysign natively!
88 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
89 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
90
91 // We don't have line number support yet.
Dan Gohman472d12c2008-06-30 20:59:49 +000092 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Chris Lattner9a45c0f2008-05-28 03:59:32 +000093 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Dan Gohmanfa607c92008-07-01 00:05:16 +000094 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
95 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096
Nate Begemand00fb422008-05-28 16:31:36 +000097 // IA64 has ctlz in the form of the 'fnorm' instruction. The Legalizer
98 // expansion for ctlz/cttz in terms of ctpop is much larger, but lower
99 // latency.
100 // FIXME: Custom lower CTLZ when compiling for size?
Chris Lattner9a45c0f2008-05-28 03:59:32 +0000101 setOperationAction(ISD::CTLZ , MVT::i64 , Expand);
Nate Begemand00fb422008-05-28 16:31:36 +0000102 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chris Lattner9a45c0f2008-05-28 03:59:32 +0000103 setOperationAction(ISD::ROTL , MVT::i64 , Expand);
104 setOperationAction(ISD::ROTR , MVT::i64 , Expand);
Nate Begemand00fb422008-05-28 16:31:36 +0000105
106 // FIXME: IA64 has this, but is not implemented. should be mux @rev
107 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108
Chris Lattner9a45c0f2008-05-28 03:59:32 +0000109 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
110 setOperationAction(ISD::VAARG , MVT::Other, Custom);
111 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Eli Friedman35be0012009-06-16 06:40:59 +0000112
113 // FIXME: These should be legal
114 setOperationAction(ISD::BIT_CONVERT, MVT::i64, Expand);
115 setOperationAction(ISD::BIT_CONVERT, MVT::f64, Expand);
Chris Lattner9a45c0f2008-05-28 03:59:32 +0000116
117 // Use the default implementation.
118 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
119 setOperationAction(ISD::VAEND , MVT::Other, Expand);
120 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
121 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
122 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123
Chris Lattner9a45c0f2008-05-28 03:59:32 +0000124 // Thread Local Storage
125 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126
Chris Lattner9a45c0f2008-05-28 03:59:32 +0000127 setStackPointerRegisterToSaveRestore(IA64::r12);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128
Chris Lattner9a45c0f2008-05-28 03:59:32 +0000129 setJumpBufSize(704); // on ia64-linux, jmp_bufs are 704 bytes..
130 setJumpBufAlignment(16); // ...and must be 16-byte aligned
131
132 computeRegisterProperties();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133
Chris Lattner9a45c0f2008-05-28 03:59:32 +0000134 addLegalFPImmediate(APFloat(+0.0));
135 addLegalFPImmediate(APFloat(-0.0));
136 addLegalFPImmediate(APFloat(+1.0));
137 addLegalFPImmediate(APFloat(-1.0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138}
139
140const char *IA64TargetLowering::getTargetNodeName(unsigned Opcode) const {
141 switch (Opcode) {
142 default: return 0;
143 case IA64ISD::GETFD: return "IA64ISD::GETFD";
144 case IA64ISD::BRCALL: return "IA64ISD::BRCALL";
145 case IA64ISD::RET_FLAG: return "IA64ISD::RET_FLAG";
146 }
147}
148
Duncan Sands4a361272009-01-01 15:52:00 +0000149MVT IA64TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel502151f2008-03-10 15:42:14 +0000150 return MVT::i1;
151}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152
Bill Wendling045f2632009-07-01 18:50:55 +0000153/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling25a8ae32009-06-30 22:38:32 +0000154unsigned IA64TargetLowering::getFunctionAlignment(const Function *) const {
155 return 5;
156}
157
Dan Gohmane0208142008-06-30 20:31:15 +0000158void IA64TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesenca6237b2009-01-30 23:10:59 +0000159 SmallVectorImpl<SDValue> &ArgValues,
160 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 //
162 // add beautiful description of IA64 stack frame format
163 // here (from intel 24535803.pdf most likely)
164 //
165 MachineFunction &MF = DAG.getMachineFunction();
166 MachineFrameInfo *MFI = MF.getFrameInfo();
167 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
168
Chris Lattner1b989192007-12-31 04:13:23 +0000169 GP = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
170 SP = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
171 RP = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172
173 MachineBasicBlock& BB = MF.front();
174
175 unsigned args_int[] = {IA64::r32, IA64::r33, IA64::r34, IA64::r35,
176 IA64::r36, IA64::r37, IA64::r38, IA64::r39};
177
178 unsigned args_FP[] = {IA64::F8, IA64::F9, IA64::F10, IA64::F11,
179 IA64::F12,IA64::F13,IA64::F14, IA64::F15};
180
181 unsigned argVreg[8];
182 unsigned argPreg[8];
183 unsigned argOpc[8];
184
185 unsigned used_FPArgs = 0; // how many FP args have been used so far?
186
187 unsigned ArgOffset = 0;
188 int count = 0;
189
190 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
191 {
Dan Gohman8181bd12008-07-27 21:46:04 +0000192 SDValue newroot, argt;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 if(count < 8) { // need to fix this logic? maybe.
194
Duncan Sands92c43912008-06-06 12:08:01 +0000195 switch (getValueType(I->getType()).getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000197 llvm_unreachable("ERROR in LowerArgs: can't lower this type of arg.");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000198 case MVT::f32:
199 // fixme? (well, will need to for weird FP structy stuff,
200 // see intel ABI docs)
201 case MVT::f64:
202//XXX BuildMI(&BB, IA64::IDEF, 0, args_FP[used_FPArgs]);
Chris Lattner1b989192007-12-31 04:13:23 +0000203 MF.getRegInfo().addLiveIn(args_FP[used_FPArgs]);
204 // mark this reg as liveIn
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 // floating point args go into f8..f15 as-needed, the increment
206 argVreg[count] = // is below..:
Chris Lattner1b989192007-12-31 04:13:23 +0000207 MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::f64));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 // FP args go into f8..f15 as needed: (hence the ++)
209 argPreg[count] = args_FP[used_FPArgs++];
210 argOpc[count] = IA64::FMOV;
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000211 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(), dl,
212 argVreg[count], MVT::f64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213 if (I->getType() == Type::FloatTy)
Dale Johannesenca6237b2009-01-30 23:10:59 +0000214 argt = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, argt,
Chris Lattner5872a362008-01-17 07:00:52 +0000215 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 break;
217 case MVT::i1: // NOTE: as far as C abi stuff goes,
218 // bools are just boring old ints
219 case MVT::i8:
220 case MVT::i16:
221 case MVT::i32:
222 case MVT::i64:
223//XXX BuildMI(&BB, IA64::IDEF, 0, args_int[count]);
Chris Lattner1b989192007-12-31 04:13:23 +0000224 MF.getRegInfo().addLiveIn(args_int[count]);
225 // mark this register as liveIn
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 argVreg[count] =
Chris Lattner1b989192007-12-31 04:13:23 +0000227 MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 argPreg[count] = args_int[count];
229 argOpc[count] = IA64::MOV;
230 argt = newroot =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000231 DAG.getCopyFromReg(DAG.getRoot(), dl, argVreg[count], MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 if ( getValueType(I->getType()) != MVT::i64)
Dale Johannesenca6237b2009-01-30 23:10:59 +0000233 argt = DAG.getNode(ISD::TRUNCATE, dl, getValueType(I->getType()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 newroot);
235 break;
236 }
237 } else { // more than 8 args go into the frame
238 // Create the frame index object for this incoming parameter...
239 ArgOffset = 16 + 8 * (count - 8);
240 int FI = MFI->CreateFixedObject(8, ArgOffset);
241
242 // Create the SelectionDAG nodes corresponding to a load
243 //from this parameter
Dan Gohman8181bd12008-07-27 21:46:04 +0000244 SDValue FIN = DAG.getFrameIndex(FI, MVT::i64);
Dale Johannesenca6237b2009-01-30 23:10:59 +0000245 argt = newroot = DAG.getLoad(getValueType(I->getType()), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 DAG.getEntryNode(), FIN, NULL, 0);
247 }
248 ++count;
249 DAG.setRoot(newroot.getValue(1));
250 ArgValues.push_back(argt);
251 }
252
253
254 // Create a vreg to hold the output of (what will become)
255 // the "alloc" instruction
Chris Lattner1b989192007-12-31 04:13:23 +0000256 VirtGPR = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dale Johannesen2ba78362009-02-13 02:34:39 +0000257 BuildMI(&BB, dl, TII->get(IA64::PSEUDO_ALLOC), VirtGPR);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 // we create a PSEUDO_ALLOC (pseudo)instruction for now
259/*
260 BuildMI(&BB, IA64::IDEF, 0, IA64::r1);
261
262 // hmm:
263 BuildMI(&BB, IA64::IDEF, 0, IA64::r12);
264 BuildMI(&BB, IA64::IDEF, 0, IA64::rp);
265 // ..hmm.
266
267 BuildMI(&BB, IA64::MOV, 1, GP).addReg(IA64::r1);
268
269 // hmm:
270 BuildMI(&BB, IA64::MOV, 1, SP).addReg(IA64::r12);
271 BuildMI(&BB, IA64::MOV, 1, RP).addReg(IA64::rp);
272 // ..hmm.
273*/
274
275 unsigned tempOffset=0;
276
277 // if this is a varargs function, we simply lower llvm.va_start by
278 // pointing to the first entry
279 if(F.isVarArg()) {
280 tempOffset=0;
281 VarArgsFrameIndex = MFI->CreateFixedObject(8, tempOffset);
282 }
283
284 // here we actually do the moving of args, and store them to the stack
285 // too if this is a varargs function:
286 for (int i = 0; i < count && i < 8; ++i) {
Dale Johannesen2ba78362009-02-13 02:34:39 +0000287 BuildMI(&BB, dl, TII->get(argOpc[i]), argVreg[i]).addReg(argPreg[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288 if(F.isVarArg()) {
289 // if this is a varargs function, we copy the input registers to the stack
290 int FI = MFI->CreateFixedObject(8, tempOffset);
291 tempOffset+=8; //XXX: is it safe to use r22 like this?
Dale Johannesen2ba78362009-02-13 02:34:39 +0000292 BuildMI(&BB, dl, TII->get(IA64::MOV), IA64::r22).addFrameIndex(FI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 // FIXME: we should use st8.spill here, one day
Dale Johannesen2ba78362009-02-13 02:34:39 +0000294 BuildMI(&BB, dl, TII->get(IA64::ST8), IA64::r22).addReg(argPreg[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 }
296 }
297
298 // Finally, inform the code generator which regs we return values in.
299 // (see the ISD::RET: case in the instruction selector)
Duncan Sands92c43912008-06-06 12:08:01 +0000300 switch (getValueType(F.getReturnType()).getSimpleVT()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000301 default: llvm_unreachable("i have no idea where to return this type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302 case MVT::isVoid: break;
303 case MVT::i1:
304 case MVT::i8:
305 case MVT::i16:
306 case MVT::i32:
307 case MVT::i64:
Chris Lattner1b989192007-12-31 04:13:23 +0000308 MF.getRegInfo().addLiveOut(IA64::r8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 break;
310 case MVT::f32:
311 case MVT::f64:
Chris Lattner1b989192007-12-31 04:13:23 +0000312 MF.getRegInfo().addLiveOut(IA64::F8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313 break;
314 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315}
316
Dan Gohman8181bd12008-07-27 21:46:04 +0000317std::pair<SDValue, SDValue>
318IA64TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
Dale Johannesen67cc9b62008-09-26 19:31:26 +0000319 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller71c69732009-07-03 06:44:53 +0000320 bool isInreg, unsigned NumFixedArgs,
321 unsigned CallingConv,
Dan Gohman8181bd12008-07-27 21:46:04 +0000322 bool isTailCall, SDValue Callee,
Dale Johannesenca6237b2009-01-30 23:10:59 +0000323 ArgListTy &Args, SelectionDAG &DAG,
324 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000325
326 MachineFunction &MF = DAG.getMachineFunction();
327
328 unsigned NumBytes = 16;
329 unsigned outRegsUsed = 0;
330
331 if (Args.size() > 8) {
332 NumBytes += (Args.size() - 8) * 8;
333 outRegsUsed = 8;
334 } else {
335 outRegsUsed = Args.size();
336 }
337
338 // FIXME? this WILL fail if we ever try to pass around an arg that
339 // consumes more than a single output slot (a 'real' double, int128
340 // some sort of aggregate etc.), as we'll underestimate how many 'outX'
341 // registers we use. Hopefully, the assembler will notice.
342 MF.getInfo<IA64FunctionInfo>()->outRegsUsed=
343 std::max(outRegsUsed, MF.getInfo<IA64FunctionInfo>()->outRegsUsed);
344
345 // keep stack frame 16-byte aligned
346 // assert(NumBytes==((NumBytes+15) & ~15) &&
347 // "stack frame not 16-byte aligned!");
348 NumBytes = (NumBytes+15) & ~15;
349
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000350 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351
Dan Gohman8181bd12008-07-27 21:46:04 +0000352 SDValue StackPtr;
353 std::vector<SDValue> Stores;
354 std::vector<SDValue> Converts;
355 std::vector<SDValue> RegValuesToPass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356 unsigned ArgOffset = 16;
357
358 for (unsigned i = 0, e = Args.size(); i != e; ++i)
359 {
Dan Gohman8181bd12008-07-27 21:46:04 +0000360 SDValue Val = Args[i].Node;
Duncan Sands92c43912008-06-06 12:08:01 +0000361 MVT ObjectVT = Val.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +0000362 SDValue ValToStore(0, 0), ValToConvert(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 unsigned ObjSize=8;
Duncan Sands92c43912008-06-06 12:08:01 +0000364 switch (ObjectVT.getSimpleVT()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000365 default: llvm_unreachable("unexpected argument type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 case MVT::i1:
367 case MVT::i8:
368 case MVT::i16:
369 case MVT::i32: {
370 //promote to 64-bits, sign/zero extending based on type
371 //of the argument
372 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
373 if (Args[i].isSExt)
374 ExtendKind = ISD::SIGN_EXTEND;
375 else if (Args[i].isZExt)
376 ExtendKind = ISD::ZERO_EXTEND;
Dale Johannesenca6237b2009-01-30 23:10:59 +0000377 Val = DAG.getNode(ExtendKind, dl, MVT::i64, Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 // XXX: fall through
379 }
380 case MVT::i64:
381 //ObjSize = 8;
382 if(RegValuesToPass.size() >= 8) {
383 ValToStore = Val;
384 } else {
385 RegValuesToPass.push_back(Val);
386 }
387 break;
388 case MVT::f32:
389 //promote to 64-bits
Dale Johannesenca6237b2009-01-30 23:10:59 +0000390 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391 // XXX: fall through
392 case MVT::f64:
393 if(RegValuesToPass.size() >= 8) {
394 ValToStore = Val;
395 } else {
396 RegValuesToPass.push_back(Val);
397 if(1 /* TODO: if(calling external or varadic function)*/ ) {
398 ValToConvert = Val; // additionally pass this FP value as an int
399 }
400 }
401 break;
402 }
403
Gabor Greif1c80d112008-08-28 21:40:38 +0000404 if(ValToStore.getNode()) {
405 if(!StackPtr.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 StackPtr = DAG.getRegister(IA64::r12, MVT::i64);
407 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000408 SDValue PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
Dale Johannesenca6237b2009-01-30 23:10:59 +0000409 PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, PtrOff);
410 Stores.push_back(DAG.getStore(Chain, dl, ValToStore, PtrOff, NULL, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 ArgOffset += ObjSize;
412 }
413
Gabor Greif1c80d112008-08-28 21:40:38 +0000414 if(ValToConvert.getNode()) {
Dale Johannesenca6237b2009-01-30 23:10:59 +0000415 Converts.push_back(DAG.getNode(IA64ISD::GETFD, dl,
416 MVT::i64, ValToConvert));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 }
418 }
419
420 // Emit all stores, make sure they occur before any copies into physregs.
421 if (!Stores.empty())
Dale Johannesenca6237b2009-01-30 23:10:59 +0000422 Chain = DAG.getNode(ISD::TokenFactor, dl,
423 MVT::Other, &Stores[0],Stores.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424
425 static const unsigned IntArgRegs[] = {
426 IA64::out0, IA64::out1, IA64::out2, IA64::out3,
427 IA64::out4, IA64::out5, IA64::out6, IA64::out7
428 };
429
430 static const unsigned FPArgRegs[] = {
431 IA64::F8, IA64::F9, IA64::F10, IA64::F11,
432 IA64::F12, IA64::F13, IA64::F14, IA64::F15
433 };
434
Dan Gohman8181bd12008-07-27 21:46:04 +0000435 SDValue InFlag;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436
437 // save the current GP, SP and RP : FIXME: do we need to do all 3 always?
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000438 SDValue GPBeforeCall = DAG.getCopyFromReg(Chain, dl, IA64::r1,
439 MVT::i64, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440 Chain = GPBeforeCall.getValue(1);
441 InFlag = Chain.getValue(2);
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000442 SDValue SPBeforeCall = DAG.getCopyFromReg(Chain, dl, IA64::r12,
443 MVT::i64, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 Chain = SPBeforeCall.getValue(1);
445 InFlag = Chain.getValue(2);
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000446 SDValue RPBeforeCall = DAG.getCopyFromReg(Chain, dl, IA64::rp,
447 MVT::i64, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448 Chain = RPBeforeCall.getValue(1);
449 InFlag = Chain.getValue(2);
450
451 // Build a sequence of copy-to-reg nodes chained together with token chain
452 // and flag operands which copy the outgoing integer args into regs out[0-7]
453 // mapped 1:1 and the FP args into regs F8-F15 "lazily"
454 // TODO: for performance, we should only copy FP args into int regs when we
455 // know this is required (i.e. for varardic or external (unknown) functions)
456
457 // first to the FP->(integer representation) conversions, these are
458 // flagged for now, but shouldn't have to be (TODO)
459 unsigned seenConverts = 0;
460 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +0000461 if(RegValuesToPass[i].getValueType().isFloatingPoint()) {
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000462 Chain = DAG.getCopyToReg(Chain, dl, IntArgRegs[i],
463 Converts[seenConverts++], InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 InFlag = Chain.getValue(1);
465 }
466 }
467
468 // next copy args into the usual places, these are flagged
469 unsigned usedFPArgs = 0;
470 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000471 Chain = DAG.getCopyToReg(Chain, dl,
Duncan Sands92c43912008-06-06 12:08:01 +0000472 RegValuesToPass[i].getValueType().isInteger() ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 IntArgRegs[i] : FPArgRegs[usedFPArgs++], RegValuesToPass[i], InFlag);
474 InFlag = Chain.getValue(1);
475 }
476
477 // If the callee is a GlobalAddress node (quite common, every direct call is)
478 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
479/*
480 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
481 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i64);
482 }
483*/
484
Duncan Sands92c43912008-06-06 12:08:01 +0000485 std::vector<MVT> NodeTys;
Dan Gohman8181bd12008-07-27 21:46:04 +0000486 std::vector<SDValue> CallOperands;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 NodeTys.push_back(MVT::Other); // Returns a chain
488 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
489 CallOperands.push_back(Chain);
490 CallOperands.push_back(Callee);
491
492 // emit the call itself
Gabor Greif1c80d112008-08-28 21:40:38 +0000493 if (InFlag.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494 CallOperands.push_back(InFlag);
495 else
Edwin Törökbd448e32009-07-14 16:55:14 +0000496 llvm_unreachable("this should never happen!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000497
498 // to make way for a hack:
Dale Johannesenca6237b2009-01-30 23:10:59 +0000499 Chain = DAG.getNode(IA64ISD::BRCALL, dl, NodeTys,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 &CallOperands[0], CallOperands.size());
501 InFlag = Chain.getValue(1);
502
503 // restore the GP, SP and RP after the call
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000504 Chain = DAG.getCopyToReg(Chain, dl, IA64::r1, GPBeforeCall, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505 InFlag = Chain.getValue(1);
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000506 Chain = DAG.getCopyToReg(Chain, dl, IA64::r12, SPBeforeCall, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507 InFlag = Chain.getValue(1);
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000508 Chain = DAG.getCopyToReg(Chain, dl, IA64::rp, RPBeforeCall, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 InFlag = Chain.getValue(1);
510
Duncan Sands92c43912008-06-06 12:08:01 +0000511 std::vector<MVT> RetVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 RetVals.push_back(MVT::Other);
513 RetVals.push_back(MVT::Flag);
514
Duncan Sands92c43912008-06-06 12:08:01 +0000515 MVT RetTyVT = getValueType(RetTy);
Dan Gohman8181bd12008-07-27 21:46:04 +0000516 SDValue RetVal;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 if (RetTyVT != MVT::isVoid) {
Duncan Sands92c43912008-06-06 12:08:01 +0000518 switch (RetTyVT.getSimpleVT()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000519 default: llvm_unreachable("Unknown value type to return!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 case MVT::i1: { // bools are just like other integers (returned in r8)
521 // we *could* fall through to the truncate below, but this saves a
522 // few redundant predicate ops
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000523 SDValue boolInR8 = DAG.getCopyFromReg(Chain, dl, IA64::r8,
524 MVT::i64,InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525 InFlag = boolInR8.getValue(2);
526 Chain = boolInR8.getValue(1);
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000527 SDValue zeroReg = DAG.getCopyFromReg(Chain, dl, IA64::r0,
528 MVT::i64, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 InFlag = zeroReg.getValue(2);
530 Chain = zeroReg.getValue(1);
531
Dale Johannesenca6237b2009-01-30 23:10:59 +0000532 RetVal = DAG.getSetCC(dl, MVT::i1, boolInR8, zeroReg, ISD::SETNE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 break;
534 }
535 case MVT::i8:
536 case MVT::i16:
537 case MVT::i32:
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000538 RetVal = DAG.getCopyFromReg(Chain, dl, IA64::r8, MVT::i64, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539 Chain = RetVal.getValue(1);
540
541 // keep track of whether it is sign or zero extended (todo: bools?)
542/* XXX
543 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
Dale Johannesenca6237b2009-01-30 23:10:59 +0000544 dl, MVT::i64, RetVal, DAG.getValueType(RetTyVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000545*/
Dale Johannesenca6237b2009-01-30 23:10:59 +0000546 RetVal = DAG.getNode(ISD::TRUNCATE, dl, RetTyVT, RetVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547 break;
548 case MVT::i64:
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000549 RetVal = DAG.getCopyFromReg(Chain, dl, IA64::r8, MVT::i64, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550 Chain = RetVal.getValue(1);
551 InFlag = RetVal.getValue(2); // XXX dead
552 break;
553 case MVT::f32:
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000554 RetVal = DAG.getCopyFromReg(Chain, dl, IA64::F8, MVT::f64, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 Chain = RetVal.getValue(1);
Dale Johannesenca6237b2009-01-30 23:10:59 +0000556 RetVal = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, RetVal,
Chris Lattner840ebfa2008-05-28 04:14:30 +0000557 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 break;
559 case MVT::f64:
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000560 RetVal = DAG.getCopyFromReg(Chain, dl, IA64::F8, MVT::f64, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 Chain = RetVal.getValue(1);
562 InFlag = RetVal.getValue(2); // XXX dead
563 break;
564 }
565 }
566
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000567 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
568 DAG.getIntPtrConstant(0, true), SDValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 return std::make_pair(RetVal, Chain);
570}
571
Dan Gohman8181bd12008-07-27 21:46:04 +0000572SDValue IA64TargetLowering::
573LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dale Johannesenea996922009-02-04 20:06:27 +0000574 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 switch (Op.getOpcode()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000576 default: llvm_unreachable("Should not custom lower this!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 case ISD::GlobalTLSAddress:
Edwin Törökbd448e32009-07-14 16:55:14 +0000578 llvm_unreachable("TLS not implemented for IA64.");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 case ISD::RET: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000580 SDValue AR_PFSVal, Copy;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581
582 switch(Op.getNumOperands()) {
583 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000584 llvm_unreachable("Do not know how to return this many arguments!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 case 1:
Dale Johannesenea996922009-02-04 20:06:27 +0000586 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), dl, VirtGPR, MVT::i64);
587 AR_PFSVal = DAG.getCopyToReg(AR_PFSVal.getValue(1), dl, IA64::AR_PFS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 AR_PFSVal);
Dale Johannesenea996922009-02-04 20:06:27 +0000589 return DAG.getNode(IA64ISD::RET_FLAG, dl, MVT::Other, AR_PFSVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 case 3: {
591 // Copy the result into the output register & restore ar.pfs
Duncan Sands92c43912008-06-06 12:08:01 +0000592 MVT ArgVT = Op.getOperand(1).getValueType();
593 unsigned ArgReg = ArgVT.isInteger() ? IA64::r8 : IA64::F8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000594
Dale Johannesenea996922009-02-04 20:06:27 +0000595 AR_PFSVal = DAG.getCopyFromReg(Op.getOperand(0), dl, VirtGPR, MVT::i64);
596 Copy = DAG.getCopyToReg(AR_PFSVal.getValue(1), dl, ArgReg,
597 Op.getOperand(1), SDValue());
598 AR_PFSVal = DAG.getCopyToReg(Copy.getValue(0), dl,
599 IA64::AR_PFS, AR_PFSVal, Copy.getValue(1));
600 return DAG.getNode(IA64ISD::RET_FLAG, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601 AR_PFSVal, AR_PFSVal.getValue(1));
602 }
603 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000604 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605 }
606 case ISD::VAARG: {
Duncan Sands92c43912008-06-06 12:08:01 +0000607 MVT VT = getPointerTy();
Dan Gohman12a9c082008-02-06 22:27:42 +0000608 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesenea996922009-02-04 20:06:27 +0000609 SDValue VAList = DAG.getLoad(VT, dl, Op.getOperand(0), Op.getOperand(1),
Dan Gohman12a9c082008-02-06 22:27:42 +0000610 SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenea996922009-02-04 20:06:27 +0000612 SDValue VAIncr = DAG.getNode(ISD::ADD, dl, VT, VAList,
Duncan Sands92c43912008-06-06 12:08:01 +0000613 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614 VT));
615 // Store the incremented VAList to the legalized pointer
Dale Johannesenea996922009-02-04 20:06:27 +0000616 VAIncr = DAG.getStore(VAList.getValue(1), dl, VAIncr,
Dan Gohman12a9c082008-02-06 22:27:42 +0000617 Op.getOperand(1), SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 // Load the actual argument out of the pointer VAList
Dale Johannesenea996922009-02-04 20:06:27 +0000619 return DAG.getLoad(Op.getValueType(), dl, VAIncr, VAList, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 }
621 case ISD::VASTART: {
622 // vastart just stores the address of the VarArgsFrameIndex slot into the
623 // memory location argument.
Dan Gohman8181bd12008-07-27 21:46:04 +0000624 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i64);
Dan Gohman12a9c082008-02-06 22:27:42 +0000625 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesenea996922009-02-04 20:06:27 +0000626 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627 }
628 // Frame & Return address. Currently unimplemented
629 case ISD::RETURNADDR: break;
630 case ISD::FRAMEADDR: break;
631 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000632 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000633}