blob: 7ec033afb8660b25f277bbaf8420763e27295036 [file] [log] [blame]
Nate Begemana9795f82005-03-24 04:41:43 +00001//===-- PPC32ISelPattern.cpp - A pattern matching inst selector for PPC32 -===//
2//
3// The LLVM Compiler Infrastructure
4//
Nate Begeman5e966612005-03-24 06:28:42 +00005// This file was developed by Nate Begeman and is distributed under
Nate Begemana9795f82005-03-24 04:41:43 +00006// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a pattern matching instruction selector for 32 bit PowerPC.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PowerPC.h"
15#include "PowerPCInstrBuilder.h"
16#include "PowerPCInstrInfo.h"
17#include "PPC32RegisterInfo.h"
18#include "llvm/Constants.h" // FIXME: REMOVE
19#include "llvm/Function.h"
20#include "llvm/CodeGen/MachineConstantPool.h" // FIXME: REMOVE
21#include "llvm/CodeGen/MachineFunction.h"
22#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/SelectionDAG.h"
24#include "llvm/CodeGen/SelectionDAGISel.h"
25#include "llvm/CodeGen/SSARegMap.h"
26#include "llvm/Target/TargetData.h"
27#include "llvm/Target/TargetLowering.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/MathExtras.h"
30#include "llvm/ADT/Statistic.h"
31#include <set>
32#include <algorithm>
33using namespace llvm;
34
35//===----------------------------------------------------------------------===//
36// PPC32TargetLowering - PPC32 Implementation of the TargetLowering interface
37namespace {
38 class PPC32TargetLowering : public TargetLowering {
39 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
40 int ReturnAddrIndex; // FrameIndex for return slot.
41 public:
42 PPC32TargetLowering(TargetMachine &TM) : TargetLowering(TM) {
43 // Set up the TargetLowering object.
44
45 // Set up the register classes.
46 addRegisterClass(MVT::i32, PPC32::GPRCRegisterClass);
47 addRegisterClass(MVT::f32, PPC32::GPRCRegisterClass);
48 addRegisterClass(MVT::f64, PPC32::FPRCRegisterClass);
49
50 computeRegisterProperties();
51 }
52
53 /// LowerArguments - This hook must be implemented to indicate how we should
54 /// lower the arguments for the specified function, into the specified DAG.
55 virtual std::vector<SDOperand>
56 LowerArguments(Function &F, SelectionDAG &DAG);
57
58 /// LowerCallTo - This hook lowers an abstract call to a function into an
59 /// actual call.
60 virtual std::pair<SDOperand, SDOperand>
Nate Begeman307e7442005-03-26 01:28:53 +000061 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
62 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
Nate Begemana9795f82005-03-24 04:41:43 +000063
64 virtual std::pair<SDOperand, SDOperand>
65 LowerVAStart(SDOperand Chain, SelectionDAG &DAG);
66
67 virtual std::pair<SDOperand,SDOperand>
68 LowerVAArgNext(bool isVANext, SDOperand Chain, SDOperand VAList,
69 const Type *ArgTy, SelectionDAG &DAG);
70
71 virtual std::pair<SDOperand, SDOperand>
72 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
73 SelectionDAG &DAG);
74 };
75}
76
77
78std::vector<SDOperand>
79PPC32TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
80 //
81 // add beautiful description of PPC stack frame format, or at least some docs
82 //
83 MachineFunction &MF = DAG.getMachineFunction();
84 MachineFrameInfo *MFI = MF.getFrameInfo();
85 MachineBasicBlock& BB = MF.front();
86 std::vector<SDOperand> ArgValues;
87
88 // Due to the rather complicated nature of the PowerPC ABI, rather than a
89 // fixed size array of physical args, for the sake of simplicity let the STL
90 // handle tracking them for us.
91 std::vector<unsigned> argVR, argPR, argOp;
92 unsigned ArgOffset = 24;
93 unsigned GPR_remaining = 8;
94 unsigned FPR_remaining = 13;
95 unsigned GPR_idx = 0, FPR_idx = 0;
96 static const unsigned GPR[] = {
97 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
98 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
99 };
100 static const unsigned FPR[] = {
101 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
102 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
103 };
104
105 // Add DAG nodes to load the arguments... On entry to a function on PPC,
106 // the arguments start at offset 24, although they are likely to be passed
107 // in registers.
108 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
109 SDOperand newroot, argt;
110 unsigned ObjSize;
111 bool needsLoad = false;
112 MVT::ValueType ObjectVT = getValueType(I->getType());
113
114 switch (ObjectVT) {
115 default: assert(0 && "Unhandled argument type!");
116 case MVT::i1:
117 case MVT::i8:
118 case MVT::i16:
119 case MVT::i32:
120 ObjSize = 4;
121 if (GPR_remaining > 0) {
122 BuildMI(&BB, PPC::IMPLICIT_DEF, 0, GPR[GPR_idx]);
123 unsigned virtReg =
124 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i32));
125 argt = newroot = DAG.getCopyFromReg(virtReg, MVT::i32, DAG.getRoot());
126 if (ObjectVT != MVT::i32)
127 argt = DAG.getNode(ISD::TRUNCATE, ObjectVT, newroot);
128 argVR.push_back(virtReg);
129 argPR.push_back(GPR[GPR_idx]);
130 argOp.push_back(PPC::OR);
131 } else {
132 needsLoad = true;
133 }
134 break;
Nate Begemanf7e43382005-03-26 07:46:36 +0000135 case MVT::i64: ObjSize = 8;
136 // FIXME: can split 64b load between reg/mem if it is last arg in regs
Nate Begemana9795f82005-03-24 04:41:43 +0000137 if (GPR_remaining > 1) {
138 BuildMI(&BB, PPC::IMPLICIT_DEF, 0, GPR[GPR_idx]);
139 BuildMI(&BB, PPC::IMPLICIT_DEF, 0, GPR[GPR_idx+1]);
140 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i32));
141 unsigned virtReg =
142 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(MVT::i32))-1;
143 // FIXME: is this correct?
144 argt = newroot = DAG.getCopyFromReg(virtReg, MVT::i32, DAG.getRoot());
145 argt = DAG.getCopyFromReg(virtReg+1, MVT::i32, newroot);
146 // Push the arguments for emitting into BB later
147 argVR.push_back(virtReg); argVR.push_back(virtReg+1);
148 argPR.push_back(GPR[GPR_idx]); argPR.push_back(GPR[GPR_idx+1]);
149 argOp.push_back(PPC::OR); argOp.push_back(PPC::OR);
150 } else {
151 needsLoad = true;
152 }
153 break;
154 case MVT::f32: ObjSize = 4;
155 case MVT::f64: ObjSize = 8;
156 if (FPR_remaining > 0) {
157 BuildMI(&BB, PPC::IMPLICIT_DEF, 0, FPR[FPR_idx]);
158 unsigned virtReg =
159 MF.getSSARegMap()->createVirtualRegister(getRegClassFor(ObjectVT));
160 argt = newroot = DAG.getCopyFromReg(virtReg, ObjectVT, DAG.getRoot());
161 argVR.push_back(virtReg);
162 argPR.push_back(FPR[FPR_idx]);
163 argOp.push_back(PPC::FMR);
164 --FPR_remaining;
165 ++FPR_idx;
166 } else {
167 needsLoad = true;
168 }
169 break;
170 }
171
172 // We need to load the argument to a virtual register if we determined above
173 // that we ran out of physical registers of the appropriate type
174 if (needsLoad) {
175 int FI = MFI->CreateFixedObject(ObjSize, ArgOffset);
176 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
177 argt = newroot = DAG.getLoad(ObjectVT, DAG.getEntryNode(), FIN);
178 }
179
180 // Every 4 bytes of argument space consumes one of the GPRs available for
181 // argument passing.
182 if (GPR_remaining > 0) {
183 unsigned delta = (GPR_remaining > 1 && ObjSize == 8) ? 2 : 1;
184 GPR_remaining -= delta;
185 GPR_idx += delta;
186 }
187 ArgOffset += ObjSize;
188
189 DAG.setRoot(newroot.getValue(1));
190 ArgValues.push_back(argt);
191 }
192
193 for (int i = 0, count = argVR.size(); i < count; ++i) {
194 if (argOp[i] == PPC::FMR)
195 BuildMI(&BB, argOp[i], 1, argVR[i]).addReg(argPR[i]);
196 else
197 BuildMI(&BB, argOp[i], 2, argVR[i]).addReg(argPR[i]).addReg(argPR[i]);
198 }
199
200 // If the function takes variable number of arguments, make a frame index for
201 // the start of the first vararg value... for expansion of llvm.va_start.
202 if (F.isVarArg())
203 VarArgsFrameIndex = MFI->CreateFixedObject(4, ArgOffset);
204
205 return ArgValues;
206}
207
208std::pair<SDOperand, SDOperand>
209PPC32TargetLowering::LowerCallTo(SDOperand Chain,
Nate Begeman307e7442005-03-26 01:28:53 +0000210 const Type *RetTy, bool isVarArg,
211 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG) {
212 // args_to_use will accumulate outgoing args for the ISD::CALL case in
213 // SelectExpr to use to put the arguments in the appropriate registers.
Nate Begemana9795f82005-03-24 04:41:43 +0000214 std::vector<SDOperand> args_to_use;
Nate Begeman307e7442005-03-26 01:28:53 +0000215
216 // Count how many bytes are to be pushed on the stack, including the linkage
217 // area, and parameter passing area.
218 unsigned NumBytes = 24;
219
220 if (Args.empty()) {
221 NumBytes = 0; // Save zero bytes.
222 } else {
223 for (unsigned i = 0, e = Args.size(); i != e; ++i)
224 switch (getValueType(Args[i].second)) {
225 default: assert(0 && "Unknown value type!");
226 case MVT::i1:
227 case MVT::i8:
228 case MVT::i16:
229 case MVT::i32:
230 case MVT::f32:
231 NumBytes += 4;
232 break;
233 case MVT::i64:
234 case MVT::f64:
235 NumBytes += 8;
236 break;
237 }
238
239 // Just to be safe, we'll always reserve the full 24 bytes of linkage area
240 // plus 32 bytes of argument space in case any called code gets funky on us.
241 if (NumBytes < 56) NumBytes = 56;
242
243 // Adjust the stack pointer for the new arguments...
244 // These operations are automatically eliminated by the prolog/epilog pass
245 Chain = DAG.getNode(ISD::ADJCALLSTACKDOWN, MVT::Other, Chain,
246 DAG.getConstant(NumBytes, getPointerTy()));
247
248 // Set up a copy of the stack pointer for use loading and storing any
249 // arguments that may not fit in the registers available for argument
250 // passing.
251 SDOperand StackPtr = DAG.getCopyFromReg(PPC::R1, MVT::i32,
252 DAG.getEntryNode());
253
254 // Figure out which arguments are going to go in registers, and which in
255 // memory. Also, if this is a vararg function, floating point operations
256 // must be stored to our stack, and loaded into integer regs as well, if
257 // any integer regs are available for argument passing.
258 unsigned ArgOffset = 24;
259 unsigned GPR_remaining = 8;
260 unsigned FPR_remaining = 13;
261 std::vector<SDOperand> Stores;
262 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
263 // PtrOff will be used to store the current argument to the stack if a
264 // register cannot be found for it.
265 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
266 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
Nate Begemanf7e43382005-03-26 07:46:36 +0000267 MVT::ValueType ArgVT = getValueType(Args[i].second);
Nate Begeman307e7442005-03-26 01:28:53 +0000268
Nate Begemanf7e43382005-03-26 07:46:36 +0000269 switch (ArgVT) {
Nate Begeman307e7442005-03-26 01:28:53 +0000270 default: assert(0 && "Unexpected ValueType for argument!");
271 case MVT::i1:
272 case MVT::i8:
273 case MVT::i16:
274 // Promote the integer to 32 bits. If the input type is signed use a
275 // sign extend, otherwise use a zero extend.
276 if (Args[i].second->isSigned())
277 Args[i].first =DAG.getNode(ISD::SIGN_EXTEND, MVT::i32, Args[i].first);
278 else
279 Args[i].first =DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Args[i].first);
280 // FALL THROUGH
281 case MVT::i32:
282 if (GPR_remaining > 0) {
283 args_to_use.push_back(Args[i].first);
284 --GPR_remaining;
285 } else {
286 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
287 Args[i].first, PtrOff));
288 }
289 ArgOffset += 4;
290 break;
291 case MVT::i64:
Nate Begemanf7e43382005-03-26 07:46:36 +0000292 // If we have one free GPR left, we can place the upper half of the i64
293 // in it, and store the other half to the stack. If we have two or more
294 // free GPRs, then we can pass both halves of the i64 in registers.
295 if (GPR_remaining > 0) {
Nate Begemanf2622612005-03-26 02:17:46 +0000296 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
297 Args[i].first, DAG.getConstant(1, MVT::i32));
298 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
299 Args[i].first, DAG.getConstant(0, MVT::i32));
Nate Begemanf7e43382005-03-26 07:46:36 +0000300 args_to_use.push_back(Hi);
301 if (GPR_remaining > 1) {
302 args_to_use.push_back(Lo);
303 GPR_remaining -= 2;
304 } else {
305 SDOperand ConstFour = DAG.getConstant(4, getPointerTy());
306 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, PtrOff, ConstFour);
307 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
308 Lo, PtrOff));
309 --GPR_remaining;
310 }
Nate Begeman307e7442005-03-26 01:28:53 +0000311 } else {
312 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
313 Args[i].first, PtrOff));
314 }
315 ArgOffset += 8;
316 break;
317 case MVT::f32:
Nate Begeman307e7442005-03-26 01:28:53 +0000318 case MVT::f64:
Nate Begemanf7e43382005-03-26 07:46:36 +0000319 if (FPR_remaining > 0) {
320 if (isVarArg) {
321 // FIXME: Need FunctionType information so we can conditionally
322 // store only the non-fixed arguments in a vararg function.
323 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
324 Args[i].first, PtrOff));
325 if (GPR_remaining > 0)
326 args_to_use.push_back(DAG.getLoad(MVT::i32, Chain, PtrOff));
327 if (GPR_remaining > 1) {
328 SDOperand ConstFour = DAG.getConstant(4, getPointerTy());
329 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, PtrOff, ConstFour);
330 args_to_use.push_back(DAG.getLoad(MVT::i32, Chain, PtrOff));
331 }
332 }
Nate Begemanf2622612005-03-26 02:17:46 +0000333 args_to_use.push_back(Args[i].first);
Nate Begeman307e7442005-03-26 01:28:53 +0000334 --FPR_remaining;
Nate Begemanf7e43382005-03-26 07:46:36 +0000335 // If we have any FPRs remaining, we may also have GPRs remaining.
336 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
337 // GPRs.
Nate Begeman307e7442005-03-26 01:28:53 +0000338 if (GPR_remaining > 0) --GPR_remaining;
Nate Begemanf7e43382005-03-26 07:46:36 +0000339 if (GPR_remaining > 0 && MVT::f64 == ArgVT) --GPR_remaining;
Nate Begeman307e7442005-03-26 01:28:53 +0000340 } else {
341 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
342 Args[i].first, PtrOff));
343 }
Nate Begemanf7e43382005-03-26 07:46:36 +0000344 ArgOffset += (ArgVT == MVT::f32) ? 4 : 8;
Nate Begeman307e7442005-03-26 01:28:53 +0000345 break;
346 }
Nate Begemana9795f82005-03-24 04:41:43 +0000347 }
Nate Begeman307e7442005-03-26 01:28:53 +0000348 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
Nate Begemana9795f82005-03-24 04:41:43 +0000349 }
350
351 std::vector<MVT::ValueType> RetVals;
352 MVT::ValueType RetTyVT = getValueType(RetTy);
353 if (RetTyVT != MVT::isVoid)
354 RetVals.push_back(RetTyVT);
355 RetVals.push_back(MVT::Other);
356
357 SDOperand TheCall = SDOperand(DAG.getCall(RetVals,
358 Chain, Callee, args_to_use), 0);
359 Chain = TheCall.getValue(RetTyVT != MVT::isVoid);
360 Chain = DAG.getNode(ISD::ADJCALLSTACKUP, MVT::Other, Chain,
361 DAG.getConstant(NumBytes, getPointerTy()));
362 return std::make_pair(TheCall, Chain);
363}
364
365std::pair<SDOperand, SDOperand>
366PPC32TargetLowering::LowerVAStart(SDOperand Chain, SelectionDAG &DAG) {
367 //vastart just returns the address of the VarArgsFrameIndex slot.
368 return std::make_pair(DAG.getFrameIndex(VarArgsFrameIndex, MVT::i32), Chain);
369}
370
371std::pair<SDOperand,SDOperand> PPC32TargetLowering::
372LowerVAArgNext(bool isVANext, SDOperand Chain, SDOperand VAList,
373 const Type *ArgTy, SelectionDAG &DAG) {
Nate Begemanc7b09f12005-03-25 08:34:25 +0000374 MVT::ValueType ArgVT = getValueType(ArgTy);
375 SDOperand Result;
376 if (!isVANext) {
377 Result = DAG.getLoad(ArgVT, DAG.getEntryNode(), VAList);
378 } else {
379 unsigned Amt;
380 if (ArgVT == MVT::i32 || ArgVT == MVT::f32)
381 Amt = 4;
382 else {
383 assert((ArgVT == MVT::i64 || ArgVT == MVT::f64) &&
384 "Other types should have been promoted for varargs!");
385 Amt = 8;
386 }
387 Result = DAG.getNode(ISD::ADD, VAList.getValueType(), VAList,
388 DAG.getConstant(Amt, VAList.getValueType()));
389 }
390 return std::make_pair(Result, Chain);
Nate Begemana9795f82005-03-24 04:41:43 +0000391}
392
393
394std::pair<SDOperand, SDOperand> PPC32TargetLowering::
395LowerFrameReturnAddress(bool isFrameAddress, SDOperand Chain, unsigned Depth,
396 SelectionDAG &DAG) {
397 abort();
398}
399
400namespace {
401
402//===--------------------------------------------------------------------===//
403/// ISel - PPC32 specific code to select PPC32 machine instructions for
404/// SelectionDAG operations.
405//===--------------------------------------------------------------------===//
406class ISel : public SelectionDAGISel {
407
408 /// Comment Here.
409 PPC32TargetLowering PPC32Lowering;
410
411 /// ExprMap - As shared expressions are codegen'd, we keep track of which
412 /// vreg the value is produced in, so we only emit one copy of each compiled
413 /// tree.
414 std::map<SDOperand, unsigned> ExprMap;
Nate Begemanc7b09f12005-03-25 08:34:25 +0000415
416 unsigned GlobalBaseReg;
417 bool GlobalBaseInitialized;
Nate Begemana9795f82005-03-24 04:41:43 +0000418
419public:
420 ISel(TargetMachine &TM) : SelectionDAGISel(PPC32Lowering), PPC32Lowering(TM)
421 {}
422
Nate Begemanc7b09f12005-03-25 08:34:25 +0000423 /// runOnFunction - Override this function in order to reset our per-function
424 /// variables.
425 virtual bool runOnFunction(Function &Fn) {
426 // Make sure we re-emit a set of the global base reg if necessary
427 GlobalBaseInitialized = false;
428 return SelectionDAGISel::runOnFunction(Fn);
429 }
430
Nate Begemana9795f82005-03-24 04:41:43 +0000431 /// InstructionSelectBasicBlock - This callback is invoked by
432 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
433 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG) {
434 DEBUG(BB->dump());
435 // Codegen the basic block.
436 Select(DAG.getRoot());
437
438 // Clear state used for selection.
439 ExprMap.clear();
440 }
441
Nate Begemanc7b09f12005-03-25 08:34:25 +0000442 unsigned ISel::getGlobalBaseReg();
Nate Begemana9795f82005-03-24 04:41:43 +0000443 unsigned SelectExpr(SDOperand N);
444 unsigned SelectExprFP(SDOperand N, unsigned Result);
445 void Select(SDOperand N);
446
447 void SelectAddr(SDOperand N, unsigned& Reg, int& offset);
448 void SelectBranchCC(SDOperand N);
449};
450
451/// canUseAsImmediateForOpcode - This method returns a value indicating whether
452/// the ConstantSDNode N can be used as an immediate to Opcode. The return
453/// values are either 0, 1 or 2. 0 indicates that either N is not a
454/// ConstantSDNode, or is not suitable for use by that opcode. A return value
455/// of 1 indicates that the constant may be used in normal immediate form. A
456/// return value of 2 indicates that the constant may be used in shifted
457/// immediate form. If the return value is nonzero, the constant value is
458/// placed in Imm.
459///
460static unsigned canUseAsImmediateForOpcode(SDOperand N, unsigned Opcode,
461 unsigned& Imm) {
462 if (N.getOpcode() != ISD::Constant) return 0;
463
464 int v = (int)cast<ConstantSDNode>(N)->getSignExtended();
465
466 switch(Opcode) {
467 default: return 0;
468 case ISD::ADD:
469 if (v <= 32767 && v >= -32768) { Imm = v & 0xFFFF; return 1; }
470 if ((v & 0x0000FFFF) == 0) { Imm = v >> 16; return 2; }
471 break;
472 case ISD::AND:
473 case ISD::XOR:
474 case ISD::OR:
475 if (v >= 0 && v <= 65535) { Imm = v & 0xFFFF; return 1; }
476 if ((v & 0x0000FFFF) == 0) { Imm = v >> 16; return 2; }
477 break;
Nate Begeman307e7442005-03-26 01:28:53 +0000478 case ISD::MUL:
479 if (v <= 32767 && v >= -32768) { Imm = v & 0xFFFF; return 1; }
480 break;
Nate Begemana9795f82005-03-24 04:41:43 +0000481 }
482 return 0;
483}
484}
485
Nate Begemanc7b09f12005-03-25 08:34:25 +0000486/// getGlobalBaseReg - Output the instructions required to put the
487/// base address to use for accessing globals into a register.
488///
489unsigned ISel::getGlobalBaseReg() {
490 if (!GlobalBaseInitialized) {
491 // Insert the set of GlobalBaseReg into the first MBB of the function
492 MachineBasicBlock &FirstMBB = BB->getParent()->front();
493 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
494 GlobalBaseReg = MakeReg(MVT::i32);
495 BuildMI(FirstMBB, MBBI, PPC::MovePCtoLR, 0, PPC::LR);
496 BuildMI(FirstMBB, MBBI, PPC::MFLR, 1, GlobalBaseReg).addReg(PPC::LR);
497 GlobalBaseInitialized = true;
498 }
499 return GlobalBaseReg;
500}
501
Nate Begemana9795f82005-03-24 04:41:43 +0000502//Check to see if the load is a constant offset from a base register
503void ISel::SelectAddr(SDOperand N, unsigned& Reg, int& offset)
504{
505 Reg = SelectExpr(N);
506 offset = 0;
507 return;
508}
509
510void ISel::SelectBranchCC(SDOperand N)
511{
512 assert(N.getOpcode() == ISD::BRCOND && "Not a BranchCC???");
513 MachineBasicBlock *Dest =
514 cast<BasicBlockSDNode>(N.getOperand(2))->getBasicBlock();
515 unsigned Opc;
516
517 Select(N.getOperand(0)); //chain
518 SDOperand CC = N.getOperand(1);
519
520 //Giveup and do the stupid thing
521 unsigned Tmp1 = SelectExpr(CC);
522 BuildMI(BB, PPC::BNE, 2).addReg(Tmp1).addMBB(Dest);
523 return;
524}
525
526unsigned ISel::SelectExprFP(SDOperand N, unsigned Result)
527{
528 unsigned Tmp1, Tmp2, Tmp3;
529 unsigned Opc = 0;
530 SDNode *Node = N.Val;
531 MVT::ValueType DestType = N.getValueType();
532 unsigned opcode = N.getOpcode();
533
534 switch (opcode) {
535 default:
536 Node->dump();
537 assert(0 && "Node not handled!\n");
538
539 case ISD::SELECT:
540 abort();
541
542 case ISD::FP_ROUND:
543 assert (DestType == MVT::f32 &&
544 N.getOperand(0).getValueType() == MVT::f64 &&
545 "only f64 to f32 conversion supported here");
546 Tmp1 = SelectExpr(N.getOperand(0));
547 BuildMI(BB, PPC::FRSP, 1, Result).addReg(Tmp1);
548 return Result;
549
550 case ISD::FP_EXTEND:
551 assert (DestType == MVT::f64 &&
552 N.getOperand(0).getValueType() == MVT::f32 &&
553 "only f32 to f64 conversion supported here");
554 Tmp1 = SelectExpr(N.getOperand(0));
555 BuildMI(BB, PPC::FMR, 1, Result).addReg(Tmp1);
556 return Result;
557
558 case ISD::CopyFromReg:
Nate Begemanf2622612005-03-26 02:17:46 +0000559 if (Result == 1)
560 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
561 Tmp1 = dyn_cast<RegSDNode>(Node)->getReg();
562 BuildMI(BB, PPC::FMR, 1, Result).addReg(Tmp1);
563 return Result;
Nate Begemana9795f82005-03-24 04:41:43 +0000564
565 case ISD::LOAD:
Nate Begeman5e966612005-03-24 06:28:42 +0000566 case ISD::EXTLOAD:
Nate Begemana9795f82005-03-24 04:41:43 +0000567 abort();
568
569 case ISD::ConstantFP:
570 abort();
571
572 case ISD::MUL:
573 case ISD::ADD:
574 case ISD::SUB:
575 case ISD::SDIV:
576 switch( opcode ) {
577 case ISD::MUL: Opc = DestType == MVT::f64 ? PPC::FMUL : PPC::FMULS; break;
578 case ISD::ADD: Opc = DestType == MVT::f64 ? PPC::FADD : PPC::FADDS; break;
579 case ISD::SUB: Opc = DestType == MVT::f64 ? PPC::FSUB : PPC::FSUBS; break;
580 case ISD::SDIV: Opc = DestType == MVT::f64 ? PPC::FDIV : PPC::FDIVS; break;
581 };
582
583 Tmp1 = SelectExpr(N.getOperand(0));
584 Tmp2 = SelectExpr(N.getOperand(1));
585 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
586 return Result;
587
Nate Begemana9795f82005-03-24 04:41:43 +0000588 case ISD::UINT_TO_FP:
589 case ISD::SINT_TO_FP:
590 abort();
591 }
592 assert(0 && "should not get here");
593 return 0;
594}
595
596unsigned ISel::SelectExpr(SDOperand N) {
597 unsigned Result;
598 unsigned Tmp1, Tmp2, Tmp3;
599 unsigned Opc = 0;
600 unsigned opcode = N.getOpcode();
601
602 SDNode *Node = N.Val;
603 MVT::ValueType DestType = N.getValueType();
604
605 unsigned &Reg = ExprMap[N];
606 if (Reg) return Reg;
607
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000608 if (N.getOpcode() != ISD::CALL && N.getOpcode() != ISD::ADD_PARTS &&
609 N.getOpcode() != ISD::SUB_PARTS)
Nate Begemana9795f82005-03-24 04:41:43 +0000610 Reg = Result = (N.getValueType() != MVT::Other) ?
611 MakeReg(N.getValueType()) : 1;
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000612 else {
613 // If this is a call instruction, make sure to prepare ALL of the result
614 // values as well as the chain.
615 if (N.getOpcode() == ISD::CALL) {
616 if (Node->getNumValues() == 1)
617 Reg = Result = 1; // Void call, just a chain.
618 else {
619 Result = MakeReg(Node->getValueType(0));
620 ExprMap[N.getValue(0)] = Result;
621 for (unsigned i = 1, e = N.Val->getNumValues()-1; i != e; ++i)
622 ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
623 ExprMap[SDOperand(Node, Node->getNumValues()-1)] = 1;
624 }
625 } else {
626 Result = MakeReg(Node->getValueType(0));
627 ExprMap[N.getValue(0)] = Result;
628 for (unsigned i = 1, e = N.Val->getNumValues(); i != e; ++i)
629 ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
630 }
631 }
632
633 if (DestType == MVT::f64 || DestType == MVT::f32)
634 return SelectExprFP(N, Result);
Nate Begemana9795f82005-03-24 04:41:43 +0000635
636 switch (opcode) {
637 default:
638 Node->dump();
639 assert(0 && "Node not handled!\n");
640
641 case ISD::DYNAMIC_STACKALLOC:
Nate Begeman5e966612005-03-24 06:28:42 +0000642 // Generate both result values. FIXME: Need a better commment here?
643 if (Result != 1)
644 ExprMap[N.getValue(1)] = 1;
645 else
646 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
647
648 // FIXME: We are currently ignoring the requested alignment for handling
649 // greater than the stack alignment. This will need to be revisited at some
650 // point. Align = N.getOperand(2);
651 if (!isa<ConstantSDNode>(N.getOperand(2)) ||
652 cast<ConstantSDNode>(N.getOperand(2))->getValue() != 0) {
653 std::cerr << "Cannot allocate stack object with greater alignment than"
654 << " the stack alignment yet!";
655 abort();
656 }
657 Select(N.getOperand(0));
658 Tmp1 = SelectExpr(N.getOperand(1));
659 // Subtract size from stack pointer, thereby allocating some space.
660 BuildMI(BB, PPC::SUBF, 2, PPC::R1).addReg(Tmp1).addReg(PPC::R1);
661 // Put a pointer to the space into the result register by copying the SP
662 BuildMI(BB, PPC::OR, 2, Result).addReg(PPC::R1).addReg(PPC::R1);
663 return Result;
Nate Begemana9795f82005-03-24 04:41:43 +0000664
665 case ISD::ConstantPool:
666 abort();
667
668 case ISD::FrameIndex:
669 abort();
670
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000671 case ISD::GlobalAddress: {
672 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
673 unsigned Tmp1 = MakeReg(MVT::i32);
Nate Begemanc7b09f12005-03-25 08:34:25 +0000674 BuildMI(BB, PPC::LOADHiAddr, 2, Tmp1).addReg(getGlobalBaseReg())
675 .addGlobalAddress(GV);
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000676 if (GV->hasWeakLinkage() || GV->isExternal()) {
677 BuildMI(BB, PPC::LWZ, 2, Result).addGlobalAddress(GV).addReg(Tmp1);
678 } else {
679 BuildMI(BB, PPC::LA, 2, Result).addReg(Tmp1).addGlobalAddress(GV);
680 }
681 return Result;
682 }
683
Nate Begeman5e966612005-03-24 06:28:42 +0000684 case ISD::LOAD:
Nate Begemana9795f82005-03-24 04:41:43 +0000685 case ISD::EXTLOAD:
686 case ISD::ZEXTLOAD:
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000687 case ISD::SEXTLOAD: {
Nate Begeman5e966612005-03-24 06:28:42 +0000688 // Make sure we generate both values.
689 if (Result != 1)
690 ExprMap[N.getValue(1)] = 1; // Generate the token
691 else
692 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
693
694 SDOperand Chain = N.getOperand(0);
695 SDOperand Address = N.getOperand(1);
696 Select(Chain);
697
698 switch (Node->getValueType(0)) {
699 default: assert(0 && "Cannot load this type!");
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000700 case MVT::i1: Opc = PPC::LBZ; Tmp3 = 0; break;
701 case MVT::i8: Opc = PPC::LBZ; Tmp3 = 1; break;
702 case MVT::i16: Opc = PPC::LHZ; Tmp3 = 0; break;
703 case MVT::i32: Opc = PPC::LWZ; Tmp3 = 0; break;
Nate Begeman5e966612005-03-24 06:28:42 +0000704 }
705
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000706 if(Address.getOpcode() == ISD::FrameIndex) {
Nate Begeman5e966612005-03-24 06:28:42 +0000707 BuildMI(BB, Opc, 2, Result)
708 .addFrameIndex(cast<FrameIndexSDNode>(Address)->getIndex())
709 .addReg(PPC::R1);
710 } else {
711 int offset;
712 SelectAddr(Address, Tmp1, offset);
713 BuildMI(BB, Opc, 2, Result).addSImm(offset).addReg(Tmp1);
714 }
715 return Result;
716 }
717
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000718 case ISD::CALL: {
719 // Lower the chain for this call.
720 Select(N.getOperand(0));
721 ExprMap[N.getValue(Node->getNumValues()-1)] = 1;
722
723 // get the virtual reg for each argument
724 std::vector<unsigned> VRegs;
725 for(int i = 2, e = Node->getNumOperands(); i < e; ++i)
726 VRegs.push_back(SelectExpr(N.getOperand(i)));
727
728 // The ABI specifies that the first 32 bytes of args may be passed in GPRs,
729 // and that 13 FPRs may also be used for passing any floating point args.
730 int GPR_remaining = 8, FPR_remaining = 13;
731 unsigned GPR_idx = 0, FPR_idx = 0;
732 static const unsigned GPR[] = {
733 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
734 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
735 };
736 static const unsigned FPR[] = {
737 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6,
738 PPC::F7, PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12,
739 PPC::F13
740 };
741
742 // move the vregs into the appropriate architected register or stack slot
743 for(int i = 0, e = VRegs.size(); i < e; ++i) {
744 unsigned OperandType = N.getOperand(i+2).getValueType();
745 switch(OperandType) {
746 default:
747 Node->dump();
748 N.getOperand(i).Val->dump();
749 std::cerr << "Type for " << i << " is: " <<
750 N.getOperand(i+2).getValueType() << "\n";
751 assert(0 && "Unknown value type for call");
752 case MVT::i1:
753 case MVT::i8:
754 case MVT::i16:
755 case MVT::i32:
756 if (GPR_remaining > 0)
757 BuildMI(BB, PPC::OR, 2, GPR[GPR_idx]).addReg(VRegs[i])
758 .addReg(VRegs[i]);
759 break;
760 case MVT::f32:
761 case MVT::f64:
762 if (FPR_remaining > 0) {
763 BuildMI(BB, PPC::FMR, 1, FPR[FPR_idx]).addReg(VRegs[i]);
Nate Begemanf2622612005-03-26 02:17:46 +0000764 ++FPR_idx;
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000765 --FPR_remaining;
766 }
767 break;
768 }
769 // All arguments consume GPRs available for argument passing
Nate Begemanf2622612005-03-26 02:17:46 +0000770 if (GPR_remaining > 0) {
771 ++GPR_idx;
772 --GPR_remaining;
773 }
774 if (MVT::f64 == OperandType && GPR_remaining > 0) {
775 ++GPR_idx;
776 --GPR_remaining;
777 }
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000778 }
779
780 // Emit the correct call instruction based on the type of symbol called.
781 if (GlobalAddressSDNode *GASD =
782 dyn_cast<GlobalAddressSDNode>(N.getOperand(1))) {
783 BuildMI(BB, PPC::CALLpcrel, 1).addGlobalAddress(GASD->getGlobal(), true);
784 } else if (ExternalSymbolSDNode *ESSDN =
785 dyn_cast<ExternalSymbolSDNode>(N.getOperand(1))) {
786 BuildMI(BB, PPC::CALLpcrel, 1).addExternalSymbol(ESSDN->getSymbol(), true);
787 } else {
788 Tmp1 = SelectExpr(N.getOperand(1));
789 BuildMI(BB, PPC::OR, 2, PPC::R12).addReg(Tmp1).addReg(Tmp1);
790 BuildMI(BB, PPC::MTCTR, 1).addReg(PPC::R12);
791 BuildMI(BB, PPC::CALLindirect, 3).addImm(20).addImm(0).addReg(PPC::R12);
792 }
793
794 switch (Node->getValueType(0)) {
795 default: assert(0 && "Unknown value type for call result!");
796 case MVT::Other: return 1;
797 case MVT::i1:
798 case MVT::i8:
799 case MVT::i16:
800 case MVT::i32:
Nate Begemanc7b09f12005-03-25 08:34:25 +0000801 BuildMI(BB, PPC::OR, 2, Result).addReg(PPC::R3).addReg(PPC::R3);
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000802 if (Node->getValueType(1) == MVT::i32)
Nate Begemanc7b09f12005-03-25 08:34:25 +0000803 BuildMI(BB, PPC::OR, 2, Result+1).addReg(PPC::R4).addReg(PPC::R4);
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000804 break;
805 case MVT::f32:
806 case MVT::f64:
807 BuildMI(BB, PPC::FMR, 1, Result).addReg(PPC::F1);
808 break;
809 }
810 return Result+N.ResNo;
811 }
Nate Begemana9795f82005-03-24 04:41:43 +0000812
813 case ISD::SIGN_EXTEND:
814 case ISD::SIGN_EXTEND_INREG:
815 Tmp1 = SelectExpr(N.getOperand(0));
816 BuildMI(BB, PPC::EXTSH, 1, Result).addReg(Tmp1);
817 return Result;
818
819 case ISD::ZERO_EXTEND_INREG:
820 Tmp1 = SelectExpr(N.getOperand(0));
821 switch(cast<MVTSDNode>(Node)->getExtraValueType()) {
822 default:
823 Node->dump();
824 assert(0 && "Zero Extend InReg not there yet");
825 break;
826 case MVT::i16: Tmp2 = 16; break;
827 case MVT::i8: Tmp2 = 24; break;
828 case MVT::i1: Tmp2 = 31; break;
829 }
830 BuildMI(BB, PPC::RLWINM, 5, Result).addReg(Tmp1).addImm(0).addImm(0)
831 .addImm(Tmp2).addImm(31);
832 return Result;
833
Nate Begemana9795f82005-03-24 04:41:43 +0000834 case ISD::CopyFromReg:
835 if (Result == 1)
836 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
837 Tmp1 = dyn_cast<RegSDNode>(Node)->getReg();
838 BuildMI(BB, PPC::OR, 2, Result).addReg(Tmp1).addReg(Tmp1);
839 return Result;
840
841 case ISD::SHL:
Nate Begeman5e966612005-03-24 06:28:42 +0000842 Tmp1 = SelectExpr(N.getOperand(0));
843 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
844 Tmp2 = CN->getValue() & 0x1F;
845 BuildMI(BB, PPC::RLWINM, 5, Result).addReg(Tmp1).addImm(Tmp2).addImm(0)
846 .addImm(31-Tmp2);
847 } else {
848 Tmp2 = SelectExpr(N.getOperand(1));
849 BuildMI(BB, PPC::SLW, 2, Result).addReg(Tmp1).addReg(Tmp2);
850 }
851 return Result;
Nate Begemana9795f82005-03-24 04:41:43 +0000852
Nate Begeman5e966612005-03-24 06:28:42 +0000853 case ISD::SRL:
854 Tmp1 = SelectExpr(N.getOperand(0));
855 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
856 Tmp2 = CN->getValue() & 0x1F;
857 BuildMI(BB, PPC::RLWINM, 5, Result).addReg(Tmp1).addImm(32-Tmp2)
858 .addImm(Tmp2).addImm(31);
859 } else {
860 Tmp2 = SelectExpr(N.getOperand(1));
861 BuildMI(BB, PPC::SRW, 2, Result).addReg(Tmp1).addReg(Tmp2);
862 }
863 return Result;
864
865 case ISD::SRA:
866 Tmp1 = SelectExpr(N.getOperand(0));
867 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
868 Tmp2 = CN->getValue() & 0x1F;
869 BuildMI(BB, PPC::SRAWI, 2, Result).addReg(Tmp1).addImm(Tmp2);
870 } else {
871 Tmp2 = SelectExpr(N.getOperand(1));
872 BuildMI(BB, PPC::SRAW, 2, Result).addReg(Tmp1).addReg(Tmp2);
873 }
874 return Result;
875
Nate Begemana9795f82005-03-24 04:41:43 +0000876 case ISD::ADD:
877 assert (DestType == MVT::i32 && "Only do arithmetic on i32s!");
878 Tmp1 = SelectExpr(N.getOperand(0));
879 switch(canUseAsImmediateForOpcode(N.getOperand(1), opcode, Tmp2)) {
880 default: assert(0 && "unhandled result code");
881 case 0: // No immediate
882 Tmp2 = SelectExpr(N.getOperand(1));
883 BuildMI(BB, PPC::ADD, 2, Result).addReg(Tmp1).addReg(Tmp2);
884 break;
885 case 1: // Low immediate
886 BuildMI(BB, PPC::ADDI, 2, Result).addReg(Tmp1).addSImm(Tmp2);
887 break;
888 case 2: // Shifted immediate
889 BuildMI(BB, PPC::ADDIS, 2, Result).addReg(Tmp1).addSImm(Tmp2);
890 break;
891 }
892 return Result;
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000893
Nate Begemana9795f82005-03-24 04:41:43 +0000894 case ISD::AND:
895 case ISD::OR:
896 case ISD::XOR:
897 assert (DestType == MVT::i32 && "Only do arithmetic on i32s!");
898 Tmp1 = SelectExpr(N.getOperand(0));
899 switch(canUseAsImmediateForOpcode(N.getOperand(1), opcode, Tmp2)) {
900 default: assert(0 && "unhandled result code");
901 case 0: // No immediate
902 Tmp2 = SelectExpr(N.getOperand(1));
903 switch (opcode) {
Nate Begeman5e966612005-03-24 06:28:42 +0000904 case ISD::AND: Opc = PPC::AND; break;
905 case ISD::OR: Opc = PPC::OR; break;
906 case ISD::XOR: Opc = PPC::XOR; break;
Nate Begemana9795f82005-03-24 04:41:43 +0000907 }
Nate Begeman5e966612005-03-24 06:28:42 +0000908 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
Nate Begemana9795f82005-03-24 04:41:43 +0000909 break;
910 case 1: // Low immediate
911 switch (opcode) {
Nate Begeman5e966612005-03-24 06:28:42 +0000912 case ISD::AND: Opc = PPC::ANDIo; break;
913 case ISD::OR: Opc = PPC::ORI; break;
914 case ISD::XOR: Opc = PPC::XORI; break;
Nate Begemana9795f82005-03-24 04:41:43 +0000915 }
Nate Begeman5e966612005-03-24 06:28:42 +0000916 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(Tmp2);
Nate Begemana9795f82005-03-24 04:41:43 +0000917 break;
918 case 2: // Shifted immediate
919 switch (opcode) {
Nate Begeman5e966612005-03-24 06:28:42 +0000920 case ISD::AND: Opc = PPC::ANDISo; break;
921 case ISD::OR: Opc = PPC::ORIS; break;
922 case ISD::XOR: Opc = PPC::XORIS; break;
Nate Begemana9795f82005-03-24 04:41:43 +0000923 }
Nate Begeman5e966612005-03-24 06:28:42 +0000924 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(Tmp2);
Nate Begemana9795f82005-03-24 04:41:43 +0000925 break;
926 }
927 return Result;
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000928
929 case ISD::SUB:
930 assert (DestType == MVT::i32 && "Only do arithmetic on i32s!");
931 Tmp1 = SelectExpr(N.getOperand(0));
932 Tmp2 = SelectExpr(N.getOperand(1));
933 BuildMI(BB, PPC::SUBF, 2, Result).addReg(Tmp2).addReg(Tmp1);
934 return Result;
Nate Begemana9795f82005-03-24 04:41:43 +0000935
Nate Begeman5e966612005-03-24 06:28:42 +0000936 case ISD::MUL:
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000937 assert (DestType == MVT::i32 && "Only do arithmetic on i32s!");
938 Tmp1 = SelectExpr(N.getOperand(0));
Nate Begeman307e7442005-03-26 01:28:53 +0000939 if (1 == canUseAsImmediateForOpcode(N.getOperand(1), opcode, Tmp2))
940 BuildMI(BB, PPC::MULLI, 2, Result).addReg(Tmp1).addSImm(Tmp2);
941 else {
942 Tmp2 = SelectExpr(N.getOperand(1));
943 BuildMI(BB, PPC::MULLW, 2, Result).addReg(Tmp1).addReg(Tmp2);
944 }
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000945 return Result;
946
947 case ISD::ADD_PARTS:
948 case ISD::SUB_PARTS:
Nate Begemana9795f82005-03-24 04:41:43 +0000949 case ISD::UREM:
950 case ISD::SREM:
951 case ISD::SDIV:
952 case ISD::UDIV:
953 abort();
954
955 case ISD::FP_TO_UINT:
956 case ISD::FP_TO_SINT:
957 abort();
958
Nate Begeman9e3e1b52005-03-24 23:35:30 +0000959 case ISD::SETCC:
960 abort();
961
Nate Begemana9795f82005-03-24 04:41:43 +0000962 case ISD::SELECT:
963 abort();
964
965 case ISD::Constant:
966 switch (N.getValueType()) {
967 default: assert(0 && "Cannot use constants of this type!");
968 case MVT::i1:
969 BuildMI(BB, PPC::LI, 1, Result)
970 .addSImm(!cast<ConstantSDNode>(N)->isNullValue());
971 break;
972 case MVT::i32:
973 {
974 int v = (int)cast<ConstantSDNode>(N)->getSignExtended();
975 if (v < 32768 && v >= -32768) {
976 BuildMI(BB, PPC::LI, 1, Result).addSImm(v);
977 } else {
Nate Begeman5e966612005-03-24 06:28:42 +0000978 Tmp1 = MakeReg(MVT::i32);
979 BuildMI(BB, PPC::LIS, 1, Tmp1).addSImm(v >> 16);
980 BuildMI(BB, PPC::ORI, 2, Result).addReg(Tmp1).addImm(v & 0xFFFF);
Nate Begemana9795f82005-03-24 04:41:43 +0000981 }
982 }
983 }
984 return Result;
985 }
986
987 return 0;
988}
989
990void ISel::Select(SDOperand N) {
991 unsigned Tmp1, Tmp2, Opc;
992 unsigned opcode = N.getOpcode();
993
994 if (!ExprMap.insert(std::make_pair(N, 1)).second)
995 return; // Already selected.
996
997 SDNode *Node = N.Val;
998
999 switch (Node->getOpcode()) {
1000 default:
1001 Node->dump(); std::cerr << "\n";
1002 assert(0 && "Node not handled yet!");
1003 case ISD::EntryToken: return; // Noop
1004 case ISD::TokenFactor:
1005 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1006 Select(Node->getOperand(i));
1007 return;
1008 case ISD::ADJCALLSTACKDOWN:
1009 case ISD::ADJCALLSTACKUP:
1010 Select(N.getOperand(0));
1011 Tmp1 = cast<ConstantSDNode>(N.getOperand(1))->getValue();
1012 Opc = N.getOpcode() == ISD::ADJCALLSTACKDOWN ? PPC::ADJCALLSTACKDOWN :
1013 PPC::ADJCALLSTACKUP;
1014 BuildMI(BB, Opc, 1).addImm(Tmp1);
1015 return;
1016 case ISD::BR: {
1017 MachineBasicBlock *Dest =
1018 cast<BasicBlockSDNode>(N.getOperand(1))->getBasicBlock();
Nate Begemana9795f82005-03-24 04:41:43 +00001019 Select(N.getOperand(0));
1020 BuildMI(BB, PPC::B, 1).addMBB(Dest);
1021 return;
1022 }
1023 case ISD::BRCOND:
1024 SelectBranchCC(N);
1025 return;
1026 case ISD::CopyToReg:
1027 Select(N.getOperand(0));
1028 Tmp1 = SelectExpr(N.getOperand(1));
1029 Tmp2 = cast<RegSDNode>(N)->getReg();
1030
1031 if (Tmp1 != Tmp2) {
1032 if (N.getOperand(1).getValueType() == MVT::f64 ||
1033 N.getOperand(1).getValueType() == MVT::f32)
1034 BuildMI(BB, PPC::FMR, 1, Tmp2).addReg(Tmp1);
1035 else
1036 BuildMI(BB, PPC::OR, 2, Tmp2).addReg(Tmp1).addReg(Tmp1);
1037 }
1038 return;
1039 case ISD::ImplicitDef:
1040 Select(N.getOperand(0));
1041 BuildMI(BB, PPC::IMPLICIT_DEF, 0, cast<RegSDNode>(N)->getReg());
1042 return;
1043 case ISD::RET:
1044 switch (N.getNumOperands()) {
1045 default:
1046 assert(0 && "Unknown return instruction!");
1047 case 3:
1048 assert(N.getOperand(1).getValueType() == MVT::i32 &&
1049 N.getOperand(2).getValueType() == MVT::i32 &&
1050 "Unknown two-register value!");
1051 Select(N.getOperand(0));
1052 Tmp1 = SelectExpr(N.getOperand(1));
1053 Tmp2 = SelectExpr(N.getOperand(2));
1054 BuildMI(BB, PPC::OR, 2, PPC::R3).addReg(Tmp1).addReg(Tmp1);
1055 BuildMI(BB, PPC::OR, 2, PPC::R4).addReg(Tmp2).addReg(Tmp2);
1056 break;
1057 case 2:
1058 Select(N.getOperand(0));
1059 Tmp1 = SelectExpr(N.getOperand(1));
1060 switch (N.getOperand(1).getValueType()) {
1061 default:
1062 assert(0 && "Unknown return type!");
1063 case MVT::f64:
1064 case MVT::f32:
1065 BuildMI(BB, PPC::FMR, 1, PPC::F1).addReg(Tmp1);
1066 break;
1067 case MVT::i32:
1068 BuildMI(BB, PPC::OR, 2, PPC::R3).addReg(Tmp1).addReg(Tmp1);
1069 break;
1070 }
Nate Begeman9e3e1b52005-03-24 23:35:30 +00001071 case 1:
1072 Select(N.getOperand(0));
1073 break;
Nate Begemana9795f82005-03-24 04:41:43 +00001074 }
1075 BuildMI(BB, PPC::BLR, 0); // Just emit a 'ret' instruction
1076 return;
Nate Begemana9795f82005-03-24 04:41:43 +00001077 case ISD::TRUNCSTORE:
1078 case ISD::STORE:
1079 {
1080 SDOperand Chain = N.getOperand(0);
1081 SDOperand Value = N.getOperand(1);
1082 SDOperand Address = N.getOperand(2);
1083 Select(Chain);
1084
1085 Tmp1 = SelectExpr(Value); //value
1086
1087 if (opcode == ISD::STORE) {
1088 switch(Value.getValueType()) {
1089 default: assert(0 && "unknown Type in store");
1090 case MVT::i32: Opc = PPC::STW; break;
1091 case MVT::f64: Opc = PPC::STFD; break;
1092 case MVT::f32: Opc = PPC::STFS; break;
1093 }
1094 } else { //ISD::TRUNCSTORE
1095 switch(cast<MVTSDNode>(Node)->getExtraValueType()) {
1096 default: assert(0 && "unknown Type in store");
1097 case MVT::i1: //FIXME: DAG does not promote this load
1098 case MVT::i8: Opc = PPC::STB; break;
1099 case MVT::i16: Opc = PPC::STH; break;
1100 }
1101 }
1102
1103 if (Address.getOpcode() == ISD::GlobalAddress)
1104 {
1105 BuildMI(BB, Opc, 2).addReg(Tmp1)
1106 .addGlobalAddress(cast<GlobalAddressSDNode>(Address)->getGlobal());
1107 }
1108 else if(Address.getOpcode() == ISD::FrameIndex)
1109 {
1110 BuildMI(BB, Opc, 2).addReg(Tmp1)
1111 .addFrameIndex(cast<FrameIndexSDNode>(Address)->getIndex());
1112 }
1113 else
1114 {
1115 int offset;
1116 SelectAddr(Address, Tmp2, offset);
1117 BuildMI(BB, Opc, 3).addReg(Tmp1).addImm(offset).addReg(Tmp2);
1118 }
1119 return;
1120 }
1121 case ISD::EXTLOAD:
1122 case ISD::SEXTLOAD:
1123 case ISD::ZEXTLOAD:
1124 case ISD::LOAD:
1125 case ISD::CopyFromReg:
1126 case ISD::CALL:
1127 case ISD::DYNAMIC_STACKALLOC:
1128 ExprMap.erase(N);
1129 SelectExpr(N);
1130 return;
1131 }
1132 assert(0 && "Should not be reached!");
1133}
1134
1135
1136/// createPPC32PatternInstructionSelector - This pass converts an LLVM function
1137/// into a machine code representation using pattern matching and a machine
1138/// description file.
1139///
1140FunctionPass *llvm::createPPC32ISelPattern(TargetMachine &TM) {
1141 return new ISel(TM);
Chris Lattner246fa632005-03-24 06:16:18 +00001142}
1143