blob: 4c2d4af6f924c9bad6608c6804725b88c97652ed [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCISelDAGToDAG.cpp - PPC --pattern matching inst selector --------===//
Chris Lattnera5a91b12005-08-17 19:33:03 +00002//
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//
Nate Begeman21e463b2005-10-16 05:39:50 +000010// This file defines a pattern matching instruction selector for PowerPC,
Chris Lattnera5a91b12005-08-17 19:33:03 +000011// converting from a legalized dag to a PPC dag.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner26689592005-10-14 23:51:18 +000015#include "PPC.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000016#include "PPCTargetMachine.h"
17#include "PPCISelLowering.h"
Chris Lattnerc6644182006-03-07 06:32:48 +000018#include "PPCHazardRecognizers.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000019#include "llvm/CodeGen/MachineInstrBuilder.h"
20#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000022#include "llvm/CodeGen/SelectionDAG.h"
23#include "llvm/CodeGen/SelectionDAGISel.h"
24#include "llvm/Target/TargetOptions.h"
25#include "llvm/ADT/Statistic.h"
Chris Lattner2fe76e52005-08-25 04:47:18 +000026#include "llvm/Constants.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000027#include "llvm/GlobalValue.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000028#include "llvm/Support/Debug.h"
29#include "llvm/Support/MathExtras.h"
Chris Lattner2c2c6c62006-01-22 23:41:00 +000030#include <iostream>
Evan Chengba2f0a92006-02-05 06:46:41 +000031#include <set>
Chris Lattnera5a91b12005-08-17 19:33:03 +000032using namespace llvm;
33
34namespace {
Chris Lattnera5a91b12005-08-17 19:33:03 +000035 Statistic<> FrameOff("ppc-codegen", "Number of frame idx offsets collapsed");
36
37 //===--------------------------------------------------------------------===//
Nate Begeman1d9d7422005-10-18 00:28:58 +000038 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
Chris Lattnera5a91b12005-08-17 19:33:03 +000039 /// instructions for SelectionDAG operations.
40 ///
Nate Begeman1d9d7422005-10-18 00:28:58 +000041 class PPCDAGToDAGISel : public SelectionDAGISel {
Nate Begeman21e463b2005-10-16 05:39:50 +000042 PPCTargetLowering PPCLowering;
Chris Lattner4416f1a2005-08-19 22:38:53 +000043 unsigned GlobalBaseReg;
Chris Lattnera5a91b12005-08-17 19:33:03 +000044 public:
Nate Begeman1d9d7422005-10-18 00:28:58 +000045 PPCDAGToDAGISel(TargetMachine &TM)
Nate Begeman21e463b2005-10-16 05:39:50 +000046 : SelectionDAGISel(PPCLowering), PPCLowering(TM) {}
Chris Lattnera5a91b12005-08-17 19:33:03 +000047
Chris Lattner4416f1a2005-08-19 22:38:53 +000048 virtual bool runOnFunction(Function &Fn) {
49 // Make sure we re-emit a set of the global base reg if necessary
50 GlobalBaseReg = 0;
51 return SelectionDAGISel::runOnFunction(Fn);
52 }
53
Chris Lattnera5a91b12005-08-17 19:33:03 +000054 /// getI32Imm - Return a target constant with the specified value, of type
55 /// i32.
56 inline SDOperand getI32Imm(unsigned Imm) {
57 return CurDAG->getTargetConstant(Imm, MVT::i32);
58 }
Chris Lattner4416f1a2005-08-19 22:38:53 +000059
60 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
61 /// base register. Return the virtual register that holds this value.
Chris Lattner9944b762005-08-21 22:31:09 +000062 SDOperand getGlobalBaseReg();
Chris Lattnera5a91b12005-08-17 19:33:03 +000063
64 // Select - Convert the specified operand from a target-independent to a
65 // target-specific node if it hasn't already been changed.
Evan Cheng34167212006-02-09 00:37:58 +000066 void Select(SDOperand &Result, SDOperand Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +000067
Nate Begeman02b88a42005-08-19 00:38:14 +000068 SDNode *SelectBitfieldInsert(SDNode *N);
69
Chris Lattner2fbb4572005-08-21 18:50:37 +000070 /// SelectCC - Select a comparison of the specified values with the
71 /// specified condition code, returning the CR# of the expression.
72 SDOperand SelectCC(SDOperand LHS, SDOperand RHS, ISD::CondCode CC);
73
Nate Begeman7fd1edd2005-12-19 23:25:09 +000074 /// SelectAddrImm - Returns true if the address N can be represented by
75 /// a base register plus a signed 16-bit displacement [r+imm].
76 bool SelectAddrImm(SDOperand N, SDOperand &Disp, SDOperand &Base);
77
78 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
79 /// represented as an indexed [r+r] operation. Returns false if it can
80 /// be represented by [r+imm], which are preferred.
81 bool SelectAddrIdx(SDOperand N, SDOperand &Base, SDOperand &Index);
Nate Begemanf43a3ca2005-11-30 08:22:07 +000082
Nate Begeman7fd1edd2005-12-19 23:25:09 +000083 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
84 /// represented as an indexed [r+r] operation.
85 bool SelectAddrIdxOnly(SDOperand N, SDOperand &Base, SDOperand &Index);
Chris Lattner9944b762005-08-21 22:31:09 +000086
Chris Lattnere5d88612006-02-24 02:13:12 +000087 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
88 /// inline asm expressions.
89 virtual bool SelectInlineAsmMemoryOperand(const SDOperand &Op,
90 char ConstraintCode,
91 std::vector<SDOperand> &OutOps,
92 SelectionDAG &DAG) {
93 SDOperand Op0, Op1;
94 switch (ConstraintCode) {
95 default: return true;
96 case 'm': // memory
97 if (!SelectAddrIdx(Op, Op0, Op1))
98 SelectAddrImm(Op, Op0, Op1);
99 break;
100 case 'o': // offsetable
101 if (!SelectAddrImm(Op, Op0, Op1)) {
102 Select(Op0, Op); // r+0.
103 Op1 = getI32Imm(0);
104 }
105 break;
106 case 'v': // not offsetable
107 SelectAddrIdxOnly(Op, Op0, Op1);
108 break;
109 }
110
111 OutOps.push_back(Op0);
112 OutOps.push_back(Op1);
113 return false;
114 }
115
Chris Lattner047b9522005-08-25 22:04:30 +0000116 SDOperand BuildSDIVSequence(SDNode *N);
117 SDOperand BuildUDIVSequence(SDNode *N);
118
Chris Lattnera5a91b12005-08-17 19:33:03 +0000119 /// InstructionSelectBasicBlock - This callback is invoked by
120 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Chris Lattnerbd937b92005-10-06 18:45:51 +0000121 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
122
Chris Lattnera5a91b12005-08-17 19:33:03 +0000123 virtual const char *getPassName() const {
124 return "PowerPC DAG->DAG Pattern Instruction Selection";
125 }
Chris Lattnerc6644182006-03-07 06:32:48 +0000126
Chris Lattnerb0d21ef2006-03-08 04:25:59 +0000127 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for this
Chris Lattnerc6644182006-03-07 06:32:48 +0000128 /// target when scheduling the DAG.
Chris Lattnerb0d21ef2006-03-08 04:25:59 +0000129 virtual HazardRecognizer *CreateTargetHazardRecognizer() {
Chris Lattnerc6644182006-03-07 06:32:48 +0000130 // Should use subtarget info to pick the right hazard recognizer. For
131 // now, always return a PPC970 recognizer.
Chris Lattnerb0d21ef2006-03-08 04:25:59 +0000132 return new PPCHazardRecognizer970();
Chris Lattnerc6644182006-03-07 06:32:48 +0000133 }
Chris Lattneraf165382005-09-13 22:03:06 +0000134
135// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000136#include "PPCGenDAGISel.inc"
Chris Lattnerbd937b92005-10-06 18:45:51 +0000137
138private:
Chris Lattner222adac2005-10-06 19:03:35 +0000139 SDOperand SelectSETCC(SDOperand Op);
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000140 SDOperand SelectCALL(SDOperand Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000141 };
142}
143
Chris Lattnerbd937b92005-10-06 18:45:51 +0000144/// InstructionSelectBasicBlock - This callback is invoked by
145/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000146void PPCDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
Chris Lattnerbd937b92005-10-06 18:45:51 +0000147 DEBUG(BB->dump());
148
149 // The selection process is inherently a bottom-up recursive process (users
150 // select their uses before themselves). Given infinite stack space, we
151 // could just start selecting on the root and traverse the whole graph. In
152 // practice however, this causes us to run out of stack space on large basic
153 // blocks. To avoid this problem, select the entry node, then all its uses,
154 // iteratively instead of recursively.
155 std::vector<SDOperand> Worklist;
156 Worklist.push_back(DAG.getEntryNode());
157
158 // Note that we can do this in the PPC target (scanning forward across token
159 // chain edges) because no nodes ever get folded across these edges. On a
160 // target like X86 which supports load/modify/store operations, this would
161 // have to be more careful.
162 while (!Worklist.empty()) {
163 SDOperand Node = Worklist.back();
164 Worklist.pop_back();
165
Chris Lattnercf01a702005-10-07 22:10:27 +0000166 // Chose from the least deep of the top two nodes.
167 if (!Worklist.empty() &&
168 Worklist.back().Val->getNodeDepth() < Node.Val->getNodeDepth())
169 std::swap(Worklist.back(), Node);
170
Chris Lattnerbd937b92005-10-06 18:45:51 +0000171 if ((Node.Val->getOpcode() >= ISD::BUILTIN_OP_END &&
172 Node.Val->getOpcode() < PPCISD::FIRST_NUMBER) ||
173 CodeGenMap.count(Node)) continue;
174
175 for (SDNode::use_iterator UI = Node.Val->use_begin(),
176 E = Node.Val->use_end(); UI != E; ++UI) {
177 // Scan the values. If this use has a value that is a token chain, add it
178 // to the worklist.
179 SDNode *User = *UI;
180 for (unsigned i = 0, e = User->getNumValues(); i != e; ++i)
181 if (User->getValueType(i) == MVT::Other) {
182 Worklist.push_back(SDOperand(User, i));
183 break;
184 }
185 }
186
187 // Finally, legalize this node.
Evan Cheng34167212006-02-09 00:37:58 +0000188 SDOperand Dummy;
189 Select(Dummy, Node);
Chris Lattnerbd937b92005-10-06 18:45:51 +0000190 }
Chris Lattnercf01a702005-10-07 22:10:27 +0000191
Chris Lattnerbd937b92005-10-06 18:45:51 +0000192 // Select target instructions for the DAG.
Evan Chengba2f0a92006-02-05 06:46:41 +0000193 DAG.setRoot(SelectRoot(DAG.getRoot()));
Chris Lattnerbd937b92005-10-06 18:45:51 +0000194 CodeGenMap.clear();
195 DAG.RemoveDeadNodes();
196
197 // Emit machine code to BB.
198 ScheduleAndEmitDAG(DAG);
199}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000200
Chris Lattner4416f1a2005-08-19 22:38:53 +0000201/// getGlobalBaseReg - Output the instructions required to put the
202/// base address to use for accessing globals into a register.
203///
Nate Begeman1d9d7422005-10-18 00:28:58 +0000204SDOperand PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000205 if (!GlobalBaseReg) {
206 // Insert the set of GlobalBaseReg into the first MBB of the function
207 MachineBasicBlock &FirstMBB = BB->getParent()->front();
208 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
209 SSARegMap *RegMap = BB->getParent()->getSSARegMap();
Nate Begeman1d9d7422005-10-18 00:28:58 +0000210 // FIXME: when we get to LP64, we will need to create the appropriate
211 // type of register here.
212 GlobalBaseReg = RegMap->createVirtualRegister(PPC::GPRCRegisterClass);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000213 BuildMI(FirstMBB, MBBI, PPC::MovePCtoLR, 0, PPC::LR);
214 BuildMI(FirstMBB, MBBI, PPC::MFLR, 1, GlobalBaseReg);
215 }
Chris Lattner9944b762005-08-21 22:31:09 +0000216 return CurDAG->getRegister(GlobalBaseReg, MVT::i32);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000217}
218
219
Nate Begeman0f3257a2005-08-18 05:00:13 +0000220// isIntImmediate - This method tests to see if a constant operand.
221// If so Imm will receive the 32 bit value.
222static bool isIntImmediate(SDNode *N, unsigned& Imm) {
223 if (N->getOpcode() == ISD::Constant) {
224 Imm = cast<ConstantSDNode>(N)->getValue();
225 return true;
226 }
227 return false;
228}
229
Nate Begemancffc32b2005-08-18 07:30:46 +0000230// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s with
231// any number of 0s on either side. The 1s are allowed to wrap from LSB to
232// MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs. 0x0F0F0000 is
233// not, since all 1s are not contiguous.
234static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
235 if (isShiftedMask_32(Val)) {
236 // look for the first non-zero bit
237 MB = CountLeadingZeros_32(Val);
238 // look for the first zero bit after the run of ones
239 ME = CountLeadingZeros_32((Val - 1) ^ Val);
240 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000241 } else {
242 Val = ~Val; // invert mask
243 if (isShiftedMask_32(Val)) {
244 // effectively look for the first zero bit
245 ME = CountLeadingZeros_32(Val) - 1;
246 // effectively look for the first one bit after the run of zeros
247 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
248 return true;
249 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000250 }
251 // no run present
252 return false;
253}
254
Chris Lattner65a419a2005-10-09 05:36:17 +0000255// isRotateAndMask - Returns true if Mask and Shift can be folded into a rotate
Nate Begemancffc32b2005-08-18 07:30:46 +0000256// and mask opcode and mask operation.
257static bool isRotateAndMask(SDNode *N, unsigned Mask, bool IsShiftMask,
258 unsigned &SH, unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000259 // Don't even go down this path for i64, since different logic will be
260 // necessary for rldicl/rldicr/rldimi.
261 if (N->getValueType(0) != MVT::i32)
262 return false;
263
Nate Begemancffc32b2005-08-18 07:30:46 +0000264 unsigned Shift = 32;
265 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
266 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000267 if (N->getNumOperands() != 2 ||
268 !isIntImmediate(N->getOperand(1).Val, Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000269 return false;
270
271 if (Opcode == ISD::SHL) {
272 // apply shift left to mask if it comes first
273 if (IsShiftMask) Mask = Mask << Shift;
274 // determine which bits are made indeterminant by shift
275 Indeterminant = ~(0xFFFFFFFFu << Shift);
Chris Lattner651dea72005-10-15 21:40:12 +0000276 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000277 // apply shift right to mask if it comes first
278 if (IsShiftMask) Mask = Mask >> Shift;
279 // determine which bits are made indeterminant by shift
280 Indeterminant = ~(0xFFFFFFFFu >> Shift);
281 // adjust for the left rotate
282 Shift = 32 - Shift;
283 } else {
284 return false;
285 }
286
287 // if the mask doesn't intersect any Indeterminant bits
288 if (Mask && !(Mask & Indeterminant)) {
289 SH = Shift;
290 // make sure the mask is still a mask (wrap arounds may not be)
291 return isRunOfOnes(Mask, MB, ME);
292 }
293 return false;
294}
295
Nate Begeman0f3257a2005-08-18 05:00:13 +0000296// isOpcWithIntImmediate - This method tests to see if the node is a specific
297// opcode and that it has a immediate integer right operand.
298// If so Imm will receive the 32 bit value.
299static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
300 return N->getOpcode() == Opc && isIntImmediate(N->getOperand(1).Val, Imm);
301}
302
Chris Lattnera5a91b12005-08-17 19:33:03 +0000303// isIntImmediate - This method tests to see if a constant operand.
304// If so Imm will receive the 32 bit value.
305static bool isIntImmediate(SDOperand N, unsigned& Imm) {
306 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
307 Imm = (unsigned)CN->getSignExtended();
308 return true;
309 }
310 return false;
311}
312
Nate Begeman02b88a42005-08-19 00:38:14 +0000313/// SelectBitfieldInsert - turn an or of two masked values into
314/// the rotate left word immediate then mask insert (rlwimi) instruction.
315/// Returns true on success, false if the caller still needs to select OR.
316///
317/// Patterns matched:
318/// 1. or shl, and 5. or and, and
319/// 2. or and, shl 6. or shl, shr
320/// 3. or shr, and 7. or shr, shl
321/// 4. or and, shr
Nate Begeman1d9d7422005-10-18 00:28:58 +0000322SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Nate Begeman02b88a42005-08-19 00:38:14 +0000323 bool IsRotate = false;
324 unsigned TgtMask = 0xFFFFFFFF, InsMask = 0xFFFFFFFF, SH = 0;
325 unsigned Value;
326
327 SDOperand Op0 = N->getOperand(0);
328 SDOperand Op1 = N->getOperand(1);
329
330 unsigned Op0Opc = Op0.getOpcode();
331 unsigned Op1Opc = Op1.getOpcode();
332
333 // Verify that we have the correct opcodes
334 if (ISD::SHL != Op0Opc && ISD::SRL != Op0Opc && ISD::AND != Op0Opc)
335 return false;
336 if (ISD::SHL != Op1Opc && ISD::SRL != Op1Opc && ISD::AND != Op1Opc)
337 return false;
338
339 // Generate Mask value for Target
340 if (isIntImmediate(Op0.getOperand(1), Value)) {
341 switch(Op0Opc) {
Chris Lattner13687212005-08-30 18:37:48 +0000342 case ISD::SHL: TgtMask <<= Value; break;
343 case ISD::SRL: TgtMask >>= Value; break;
344 case ISD::AND: TgtMask &= Value; break;
Nate Begeman02b88a42005-08-19 00:38:14 +0000345 }
346 } else {
347 return 0;
348 }
349
350 // Generate Mask value for Insert
Chris Lattner13687212005-08-30 18:37:48 +0000351 if (!isIntImmediate(Op1.getOperand(1), Value))
Nate Begeman02b88a42005-08-19 00:38:14 +0000352 return 0;
Chris Lattner13687212005-08-30 18:37:48 +0000353
354 switch(Op1Opc) {
355 case ISD::SHL:
356 SH = Value;
357 InsMask <<= SH;
358 if (Op0Opc == ISD::SRL) IsRotate = true;
359 break;
360 case ISD::SRL:
361 SH = Value;
362 InsMask >>= SH;
363 SH = 32-SH;
364 if (Op0Opc == ISD::SHL) IsRotate = true;
365 break;
366 case ISD::AND:
367 InsMask &= Value;
368 break;
Nate Begeman02b88a42005-08-19 00:38:14 +0000369 }
370
371 // If both of the inputs are ANDs and one of them has a logical shift by
372 // constant as its input, make that AND the inserted value so that we can
373 // combine the shift into the rotate part of the rlwimi instruction
374 bool IsAndWithShiftOp = false;
375 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
376 if (Op1.getOperand(0).getOpcode() == ISD::SHL ||
377 Op1.getOperand(0).getOpcode() == ISD::SRL) {
378 if (isIntImmediate(Op1.getOperand(0).getOperand(1), Value)) {
379 SH = Op1.getOperand(0).getOpcode() == ISD::SHL ? Value : 32 - Value;
380 IsAndWithShiftOp = true;
381 }
382 } else if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
383 Op0.getOperand(0).getOpcode() == ISD::SRL) {
384 if (isIntImmediate(Op0.getOperand(0).getOperand(1), Value)) {
385 std::swap(Op0, Op1);
386 std::swap(TgtMask, InsMask);
387 SH = Op1.getOperand(0).getOpcode() == ISD::SHL ? Value : 32 - Value;
388 IsAndWithShiftOp = true;
389 }
390 }
391 }
392
393 // Verify that the Target mask and Insert mask together form a full word mask
394 // and that the Insert mask is a run of set bits (which implies both are runs
395 // of set bits). Given that, Select the arguments and generate the rlwimi
396 // instruction.
397 unsigned MB, ME;
398 if (((TgtMask & InsMask) == 0) && isRunOfOnes(InsMask, MB, ME)) {
399 bool fullMask = (TgtMask ^ InsMask) == 0xFFFFFFFF;
400 bool Op0IsAND = Op0Opc == ISD::AND;
401 // Check for rotlwi / rotrwi here, a special case of bitfield insert
402 // where both bitfield halves are sourced from the same value.
403 if (IsRotate && fullMask &&
404 N->getOperand(0).getOperand(0) == N->getOperand(1).getOperand(0)) {
Evan Cheng34167212006-02-09 00:37:58 +0000405 SDOperand Tmp;
406 Select(Tmp, N->getOperand(0).getOperand(0));
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000407 return CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, Tmp,
408 getI32Imm(SH), getI32Imm(0), getI32Imm(31));
Nate Begeman02b88a42005-08-19 00:38:14 +0000409 }
Evan Cheng34167212006-02-09 00:37:58 +0000410 SDOperand Tmp1, Tmp2;
411 Select(Tmp1, ((Op0IsAND && fullMask) ? Op0.getOperand(0) : Op0));
412 Select(Tmp2, (IsAndWithShiftOp ? Op1.getOperand(0).getOperand(0)
413 : Op1.getOperand(0)));
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000414 return CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32, Tmp1, Tmp2,
415 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME));
Nate Begeman02b88a42005-08-19 00:38:14 +0000416 }
417 return 0;
418}
419
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000420/// SelectAddrImm - Returns true if the address N can be represented by
421/// a base register plus a signed 16-bit displacement [r+imm].
422bool PPCDAGToDAGISel::SelectAddrImm(SDOperand N, SDOperand &Disp,
423 SDOperand &Base) {
Chris Lattner0f6ab6f2006-03-01 07:14:48 +0000424 // If this can be more profitably realized as r+r, fail.
425 if (SelectAddrIdx(N, Disp, Base))
426 return false;
427
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000428 if (N.getOpcode() == ISD::ADD) {
429 unsigned imm = 0;
430 if (isIntImmediate(N.getOperand(1), imm) && isInt16(imm)) {
Chris Lattner17e82d22006-01-12 01:54:15 +0000431 Disp = getI32Imm(imm & 0xFFFF);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000432 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
433 Base = CurDAG->getTargetFrameIndex(FI->getIndex(), MVT::i32);
Chris Lattner9944b762005-08-21 22:31:09 +0000434 } else {
Evan Cheng7564e0b2006-02-05 08:45:01 +0000435 Base = N.getOperand(0);
Chris Lattner9944b762005-08-21 22:31:09 +0000436 }
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000437 return true; // [r+i]
438 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
Chris Lattner4f0f86d2005-11-17 18:02:16 +0000439 // Match LOAD (ADD (X, Lo(G))).
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000440 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getValue()
Chris Lattner4f0f86d2005-11-17 18:02:16 +0000441 && "Cannot handle constant offsets yet!");
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000442 Disp = N.getOperand(1).getOperand(0); // The global address.
443 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
444 Disp.getOpcode() == ISD::TargetConstantPool);
Evan Cheng7564e0b2006-02-05 08:45:01 +0000445 Base = N.getOperand(0);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000446 return true; // [&g+r]
Chris Lattner9944b762005-08-21 22:31:09 +0000447 }
Chris Lattner0f6ab6f2006-03-01 07:14:48 +0000448 } else if (N.getOpcode() == ISD::OR) {
449 unsigned imm = 0;
450 if (isIntImmediate(N.getOperand(1), imm) && isInt16(imm)) {
451 // If this is an or of disjoint bitfields, we can codegen this as an add
452 // (for better address arithmetic) if the LHS and RHS of the OR are
453 // provably disjoint.
454 uint64_t LHSKnownZero, LHSKnownOne;
455 PPCLowering.ComputeMaskedBits(N.getOperand(0), ~0U,
456 LHSKnownZero, LHSKnownOne);
457 if ((LHSKnownZero|~imm) == ~0U) {
458 // If all of the bits are known zero on the LHS or RHS, the add won't
459 // carry.
460 Base = N.getOperand(0);
461 Disp = getI32Imm(imm & 0xFFFF);
462 return true;
463 }
464 }
Chris Lattner9944b762005-08-21 22:31:09 +0000465 }
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000466 Disp = getI32Imm(0);
467 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N))
468 Base = CurDAG->getTargetFrameIndex(FI->getIndex(), MVT::i32);
Nate Begeman28a6b022005-12-10 02:36:00 +0000469 else
Evan Cheng7564e0b2006-02-05 08:45:01 +0000470 Base = N;
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000471 return true; // [r+0]
Chris Lattner9944b762005-08-21 22:31:09 +0000472}
Chris Lattnera5a91b12005-08-17 19:33:03 +0000473
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000474/// SelectAddrIdx - Given the specified addressed, check to see if it can be
475/// represented as an indexed [r+r] operation. Returns false if it can
476/// be represented by [r+imm], which are preferred.
477bool PPCDAGToDAGISel::SelectAddrIdx(SDOperand N, SDOperand &Base,
478 SDOperand &Index) {
Chris Lattner0f6ab6f2006-03-01 07:14:48 +0000479 unsigned imm = 0;
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000480 if (N.getOpcode() == ISD::ADD) {
Chris Lattner0f6ab6f2006-03-01 07:14:48 +0000481 if (isIntImmediate(N.getOperand(1), imm) && isInt16(imm))
482 return false; // r+i
483 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
484 return false; // r+i
485
Evan Cheng7564e0b2006-02-05 08:45:01 +0000486 Base = N.getOperand(0);
487 Index = N.getOperand(1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000488 return true;
Chris Lattner0f6ab6f2006-03-01 07:14:48 +0000489 } else if (N.getOpcode() == ISD::OR) {
490 if (isIntImmediate(N.getOperand(1), imm) && isInt16(imm))
491 return false; // r+i can fold it if we can.
492
493 // If this is an or of disjoint bitfields, we can codegen this as an add
494 // (for better address arithmetic) if the LHS and RHS of the OR are provably
495 // disjoint.
496 uint64_t LHSKnownZero, LHSKnownOne;
497 uint64_t RHSKnownZero, RHSKnownOne;
498 PPCLowering.ComputeMaskedBits(N.getOperand(0), ~0U,
499 LHSKnownZero, LHSKnownOne);
500
501 if (LHSKnownZero) {
502 PPCLowering.ComputeMaskedBits(N.getOperand(1), ~0U,
503 RHSKnownZero, RHSKnownOne);
504 // If all of the bits are known zero on the LHS or RHS, the add won't
505 // carry.
506 if ((LHSKnownZero | RHSKnownZero) == ~0U) {
507 Base = N.getOperand(0);
508 Index = N.getOperand(1);
509 return true;
510 }
511 }
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000512 }
Chris Lattner0f6ab6f2006-03-01 07:14:48 +0000513
514 return false;
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000515}
516
517/// SelectAddrIdxOnly - Given the specified addressed, force it to be
518/// represented as an indexed [r+r] operation.
519bool PPCDAGToDAGISel::SelectAddrIdxOnly(SDOperand N, SDOperand &Base,
520 SDOperand &Index) {
Chris Lattner0f6ab6f2006-03-01 07:14:48 +0000521 // Check to see if we can easily represent this as an [r+r] address. This
522 // will fail if it thinks that the address is more profitably represented as
523 // reg+imm, e.g. where imm = 0.
524 if (!SelectAddrIdx(N, Base, Index)) {
525 // Nope, do it the hard way.
526 Base = CurDAG->getRegister(PPC::R0, MVT::i32);
527 Index = N;
Nate Begemanf43a3ca2005-11-30 08:22:07 +0000528 }
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000529 return true;
Nate Begemanf43a3ca2005-11-30 08:22:07 +0000530}
531
Chris Lattner2fbb4572005-08-21 18:50:37 +0000532/// SelectCC - Select a comparison of the specified values with the specified
533/// condition code, returning the CR# of the expression.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000534SDOperand PPCDAGToDAGISel::SelectCC(SDOperand LHS, SDOperand RHS,
535 ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000536 // Always select the LHS.
Evan Cheng34167212006-02-09 00:37:58 +0000537 Select(LHS, LHS);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000538
539 // Use U to determine whether the SETCC immediate range is signed or not.
540 if (MVT::isInteger(LHS.getValueType())) {
541 bool U = ISD::isUnsignedIntSetCC(CC);
542 unsigned Imm;
543 if (isIntImmediate(RHS, Imm) &&
544 ((U && isUInt16(Imm)) || (!U && isInt16(Imm))))
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000545 return SDOperand(CurDAG->getTargetNode(U ? PPC::CMPLWI : PPC::CMPWI,
546 MVT::i32, LHS, getI32Imm(Imm & 0xFFFF)), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000547 Select(RHS, RHS);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000548 return SDOperand(CurDAG->getTargetNode(U ? PPC::CMPLW : PPC::CMPW, MVT::i32,
549 LHS, RHS), 0);
Chris Lattner919c0322005-10-01 01:35:02 +0000550 } else if (LHS.getValueType() == MVT::f32) {
Evan Cheng34167212006-02-09 00:37:58 +0000551 Select(RHS, RHS);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000552 return SDOperand(CurDAG->getTargetNode(PPC::FCMPUS, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000553 } else {
Evan Cheng34167212006-02-09 00:37:58 +0000554 Select(RHS, RHS);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000555 return SDOperand(CurDAG->getTargetNode(PPC::FCMPUD, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000556 }
557}
558
559/// getBCCForSetCC - Returns the PowerPC condition branch mnemonic corresponding
560/// to Condition.
561static unsigned getBCCForSetCC(ISD::CondCode CC) {
562 switch (CC) {
563 default: assert(0 && "Unknown condition!"); abort();
Chris Lattnered048c02005-10-28 20:49:47 +0000564 case ISD::SETOEQ: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000565 case ISD::SETEQ: return PPC::BEQ;
Chris Lattnered048c02005-10-28 20:49:47 +0000566 case ISD::SETONE: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000567 case ISD::SETNE: return PPC::BNE;
Chris Lattnered048c02005-10-28 20:49:47 +0000568 case ISD::SETOLT: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000569 case ISD::SETULT:
570 case ISD::SETLT: return PPC::BLT;
Chris Lattnered048c02005-10-28 20:49:47 +0000571 case ISD::SETOLE: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000572 case ISD::SETULE:
573 case ISD::SETLE: return PPC::BLE;
Chris Lattnered048c02005-10-28 20:49:47 +0000574 case ISD::SETOGT: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000575 case ISD::SETUGT:
576 case ISD::SETGT: return PPC::BGT;
Chris Lattnered048c02005-10-28 20:49:47 +0000577 case ISD::SETOGE: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000578 case ISD::SETUGE:
579 case ISD::SETGE: return PPC::BGE;
Chris Lattner6df25072005-10-28 20:32:44 +0000580
581 case ISD::SETO: return PPC::BUN;
582 case ISD::SETUO: return PPC::BNU;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000583 }
584 return 0;
585}
586
Chris Lattner64906a02005-08-25 20:08:18 +0000587/// getCRIdxForSetCC - Return the index of the condition register field
588/// associated with the SetCC condition, and whether or not the field is
589/// treated as inverted. That is, lt = 0; ge = 0 inverted.
590static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool& Inv) {
591 switch (CC) {
592 default: assert(0 && "Unknown condition!"); abort();
Chris Lattnered048c02005-10-28 20:49:47 +0000593 case ISD::SETOLT: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000594 case ISD::SETULT:
595 case ISD::SETLT: Inv = false; return 0;
Chris Lattnered048c02005-10-28 20:49:47 +0000596 case ISD::SETOGE: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000597 case ISD::SETUGE:
598 case ISD::SETGE: Inv = true; return 0;
Chris Lattnered048c02005-10-28 20:49:47 +0000599 case ISD::SETOGT: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000600 case ISD::SETUGT:
601 case ISD::SETGT: Inv = false; return 1;
Chris Lattnered048c02005-10-28 20:49:47 +0000602 case ISD::SETOLE: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000603 case ISD::SETULE:
604 case ISD::SETLE: Inv = true; return 1;
Chris Lattnered048c02005-10-28 20:49:47 +0000605 case ISD::SETOEQ: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000606 case ISD::SETEQ: Inv = false; return 2;
Chris Lattnered048c02005-10-28 20:49:47 +0000607 case ISD::SETONE: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000608 case ISD::SETNE: Inv = true; return 2;
Chris Lattner6df25072005-10-28 20:32:44 +0000609 case ISD::SETO: Inv = true; return 3;
610 case ISD::SETUO: Inv = false; return 3;
Chris Lattner64906a02005-08-25 20:08:18 +0000611 }
612 return 0;
613}
Chris Lattner9944b762005-08-21 22:31:09 +0000614
Nate Begeman1d9d7422005-10-18 00:28:58 +0000615SDOperand PPCDAGToDAGISel::SelectSETCC(SDOperand Op) {
Chris Lattner222adac2005-10-06 19:03:35 +0000616 SDNode *N = Op.Val;
617 unsigned Imm;
618 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
619 if (isIntImmediate(N->getOperand(1), Imm)) {
620 // We can codegen setcc op, imm very efficiently compared to a brcond.
621 // Check for those cases here.
622 // setcc op, 0
623 if (Imm == 0) {
Evan Cheng34167212006-02-09 00:37:58 +0000624 SDOperand Op;
625 Select(Op, N->getOperand(0));
Chris Lattner222adac2005-10-06 19:03:35 +0000626 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000627 default: break;
628 case ISD::SETEQ:
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000629 Op = SDOperand(CurDAG->getTargetNode(PPC::CNTLZW, MVT::i32, Op), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000630 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Op, getI32Imm(27),
631 getI32Imm(5), getI32Imm(31));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000632 case ISD::SETNE: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000633 SDOperand AD =
634 SDOperand(CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
635 Op, getI32Imm(~0U)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000636 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
637 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000638 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000639 case ISD::SETLT:
Chris Lattner71d3d502005-11-30 22:53:06 +0000640 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Op, getI32Imm(1),
641 getI32Imm(31), getI32Imm(31));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000642 case ISD::SETGT: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000643 SDOperand T =
644 SDOperand(CurDAG->getTargetNode(PPC::NEG, MVT::i32, Op), 0);
645 T = SDOperand(CurDAG->getTargetNode(PPC::ANDC, MVT::i32, T, Op), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000646 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, T, getI32Imm(1),
647 getI32Imm(31), getI32Imm(31));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000648 }
649 }
Chris Lattner222adac2005-10-06 19:03:35 +0000650 } else if (Imm == ~0U) { // setcc op, -1
Evan Cheng34167212006-02-09 00:37:58 +0000651 SDOperand Op;
652 Select(Op, N->getOperand(0));
Chris Lattner222adac2005-10-06 19:03:35 +0000653 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000654 default: break;
655 case ISD::SETEQ:
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000656 Op = SDOperand(CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
657 Op, getI32Imm(1)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000658 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000659 SDOperand(CurDAG->getTargetNode(PPC::LI, MVT::i32,
660 getI32Imm(0)), 0),
Chris Lattner71d3d502005-11-30 22:53:06 +0000661 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000662 case ISD::SETNE: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000663 Op = SDOperand(CurDAG->getTargetNode(PPC::NOR, MVT::i32, Op, Op), 0);
664 SDNode *AD = CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
665 Op, getI32Imm(~0U));
666 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDOperand(AD, 0), Op,
667 SDOperand(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000668 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000669 case ISD::SETLT: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000670 SDOperand AD = SDOperand(CurDAG->getTargetNode(PPC::ADDI, MVT::i32, Op,
671 getI32Imm(1)), 0);
672 SDOperand AN = SDOperand(CurDAG->getTargetNode(PPC::AND, MVT::i32, AD,
673 Op), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000674 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, AN, getI32Imm(1),
675 getI32Imm(31), getI32Imm(31));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000676 }
677 case ISD::SETGT:
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000678 Op = SDOperand(CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, Op,
679 getI32Imm(1), getI32Imm(31),
680 getI32Imm(31)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000681 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op, getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000682 }
Chris Lattner222adac2005-10-06 19:03:35 +0000683 }
684 }
685
686 bool Inv;
687 unsigned Idx = getCRIdxForSetCC(CC, Inv);
688 SDOperand CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
689 SDOperand IntCR;
690
691 // Force the ccreg into CR7.
692 SDOperand CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
693
Chris Lattner85961d52005-12-06 20:56:18 +0000694 SDOperand InFlag(0, 0); // Null incoming flag value.
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000695 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), CR7Reg, CCReg,
696 InFlag).getValue(1);
Chris Lattner222adac2005-10-06 19:03:35 +0000697
698 if (TLI.getTargetMachine().getSubtarget<PPCSubtarget>().isGigaProcessor())
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000699 IntCR = SDOperand(CurDAG->getTargetNode(PPC::MFOCRF, MVT::i32, CR7Reg,
700 CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000701 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000702 IntCR = SDOperand(CurDAG->getTargetNode(PPC::MFCR, MVT::i32, CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000703
704 if (!Inv) {
Chris Lattner71d3d502005-11-30 22:53:06 +0000705 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, IntCR,
706 getI32Imm((32-(3-Idx)) & 31),
707 getI32Imm(31), getI32Imm(31));
Chris Lattner222adac2005-10-06 19:03:35 +0000708 } else {
709 SDOperand Tmp =
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000710 SDOperand(CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, IntCR,
711 getI32Imm((32-(3-Idx)) & 31),
712 getI32Imm(31),getI32Imm(31)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000713 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000714 }
Chris Lattner222adac2005-10-06 19:03:35 +0000715}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000716
Nate Begeman422b0ce2005-11-16 00:48:01 +0000717/// isCallCompatibleAddress - Return true if the specified 32-bit value is
718/// representable in the immediate field of a Bx instruction.
719static bool isCallCompatibleAddress(ConstantSDNode *C) {
720 int Addr = C->getValue();
721 if (Addr & 3) return false; // Low 2 bits are implicitly zero.
722 return (Addr << 6 >> 6) == Addr; // Top 6 bits have to be sext of immediate.
723}
724
Nate Begeman1d9d7422005-10-18 00:28:58 +0000725SDOperand PPCDAGToDAGISel::SelectCALL(SDOperand Op) {
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000726 SDNode *N = Op.Val;
Evan Cheng34167212006-02-09 00:37:58 +0000727 SDOperand Chain;
728 Select(Chain, N->getOperand(0));
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000729
730 unsigned CallOpcode;
731 std::vector<SDOperand> CallOperands;
732
733 if (GlobalAddressSDNode *GASD =
734 dyn_cast<GlobalAddressSDNode>(N->getOperand(1))) {
Nate Begeman422b0ce2005-11-16 00:48:01 +0000735 CallOpcode = PPC::BL;
Chris Lattner2823b3e2005-11-17 05:56:14 +0000736 CallOperands.push_back(N->getOperand(1));
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000737 } else if (ExternalSymbolSDNode *ESSDN =
738 dyn_cast<ExternalSymbolSDNode>(N->getOperand(1))) {
Nate Begeman422b0ce2005-11-16 00:48:01 +0000739 CallOpcode = PPC::BL;
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000740 CallOperands.push_back(N->getOperand(1));
Nate Begeman422b0ce2005-11-16 00:48:01 +0000741 } else if (isa<ConstantSDNode>(N->getOperand(1)) &&
742 isCallCompatibleAddress(cast<ConstantSDNode>(N->getOperand(1)))) {
743 ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(1));
744 CallOpcode = PPC::BLA;
745 CallOperands.push_back(getI32Imm((int)C->getValue() >> 2));
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000746 } else {
747 // Copy the callee address into the CTR register.
Evan Cheng34167212006-02-09 00:37:58 +0000748 SDOperand Callee;
749 Select(Callee, N->getOperand(1));
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000750 Chain = SDOperand(CurDAG->getTargetNode(PPC::MTCTR, MVT::Other, Callee,
751 Chain), 0);
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000752
753 // Copy the callee address into R12 on darwin.
754 SDOperand R12 = CurDAG->getRegister(PPC::R12, MVT::i32);
755 Chain = CurDAG->getNode(ISD::CopyToReg, MVT::Other, Chain, R12, Callee);
Nate Begeman422b0ce2005-11-16 00:48:01 +0000756
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000757 CallOperands.push_back(R12);
Nate Begeman422b0ce2005-11-16 00:48:01 +0000758 CallOpcode = PPC::BCTRL;
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000759 }
760
761 unsigned GPR_idx = 0, FPR_idx = 0;
762 static const unsigned GPR[] = {
763 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
764 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
765 };
766 static const unsigned FPR[] = {
767 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
768 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
769 };
770
771 SDOperand InFlag; // Null incoming flag value.
772
773 for (unsigned i = 2, e = N->getNumOperands(); i != e; ++i) {
774 unsigned DestReg = 0;
775 MVT::ValueType RegTy = N->getOperand(i).getValueType();
776 if (RegTy == MVT::i32) {
777 assert(GPR_idx < 8 && "Too many int args");
778 DestReg = GPR[GPR_idx++];
779 } else {
780 assert(MVT::isFloatingPoint(N->getOperand(i).getValueType()) &&
781 "Unpromoted integer arg?");
782 assert(FPR_idx < 13 && "Too many fp args");
783 DestReg = FPR[FPR_idx++];
784 }
785
786 if (N->getOperand(i).getOpcode() != ISD::UNDEF) {
Evan Cheng34167212006-02-09 00:37:58 +0000787 SDOperand Val;
788 Select(Val, N->getOperand(i));
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000789 Chain = CurDAG->getCopyToReg(Chain, DestReg, Val, InFlag);
790 InFlag = Chain.getValue(1);
791 CallOperands.push_back(CurDAG->getRegister(DestReg, RegTy));
792 }
793 }
794
795 // Finally, once everything is in registers to pass to the call, emit the
796 // call itself.
797 if (InFlag.Val)
798 CallOperands.push_back(InFlag); // Strong dep on register copies.
799 else
800 CallOperands.push_back(Chain); // Weak dep on whatever occurs before
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000801 Chain = SDOperand(CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag,
802 CallOperands), 0);
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000803
804 std::vector<SDOperand> CallResults;
805
806 // If the call has results, copy the values out of the ret val registers.
807 switch (N->getValueType(0)) {
808 default: assert(0 && "Unexpected ret value!");
809 case MVT::Other: break;
810 case MVT::i32:
811 if (N->getValueType(1) == MVT::i32) {
812 Chain = CurDAG->getCopyFromReg(Chain, PPC::R4, MVT::i32,
813 Chain.getValue(1)).getValue(1);
814 CallResults.push_back(Chain.getValue(0));
815 Chain = CurDAG->getCopyFromReg(Chain, PPC::R3, MVT::i32,
816 Chain.getValue(2)).getValue(1);
817 CallResults.push_back(Chain.getValue(0));
818 } else {
819 Chain = CurDAG->getCopyFromReg(Chain, PPC::R3, MVT::i32,
820 Chain.getValue(1)).getValue(1);
821 CallResults.push_back(Chain.getValue(0));
822 }
823 break;
824 case MVT::f32:
825 case MVT::f64:
826 Chain = CurDAG->getCopyFromReg(Chain, PPC::F1, N->getValueType(0),
827 Chain.getValue(1)).getValue(1);
828 CallResults.push_back(Chain.getValue(0));
829 break;
830 }
831
832 CallResults.push_back(Chain);
833 for (unsigned i = 0, e = CallResults.size(); i != e; ++i)
834 CodeGenMap[Op.getValue(i)] = CallResults[i];
835 return CallResults[Op.ResNo];
836}
837
Chris Lattnera5a91b12005-08-17 19:33:03 +0000838// Select - Convert the specified operand from a target-independent to a
839// target-specific node if it hasn't already been changed.
Evan Cheng34167212006-02-09 00:37:58 +0000840void PPCDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
Chris Lattnera5a91b12005-08-17 19:33:03 +0000841 SDNode *N = Op.Val;
Chris Lattner0bbea952005-08-26 20:25:03 +0000842 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng34167212006-02-09 00:37:58 +0000843 N->getOpcode() < PPCISD::FIRST_NUMBER) {
844 Result = Op;
845 return; // Already selected.
846 }
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000847
848 // If this has already been converted, use it.
849 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
Evan Cheng34167212006-02-09 00:37:58 +0000850 if (CGMI != CodeGenMap.end()) {
851 Result = CGMI->second;
852 return;
853 }
Chris Lattnera5a91b12005-08-17 19:33:03 +0000854
855 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000856 default: break;
Evan Cheng34167212006-02-09 00:37:58 +0000857 case ISD::SETCC:
858 Result = SelectSETCC(Op);
859 return;
860 case PPCISD::CALL:
861 Result = SelectCALL(Op);
862 return;
863 case PPCISD::GlobalBaseReg:
864 Result = getGlobalBaseReg();
865 return;
Chris Lattner860e8862005-11-17 07:30:41 +0000866
Chris Lattnere28e40a2005-08-25 00:45:43 +0000867 case ISD::FrameIndex: {
868 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Evan Cheng34167212006-02-09 00:37:58 +0000869 if (N->hasOneUse()) {
870 Result = CurDAG->SelectNodeTo(N, PPC::ADDI, MVT::i32,
871 CurDAG->getTargetFrameIndex(FI, MVT::i32),
872 getI32Imm(0));
873 return;
874 }
875 Result = CodeGenMap[Op] =
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000876 SDOperand(CurDAG->getTargetNode(PPC::ADDI, MVT::i32,
877 CurDAG->getTargetFrameIndex(FI, MVT::i32),
878 getI32Imm(0)), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000879 return;
Chris Lattnere28e40a2005-08-25 00:45:43 +0000880 }
Chris Lattner88add102005-09-28 22:50:24 +0000881 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +0000882 // FIXME: since this depends on the setting of the carry flag from the srawi
883 // we should really be making notes about that for the scheduler.
884 // FIXME: It sure would be nice if we could cheaply recognize the
885 // srl/add/sra pattern the dag combiner will generate for this as
886 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +0000887 unsigned Imm;
888 if (isIntImmediate(N->getOperand(1), Imm)) {
Evan Cheng34167212006-02-09 00:37:58 +0000889 SDOperand N0;
890 Select(N0, N->getOperand(0));
Chris Lattner8784a232005-08-25 17:50:06 +0000891 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000892 SDNode *Op =
Chris Lattner8784a232005-08-25 17:50:06 +0000893 CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
Evan Cheng34167212006-02-09 00:37:58 +0000894 N0, getI32Imm(Log2_32(Imm)));
895 Result = CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000896 SDOperand(Op, 0), SDOperand(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +0000897 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000898 SDNode *Op =
Chris Lattner2501d5e2005-08-30 17:13:58 +0000899 CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
Evan Cheng34167212006-02-09 00:37:58 +0000900 N0, getI32Imm(Log2_32(-Imm)));
Chris Lattner8784a232005-08-25 17:50:06 +0000901 SDOperand PT =
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000902 SDOperand(CurDAG->getTargetNode(PPC::ADDZE, MVT::i32,
903 SDOperand(Op, 0), SDOperand(Op, 1)),
904 0);
Evan Cheng34167212006-02-09 00:37:58 +0000905 Result = CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +0000906 }
Evan Cheng34167212006-02-09 00:37:58 +0000907 return;
Chris Lattner8784a232005-08-25 17:50:06 +0000908 }
Chris Lattner047b9522005-08-25 22:04:30 +0000909
Chris Lattner237733e2005-09-29 23:33:31 +0000910 // Other cases are autogenerated.
911 break;
Chris Lattner047b9522005-08-25 22:04:30 +0000912 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000913 case ISD::AND: {
Nate Begeman50fb3c42005-12-24 01:00:15 +0000914 unsigned Imm, Imm2;
Nate Begemancffc32b2005-08-18 07:30:46 +0000915 // If this is an and of a value rotated between 0 and 31 bits and then and'd
916 // with a mask, emit rlwinm
917 if (isIntImmediate(N->getOperand(1), Imm) && (isShiftedMask_32(Imm) ||
918 isShiftedMask_32(~Imm))) {
919 SDOperand Val;
Nate Begemana6940472005-08-18 18:01:39 +0000920 unsigned SH, MB, ME;
Nate Begemancffc32b2005-08-18 07:30:46 +0000921 if (isRotateAndMask(N->getOperand(0).Val, Imm, false, SH, MB, ME)) {
Evan Cheng34167212006-02-09 00:37:58 +0000922 Select(Val, N->getOperand(0).getOperand(0));
Chris Lattner3393e802005-10-25 19:32:37 +0000923 } else if (Imm == 0) {
924 // AND X, 0 -> 0, not "rlwinm 32".
Evan Cheng34167212006-02-09 00:37:58 +0000925 Select(Result, N->getOperand(1));
926 return ;
Chris Lattner3393e802005-10-25 19:32:37 +0000927 } else {
Evan Cheng34167212006-02-09 00:37:58 +0000928 Select(Val, N->getOperand(0));
Nate Begemancffc32b2005-08-18 07:30:46 +0000929 isRunOfOnes(Imm, MB, ME);
930 SH = 0;
931 }
Evan Cheng34167212006-02-09 00:37:58 +0000932 Result = CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Val,
933 getI32Imm(SH), getI32Imm(MB),
934 getI32Imm(ME));
935 return;
Nate Begemancffc32b2005-08-18 07:30:46 +0000936 }
Nate Begeman50fb3c42005-12-24 01:00:15 +0000937 // ISD::OR doesn't get all the bitfield insertion fun.
938 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
939 if (isIntImmediate(N->getOperand(1), Imm) &&
940 N->getOperand(0).getOpcode() == ISD::OR &&
941 isIntImmediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +0000942 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +0000943 Imm = ~(Imm^Imm2);
944 if (isRunOfOnes(Imm, MB, ME)) {
Evan Cheng34167212006-02-09 00:37:58 +0000945 SDOperand Tmp1, Tmp2;
946 Select(Tmp1, N->getOperand(0).getOperand(0));
947 Select(Tmp2, N->getOperand(0).getOperand(1));
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000948 Result = SDOperand(CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32,
949 Tmp1, Tmp2,
950 getI32Imm(0), getI32Imm(MB),
951 getI32Imm(ME)), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000952 return;
Nate Begeman50fb3c42005-12-24 01:00:15 +0000953 }
954 }
Chris Lattner237733e2005-09-29 23:33:31 +0000955
956 // Other cases are autogenerated.
957 break;
Nate Begemancffc32b2005-08-18 07:30:46 +0000958 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000959 case ISD::OR:
Evan Cheng34167212006-02-09 00:37:58 +0000960 if (SDNode *I = SelectBitfieldInsert(N)) {
961 Result = CodeGenMap[Op] = SDOperand(I, 0);
962 return;
963 }
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000964
Chris Lattner237733e2005-09-29 23:33:31 +0000965 // Other cases are autogenerated.
966 break;
Nate Begemanc15ed442005-08-18 23:38:00 +0000967 case ISD::SHL: {
968 unsigned Imm, SH, MB, ME;
969 if (isOpcWithIntImmediate(N->getOperand(0).Val, ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +0000970 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Evan Cheng34167212006-02-09 00:37:58 +0000971 SDOperand Val;
972 Select(Val, N->getOperand(0).getOperand(0));
973 Result = CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32,
974 Val, getI32Imm(SH), getI32Imm(MB),
975 getI32Imm(ME));
976 return;
Nate Begeman8d948322005-10-19 01:12:32 +0000977 }
Nate Begeman2d5aff72005-10-19 18:42:01 +0000978
979 // Other cases are autogenerated.
980 break;
Nate Begemanc15ed442005-08-18 23:38:00 +0000981 }
982 case ISD::SRL: {
983 unsigned Imm, SH, MB, ME;
984 if (isOpcWithIntImmediate(N->getOperand(0).Val, ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +0000985 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Evan Cheng34167212006-02-09 00:37:58 +0000986 SDOperand Val;
987 Select(Val, N->getOperand(0).getOperand(0));
988 Result = CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32,
989 Val, getI32Imm(SH & 0x1F), getI32Imm(MB),
990 getI32Imm(ME));
991 return;
Nate Begeman8d948322005-10-19 01:12:32 +0000992 }
Nate Begeman2d5aff72005-10-19 18:42:01 +0000993
994 // Other cases are autogenerated.
995 break;
Nate Begemanc15ed442005-08-18 23:38:00 +0000996 }
Chris Lattner13794f52005-08-26 18:46:49 +0000997 case ISD::SELECT_CC: {
998 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
999
1000 // handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
1001 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1002 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1003 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1004 if (N1C->isNullValue() && N3C->isNullValue() &&
1005 N2C->getValue() == 1ULL && CC == ISD::SETNE) {
Evan Cheng34167212006-02-09 00:37:58 +00001006 SDOperand LHS;
1007 Select(LHS, N->getOperand(0));
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001008 SDNode *Tmp =
Chris Lattner13794f52005-08-26 18:46:49 +00001009 CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
1010 LHS, getI32Imm(~0U));
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001011 Result = CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
1012 SDOperand(Tmp, 0), LHS,
1013 SDOperand(Tmp, 1));
Evan Cheng34167212006-02-09 00:37:58 +00001014 return;
Chris Lattner13794f52005-08-26 18:46:49 +00001015 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001016
Chris Lattner50ff55c2005-09-01 19:20:44 +00001017 SDOperand CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001018 unsigned BROpc = getBCCForSetCC(CC);
1019
1020 bool isFP = MVT::isFloatingPoint(N->getValueType(0));
Chris Lattner919c0322005-10-01 01:35:02 +00001021 unsigned SelectCCOp;
1022 if (MVT::isInteger(N->getValueType(0)))
1023 SelectCCOp = PPC::SELECT_CC_Int;
1024 else if (N->getValueType(0) == MVT::f32)
1025 SelectCCOp = PPC::SELECT_CC_F4;
1026 else
1027 SelectCCOp = PPC::SELECT_CC_F8;
Evan Cheng34167212006-02-09 00:37:58 +00001028 SDOperand N2, N3;
1029 Select(N2, N->getOperand(2));
1030 Select(N3, N->getOperand(3));
1031 Result = CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), CCReg,
1032 N2, N3, getI32Imm(BROpc));
1033 return;
Chris Lattner13794f52005-08-26 18:46:49 +00001034 }
Chris Lattner2fbb4572005-08-21 18:50:37 +00001035 case ISD::BR_CC:
1036 case ISD::BRTWOWAY_CC: {
Evan Cheng34167212006-02-09 00:37:58 +00001037 SDOperand Chain;
1038 Select(Chain, N->getOperand(0));
Chris Lattner2fbb4572005-08-21 18:50:37 +00001039 MachineBasicBlock *Dest =
1040 cast<BasicBlockSDNode>(N->getOperand(4))->getBasicBlock();
1041 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
1042 SDOperand CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001043
1044 // If this is a two way branch, then grab the fallthrough basic block
1045 // argument and build a PowerPC branch pseudo-op, suitable for long branch
1046 // conversion if necessary by the branch selection pass. Otherwise, emit a
1047 // standard conditional branch.
1048 if (N->getOpcode() == ISD::BRTWOWAY_CC) {
Chris Lattnerca0a4772005-10-01 23:06:26 +00001049 SDOperand CondTrueBlock = N->getOperand(4);
1050 SDOperand CondFalseBlock = N->getOperand(5);
Chris Lattnerca0a4772005-10-01 23:06:26 +00001051 unsigned Opc = getBCCForSetCC(CC);
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001052 SDOperand CB =
1053 SDOperand(CurDAG->getTargetNode(PPC::COND_BRANCH, MVT::Other,
1054 CondCode, getI32Imm(Opc),
1055 CondTrueBlock, CondFalseBlock,
1056 Chain), 0);
Evan Cheng34167212006-02-09 00:37:58 +00001057 Result = CurDAG->SelectNodeTo(N, PPC::B, MVT::Other, CondFalseBlock, CB);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001058 } else {
1059 // Iterate to the next basic block
1060 ilist<MachineBasicBlock>::iterator It = BB;
1061 ++It;
1062
1063 // If the fallthrough path is off the end of the function, which would be
1064 // undefined behavior, set it to be the same as the current block because
1065 // we have nothing better to set it to, and leaving it alone will cause
1066 // the PowerPC Branch Selection pass to crash.
1067 if (It == BB->getParent()->end()) It = Dest;
Evan Cheng34167212006-02-09 00:37:58 +00001068 Result = CurDAG->SelectNodeTo(N, PPC::COND_BRANCH, MVT::Other, CondCode,
1069 getI32Imm(getBCCForSetCC(CC)),
1070 N->getOperand(4), CurDAG->getBasicBlock(It),
1071 Chain);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001072 }
Evan Cheng34167212006-02-09 00:37:58 +00001073 return;
Chris Lattner2fbb4572005-08-21 18:50:37 +00001074 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001075 }
Chris Lattner25dae722005-09-03 00:53:47 +00001076
Evan Cheng34167212006-02-09 00:37:58 +00001077 SelectCode(Result, Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001078}
1079
1080
Nate Begeman1d9d7422005-10-18 00:28:58 +00001081/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001082/// PowerPC-specific DAG, ready for instruction scheduling.
1083///
Nate Begeman1d9d7422005-10-18 00:28:58 +00001084FunctionPass *llvm::createPPCISelDag(TargetMachine &TM) {
1085 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001086}
1087