blob: fbe3fd6a35b9893ede27e80f6ef432047ec9e77a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PPCISelDAGToDAG.cpp - PPC --pattern matching inst selector --------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a pattern matching instruction selector for PowerPC,
11// converting from a legalized dag to a PPC dag.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "ppc-codegen"
16#include "PPC.h"
17#include "PPCPredicates.h"
18#include "PPCTargetMachine.h"
19#include "PPCISelLowering.h"
20#include "PPCHazardRecognizers.h"
21#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner1b989192007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/CodeGen/SelectionDAG.h"
25#include "llvm/CodeGen/SelectionDAGISel.h"
26#include "llvm/Target/TargetOptions.h"
27#include "llvm/Constants.h"
28#include "llvm/GlobalValue.h"
29#include "llvm/Intrinsics.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/MathExtras.h"
32#include "llvm/Support/Compiler.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033using namespace llvm;
34
35namespace {
36 //===--------------------------------------------------------------------===//
37 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
38 /// instructions for SelectionDAG operations.
39 ///
40 class VISIBILITY_HIDDEN PPCDAGToDAGISel : public SelectionDAGISel {
41 PPCTargetMachine &TM;
Dan Gohmanf2b29572008-10-03 16:55:19 +000042 PPCTargetLowering &PPCLowering;
Evan Cheng9d99c5e2007-10-23 06:42:42 +000043 const PPCSubtarget &PPCSubTarget;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044 unsigned GlobalBaseReg;
45 public:
Dan Gohmane887fdf2008-07-07 18:00:37 +000046 explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
Dan Gohman96eb47a2009-01-15 19:20:50 +000047 : SelectionDAGISel(tm), TM(tm),
Evan Cheng9d99c5e2007-10-23 06:42:42 +000048 PPCLowering(*TM.getTargetLowering()),
49 PPCSubTarget(*TM.getSubtargetImpl()) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050
51 virtual bool runOnFunction(Function &Fn) {
52 // Make sure we re-emit a set of the global base reg if necessary
53 GlobalBaseReg = 0;
54 SelectionDAGISel::runOnFunction(Fn);
55
56 InsertVRSaveCode(Fn);
57 return true;
58 }
59
60 /// getI32Imm - Return a target constant with the specified value, of type
61 /// i32.
Dan Gohman8181bd12008-07-27 21:46:04 +000062 inline SDValue getI32Imm(unsigned Imm) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063 return CurDAG->getTargetConstant(Imm, MVT::i32);
64 }
65
66 /// getI64Imm - Return a target constant with the specified value, of type
67 /// i64.
Dan Gohman8181bd12008-07-27 21:46:04 +000068 inline SDValue getI64Imm(uint64_t Imm) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069 return CurDAG->getTargetConstant(Imm, MVT::i64);
70 }
71
72 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman8181bd12008-07-27 21:46:04 +000073 inline SDValue getSmallIPtrImm(unsigned Imm) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
75 }
76
77 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
78 /// with any number of 0s on either side. The 1s are allowed to wrap from
79 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
80 /// 0x0F0F0000 is not, since all 1s are not contiguous.
81 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
82
83
84 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
85 /// rotate and mask opcode and mask operation.
86 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool IsShiftMask,
87 unsigned &SH, unsigned &MB, unsigned &ME);
88
89 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
90 /// base register. Return the virtual register that holds this value.
91 SDNode *getGlobalBaseReg();
92
93 // Select - Convert the specified operand from a target-independent to a
94 // target-specific node if it hasn't already been changed.
Dan Gohman8181bd12008-07-27 21:46:04 +000095 SDNode *Select(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096
97 SDNode *SelectBitfieldInsert(SDNode *N);
98
99 /// SelectCC - Select a comparison of the specified values with the
100 /// specified condition code, returning the CR# of the expression.
Dan Gohman8181bd12008-07-27 21:46:04 +0000101 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102
103 /// SelectAddrImm - Returns true if the address N can be represented by
104 /// a base register plus a signed 16-bit displacement [r+imm].
Dan Gohman8181bd12008-07-27 21:46:04 +0000105 bool SelectAddrImm(SDValue Op, SDValue N, SDValue &Disp,
106 SDValue &Base) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000107 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
108 }
109
110 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
111 /// immediate field. Because preinc imms have already been validated, just
112 /// accept it.
Dan Gohman8181bd12008-07-27 21:46:04 +0000113 bool SelectAddrImmOffs(SDValue Op, SDValue N, SDValue &Out) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114 Out = N;
115 return true;
116 }
117
118 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
119 /// represented as an indexed [r+r] operation. Returns false if it can
120 /// be represented by [r+imm], which are preferred.
Dan Gohman8181bd12008-07-27 21:46:04 +0000121 bool SelectAddrIdx(SDValue Op, SDValue N, SDValue &Base,
122 SDValue &Index) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
124 }
125
126 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
127 /// represented as an indexed [r+r] operation.
Dan Gohman8181bd12008-07-27 21:46:04 +0000128 bool SelectAddrIdxOnly(SDValue Op, SDValue N, SDValue &Base,
129 SDValue &Index) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
131 }
132
133 /// SelectAddrImmShift - Returns true if the address N can be represented by
134 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
135 /// for use by STD and friends.
Dan Gohman8181bd12008-07-27 21:46:04 +0000136 bool SelectAddrImmShift(SDValue Op, SDValue N, SDValue &Disp,
137 SDValue &Base) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
139 }
140
141 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
142 /// inline asm expressions.
Dan Gohman8181bd12008-07-27 21:46:04 +0000143 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000144 char ConstraintCode,
Dan Gohman14a66442008-08-23 02:25:05 +0000145 std::vector<SDValue> &OutOps) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000146 SDValue Op0, Op1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 switch (ConstraintCode) {
148 default: return true;
149 case 'm': // memory
150 if (!SelectAddrIdx(Op, Op, Op0, Op1))
151 SelectAddrImm(Op, Op, Op0, Op1);
152 break;
153 case 'o': // offsetable
154 if (!SelectAddrImm(Op, Op, Op0, Op1)) {
155 Op0 = Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156 Op1 = getSmallIPtrImm(0);
157 }
158 break;
159 case 'v': // not offsetable
160 SelectAddrIdxOnly(Op, Op, Op0, Op1);
161 break;
162 }
163
164 OutOps.push_back(Op0);
165 OutOps.push_back(Op1);
166 return false;
167 }
168
Dan Gohman8181bd12008-07-27 21:46:04 +0000169 SDValue BuildSDIVSequence(SDNode *N);
170 SDValue BuildUDIVSequence(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171
Evan Cheng34fd4f32008-06-30 20:45:06 +0000172 /// InstructionSelect - This callback is invoked by
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohman14a66442008-08-23 02:25:05 +0000174 virtual void InstructionSelect();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175
176 void InsertVRSaveCode(Function &Fn);
177
178 virtual const char *getPassName() const {
179 return "PowerPC DAG->DAG Pattern Instruction Selection";
180 }
181
182 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
183 /// this target when scheduling the DAG.
Dan Gohmandd6547d2009-01-15 22:18:12 +0000184 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185 // Should use subtarget info to pick the right hazard recognizer. For
186 // now, always return a PPC970 recognizer.
Dan Gohman404e8542008-09-04 15:39:15 +0000187 const TargetInstrInfo *II = TM.getInstrInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 assert(II && "No InstrInfo?");
189 return new PPCHazardRecognizer970(*II);
190 }
191
192// Include the pieces autogenerated from the target description.
193#include "PPCGenDAGISel.inc"
194
195private:
Dan Gohman8181bd12008-07-27 21:46:04 +0000196 SDNode *SelectSETCC(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 };
198}
199
Evan Cheng34fd4f32008-06-30 20:45:06 +0000200/// InstructionSelect - This callback is invoked by
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohman14a66442008-08-23 02:25:05 +0000202void PPCDAGToDAGISel::InstructionSelect() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 DEBUG(BB->dump());
204
205 // Select target instructions for the DAG.
David Greene932618b2008-10-27 21:56:29 +0000206 SelectRoot(*CurDAG);
Dan Gohman14a66442008-08-23 02:25:05 +0000207 CurDAG->RemoveDeadNodes();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208}
209
210/// InsertVRSaveCode - Once the entire function has been instruction selected,
211/// all virtual registers are created and all machine instructions are built,
212/// check to see if we need to save/restore VRSAVE. If so, do it.
213void PPCDAGToDAGISel::InsertVRSaveCode(Function &F) {
214 // Check to see if this function uses vector registers, which means we have to
215 // save and restore the VRSAVE register and update it with the regs we use.
216 //
217 // In this case, there will be virtual registers of vector type type created
218 // by the scheduler. Detect them now.
219 MachineFunction &Fn = MachineFunction::get(&F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 bool HasVectorVReg = false;
Dan Gohman1e57df32008-02-10 18:45:23 +0000221 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner1b989192007-12-31 04:13:23 +0000222 e = RegInfo->getLastVirtReg()+1; i != e; ++i)
223 if (RegInfo->getRegClass(i) == &PPC::VRRCRegClass) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 HasVectorVReg = true;
225 break;
226 }
227 if (!HasVectorVReg) return; // nothing to do.
228
229 // If we have a vector register, we want to emit code into the entry and exit
230 // blocks to save and restore the VRSAVE register. We do this here (instead
231 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
232 //
233 // 1. This (trivially) reduces the load on the register allocator, by not
234 // having to represent the live range of the VRSAVE register.
235 // 2. This (more significantly) allows us to create a temporary virtual
236 // register to hold the saved VRSAVE value, allowing this temporary to be
237 // register allocated, instead of forcing it to be spilled to the stack.
238
239 // Create two vregs - one to hold the VRSAVE register that is live-in to the
240 // function and one for the value after having bits or'd into it.
Chris Lattner1b989192007-12-31 04:13:23 +0000241 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
242 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243
244 const TargetInstrInfo &TII = *TM.getInstrInfo();
245 MachineBasicBlock &EntryBB = *Fn.begin();
246 // Emit the following code into the entry block:
247 // InVRSAVE = MFVRSAVE
248 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
249 // MTVRSAVE UpdatedVRSAVE
250 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
251 BuildMI(EntryBB, IP, TII.get(PPC::MFVRSAVE), InVRSAVE);
Chris Lattner62327602008-01-07 01:56:04 +0000252 BuildMI(EntryBB, IP, TII.get(PPC::UPDATE_VRSAVE),
253 UpdatedVRSAVE).addReg(InVRSAVE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 BuildMI(EntryBB, IP, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
255
256 // Find all return blocks, outputting a restore in each epilog.
257 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Chris Lattner5b930372008-01-07 07:27:27 +0000258 if (!BB->empty() && BB->back().getDesc().isReturn()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 IP = BB->end(); --IP;
260
261 // Skip over all terminator instructions, which are part of the return
262 // sequence.
263 MachineBasicBlock::iterator I2 = IP;
Chris Lattner5b930372008-01-07 07:27:27 +0000264 while (I2 != BB->begin() && (--I2)->getDesc().isTerminator())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 IP = I2;
266
267 // Emit: MTVRSAVE InVRSave
268 BuildMI(*BB, IP, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
269 }
270 }
271}
272
273
274/// getGlobalBaseReg - Output the instructions required to put the
275/// base address to use for accessing globals into a register.
276///
277SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
278 if (!GlobalBaseReg) {
279 const TargetInstrInfo &TII = *TM.getInstrInfo();
280 // Insert the set of GlobalBaseReg into the first MBB of the function
281 MachineBasicBlock &FirstMBB = BB->getParent()->front();
282 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283
284 if (PPCLowering.getPointerTy() == MVT::i32) {
Chris Lattner1b989192007-12-31 04:13:23 +0000285 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::GPRCRegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286 BuildMI(FirstMBB, MBBI, TII.get(PPC::MovePCtoLR), PPC::LR);
287 BuildMI(FirstMBB, MBBI, TII.get(PPC::MFLR), GlobalBaseReg);
288 } else {
Chris Lattner1b989192007-12-31 04:13:23 +0000289 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::G8RCRegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000290 BuildMI(FirstMBB, MBBI, TII.get(PPC::MovePCtoLR8), PPC::LR8);
291 BuildMI(FirstMBB, MBBI, TII.get(PPC::MFLR8), GlobalBaseReg);
292 }
293 }
Gabor Greife9f7f582008-08-31 15:37:04 +0000294 return CurDAG->getRegister(GlobalBaseReg,
295 PPCLowering.getPointerTy()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296}
297
298/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
299/// or 64-bit immediate, and if the value can be accurately represented as a
300/// sign extension from a 16-bit value. If so, this returns true and the
301/// immediate.
302static bool isIntS16Immediate(SDNode *N, short &Imm) {
303 if (N->getOpcode() != ISD::Constant)
304 return false;
305
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000306 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307 if (N->getValueType(0) == MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000308 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 else
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000310 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311}
312
Dan Gohman8181bd12008-07-27 21:46:04 +0000313static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000314 return isIntS16Immediate(Op.getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315}
316
317
318/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
319/// operand. If so Imm will receive the 32-bit value.
320static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
321 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000322 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 return true;
324 }
325 return false;
326}
327
328/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
329/// operand. If so Imm will receive the 64-bit value.
330static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
331 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000332 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000333 return true;
334 }
335 return false;
336}
337
338// isInt32Immediate - This method tests to see if a constant operand.
339// If so Imm will receive the 32 bit value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000340static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000341 return isInt32Immediate(N.getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342}
343
344
345// isOpcWithIntImmediate - This method tests to see if the node is a specific
346// opcode and that it has a immediate integer right operand.
347// If so Imm will receive the 32 bit value.
348static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greife9f7f582008-08-31 15:37:04 +0000349 return N->getOpcode() == Opc
350 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351}
352
353bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
354 if (isShiftedMask_32(Val)) {
355 // look for the first non-zero bit
356 MB = CountLeadingZeros_32(Val);
357 // look for the first zero bit after the run of ones
358 ME = CountLeadingZeros_32((Val - 1) ^ Val);
359 return true;
360 } else {
361 Val = ~Val; // invert mask
362 if (isShiftedMask_32(Val)) {
363 // effectively look for the first zero bit
364 ME = CountLeadingZeros_32(Val) - 1;
365 // effectively look for the first one bit after the run of zeros
366 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
367 return true;
368 }
369 }
370 // no run present
371 return false;
372}
373
374bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
375 bool IsShiftMask, unsigned &SH,
376 unsigned &MB, unsigned &ME) {
377 // Don't even go down this path for i64, since different logic will be
378 // necessary for rldicl/rldicr/rldimi.
379 if (N->getValueType(0) != MVT::i32)
380 return false;
381
382 unsigned Shift = 32;
383 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
384 unsigned Opcode = N->getOpcode();
385 if (N->getNumOperands() != 2 ||
Gabor Greif1c80d112008-08-28 21:40:38 +0000386 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387 return false;
388
389 if (Opcode == ISD::SHL) {
390 // apply shift left to mask if it comes first
391 if (IsShiftMask) Mask = Mask << Shift;
392 // determine which bits are made indeterminant by shift
393 Indeterminant = ~(0xFFFFFFFFu << Shift);
394 } else if (Opcode == ISD::SRL) {
395 // apply shift right to mask if it comes first
396 if (IsShiftMask) Mask = Mask >> Shift;
397 // determine which bits are made indeterminant by shift
398 Indeterminant = ~(0xFFFFFFFFu >> Shift);
399 // adjust for the left rotate
400 Shift = 32 - Shift;
401 } else if (Opcode == ISD::ROTL) {
402 Indeterminant = 0;
403 } else {
404 return false;
405 }
406
407 // if the mask doesn't intersect any Indeterminant bits
408 if (Mask && !(Mask & Indeterminant)) {
409 SH = Shift & 31;
410 // make sure the mask is still a mask (wrap arounds may not be)
411 return isRunOfOnes(Mask, MB, ME);
412 }
413 return false;
414}
415
416/// SelectBitfieldInsert - turn an or of two masked values into
417/// the rotate left word immediate then mask insert (rlwimi) instruction.
418SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000419 SDValue Op0 = N->getOperand(0);
420 SDValue Op1 = N->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000421
Dan Gohman63f4e462008-02-27 01:23:58 +0000422 APInt LKZ, LKO, RKZ, RKO;
423 CurDAG->ComputeMaskedBits(Op0, APInt::getAllOnesValue(32), LKZ, LKO);
424 CurDAG->ComputeMaskedBits(Op1, APInt::getAllOnesValue(32), RKZ, RKO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425
Dan Gohman63f4e462008-02-27 01:23:58 +0000426 unsigned TargetMask = LKZ.getZExtValue();
427 unsigned InsertMask = RKZ.getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428
429 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
430 unsigned Op0Opc = Op0.getOpcode();
431 unsigned Op1Opc = Op1.getOpcode();
432 unsigned Value, SH = 0;
433 TargetMask = ~TargetMask;
434 InsertMask = ~InsertMask;
435
436 // If the LHS has a foldable shift and the RHS does not, then swap it to the
437 // RHS so that we can fold the shift into the insert.
438 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
439 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
440 Op0.getOperand(0).getOpcode() == ISD::SRL) {
441 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
442 Op1.getOperand(0).getOpcode() != ISD::SRL) {
443 std::swap(Op0, Op1);
444 std::swap(Op0Opc, Op1Opc);
445 std::swap(TargetMask, InsertMask);
446 }
447 }
448 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
449 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
450 Op1.getOperand(0).getOpcode() != ISD::SRL) {
451 std::swap(Op0, Op1);
452 std::swap(Op0Opc, Op1Opc);
453 std::swap(TargetMask, InsertMask);
454 }
455 }
456
457 unsigned MB, ME;
458 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000459 SDValue Tmp1, Tmp2, Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460 bool DisjointMask = (TargetMask ^ InsertMask) == 0xFFFFFFFF;
461
462 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
463 isInt32Immediate(Op1.getOperand(1), Value)) {
464 Op1 = Op1.getOperand(0);
465 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
466 }
467 if (Op1Opc == ISD::AND) {
468 unsigned SHOpc = Op1.getOperand(0).getOpcode();
469 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
470 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
471 Op1 = Op1.getOperand(0).getOperand(0);
472 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
473 } else {
474 Op1 = Op1.getOperand(0);
475 }
476 }
477
478 Tmp3 = (Op0Opc == ISD::AND && DisjointMask) ? Op0.getOperand(0) : Op0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 SH &= 31;
Dan Gohman8181bd12008-07-27 21:46:04 +0000480 SDValue Ops[] = { Tmp3, Op1, getI32Imm(SH), getI32Imm(MB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 getI32Imm(ME) };
482 return CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32, Ops, 5);
483 }
484 }
485 return 0;
486}
487
488/// SelectCC - Select a comparison of the specified values with the specified
489/// condition code, returning the CR# of the expression.
Dan Gohman8181bd12008-07-27 21:46:04 +0000490SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 ISD::CondCode CC) {
492 // Always select the LHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 unsigned Opc;
494
495 if (LHS.getValueType() == MVT::i32) {
496 unsigned Imm;
497 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
498 if (isInt32Immediate(RHS, Imm)) {
499 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
500 if (isUInt16(Imm))
Dan Gohman8181bd12008-07-27 21:46:04 +0000501 return SDValue(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000502 getI32Imm(Imm & 0xFFFF)), 0);
503 // If this is a 16-bit signed immediate, fold it.
504 if (isInt16((int)Imm))
Dan Gohman8181bd12008-07-27 21:46:04 +0000505 return SDValue(CurDAG->getTargetNode(PPC::CMPWI, MVT::i32, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506 getI32Imm(Imm & 0xFFFF)), 0);
507
508 // For non-equality comparisons, the default code would materialize the
509 // constant, then compare against it, like this:
510 // lis r2, 4660
511 // ori r2, r2, 22136
512 // cmpw cr0, r3, r2
513 // Since we are just comparing for equality, we can emit this instead:
514 // xoris r0,r3,0x1234
515 // cmplwi cr0,r0,0x5678
516 // beq cr0,L6
Dan Gohman8181bd12008-07-27 21:46:04 +0000517 SDValue Xor(CurDAG->getTargetNode(PPC::XORIS, MVT::i32, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 getI32Imm(Imm >> 16)), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000519 return SDValue(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, Xor,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 getI32Imm(Imm & 0xFFFF)), 0);
521 }
522 Opc = PPC::CMPLW;
523 } else if (ISD::isUnsignedIntSetCC(CC)) {
524 if (isInt32Immediate(RHS, Imm) && isUInt16(Imm))
Dan Gohman8181bd12008-07-27 21:46:04 +0000525 return SDValue(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 getI32Imm(Imm & 0xFFFF)), 0);
527 Opc = PPC::CMPLW;
528 } else {
529 short SImm;
530 if (isIntS16Immediate(RHS, SImm))
Dan Gohman8181bd12008-07-27 21:46:04 +0000531 return SDValue(CurDAG->getTargetNode(PPC::CMPWI, MVT::i32, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000532 getI32Imm((int)SImm & 0xFFFF)),
533 0);
534 Opc = PPC::CMPW;
535 }
536 } else if (LHS.getValueType() == MVT::i64) {
537 uint64_t Imm;
538 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000539 if (isInt64Immediate(RHS.getNode(), Imm)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
541 if (isUInt16(Imm))
Dan Gohman8181bd12008-07-27 21:46:04 +0000542 return SDValue(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 getI32Imm(Imm & 0xFFFF)), 0);
544 // If this is a 16-bit signed immediate, fold it.
545 if (isInt16(Imm))
Dan Gohman8181bd12008-07-27 21:46:04 +0000546 return SDValue(CurDAG->getTargetNode(PPC::CMPDI, MVT::i64, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547 getI32Imm(Imm & 0xFFFF)), 0);
548
549 // For non-equality comparisons, the default code would materialize the
550 // constant, then compare against it, like this:
551 // lis r2, 4660
552 // ori r2, r2, 22136
553 // cmpd cr0, r3, r2
554 // Since we are just comparing for equality, we can emit this instead:
555 // xoris r0,r3,0x1234
556 // cmpldi cr0,r0,0x5678
557 // beq cr0,L6
558 if (isUInt32(Imm)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000559 SDValue Xor(CurDAG->getTargetNode(PPC::XORIS8, MVT::i64, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560 getI64Imm(Imm >> 16)), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000561 return SDValue(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, Xor,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562 getI64Imm(Imm & 0xFFFF)), 0);
563 }
564 }
565 Opc = PPC::CMPLD;
566 } else if (ISD::isUnsignedIntSetCC(CC)) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000567 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt16(Imm))
Dan Gohman8181bd12008-07-27 21:46:04 +0000568 return SDValue(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 getI64Imm(Imm & 0xFFFF)), 0);
570 Opc = PPC::CMPLD;
571 } else {
572 short SImm;
573 if (isIntS16Immediate(RHS, SImm))
Dan Gohman8181bd12008-07-27 21:46:04 +0000574 return SDValue(CurDAG->getTargetNode(PPC::CMPDI, MVT::i64, LHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 getI64Imm(SImm & 0xFFFF)),
576 0);
577 Opc = PPC::CMPD;
578 }
579 } else if (LHS.getValueType() == MVT::f32) {
580 Opc = PPC::FCMPUS;
581 } else {
582 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
583 Opc = PPC::FCMPUD;
584 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000585 return SDValue(CurDAG->getTargetNode(Opc, MVT::i32, LHS, RHS), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586}
587
588static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
589 switch (CC) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 case ISD::SETUEQ:
Dale Johannesen32100b22008-11-07 22:54:33 +0000591 case ISD::SETONE:
592 case ISD::SETOLE:
593 case ISD::SETOGE:
594 assert(0 && "Should be lowered by legalize!");
595 default: assert(0 && "Unknown condition!"); abort();
596 case ISD::SETOEQ:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 case ISD::SETEQ: return PPC::PRED_EQ;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000598 case ISD::SETUNE:
599 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen32100b22008-11-07 22:54:33 +0000600 case ISD::SETOLT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601 case ISD::SETLT: return PPC::PRED_LT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000602 case ISD::SETULE:
603 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen32100b22008-11-07 22:54:33 +0000604 case ISD::SETOGT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605 case ISD::SETGT: return PPC::PRED_GT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 case ISD::SETUGE:
607 case ISD::SETGE: return PPC::PRED_GE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 case ISD::SETO: return PPC::PRED_NU;
609 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen32100b22008-11-07 22:54:33 +0000610 // These two are invalid for floating point. Assume we have int.
611 case ISD::SETULT: return PPC::PRED_LT;
612 case ISD::SETUGT: return PPC::PRED_GT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 }
614}
615
616/// getCRIdxForSetCC - Return the index of the condition register field
617/// associated with the SetCC condition, and whether or not the field is
618/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattner6c36fb52008-01-08 06:46:30 +0000619///
620/// If this returns with Other != -1, then the returned comparison is an or of
621/// two simpler comparisons. In this case, Invert is guaranteed to be false.
622static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
623 Invert = false;
624 Other = -1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 switch (CC) {
626 default: assert(0 && "Unknown condition!"); abort();
Chris Lattner6c36fb52008-01-08 06:46:30 +0000627 case ISD::SETOLT:
628 case ISD::SETLT: return 0; // Bit #0 = SETOLT
629 case ISD::SETOGT:
630 case ISD::SETGT: return 1; // Bit #1 = SETOGT
631 case ISD::SETOEQ:
632 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
633 case ISD::SETUO: return 3; // Bit #3 = SETUO
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 case ISD::SETUGE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000635 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 case ISD::SETULE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000637 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638 case ISD::SETUNE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000639 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
640 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Dale Johannesen32100b22008-11-07 22:54:33 +0000641 case ISD::SETUEQ:
642 case ISD::SETOGE:
643 case ISD::SETOLE:
644 case ISD::SETONE:
645 assert(0 && "Invalid branch code: should be expanded by legalize");
646 // These are invalid for floating point. Assume integer.
647 case ISD::SETULT: return 0;
648 case ISD::SETUGT: return 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649 }
650 return 0;
651}
652
Dan Gohman8181bd12008-07-27 21:46:04 +0000653SDNode *PPCDAGToDAGISel::SelectSETCC(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000654 SDNode *N = Op.getNode();
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000655 DebugLoc dl = N->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000656 unsigned Imm;
657 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
658 if (isInt32Immediate(N->getOperand(1), Imm)) {
659 // We can codegen setcc op, imm very efficiently compared to a brcond.
660 // Check for those cases here.
661 // setcc op, 0
662 if (Imm == 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000663 SDValue Op = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000664 switch (CC) {
665 default: break;
666 case ISD::SETEQ: {
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000667 Op = SDValue(CurDAG->getTargetNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000668 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
670 }
671 case ISD::SETNE: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000672 SDValue AD =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000673 SDValue(CurDAG->getTargetNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 Op, getI32Imm(~0U)), 0);
675 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
676 AD.getValue(1));
677 }
678 case ISD::SETLT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000679 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
681 }
682 case ISD::SETGT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000683 SDValue T =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000684 SDValue(CurDAG->getTargetNode(PPC::NEG, dl, MVT::i32, Op), 0);
685 T = SDValue(CurDAG->getTargetNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000686 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
688 }
689 }
690 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman8181bd12008-07-27 21:46:04 +0000691 SDValue Op = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 switch (CC) {
693 default: break;
694 case ISD::SETEQ:
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000695 Op = SDValue(CurDAG->getTargetNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696 Op, getI32Imm(1)), 0);
697 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000698 SDValue(CurDAG->getTargetNode(PPC::LI, dl,
699 MVT::i32,
700 getI32Imm(0)), 0),
701 Op.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 case ISD::SETNE: {
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000703 Op = SDValue(CurDAG->getTargetNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
704 SDNode *AD = CurDAG->getTargetNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000705 Op, getI32Imm(~0U));
Dan Gohman8181bd12008-07-27 21:46:04 +0000706 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
707 Op, SDValue(AD, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 }
709 case ISD::SETLT: {
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000710 SDValue AD = SDValue(CurDAG->getTargetNode(PPC::ADDI, dl, MVT::i32, Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 getI32Imm(1)), 0);
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000712 SDValue AN = SDValue(CurDAG->getTargetNode(PPC::AND, dl, MVT::i32, AD,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713 Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000714 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000715 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
716 }
717 case ISD::SETGT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000718 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000719 Op = SDValue(CurDAG->getTargetNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
720 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
722 getI32Imm(1));
723 }
724 }
725 }
726 }
727
728 bool Inv;
Chris Lattner6c36fb52008-01-08 06:46:30 +0000729 int OtherCondIdx;
730 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Dan Gohman8181bd12008-07-27 21:46:04 +0000731 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
732 SDValue IntCR;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000733
734 // Force the ccreg into CR7.
Dan Gohman8181bd12008-07-27 21:46:04 +0000735 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000736
Dan Gohman8181bd12008-07-27 21:46:04 +0000737 SDValue InFlag(0, 0); // Null incoming flag value.
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000738 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000739 InFlag).getValue(1);
740
Chris Lattner6c36fb52008-01-08 06:46:30 +0000741 if (PPCSubTarget.isGigaProcessor() && OtherCondIdx == -1)
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000742 IntCR = SDValue(CurDAG->getTargetNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000743 CCReg), 0);
744 else
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000745 IntCR = SDValue(CurDAG->getTargetNode(PPC::MFCR, dl, MVT::i32, CCReg), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746
Dan Gohman8181bd12008-07-27 21:46:04 +0000747 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000748 getI32Imm(31), getI32Imm(31) };
Chris Lattner6c36fb52008-01-08 06:46:30 +0000749 if (OtherCondIdx == -1 && !Inv)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000750 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000751
752 // Get the specified bit.
Dan Gohman8181bd12008-07-27 21:46:04 +0000753 SDValue Tmp =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000754 SDValue(CurDAG->getTargetNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000755 if (Inv) {
756 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
758 }
Chris Lattner6c36fb52008-01-08 06:46:30 +0000759
760 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
761 // We already got the bit for the first part of the comparison (e.g. SETULE).
762
763 // Get the other bit of the comparison.
764 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Dan Gohman8181bd12008-07-27 21:46:04 +0000765 SDValue OtherCond =
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000766 SDValue(CurDAG->getTargetNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000767
768 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769}
770
771
772// Select - Convert the specified operand from a target-independent to a
773// target-specific node if it hasn't already been changed.
Dan Gohman8181bd12008-07-27 21:46:04 +0000774SDNode *PPCDAGToDAGISel::Select(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000775 SDNode *N = Op.getNode();
Dan Gohmanbd68c792008-07-17 19:10:17 +0000776 if (N->isMachineOpcode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000777 return NULL; // Already selected.
778
779 switch (N->getOpcode()) {
780 default: break;
781
782 case ISD::Constant: {
783 if (N->getValueType(0) == MVT::i64) {
784 // Get 64 bit value.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000785 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000786 // Assume no remaining bits.
787 unsigned Remainder = 0;
788 // Assume no shift required.
789 unsigned Shift = 0;
790
791 // If it can't be represented as a 32 bit value.
792 if (!isInt32(Imm)) {
793 Shift = CountTrailingZeros_64(Imm);
794 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
795
796 // If the shifted value fits 32 bits.
797 if (isInt32(ImmSh)) {
798 // Go with the shifted value.
799 Imm = ImmSh;
800 } else {
801 // Still stuck with a 64 bit value.
802 Remainder = Imm;
803 Shift = 32;
804 Imm >>= 32;
805 }
806 }
807
808 // Intermediate operand.
809 SDNode *Result;
810
811 // Handle first 32 bits.
812 unsigned Lo = Imm & 0xFFFF;
813 unsigned Hi = (Imm >> 16) & 0xFFFF;
814
815 // Simple value.
816 if (isInt16(Imm)) {
817 // Just the Lo bits.
818 Result = CurDAG->getTargetNode(PPC::LI8, MVT::i64, getI32Imm(Lo));
819 } else if (Lo) {
820 // Handle the Hi bits.
821 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
822 Result = CurDAG->getTargetNode(OpC, MVT::i64, getI32Imm(Hi));
823 // And Lo bits.
824 Result = CurDAG->getTargetNode(PPC::ORI8, MVT::i64,
Dan Gohman8181bd12008-07-27 21:46:04 +0000825 SDValue(Result, 0), getI32Imm(Lo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 } else {
827 // Just the Hi bits.
828 Result = CurDAG->getTargetNode(PPC::LIS8, MVT::i64, getI32Imm(Hi));
829 }
830
831 // If no shift, we're done.
832 if (!Shift) return Result;
833
834 // Shift for next step if the upper 32-bits were not zero.
835 if (Imm) {
836 Result = CurDAG->getTargetNode(PPC::RLDICR, MVT::i64,
Dan Gohman8181bd12008-07-27 21:46:04 +0000837 SDValue(Result, 0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 getI32Imm(Shift), getI32Imm(63 - Shift));
839 }
840
841 // Add in the last bits as required.
842 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
843 Result = CurDAG->getTargetNode(PPC::ORIS8, MVT::i64,
Dan Gohman8181bd12008-07-27 21:46:04 +0000844 SDValue(Result, 0), getI32Imm(Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845 }
846 if ((Lo = Remainder & 0xFFFF)) {
847 Result = CurDAG->getTargetNode(PPC::ORI8, MVT::i64,
Dan Gohman8181bd12008-07-27 21:46:04 +0000848 SDValue(Result, 0), getI32Imm(Lo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000849 }
850
851 return Result;
852 }
853 break;
854 }
855
856 case ISD::SETCC:
857 return SelectSETCC(Op);
858 case PPCISD::GlobalBaseReg:
859 return getGlobalBaseReg();
860
861 case ISD::FrameIndex: {
862 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohman8181bd12008-07-27 21:46:04 +0000863 SDValue TFI = CurDAG->getTargetFrameIndex(FI, Op.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000864 unsigned Opc = Op.getValueType() == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
865 if (N->hasOneUse())
866 return CurDAG->SelectNodeTo(N, Opc, Op.getValueType(), TFI,
867 getSmallIPtrImm(0));
868 return CurDAG->getTargetNode(Opc, Op.getValueType(), TFI,
869 getSmallIPtrImm(0));
870 }
871
872 case PPCISD::MFCR: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000873 SDValue InFlag = N->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874 // Use MFOCRF if supported.
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000875 if (PPCSubTarget.isGigaProcessor())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000876 return CurDAG->getTargetNode(PPC::MFOCRF, MVT::i32,
877 N->getOperand(0), InFlag);
878 else
879 return CurDAG->getTargetNode(PPC::MFCR, MVT::i32, InFlag);
880 }
881
882 case ISD::SDIV: {
883 // FIXME: since this depends on the setting of the carry flag from the srawi
884 // we should really be making notes about that for the scheduler.
885 // FIXME: It sure would be nice if we could cheaply recognize the
886 // srl/add/sra pattern the dag combiner will generate for this as
887 // sra/addze rather than having to handle sdiv ourselves. oh well.
888 unsigned Imm;
889 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000890 SDValue N0 = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
892 SDNode *Op =
893 CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
894 N0, getI32Imm(Log2_32(Imm)));
895 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman8181bd12008-07-27 21:46:04 +0000896 SDValue(Op, 0), SDValue(Op, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
898 SDNode *Op =
899 CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
900 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman8181bd12008-07-27 21:46:04 +0000901 SDValue PT =
902 SDValue(CurDAG->getTargetNode(PPC::ADDZE, MVT::i32,
903 SDValue(Op, 0), SDValue(Op, 1)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000904 0);
905 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
906 }
907 }
908
909 // Other cases are autogenerated.
910 break;
911 }
912
913 case ISD::LOAD: {
914 // Handle preincrement loads.
915 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands92c43912008-06-06 12:08:01 +0000916 MVT LoadedVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000917
918 // Normal loads are handled by code generated from the .td file.
919 if (LD->getAddressingMode() != ISD::PRE_INC)
920 break;
921
Dan Gohman8181bd12008-07-27 21:46:04 +0000922 SDValue Offset = LD->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000923 if (isa<ConstantSDNode>(Offset) ||
924 Offset.getOpcode() == ISD::TargetGlobalAddress) {
925
926 unsigned Opcode;
927 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
928 if (LD->getValueType(0) != MVT::i64) {
929 // Handle PPC32 integer and normal FP loads.
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +0000930 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
Duncan Sands92c43912008-06-06 12:08:01 +0000931 switch (LoadedVT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000932 default: assert(0 && "Invalid PPC load type!");
933 case MVT::f64: Opcode = PPC::LFDU; break;
934 case MVT::f32: Opcode = PPC::LFSU; break;
935 case MVT::i32: Opcode = PPC::LWZU; break;
936 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
937 case MVT::i1:
938 case MVT::i8: Opcode = PPC::LBZU; break;
939 }
940 } else {
941 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +0000942 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
Duncan Sands92c43912008-06-06 12:08:01 +0000943 switch (LoadedVT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000944 default: assert(0 && "Invalid PPC load type!");
945 case MVT::i64: Opcode = PPC::LDU; break;
946 case MVT::i32: Opcode = PPC::LWZU8; break;
947 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
948 case MVT::i1:
949 case MVT::i8: Opcode = PPC::LBZU8; break;
950 }
951 }
952
Dan Gohman8181bd12008-07-27 21:46:04 +0000953 SDValue Chain = LD->getChain();
954 SDValue Base = LD->getBasePtr();
Dan Gohman8181bd12008-07-27 21:46:04 +0000955 SDValue Ops[] = { Offset, Base, Chain };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000956 // FIXME: PPC64
Dan Gohmanbd68c792008-07-17 19:10:17 +0000957 return CurDAG->getTargetNode(Opcode, LD->getValueType(0),
958 PPCLowering.getPointerTy(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000959 MVT::Other, Ops, 3);
960 } else {
961 assert(0 && "R+R preindex loads not supported yet!");
962 }
963 }
964
965 case ISD::AND: {
966 unsigned Imm, Imm2, SH, MB, ME;
967
968 // If this is an and of a value rotated between 0 and 31 bits and then and'd
969 // with a mask, emit rlwinm
970 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greif1c80d112008-08-28 21:40:38 +0000971 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000972 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000973 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000974 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
975 }
976 // If this is just a masked value where the input is not handled above, and
977 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
978 if (isInt32Immediate(N->getOperand(1), Imm) &&
979 isRunOfOnes(Imm, MB, ME) &&
980 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000981 SDValue Val = N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000982 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
984 }
985 // AND X, 0 -> 0, not "rlwinm 32".
986 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000987 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988 return NULL;
989 }
990 // ISD::OR doesn't get all the bitfield insertion fun.
991 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
992 if (isInt32Immediate(N->getOperand(1), Imm) &&
993 N->getOperand(0).getOpcode() == ISD::OR &&
994 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
995 unsigned MB, ME;
996 Imm = ~(Imm^Imm2);
997 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000998 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000999 N->getOperand(0).getOperand(1),
1000 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
1001 return CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32, Ops, 5);
1002 }
1003 }
1004
1005 // Other cases are autogenerated.
1006 break;
1007 }
1008 case ISD::OR:
1009 if (N->getValueType(0) == MVT::i32)
1010 if (SDNode *I = SelectBitfieldInsert(N))
1011 return I;
1012
1013 // Other cases are autogenerated.
1014 break;
1015 case ISD::SHL: {
1016 unsigned Imm, SH, MB, ME;
Gabor Greif1c80d112008-08-28 21:40:38 +00001017 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001018 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001019 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
1021 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
1022 }
1023
1024 // Other cases are autogenerated.
1025 break;
1026 }
1027 case ISD::SRL: {
1028 unsigned Imm, SH, MB, ME;
Gabor Greif1c80d112008-08-28 21:40:38 +00001029 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001031 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
1033 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
1034 }
1035
1036 // Other cases are autogenerated.
1037 break;
1038 }
1039 case ISD::SELECT_CC: {
1040 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1041
1042 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
1043 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1044 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1045 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1046 if (N1C->isNullValue() && N3C->isNullValue() &&
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001047 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 // FIXME: Implement this optzn for PPC64.
1049 N->getValueType(0) == MVT::i32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050 SDNode *Tmp =
1051 CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
1052 N->getOperand(0), getI32Imm(~0U));
1053 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
Dan Gohman8181bd12008-07-27 21:46:04 +00001054 SDValue(Tmp, 0), N->getOperand(0),
1055 SDValue(Tmp, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 }
1057
Dan Gohman8181bd12008-07-27 21:46:04 +00001058 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059 unsigned BROpc = getPredicateForSetCC(CC);
1060
1061 unsigned SelectCCOp;
1062 if (N->getValueType(0) == MVT::i32)
1063 SelectCCOp = PPC::SELECT_CC_I4;
1064 else if (N->getValueType(0) == MVT::i64)
1065 SelectCCOp = PPC::SELECT_CC_I8;
1066 else if (N->getValueType(0) == MVT::f32)
1067 SelectCCOp = PPC::SELECT_CC_F4;
1068 else if (N->getValueType(0) == MVT::f64)
1069 SelectCCOp = PPC::SELECT_CC_F8;
1070 else
1071 SelectCCOp = PPC::SELECT_CC_VRRC;
1072
Dan Gohman8181bd12008-07-27 21:46:04 +00001073 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074 getI32Imm(BROpc) };
1075 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
1076 }
1077 case PPCISD::COND_BRANCH: {
Dan Gohmana1fb67a2008-11-05 17:16:24 +00001078 // Op #0 is the Chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 // Op #1 is the PPC::PRED_* number.
1080 // Op #2 is the CR#
1081 // Op #3 is the Dest MBB
Dan Gohmancc3df852008-11-05 04:14:16 +00001082 // Op #4 is the Flag.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman8181bd12008-07-27 21:46:04 +00001084 SDValue Pred =
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001085 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00001086 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087 N->getOperand(0), N->getOperand(4) };
1088 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
1089 }
1090 case ISD::BR_CC: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman8181bd12008-07-27 21:46:04 +00001092 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC);
1093 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094 N->getOperand(4), N->getOperand(0) };
1095 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
1096 }
1097 case ISD::BRIND: {
1098 // FIXME: Should custom lower this.
Dan Gohman8181bd12008-07-27 21:46:04 +00001099 SDValue Chain = N->getOperand(0);
1100 SDValue Target = N->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001101 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Dan Gohman8181bd12008-07-27 21:46:04 +00001102 Chain = SDValue(CurDAG->getTargetNode(Opc, MVT::Other, Target,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001103 Chain), 0);
1104 return CurDAG->SelectNodeTo(N, PPC::BCTR, MVT::Other, Chain);
1105 }
Evan Chengb6facc42009-01-16 22:57:32 +00001106 case ISD::DECLARE: {
1107 SDValue Chain = N->getOperand(0);
1108 SDValue N1 = N->getOperand(1);
1109 SDValue N2 = N->getOperand(2);
1110 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(N1);
1111 if (!FINode)
1112 break;
Evan Cheng27cec742009-01-19 18:31:51 +00001113 if (N2.getOpcode() == ISD::ADD) {
1114 if (N2.getOperand(0).getOpcode() == ISD::ADD &&
1115 N2.getOperand(0).getOperand(0).getOpcode() == PPCISD::GlobalBaseReg &&
1116 N2.getOperand(0).getOperand(1).getOpcode() == PPCISD::Hi &&
1117 N2.getOperand(1).getOpcode() == PPCISD::Lo)
1118 N2 = N2.getOperand(0).getOperand(1).getOperand(0);
1119 else if (N2.getOperand(0).getOpcode() == ISD::ADD &&
Evan Chenga7482db2009-01-19 18:57:29 +00001120 N2.getOperand(0).getOperand(0).getOpcode() == PPCISD::GlobalBaseReg &&
1121 N2.getOperand(0).getOperand(1).getOpcode() == PPCISD::Lo &&
Evan Cheng27cec742009-01-19 18:31:51 +00001122 N2.getOperand(1).getOpcode() == PPCISD::Hi)
1123 N2 = N2.getOperand(0).getOperand(1).getOperand(0);
1124 else if (N2.getOperand(0).getOpcode() == PPCISD::Hi &&
1125 N2.getOperand(1).getOpcode() == PPCISD::Lo)
1126 N2 = N2.getOperand(0).getOperand(0);
1127 }
Evan Chengb6facc42009-01-16 22:57:32 +00001128 if (!isa<GlobalAddressSDNode>(N2))
1129 break;
1130 int FI = cast<FrameIndexSDNode>(N1)->getIndex();
1131 GlobalValue *GV = cast<GlobalAddressSDNode>(N2)->getGlobal();
1132 SDValue Tmp1 = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
1133 SDValue Tmp2 = CurDAG->getTargetGlobalAddress(GV, TLI.getPointerTy());
1134 return CurDAG->SelectNodeTo(N, TargetInstrInfo::DECLARE,
1135 MVT::Other, Tmp1, Tmp2, Chain);
1136 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137 }
1138
1139 return SelectCode(Op);
1140}
1141
1142
1143
1144/// createPPCISelDag - This pass converts a legalized DAG into a
1145/// PowerPC-specific DAG, ready for instruction scheduling.
1146///
1147FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
1148 return new PPCDAGToDAGISel(TM);
1149}
1150