blob: 57bf66e9ef5d7122bbb95acac035e88850ed091b [file] [log] [blame]
Chris Lattner7c5a3d32005-08-16 17:14:42 +00001//===-- PPC32ISelLowering.cpp - PPC32 DAG Lowering Implementation ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the PPC32ISelLowering class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PPC32ISelLowering.h"
15#include "PPC32TargetMachine.h"
16#include "llvm/CodeGen/MachineFrameInfo.h"
17#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner8a2d3ca2005-08-26 21:23:58 +000018#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000019#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner0b1e4e52005-08-26 17:36:52 +000020#include "llvm/Constants.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000021#include "llvm/Function.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000022using namespace llvm;
23
24PPC32TargetLowering::PPC32TargetLowering(TargetMachine &TM)
25 : TargetLowering(TM) {
26
27 // Fold away setcc operations if possible.
28 setSetCCIsExpensive();
29
30 // Set up the register classes.
31 addRegisterClass(MVT::i32, PPC32::GPRCRegisterClass);
32 addRegisterClass(MVT::f32, PPC32::FPRCRegisterClass);
33 addRegisterClass(MVT::f64, PPC32::FPRCRegisterClass);
34
35 // PowerPC has no intrinsics for these particular operations
36 setOperationAction(ISD::MEMMOVE, MVT::Other, Expand);
37 setOperationAction(ISD::MEMSET, MVT::Other, Expand);
38 setOperationAction(ISD::MEMCPY, MVT::Other, Expand);
39
40 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
41 setOperationAction(ISD::SEXTLOAD, MVT::i1, Expand);
42 setOperationAction(ISD::SEXTLOAD, MVT::i8, Expand);
43
44 // PowerPC has no SREM/UREM instructions
45 setOperationAction(ISD::SREM, MVT::i32, Expand);
46 setOperationAction(ISD::UREM, MVT::i32, Expand);
47
48 // We don't support sin/cos/sqrt/fmod
49 setOperationAction(ISD::FSIN , MVT::f64, Expand);
50 setOperationAction(ISD::FCOS , MVT::f64, Expand);
51 setOperationAction(ISD::SREM , MVT::f64, Expand);
52 setOperationAction(ISD::FSIN , MVT::f32, Expand);
53 setOperationAction(ISD::FCOS , MVT::f32, Expand);
54 setOperationAction(ISD::SREM , MVT::f32, Expand);
55
56 // If we're enabling GP optimizations, use hardware square root
57 if (!TM.getSubtarget<PPCSubtarget>().isGigaProcessor()) {
58 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
59 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
60 }
61
62 // PowerPC does not have CTPOP or CTTZ
63 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
64 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
65
66 // PowerPC does not have Select
67 setOperationAction(ISD::SELECT, MVT::i32, Expand);
68 setOperationAction(ISD::SELECT, MVT::f32, Expand);
69 setOperationAction(ISD::SELECT, MVT::f64, Expand);
Chris Lattnere4bc9ea2005-08-26 00:52:45 +000070
Chris Lattner0b1e4e52005-08-26 17:36:52 +000071 // PowerPC wants to turn select_cc of FP into fsel when possible.
72 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
73 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begeman7cbd5252005-08-16 19:49:35 +000074
75 // PowerPC does not have BRCOND* which requires SetCC
76 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
77 setOperationAction(ISD::BRCONDTWOWAY, MVT::Other, Expand);
Chris Lattner7c5a3d32005-08-16 17:14:42 +000078
79 // PowerPC does not have FP_TO_UINT
80 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
81
Jim Laskeyad23c9d2005-08-17 00:40:22 +000082 // PowerPC does not have [U|S]INT_TO_FP
83 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
84 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
85
Chris Lattner7c5a3d32005-08-16 17:14:42 +000086 setSetCCResultContents(ZeroOrOneSetCCResult);
Chris Lattner7c5a3d32005-08-16 17:14:42 +000087
88 computeRegisterProperties();
89}
90
Chris Lattner0b1e4e52005-08-26 17:36:52 +000091/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
92static bool isFloatingPointZero(SDOperand Op) {
93 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
94 return CFP->isExactlyValue(-0.0) || CFP->isExactlyValue(0.0);
95 else if (Op.getOpcode() == ISD::EXTLOAD || Op.getOpcode() == ISD::LOAD) {
96 // Maybe this has already been legalized into the constant pool?
97 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
98 if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->get()))
99 return CFP->isExactlyValue(-0.0) || CFP->isExactlyValue(0.0);
100 }
101 return false;
102}
103
Chris Lattnere4bc9ea2005-08-26 00:52:45 +0000104/// LowerOperation - Provide custom lowering hooks for some operations.
105///
106SDOperand PPC32TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
107 switch (Op.getOpcode()) {
108 default: assert(0 && "Wasn't expecting to be able to lower this!");
109 case ISD::SELECT_CC:
110 // Turn FP only select_cc's into fsel instructions.
111 if (MVT::isFloatingPoint(Op.getOperand(0).getValueType()) &&
112 MVT::isFloatingPoint(Op.getOperand(2).getValueType())) {
113 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
114 MVT::ValueType ResVT = Op.getValueType();
115 MVT::ValueType CmpVT = Op.getOperand(0).getValueType();
116 SDOperand LHS = Op.getOperand(0), RHS = Op.getOperand(1);
117 SDOperand TV = Op.getOperand(2), FV = Op.getOperand(3);
118
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000119 // If the RHS of the comparison is a 0.0, we don't need to do the
120 // subtraction at all.
121 if (isFloatingPointZero(RHS))
122 switch (CC) {
123 default: assert(0 && "Invalid FSEL condition"); abort();
124 case ISD::SETULT:
125 case ISD::SETLT:
126 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
127 case ISD::SETUGE:
128 case ISD::SETGE:
Chris Lattner0bbea952005-08-26 20:25:03 +0000129 return DAG.getNode(PPCISD::FSEL, ResVT, LHS, TV, FV);
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000130 case ISD::SETUGT:
131 case ISD::SETGT:
132 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
133 case ISD::SETULE:
134 case ISD::SETLE:
Chris Lattner0bbea952005-08-26 20:25:03 +0000135 return DAG.getNode(PPCISD::FSEL, ResVT,
136 DAG.getNode(ISD::FNEG, ResVT, LHS), TV, FV);
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000137 }
138
Chris Lattnere4bc9ea2005-08-26 00:52:45 +0000139 switch (CC) {
140 default: assert(0 && "Invalid FSEL condition"); abort();
141 case ISD::SETULT:
142 case ISD::SETLT:
Chris Lattner0bbea952005-08-26 20:25:03 +0000143 return DAG.getNode(PPCISD::FSEL, ResVT,
144 DAG.getNode(ISD::SUB, CmpVT, LHS, RHS), FV, TV);
Chris Lattnere4bc9ea2005-08-26 00:52:45 +0000145 case ISD::SETUGE:
146 case ISD::SETGE:
Chris Lattner0bbea952005-08-26 20:25:03 +0000147 return DAG.getNode(PPCISD::FSEL, ResVT,
148 DAG.getNode(ISD::SUB, CmpVT, LHS, RHS), TV, FV);
Chris Lattnere4bc9ea2005-08-26 00:52:45 +0000149 case ISD::SETUGT:
150 case ISD::SETGT:
Chris Lattner0bbea952005-08-26 20:25:03 +0000151 return DAG.getNode(PPCISD::FSEL, ResVT,
152 DAG.getNode(ISD::SUB, CmpVT, RHS, LHS), FV, TV);
Chris Lattnere4bc9ea2005-08-26 00:52:45 +0000153 case ISD::SETULE:
154 case ISD::SETLE:
Chris Lattner0bbea952005-08-26 20:25:03 +0000155 return DAG.getNode(PPCISD::FSEL, ResVT,
156 DAG.getNode(ISD::SUB, CmpVT, RHS, LHS), TV, FV);
Chris Lattnere4bc9ea2005-08-26 00:52:45 +0000157 }
158 }
159 break;
160 }
161 return SDOperand();
162}
163
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000164std::vector<SDOperand>
165PPC32TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
166 //
167 // add beautiful description of PPC stack frame format, or at least some docs
168 //
169 MachineFunction &MF = DAG.getMachineFunction();
170 MachineFrameInfo *MFI = MF.getFrameInfo();
171 MachineBasicBlock& BB = MF.front();
172 std::vector<SDOperand> ArgValues;
173
174 // Due to the rather complicated nature of the PowerPC ABI, rather than a
175 // fixed size array of physical args, for the sake of simplicity let the STL
176 // handle tracking them for us.
177 std::vector<unsigned> argVR, argPR, argOp;
178 unsigned ArgOffset = 24;
179 unsigned GPR_remaining = 8;
180 unsigned FPR_remaining = 13;
181 unsigned GPR_idx = 0, FPR_idx = 0;
182 static const unsigned GPR[] = {
183 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
184 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
185 };
186 static const unsigned FPR[] = {
187 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
188 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
189 };
190
191 // Add DAG nodes to load the arguments... On entry to a function on PPC,
192 // the arguments start at offset 24, although they are likely to be passed
193 // in registers.
194 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
195 SDOperand newroot, argt;
196 unsigned ObjSize;
197 bool needsLoad = false;
198 bool ArgLive = !I->use_empty();
199 MVT::ValueType ObjectVT = getValueType(I->getType());
200
201 switch (ObjectVT) {
Chris Lattner915fb302005-08-30 00:19:00 +0000202 default: assert(0 && "Unhandled argument type!");
203 case MVT::i1:
204 case MVT::i8:
205 case MVT::i16:
206 case MVT::i32:
207 ObjSize = 4;
208 if (!ArgLive) break;
209 if (GPR_remaining > 0) {
210 MF.addLiveIn(GPR[GPR_idx]);
211 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(),
212 GPR[GPR_idx], MVT::i32);
213 if (ObjectVT != MVT::i32)
214 argt = DAG.getNode(ISD::TRUNCATE, ObjectVT, newroot);
215 } else {
216 needsLoad = true;
217 }
218 break;
219 case MVT::i64: ObjSize = 8;
220 if (!ArgLive) break;
221 if (GPR_remaining > 0) {
222 SDOperand argHi, argLo;
223 MF.addLiveIn(GPR[GPR_idx]);
224 argHi = DAG.getCopyFromReg(DAG.getRoot(), GPR[GPR_idx], MVT::i32);
225 // If we have two or more remaining argument registers, then both halves
226 // of the i64 can be sourced from there. Otherwise, the lower half will
227 // have to come off the stack. This can happen when an i64 is preceded
228 // by 28 bytes of arguments.
229 if (GPR_remaining > 1) {
230 MF.addLiveIn(GPR[GPR_idx+1]);
231 argLo = DAG.getCopyFromReg(argHi, GPR[GPR_idx+1], MVT::i32);
232 } else {
233 int FI = MFI->CreateFixedObject(4, ArgOffset+4);
234 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
235 argLo = DAG.getLoad(MVT::i32, DAG.getEntryNode(), FIN,
236 DAG.getSrcValue(NULL));
237 }
238 // Build the outgoing arg thingy
239 argt = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, argLo, argHi);
240 newroot = argLo;
241 } else {
242 needsLoad = true;
243 }
244 break;
245 case MVT::f32:
246 case MVT::f64:
247 ObjSize = (ObjectVT == MVT::f64) ? 8 : 4;
248 if (!ArgLive) break;
249 if (FPR_remaining > 0) {
250 MF.addLiveIn(FPR[FPR_idx]);
251 argt = newroot = DAG.getCopyFromReg(DAG.getRoot(),
252 FPR[FPR_idx], ObjectVT);
253 --FPR_remaining;
254 ++FPR_idx;
255 } else {
256 needsLoad = true;
257 }
258 break;
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000259 }
260
261 // We need to load the argument to a virtual register if we determined above
262 // that we ran out of physical registers of the appropriate type
263 if (needsLoad) {
264 unsigned SubregOffset = 0;
265 if (ObjectVT == MVT::i8 || ObjectVT == MVT::i1) SubregOffset = 3;
266 if (ObjectVT == MVT::i16) SubregOffset = 2;
267 int FI = MFI->CreateFixedObject(ObjSize, ArgOffset);
268 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
269 FIN = DAG.getNode(ISD::ADD, MVT::i32, FIN,
270 DAG.getConstant(SubregOffset, MVT::i32));
271 argt = newroot = DAG.getLoad(ObjectVT, DAG.getEntryNode(), FIN,
272 DAG.getSrcValue(NULL));
273 }
274
275 // Every 4 bytes of argument space consumes one of the GPRs available for
276 // argument passing.
277 if (GPR_remaining > 0) {
278 unsigned delta = (GPR_remaining > 1 && ObjSize == 8) ? 2 : 1;
279 GPR_remaining -= delta;
280 GPR_idx += delta;
281 }
282 ArgOffset += ObjSize;
283 if (newroot.Val)
284 DAG.setRoot(newroot.getValue(1));
285
286 ArgValues.push_back(argt);
287 }
288
289 // If the function takes variable number of arguments, make a frame index for
290 // the start of the first vararg value... for expansion of llvm.va_start.
291 if (F.isVarArg()) {
292 VarArgsFrameIndex = MFI->CreateFixedObject(4, ArgOffset);
293 SDOperand FIN = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i32);
294 // If this function is vararg, store any remaining integer argument regs
295 // to their spots on the stack so that they may be loaded by deferencing the
296 // result of va_next.
297 std::vector<SDOperand> MemOps;
298 for (; GPR_remaining > 0; --GPR_remaining, ++GPR_idx) {
299 MF.addLiveIn(GPR[GPR_idx]);
Chris Lattnera8cd0152005-08-16 21:58:15 +0000300 SDOperand Val = DAG.getCopyFromReg(DAG.getRoot(), GPR[GPR_idx], MVT::i32);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000301 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, Val.getValue(1),
302 Val, FIN, DAG.getSrcValue(NULL));
303 MemOps.push_back(Store);
304 // Increment the address by four for the next argument to store
305 SDOperand PtrOff = DAG.getConstant(4, getPointerTy());
306 FIN = DAG.getNode(ISD::ADD, MVT::i32, FIN, PtrOff);
307 }
308 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, MemOps));
309 }
310
311 // Finally, inform the code generator which regs we return values in.
312 switch (getValueType(F.getReturnType())) {
313 default: assert(0 && "Unknown type!");
314 case MVT::isVoid: break;
315 case MVT::i1:
316 case MVT::i8:
317 case MVT::i16:
318 case MVT::i32:
319 MF.addLiveOut(PPC::R3);
320 break;
321 case MVT::i64:
322 MF.addLiveOut(PPC::R3);
323 MF.addLiveOut(PPC::R4);
324 break;
325 case MVT::f32:
326 case MVT::f64:
327 MF.addLiveOut(PPC::F1);
328 break;
329 }
330
331 return ArgValues;
332}
333
334std::pair<SDOperand, SDOperand>
335PPC32TargetLowering::LowerCallTo(SDOperand Chain,
336 const Type *RetTy, bool isVarArg,
337 unsigned CallingConv, bool isTailCall,
338 SDOperand Callee, ArgListTy &Args,
339 SelectionDAG &DAG) {
340 // args_to_use will accumulate outgoing args for the ISD::CALL case in
341 // SelectExpr to use to put the arguments in the appropriate registers.
342 std::vector<SDOperand> args_to_use;
343
344 // Count how many bytes are to be pushed on the stack, including the linkage
345 // area, and parameter passing area.
346 unsigned NumBytes = 24;
347
348 if (Args.empty()) {
349 Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
350 DAG.getConstant(NumBytes, getPointerTy()));
351 } else {
Chris Lattner915fb302005-08-30 00:19:00 +0000352 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000353 switch (getValueType(Args[i].second)) {
Chris Lattner915fb302005-08-30 00:19:00 +0000354 default: assert(0 && "Unknown value type!");
355 case MVT::i1:
356 case MVT::i8:
357 case MVT::i16:
358 case MVT::i32:
359 case MVT::f32:
360 NumBytes += 4;
361 break;
362 case MVT::i64:
363 case MVT::f64:
364 NumBytes += 8;
365 break;
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000366 }
Chris Lattner915fb302005-08-30 00:19:00 +0000367 }
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000368
Chris Lattner915fb302005-08-30 00:19:00 +0000369 // Just to be safe, we'll always reserve the full 24 bytes of linkage area
370 // plus 32 bytes of argument space in case any called code gets funky on us.
371 // (Required by ABI to support var arg)
372 if (NumBytes < 56) NumBytes = 56;
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000373
374 // Adjust the stack pointer for the new arguments...
375 // These operations are automatically eliminated by the prolog/epilog pass
376 Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
377 DAG.getConstant(NumBytes, getPointerTy()));
378
379 // Set up a copy of the stack pointer for use loading and storing any
380 // arguments that may not fit in the registers available for argument
381 // passing.
Chris Lattnera8cd0152005-08-16 21:58:15 +0000382 SDOperand StackPtr = DAG.getCopyFromReg(DAG.getEntryNode(),
383 PPC::R1, MVT::i32);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000384
385 // Figure out which arguments are going to go in registers, and which in
386 // memory. Also, if this is a vararg function, floating point operations
387 // must be stored to our stack, and loaded into integer regs as well, if
388 // any integer regs are available for argument passing.
389 unsigned ArgOffset = 24;
390 unsigned GPR_remaining = 8;
391 unsigned FPR_remaining = 13;
392
393 std::vector<SDOperand> MemOps;
394 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
395 // PtrOff will be used to store the current argument to the stack if a
396 // register cannot be found for it.
397 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
398 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
399 MVT::ValueType ArgVT = getValueType(Args[i].second);
400
401 switch (ArgVT) {
Chris Lattner915fb302005-08-30 00:19:00 +0000402 default: assert(0 && "Unexpected ValueType for argument!");
403 case MVT::i1:
404 case MVT::i8:
405 case MVT::i16:
406 // Promote the integer to 32 bits. If the input type is signed use a
407 // sign extend, otherwise use a zero extend.
408 if (Args[i].second->isSigned())
409 Args[i].first =DAG.getNode(ISD::SIGN_EXTEND, MVT::i32, Args[i].first);
410 else
411 Args[i].first =DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Args[i].first);
412 // FALL THROUGH
413 case MVT::i32:
414 if (GPR_remaining > 0) {
415 args_to_use.push_back(Args[i].first);
416 --GPR_remaining;
417 } else {
418 MemOps.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
419 Args[i].first, PtrOff,
420 DAG.getSrcValue(NULL)));
421 }
422 ArgOffset += 4;
423 break;
424 case MVT::i64:
425 // If we have one free GPR left, we can place the upper half of the i64
426 // in it, and store the other half to the stack. If we have two or more
427 // free GPRs, then we can pass both halves of the i64 in registers.
428 if (GPR_remaining > 0) {
429 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
430 Args[i].first, DAG.getConstant(1, MVT::i32));
431 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
432 Args[i].first, DAG.getConstant(0, MVT::i32));
433 args_to_use.push_back(Hi);
434 --GPR_remaining;
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000435 if (GPR_remaining > 0) {
Chris Lattner915fb302005-08-30 00:19:00 +0000436 args_to_use.push_back(Lo);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000437 --GPR_remaining;
438 } else {
Chris Lattner915fb302005-08-30 00:19:00 +0000439 SDOperand ConstFour = DAG.getConstant(4, getPointerTy());
440 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, PtrOff, ConstFour);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000441 MemOps.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
Chris Lattner915fb302005-08-30 00:19:00 +0000442 Lo, PtrOff, DAG.getSrcValue(NULL)));
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000443 }
Chris Lattner915fb302005-08-30 00:19:00 +0000444 } else {
445 MemOps.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
446 Args[i].first, PtrOff,
447 DAG.getSrcValue(NULL)));
448 }
449 ArgOffset += 8;
450 break;
451 case MVT::f32:
452 case MVT::f64:
453 if (FPR_remaining > 0) {
454 args_to_use.push_back(Args[i].first);
455 --FPR_remaining;
456 if (isVarArg) {
457 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, Chain,
458 Args[i].first, PtrOff,
459 DAG.getSrcValue(NULL));
460 MemOps.push_back(Store);
461 // Float varargs are always shadowed in available integer registers
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000462 if (GPR_remaining > 0) {
Chris Lattner915fb302005-08-30 00:19:00 +0000463 SDOperand Load = DAG.getLoad(MVT::i32, Store, PtrOff,
464 DAG.getSrcValue(NULL));
465 MemOps.push_back(Load);
466 args_to_use.push_back(Load);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000467 --GPR_remaining;
Chris Lattner915fb302005-08-30 00:19:00 +0000468 }
469 if (GPR_remaining > 0 && MVT::f64 == ArgVT) {
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000470 SDOperand ConstFour = DAG.getConstant(4, getPointerTy());
471 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, PtrOff, ConstFour);
Chris Lattner915fb302005-08-30 00:19:00 +0000472 SDOperand Load = DAG.getLoad(MVT::i32, Store, PtrOff,
473 DAG.getSrcValue(NULL));
474 MemOps.push_back(Load);
475 args_to_use.push_back(Load);
476 --GPR_remaining;
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000477 }
478 } else {
Chris Lattner915fb302005-08-30 00:19:00 +0000479 // If we have any FPRs remaining, we may also have GPRs remaining.
480 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
481 // GPRs.
482 if (GPR_remaining > 0) {
483 args_to_use.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
484 --GPR_remaining;
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000485 }
Chris Lattner915fb302005-08-30 00:19:00 +0000486 if (GPR_remaining > 0 && MVT::f64 == ArgVT) {
487 args_to_use.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
488 --GPR_remaining;
489 }
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000490 }
Chris Lattner915fb302005-08-30 00:19:00 +0000491 } else {
492 MemOps.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
493 Args[i].first, PtrOff,
494 DAG.getSrcValue(NULL)));
495 }
496 ArgOffset += (ArgVT == MVT::f32) ? 4 : 8;
497 break;
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000498 }
499 }
500 if (!MemOps.empty())
501 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, MemOps);
502 }
503
504 std::vector<MVT::ValueType> RetVals;
505 MVT::ValueType RetTyVT = getValueType(RetTy);
506 if (RetTyVT != MVT::isVoid)
507 RetVals.push_back(RetTyVT);
508 RetVals.push_back(MVT::Other);
509
510 SDOperand TheCall = SDOperand(DAG.getCall(RetVals,
511 Chain, Callee, args_to_use), 0);
512 Chain = TheCall.getValue(RetTyVT != MVT::isVoid);
513 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
514 DAG.getConstant(NumBytes, getPointerTy()));
515 return std::make_pair(TheCall, Chain);
516}
517
518SDOperand PPC32TargetLowering::LowerVAStart(SDOperand Chain, SDOperand VAListP,
519 Value *VAListV, SelectionDAG &DAG) {
520 // vastart just stores the address of the VarArgsFrameIndex slot into the
521 // memory location argument.
522 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, MVT::i32);
523 return DAG.getNode(ISD::STORE, MVT::Other, Chain, FR, VAListP,
524 DAG.getSrcValue(VAListV));
525}
526
527std::pair<SDOperand,SDOperand>
528PPC32TargetLowering::LowerVAArg(SDOperand Chain,
529 SDOperand VAListP, Value *VAListV,
530 const Type *ArgTy, SelectionDAG &DAG) {
531 MVT::ValueType ArgVT = getValueType(ArgTy);
532
533 SDOperand VAList =
534 DAG.getLoad(MVT::i32, Chain, VAListP, DAG.getSrcValue(VAListV));
535 SDOperand Result = DAG.getLoad(ArgVT, Chain, VAList, DAG.getSrcValue(NULL));
536 unsigned Amt;
537 if (ArgVT == MVT::i32 || ArgVT == MVT::f32)
538 Amt = 4;
539 else {
540 assert((ArgVT == MVT::i64 || ArgVT == MVT::f64) &&
541 "Other types should have been promoted for varargs!");
542 Amt = 8;
543 }
544 VAList = DAG.getNode(ISD::ADD, VAList.getValueType(), VAList,
545 DAG.getConstant(Amt, VAList.getValueType()));
546 Chain = DAG.getNode(ISD::STORE, MVT::Other, Chain,
547 VAList, VAListP, DAG.getSrcValue(VAListV));
548 return std::make_pair(Result, Chain);
549}
550
551
552std::pair<SDOperand, SDOperand> PPC32TargetLowering::
553LowerFrameReturnAddress(bool isFrameAddress, SDOperand Chain, unsigned Depth,
554 SelectionDAG &DAG) {
555 assert(0 && "LowerFrameReturnAddress unimplemented");
556 abort();
557}
Chris Lattner8a2d3ca2005-08-26 21:23:58 +0000558
559MachineBasicBlock *
560PPC32TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
561 MachineBasicBlock *BB) {
562 assert((MI->getOpcode() == PPC::SELECT_CC_Int ||
563 MI->getOpcode() == PPC::SELECT_CC_FP) &&
564 "Unexpected instr type to insert");
565
566 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
567 // control-flow pattern. The incoming instruction knows the destination vreg
568 // to set, the condition code register to branch on, the true/false values to
569 // select between, and a branch opcode to use.
570 const BasicBlock *LLVM_BB = BB->getBasicBlock();
571 ilist<MachineBasicBlock>::iterator It = BB;
572 ++It;
573
574 // thisMBB:
575 // ...
576 // TrueVal = ...
577 // cmpTY ccX, r1, r2
578 // bCC copy1MBB
579 // fallthrough --> copy0MBB
580 MachineBasicBlock *thisMBB = BB;
581 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
582 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
583 BuildMI(BB, MI->getOperand(4).getImmedValue(), 2)
584 .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
585 MachineFunction *F = BB->getParent();
586 F->getBasicBlockList().insert(It, copy0MBB);
587 F->getBasicBlockList().insert(It, sinkMBB);
588 // Update machine-CFG edges
589 BB->addSuccessor(copy0MBB);
590 BB->addSuccessor(sinkMBB);
591
592 // copy0MBB:
593 // %FalseValue = ...
594 // # fallthrough to sinkMBB
595 BB = copy0MBB;
596
597 // Update machine-CFG edges
598 BB->addSuccessor(sinkMBB);
599
600 // sinkMBB:
601 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
602 // ...
603 BB = sinkMBB;
604 BuildMI(BB, PPC::PHI, 4, MI->getOperand(0).getReg())
605 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
606 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
607
608 delete MI; // The pseudo instruction is gone now.
609 return BB;
610}
611