blob: 00eebb83f12d6ee292aacea0e7072e554a1b1242 [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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "PPCHazardRecognizers.h"
20#include "llvm/CodeGen/MachineInstrBuilder.h"
21#include "llvm/CodeGen/MachineFunction.h"
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000022#include "llvm/CodeGen/MachineFunctionAnalysis.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"
Chris Lattner3ed055f2009-04-17 00:26:12 +000028#include "llvm/Function.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "llvm/GlobalValue.h"
30#include "llvm/Intrinsics.h"
31#include "llvm/Support/Debug.h"
32#include "llvm/Support/MathExtras.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000033#include "llvm/Support/ErrorHandling.h"
34#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035using namespace llvm;
36
37namespace {
38 //===--------------------------------------------------------------------===//
39 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
40 /// instructions for SelectionDAG operations.
41 ///
Nick Lewycky492d06e2009-10-25 06:33:48 +000042 class PPCDAGToDAGISel : public SelectionDAGISel {
Dan Gohmandbb121b2010-04-17 15:26:15 +000043 const PPCTargetMachine &TM;
44 const PPCTargetLowering &PPCLowering;
Evan Cheng9d99c5e2007-10-23 06:42:42 +000045 const PPCSubtarget &PPCSubTarget;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046 unsigned GlobalBaseReg;
47 public:
Dan Gohmane887fdf2008-07-07 18:00:37 +000048 explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
Dan Gohman96eb47a2009-01-15 19:20:50 +000049 : SelectionDAGISel(tm), TM(tm),
Evan Cheng9d99c5e2007-10-23 06:42:42 +000050 PPCLowering(*TM.getTargetLowering()),
51 PPCSubTarget(*TM.getSubtargetImpl()) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000053 virtual bool runOnMachineFunction(MachineFunction &MF) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054 // Make sure we re-emit a set of the global base reg if necessary
55 GlobalBaseReg = 0;
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000056 SelectionDAGISel::runOnMachineFunction(MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000058 InsertVRSaveCode(MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059 return true;
60 }
61
62 /// getI32Imm - Return a target constant with the specified value, of type
63 /// i32.
Dan Gohman8181bd12008-07-27 21:46:04 +000064 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +000065 return CurDAG->getTargetConstant(Imm, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066 }
67
68 /// getI64Imm - Return a target constant with the specified value, of type
69 /// i64.
Dan Gohman8181bd12008-07-27 21:46:04 +000070 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +000071 return CurDAG->getTargetConstant(Imm, MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072 }
73
74 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman8181bd12008-07-27 21:46:04 +000075 inline SDValue getSmallIPtrImm(unsigned Imm) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
77 }
78
79 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
80 /// with any number of 0s on either side. The 1s are allowed to wrap from
81 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
82 /// 0x0F0F0000 is not, since all 1s are not contiguous.
83 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
84
85
86 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
87 /// rotate and mask opcode and mask operation.
Dale Johannesenb21c0db2009-11-24 01:09:07 +000088 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 unsigned &SH, unsigned &MB, unsigned &ME);
90
91 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
92 /// base register. Return the virtual register that holds this value.
93 SDNode *getGlobalBaseReg();
94
95 // Select - Convert the specified operand from a target-independent to a
96 // target-specific node if it hasn't already been changed.
Dan Gohman5f082a72010-01-05 01:24:18 +000097 SDNode *Select(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098
99 SDNode *SelectBitfieldInsert(SDNode *N);
100
101 /// SelectCC - Select a comparison of the specified values with the
102 /// specified condition code, returning the CR# of the expression.
Dale Johannesen5d398a32009-02-06 19:16:40 +0000103 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104
105 /// SelectAddrImm - Returns true if the address N can be represented by
106 /// a base register plus a signed 16-bit displacement [r+imm].
Dan Gohman5f082a72010-01-05 01:24:18 +0000107 bool SelectAddrImm(SDNode *Op, SDValue N, SDValue &Disp,
Dan Gohman8181bd12008-07-27 21:46:04 +0000108 SDValue &Base) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
110 }
111
112 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
113 /// immediate field. Because preinc imms have already been validated, just
114 /// accept it.
Dan Gohman5f082a72010-01-05 01:24:18 +0000115 bool SelectAddrImmOffs(SDNode *Op, SDValue N, SDValue &Out) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116 Out = N;
117 return true;
118 }
119
120 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
121 /// represented as an indexed [r+r] operation. Returns false if it can
122 /// be represented by [r+imm], which are preferred.
Dan Gohman5f082a72010-01-05 01:24:18 +0000123 bool SelectAddrIdx(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman8181bd12008-07-27 21:46:04 +0000124 SDValue &Index) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
126 }
127
128 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
129 /// represented as an indexed [r+r] operation.
Dan Gohman5f082a72010-01-05 01:24:18 +0000130 bool SelectAddrIdxOnly(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman8181bd12008-07-27 21:46:04 +0000131 SDValue &Index) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
133 }
134
135 /// SelectAddrImmShift - Returns true if the address N can be represented by
136 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
137 /// for use by STD and friends.
Dan Gohman5f082a72010-01-05 01:24:18 +0000138 bool SelectAddrImmShift(SDNode *Op, SDValue N, SDValue &Disp,
Dan Gohman8181bd12008-07-27 21:46:04 +0000139 SDValue &Base) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
141 }
142
143 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000144 /// inline asm expressions. It is always correct to compute the value into
145 /// a register. The case of adding a (possibly relocatable) constant to a
146 /// register can be improved, but it is wrong to substitute Reg+Reg for
147 /// Reg in an asm, because the load or store opcode would have to change.
148 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000149 char ConstraintCode,
Dan Gohman14a66442008-08-23 02:25:05 +0000150 std::vector<SDValue> &OutOps) {
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000151 OutOps.push_back(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 return false;
153 }
154
Dan Gohman8181bd12008-07-27 21:46:04 +0000155 SDValue BuildSDIVSequence(SDNode *N);
156 SDValue BuildUDIVSequence(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157
Dan Gohmanfdf9ee22009-07-31 18:16:33 +0000158 void InsertVRSaveCode(MachineFunction &MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159
160 virtual const char *getPassName() const {
161 return "PowerPC DAG->DAG Pattern Instruction Selection";
162 }
163
164 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
165 /// this target when scheduling the DAG.
Dan Gohmandd6547d2009-01-15 22:18:12 +0000166 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 // Should use subtarget info to pick the right hazard recognizer. For
168 // now, always return a PPC970 recognizer.
Dan Gohman404e8542008-09-04 15:39:15 +0000169 const TargetInstrInfo *II = TM.getInstrInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 assert(II && "No InstrInfo?");
171 return new PPCHazardRecognizer970(*II);
172 }
173
174// Include the pieces autogenerated from the target description.
175#include "PPCGenDAGISel.inc"
176
177private:
Dan Gohman5f082a72010-01-05 01:24:18 +0000178 SDNode *SelectSETCC(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 };
180}
181
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182/// InsertVRSaveCode - Once the entire function has been instruction selected,
183/// all virtual registers are created and all machine instructions are built,
184/// check to see if we need to save/restore VRSAVE. If so, do it.
Dan Gohmanfdf9ee22009-07-31 18:16:33 +0000185void PPCDAGToDAGISel::InsertVRSaveCode(MachineFunction &Fn) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 // Check to see if this function uses vector registers, which means we have to
187 // save and restore the VRSAVE register and update it with the regs we use.
188 //
Dan Gohmandf1a7ff2010-02-10 16:03:48 +0000189 // In this case, there will be virtual registers of vector type created
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 // by the scheduler. Detect them now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 bool HasVectorVReg = false;
Dan Gohman1e57df32008-02-10 18:45:23 +0000192 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner1b989192007-12-31 04:13:23 +0000193 e = RegInfo->getLastVirtReg()+1; i != e; ++i)
194 if (RegInfo->getRegClass(i) == &PPC::VRRCRegClass) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 HasVectorVReg = true;
196 break;
197 }
198 if (!HasVectorVReg) return; // nothing to do.
199
200 // If we have a vector register, we want to emit code into the entry and exit
201 // blocks to save and restore the VRSAVE register. We do this here (instead
202 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
203 //
204 // 1. This (trivially) reduces the load on the register allocator, by not
205 // having to represent the live range of the VRSAVE register.
206 // 2. This (more significantly) allows us to create a temporary virtual
207 // register to hold the saved VRSAVE value, allowing this temporary to be
208 // register allocated, instead of forcing it to be spilled to the stack.
209
210 // Create two vregs - one to hold the VRSAVE register that is live-in to the
211 // function and one for the value after having bits or'd into it.
Chris Lattner1b989192007-12-31 04:13:23 +0000212 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
213 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214
215 const TargetInstrInfo &TII = *TM.getInstrInfo();
216 MachineBasicBlock &EntryBB = *Fn.begin();
Chris Lattnerd2c680b2010-04-02 20:16:16 +0000217 DebugLoc dl;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000218 // Emit the following code into the entry block:
219 // InVRSAVE = MFVRSAVE
220 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
221 // MTVRSAVE UpdatedVRSAVE
222 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000223 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
224 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattner62327602008-01-07 01:56:04 +0000225 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000226 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227
228 // Find all return blocks, outputting a restore in each epilog.
229 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Chris Lattner5b930372008-01-07 07:27:27 +0000230 if (!BB->empty() && BB->back().getDesc().isReturn()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231 IP = BB->end(); --IP;
232
233 // Skip over all terminator instructions, which are part of the return
234 // sequence.
235 MachineBasicBlock::iterator I2 = IP;
Chris Lattner5b930372008-01-07 07:27:27 +0000236 while (I2 != BB->begin() && (--I2)->getDesc().isTerminator())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 IP = I2;
238
239 // Emit: MTVRSAVE InVRSave
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000240 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 }
242 }
243}
244
245
246/// getGlobalBaseReg - Output the instructions required to put the
247/// base address to use for accessing globals into a register.
248///
249SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
250 if (!GlobalBaseReg) {
251 const TargetInstrInfo &TII = *TM.getInstrInfo();
252 // Insert the set of GlobalBaseReg into the first MBB of the function
Dan Gohman40660072009-08-15 02:07:36 +0000253 MachineBasicBlock &FirstMBB = MF->front();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Chris Lattnerd2c680b2010-04-02 20:16:16 +0000255 DebugLoc dl;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000257 if (PPCLowering.getPointerTy() == MVT::i32) {
Chris Lattner1b989192007-12-31 04:13:23 +0000258 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::GPRCRegisterClass);
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000259 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR), PPC::LR);
260 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000261 } else {
Chris Lattner1b989192007-12-31 04:13:23 +0000262 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::G8RCRegisterClass);
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000263 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8), PPC::LR8);
264 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 }
266 }
Gabor Greife9f7f582008-08-31 15:37:04 +0000267 return CurDAG->getRegister(GlobalBaseReg,
268 PPCLowering.getPointerTy()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269}
270
271/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
272/// or 64-bit immediate, and if the value can be accurately represented as a
273/// sign extension from a 16-bit value. If so, this returns true and the
274/// immediate.
275static bool isIntS16Immediate(SDNode *N, short &Imm) {
276 if (N->getOpcode() != ISD::Constant)
277 return false;
278
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000279 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000280 if (N->getValueType(0) == MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000281 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000282 else
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000283 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000284}
285
Dan Gohman8181bd12008-07-27 21:46:04 +0000286static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000287 return isIntS16Immediate(Op.getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288}
289
290
291/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
292/// operand. If so Imm will receive the 32-bit value.
293static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000294 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000295 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296 return true;
297 }
298 return false;
299}
300
301/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
302/// operand. If so Imm will receive the 64-bit value.
303static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000304 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000305 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 return true;
307 }
308 return false;
309}
310
311// isInt32Immediate - This method tests to see if a constant operand.
312// If so Imm will receive the 32 bit value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000313static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000314 return isInt32Immediate(N.getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315}
316
317
318// isOpcWithIntImmediate - This method tests to see if the node is a specific
319// opcode and that it has a immediate integer right operand.
320// If so Imm will receive the 32 bit value.
321static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greife9f7f582008-08-31 15:37:04 +0000322 return N->getOpcode() == Opc
323 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324}
325
326bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
327 if (isShiftedMask_32(Val)) {
328 // look for the first non-zero bit
329 MB = CountLeadingZeros_32(Val);
330 // look for the first zero bit after the run of ones
331 ME = CountLeadingZeros_32((Val - 1) ^ Val);
332 return true;
333 } else {
334 Val = ~Val; // invert mask
335 if (isShiftedMask_32(Val)) {
336 // effectively look for the first zero bit
337 ME = CountLeadingZeros_32(Val) - 1;
338 // effectively look for the first one bit after the run of zeros
339 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
340 return true;
341 }
342 }
343 // no run present
344 return false;
345}
346
347bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
Dale Johannesenb21c0db2009-11-24 01:09:07 +0000348 bool isShiftMask, unsigned &SH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349 unsigned &MB, unsigned &ME) {
350 // Don't even go down this path for i64, since different logic will be
351 // necessary for rldicl/rldicr/rldimi.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000352 if (N->getValueType(0) != MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353 return false;
354
355 unsigned Shift = 32;
356 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
357 unsigned Opcode = N->getOpcode();
358 if (N->getNumOperands() != 2 ||
Gabor Greif1c80d112008-08-28 21:40:38 +0000359 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 return false;
361
362 if (Opcode == ISD::SHL) {
363 // apply shift left to mask if it comes first
Dale Johannesenb21c0db2009-11-24 01:09:07 +0000364 if (isShiftMask) Mask = Mask << Shift;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 // determine which bits are made indeterminant by shift
366 Indeterminant = ~(0xFFFFFFFFu << Shift);
367 } else if (Opcode == ISD::SRL) {
368 // apply shift right to mask if it comes first
Dale Johannesenb21c0db2009-11-24 01:09:07 +0000369 if (isShiftMask) Mask = Mask >> Shift;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370 // determine which bits are made indeterminant by shift
371 Indeterminant = ~(0xFFFFFFFFu >> Shift);
372 // adjust for the left rotate
373 Shift = 32 - Shift;
374 } else if (Opcode == ISD::ROTL) {
375 Indeterminant = 0;
376 } else {
377 return false;
378 }
379
380 // if the mask doesn't intersect any Indeterminant bits
381 if (Mask && !(Mask & Indeterminant)) {
382 SH = Shift & 31;
383 // make sure the mask is still a mask (wrap arounds may not be)
384 return isRunOfOnes(Mask, MB, ME);
385 }
386 return false;
387}
388
389/// SelectBitfieldInsert - turn an or of two masked values into
390/// the rotate left word immediate then mask insert (rlwimi) instruction.
391SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000392 SDValue Op0 = N->getOperand(0);
393 SDValue Op1 = N->getOperand(1);
Dale Johannesen913ba762009-02-06 01:31:28 +0000394 DebugLoc dl = N->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395
Dan Gohman63f4e462008-02-27 01:23:58 +0000396 APInt LKZ, LKO, RKZ, RKO;
397 CurDAG->ComputeMaskedBits(Op0, APInt::getAllOnesValue(32), LKZ, LKO);
398 CurDAG->ComputeMaskedBits(Op1, APInt::getAllOnesValue(32), RKZ, RKO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399
Dan Gohman63f4e462008-02-27 01:23:58 +0000400 unsigned TargetMask = LKZ.getZExtValue();
401 unsigned InsertMask = RKZ.getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402
403 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
404 unsigned Op0Opc = Op0.getOpcode();
405 unsigned Op1Opc = Op1.getOpcode();
406 unsigned Value, SH = 0;
407 TargetMask = ~TargetMask;
408 InsertMask = ~InsertMask;
409
410 // If the LHS has a foldable shift and the RHS does not, then swap it to the
411 // RHS so that we can fold the shift into the insert.
412 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
413 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
414 Op0.getOperand(0).getOpcode() == ISD::SRL) {
415 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
416 Op1.getOperand(0).getOpcode() != ISD::SRL) {
417 std::swap(Op0, Op1);
418 std::swap(Op0Opc, Op1Opc);
419 std::swap(TargetMask, InsertMask);
420 }
421 }
422 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
423 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
424 Op1.getOperand(0).getOpcode() != ISD::SRL) {
425 std::swap(Op0, Op1);
426 std::swap(Op0Opc, Op1Opc);
427 std::swap(TargetMask, InsertMask);
428 }
429 }
430
431 unsigned MB, ME;
432 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dale Johannesen56187db2009-11-20 22:16:40 +0000433 SDValue Tmp1, Tmp2;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434
435 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
436 isInt32Immediate(Op1.getOperand(1), Value)) {
437 Op1 = Op1.getOperand(0);
438 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
439 }
440 if (Op1Opc == ISD::AND) {
441 unsigned SHOpc = Op1.getOperand(0).getOpcode();
442 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
443 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
444 Op1 = Op1.getOperand(0).getOperand(0);
445 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
446 } else {
447 Op1 = Op1.getOperand(0);
448 }
449 }
Dale Johannesen56187db2009-11-20 22:16:40 +0000450
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 SH &= 31;
Dale Johannesen56187db2009-11-20 22:16:40 +0000452 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453 getI32Imm(ME) };
Dan Gohman61fda0d2009-09-25 18:54:59 +0000454 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 }
456 }
457 return 0;
458}
459
460/// SelectCC - Select a comparison of the specified values with the specified
461/// condition code, returning the CR# of the expression.
Dan Gohman8181bd12008-07-27 21:46:04 +0000462SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesen5d398a32009-02-06 19:16:40 +0000463 ISD::CondCode CC, DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 // Always select the LHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465 unsigned Opc;
466
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000467 if (LHS.getValueType() == MVT::i32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 unsigned Imm;
469 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
470 if (isInt32Immediate(RHS, Imm)) {
471 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000472 if (isUInt<16>(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000473 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
474 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000476 if (isInt<16>((int)Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000477 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
478 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479
480 // For non-equality comparisons, the default code would materialize the
481 // constant, then compare against it, like this:
482 // lis r2, 4660
483 // ori r2, r2, 22136
484 // cmpw cr0, r3, r2
485 // Since we are just comparing for equality, we can emit this instead:
486 // xoris r0,r3,0x1234
487 // cmplwi cr0,r0,0x5678
488 // beq cr0,L6
Dan Gohman61fda0d2009-09-25 18:54:59 +0000489 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS, dl, MVT::i32, LHS,
490 getI32Imm(Imm >> 16)), 0);
491 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, Xor,
492 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 }
494 Opc = PPC::CMPLW;
495 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000496 if (isInt32Immediate(RHS, Imm) && isUInt<16>(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000497 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
498 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 Opc = PPC::CMPLW;
500 } else {
501 short SImm;
502 if (isIntS16Immediate(RHS, SImm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000503 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
504 getI32Imm((int)SImm & 0xFFFF)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505 0);
506 Opc = PPC::CMPW;
507 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000508 } else if (LHS.getValueType() == MVT::i64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 uint64_t Imm;
510 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000511 if (isInt64Immediate(RHS.getNode(), Imm)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000513 if (isUInt<16>(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000514 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
515 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000517 if (isInt<16>(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000518 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
519 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520
521 // For non-equality comparisons, the default code would materialize the
522 // constant, then compare against it, like this:
523 // lis r2, 4660
524 // ori r2, r2, 22136
525 // cmpd cr0, r3, r2
526 // Since we are just comparing for equality, we can emit this instead:
527 // xoris r0,r3,0x1234
528 // cmpldi cr0,r0,0x5678
529 // beq cr0,L6
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000530 if (isUInt<32>(Imm)) {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000531 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS8, dl, MVT::i64, LHS,
532 getI64Imm(Imm >> 16)), 0);
533 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, Xor,
534 getI64Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 }
536 }
537 Opc = PPC::CMPLD;
538 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000539 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt<16>(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000540 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
541 getI64Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542 Opc = PPC::CMPLD;
543 } else {
544 short SImm;
545 if (isIntS16Immediate(RHS, SImm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000546 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
547 getI64Imm(SImm & 0xFFFF)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 0);
549 Opc = PPC::CMPD;
550 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000551 } else if (LHS.getValueType() == MVT::f32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000552 Opc = PPC::FCMPUS;
553 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000554 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 Opc = PPC::FCMPUD;
556 }
Dan Gohman61fda0d2009-09-25 18:54:59 +0000557 return SDValue(CurDAG->getMachineNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558}
559
560static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
561 switch (CC) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562 case ISD::SETUEQ:
Dale Johannesen32100b22008-11-07 22:54:33 +0000563 case ISD::SETONE:
564 case ISD::SETOLE:
565 case ISD::SETOGE:
Edwin Törökbd448e32009-07-14 16:55:14 +0000566 llvm_unreachable("Should be lowered by legalize!");
567 default: llvm_unreachable("Unknown condition!");
Dale Johannesen32100b22008-11-07 22:54:33 +0000568 case ISD::SETOEQ:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 case ISD::SETEQ: return PPC::PRED_EQ;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570 case ISD::SETUNE:
571 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen32100b22008-11-07 22:54:33 +0000572 case ISD::SETOLT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 case ISD::SETLT: return PPC::PRED_LT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574 case ISD::SETULE:
575 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen32100b22008-11-07 22:54:33 +0000576 case ISD::SETOGT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 case ISD::SETGT: return PPC::PRED_GT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578 case ISD::SETUGE:
579 case ISD::SETGE: return PPC::PRED_GE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580 case ISD::SETO: return PPC::PRED_NU;
581 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen32100b22008-11-07 22:54:33 +0000582 // These two are invalid for floating point. Assume we have int.
583 case ISD::SETULT: return PPC::PRED_LT;
584 case ISD::SETUGT: return PPC::PRED_GT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 }
586}
587
588/// getCRIdxForSetCC - Return the index of the condition register field
589/// associated with the SetCC condition, and whether or not the field is
590/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattner6c36fb52008-01-08 06:46:30 +0000591///
592/// If this returns with Other != -1, then the returned comparison is an or of
593/// two simpler comparisons. In this case, Invert is guaranteed to be false.
594static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
595 Invert = false;
596 Other = -1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 switch (CC) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000598 default: llvm_unreachable("Unknown condition!");
Chris Lattner6c36fb52008-01-08 06:46:30 +0000599 case ISD::SETOLT:
600 case ISD::SETLT: return 0; // Bit #0 = SETOLT
601 case ISD::SETOGT:
602 case ISD::SETGT: return 1; // Bit #1 = SETOGT
603 case ISD::SETOEQ:
604 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
605 case ISD::SETUO: return 3; // Bit #3 = SETUO
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 case ISD::SETUGE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000607 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 case ISD::SETULE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000609 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000610 case ISD::SETUNE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000611 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
612 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Dale Johannesen32100b22008-11-07 22:54:33 +0000613 case ISD::SETUEQ:
614 case ISD::SETOGE:
615 case ISD::SETOLE:
616 case ISD::SETONE:
Edwin Törökbd448e32009-07-14 16:55:14 +0000617 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen32100b22008-11-07 22:54:33 +0000618 // These are invalid for floating point. Assume integer.
619 case ISD::SETULT: return 0;
620 case ISD::SETUGT: return 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621 }
622 return 0;
623}
624
Dan Gohman5f082a72010-01-05 01:24:18 +0000625SDNode *PPCDAGToDAGISel::SelectSETCC(SDNode *N) {
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000626 DebugLoc dl = N->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627 unsigned Imm;
628 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
629 if (isInt32Immediate(N->getOperand(1), Imm)) {
630 // We can codegen setcc op, imm very efficiently compared to a brcond.
631 // Check for those cases here.
632 // setcc op, 0
633 if (Imm == 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000634 SDValue Op = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000635 switch (CC) {
636 default: break;
637 case ISD::SETEQ: {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000638 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000639 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000640 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 }
642 case ISD::SETNE: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000643 SDValue AD =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000644 SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
645 Op, getI32Imm(~0U)), 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000646 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647 AD.getValue(1));
648 }
649 case ISD::SETLT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000650 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000651 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000652 }
653 case ISD::SETGT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000654 SDValue T =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000655 SDValue(CurDAG->getMachineNode(PPC::NEG, dl, MVT::i32, Op), 0);
656 T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000657 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000658 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000659 }
660 }
661 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman8181bd12008-07-27 21:46:04 +0000662 SDValue Op = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 switch (CC) {
664 default: break;
665 case ISD::SETEQ:
Dan Gohman61fda0d2009-09-25 18:54:59 +0000666 Op = SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
667 Op, getI32Imm(1)), 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000668 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman61fda0d2009-09-25 18:54:59 +0000669 SDValue(CurDAG->getMachineNode(PPC::LI, dl,
670 MVT::i32,
671 getI32Imm(0)), 0),
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000672 Op.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673 case ISD::SETNE: {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000674 Op = SDValue(CurDAG->getMachineNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
675 SDNode *AD = CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
676 Op, getI32Imm(~0U));
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000677 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
Dan Gohman8181bd12008-07-27 21:46:04 +0000678 Op, SDValue(AD, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679 }
680 case ISD::SETLT: {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000681 SDValue AD = SDValue(CurDAG->getMachineNode(PPC::ADDI, dl, MVT::i32, Op,
682 getI32Imm(1)), 0);
683 SDValue AN = SDValue(CurDAG->getMachineNode(PPC::AND, dl, MVT::i32, AD,
684 Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000685 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000686 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 }
688 case ISD::SETGT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000689 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dan Gohman61fda0d2009-09-25 18:54:59 +0000690 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000691 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000692 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693 getI32Imm(1));
694 }
695 }
696 }
697 }
698
699 bool Inv;
Chris Lattner6c36fb52008-01-08 06:46:30 +0000700 int OtherCondIdx;
701 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Dale Johannesen5d398a32009-02-06 19:16:40 +0000702 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000703 SDValue IntCR;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704
705 // Force the ccreg into CR7.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000706 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000707
Dan Gohman8181bd12008-07-27 21:46:04 +0000708 SDValue InFlag(0, 0); // Null incoming flag value.
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000709 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710 InFlag).getValue(1);
711
Chris Lattner6c36fb52008-01-08 06:46:30 +0000712 if (PPCSubTarget.isGigaProcessor() && OtherCondIdx == -1)
Dan Gohman61fda0d2009-09-25 18:54:59 +0000713 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
714 CCReg), 0);
Dale Johannesen8052a182010-05-20 17:48:26 +0000715 else
716 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
717 CR7Reg, CCReg), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718
Dan Gohman8181bd12008-07-27 21:46:04 +0000719 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720 getI32Imm(31), getI32Imm(31) };
Chris Lattner6c36fb52008-01-08 06:46:30 +0000721 if (OtherCondIdx == -1 && !Inv)
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000722 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000723
724 // Get the specified bit.
Dan Gohman8181bd12008-07-27 21:46:04 +0000725 SDValue Tmp =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000726 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000727 if (Inv) {
728 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000729 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 }
Chris Lattner6c36fb52008-01-08 06:46:30 +0000731
732 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
733 // We already got the bit for the first part of the comparison (e.g. SETULE).
734
735 // Get the other bit of the comparison.
736 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Dan Gohman8181bd12008-07-27 21:46:04 +0000737 SDValue OtherCond =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000738 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000739
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000740 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741}
742
743
744// Select - Convert the specified operand from a target-independent to a
745// target-specific node if it hasn't already been changed.
Dan Gohman5f082a72010-01-05 01:24:18 +0000746SDNode *PPCDAGToDAGISel::Select(SDNode *N) {
747 DebugLoc dl = N->getDebugLoc();
Dan Gohmanbd68c792008-07-17 19:10:17 +0000748 if (N->isMachineOpcode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 return NULL; // Already selected.
750
751 switch (N->getOpcode()) {
752 default: break;
753
754 case ISD::Constant: {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000755 if (N->getValueType(0) == MVT::i64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 // Get 64 bit value.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000757 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758 // Assume no remaining bits.
759 unsigned Remainder = 0;
760 // Assume no shift required.
761 unsigned Shift = 0;
762
763 // If it can't be represented as a 32 bit value.
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000764 if (!isInt<32>(Imm)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 Shift = CountTrailingZeros_64(Imm);
766 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
767
768 // If the shifted value fits 32 bits.
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000769 if (isInt<32>(ImmSh)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000770 // Go with the shifted value.
771 Imm = ImmSh;
772 } else {
773 // Still stuck with a 64 bit value.
774 Remainder = Imm;
775 Shift = 32;
776 Imm >>= 32;
777 }
778 }
779
780 // Intermediate operand.
781 SDNode *Result;
782
783 // Handle first 32 bits.
784 unsigned Lo = Imm & 0xFFFF;
785 unsigned Hi = (Imm >> 16) & 0xFFFF;
786
787 // Simple value.
Benjamin Kramer25c5cb62010-03-29 21:13:41 +0000788 if (isInt<16>(Imm)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789 // Just the Lo bits.
Dan Gohman61fda0d2009-09-25 18:54:59 +0000790 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000791 } else if (Lo) {
792 // Handle the Hi bits.
793 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dan Gohman61fda0d2009-09-25 18:54:59 +0000794 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000795 // And Lo bits.
Dan Gohman61fda0d2009-09-25 18:54:59 +0000796 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
797 SDValue(Result, 0), getI32Imm(Lo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000798 } else {
799 // Just the Hi bits.
Dan Gohman61fda0d2009-09-25 18:54:59 +0000800 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000801 }
802
803 // If no shift, we're done.
804 if (!Shift) return Result;
805
806 // Shift for next step if the upper 32-bits were not zero.
807 if (Imm) {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000808 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
809 SDValue(Result, 0),
810 getI32Imm(Shift),
811 getI32Imm(63 - Shift));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812 }
813
814 // Add in the last bits as required.
815 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000816 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64,
817 SDValue(Result, 0), getI32Imm(Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 }
819 if ((Lo = Remainder & 0xFFFF)) {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000820 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
821 SDValue(Result, 0), getI32Imm(Lo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822 }
823
824 return Result;
825 }
826 break;
827 }
828
829 case ISD::SETCC:
Dan Gohman5f082a72010-01-05 01:24:18 +0000830 return SelectSETCC(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000831 case PPCISD::GlobalBaseReg:
832 return getGlobalBaseReg();
833
834 case ISD::FrameIndex: {
835 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohman5f082a72010-01-05 01:24:18 +0000836 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
837 unsigned Opc = N->getValueType(0) == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 if (N->hasOneUse())
Dan Gohman5f082a72010-01-05 01:24:18 +0000839 return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), TFI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000840 getSmallIPtrImm(0));
Dan Gohman5f082a72010-01-05 01:24:18 +0000841 return CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI,
Dan Gohman61fda0d2009-09-25 18:54:59 +0000842 getSmallIPtrImm(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843 }
844
845 case PPCISD::MFCR: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000846 SDValue InFlag = N->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 // Use MFOCRF if supported.
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000848 if (PPCSubTarget.isGigaProcessor())
Dan Gohman61fda0d2009-09-25 18:54:59 +0000849 return CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32,
850 N->getOperand(0), InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 else
Dale Johannesen8052a182010-05-20 17:48:26 +0000852 return CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
853 N->getOperand(0), InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 }
855
856 case ISD::SDIV: {
857 // FIXME: since this depends on the setting of the carry flag from the srawi
858 // we should really be making notes about that for the scheduler.
859 // FIXME: It sure would be nice if we could cheaply recognize the
860 // srl/add/sra pattern the dag combiner will generate for this as
861 // sra/addze rather than having to handle sdiv ourselves. oh well.
862 unsigned Imm;
863 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000864 SDValue N0 = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000865 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
866 SDNode *Op =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000867 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
868 N0, getI32Imm(Log2_32(Imm)));
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000869 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman8181bd12008-07-27 21:46:04 +0000870 SDValue(Op, 0), SDValue(Op, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
872 SDNode *Op =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000873 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
874 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman8181bd12008-07-27 21:46:04 +0000875 SDValue PT =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000876 SDValue(CurDAG->getMachineNode(PPC::ADDZE, dl, MVT::i32,
877 SDValue(Op, 0), SDValue(Op, 1)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000878 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000879 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 }
881 }
882
883 // Other cases are autogenerated.
884 break;
885 }
886
887 case ISD::LOAD: {
888 // Handle preincrement loads.
Dan Gohman5f082a72010-01-05 01:24:18 +0000889 LoadSDNode *LD = cast<LoadSDNode>(N);
Owen Andersonac9de032009-08-10 22:56:29 +0000890 EVT LoadedVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891
892 // Normal loads are handled by code generated from the .td file.
893 if (LD->getAddressingMode() != ISD::PRE_INC)
894 break;
895
Dan Gohman8181bd12008-07-27 21:46:04 +0000896 SDValue Offset = LD->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897 if (isa<ConstantSDNode>(Offset) ||
898 Offset.getOpcode() == ISD::TargetGlobalAddress) {
899
900 unsigned Opcode;
901 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000902 if (LD->getValueType(0) != MVT::i64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000903 // Handle PPC32 integer and normal FP loads.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000904 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
905 switch (LoadedVT.getSimpleVT().SimpleTy) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000906 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000907 case MVT::f64: Opcode = PPC::LFDU; break;
908 case MVT::f32: Opcode = PPC::LFSU; break;
909 case MVT::i32: Opcode = PPC::LWZU; break;
910 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
911 case MVT::i1:
912 case MVT::i8: Opcode = PPC::LBZU; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000913 }
914 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000915 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
916 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
917 switch (LoadedVT.getSimpleVT().SimpleTy) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000918 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000919 case MVT::i64: Opcode = PPC::LDU; break;
920 case MVT::i32: Opcode = PPC::LWZU8; break;
921 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
922 case MVT::i1:
923 case MVT::i8: Opcode = PPC::LBZU8; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 }
925 }
926
Dan Gohman8181bd12008-07-27 21:46:04 +0000927 SDValue Chain = LD->getChain();
928 SDValue Base = LD->getBasePtr();
Dan Gohman8181bd12008-07-27 21:46:04 +0000929 SDValue Ops[] = { Offset, Base, Chain };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000930 // FIXME: PPC64
Dan Gohman61fda0d2009-09-25 18:54:59 +0000931 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
932 PPCLowering.getPointerTy(),
933 MVT::Other, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000934 } else {
Edwin Törökbd448e32009-07-14 16:55:14 +0000935 llvm_unreachable("R+R preindex loads not supported yet!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936 }
937 }
938
939 case ISD::AND: {
940 unsigned Imm, Imm2, SH, MB, ME;
941
942 // If this is an and of a value rotated between 0 and 31 bits and then and'd
943 // with a mask, emit rlwinm
944 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greif1c80d112008-08-28 21:40:38 +0000945 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000946 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000947 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000948 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 }
950 // If this is just a masked value where the input is not handled above, and
951 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
952 if (isInt32Immediate(N->getOperand(1), Imm) &&
953 isRunOfOnes(Imm, MB, ME) &&
954 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000955 SDValue Val = N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000956 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000957 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958 }
959 // AND X, 0 -> 0, not "rlwinm 32".
960 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000961 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000962 return NULL;
963 }
964 // ISD::OR doesn't get all the bitfield insertion fun.
965 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
966 if (isInt32Immediate(N->getOperand(1), Imm) &&
967 N->getOperand(0).getOpcode() == ISD::OR &&
968 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
969 unsigned MB, ME;
970 Imm = ~(Imm^Imm2);
971 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000972 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 N->getOperand(0).getOperand(1),
974 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dan Gohman61fda0d2009-09-25 18:54:59 +0000975 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 }
977 }
978
979 // Other cases are autogenerated.
980 break;
981 }
982 case ISD::OR:
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000983 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984 if (SDNode *I = SelectBitfieldInsert(N))
985 return I;
986
987 // Other cases are autogenerated.
988 break;
989 case ISD::SHL: {
990 unsigned Imm, SH, MB, ME;
Gabor Greif1c80d112008-08-28 21:40:38 +0000991 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000993 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000994 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000995 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000996 }
997
998 // Other cases are autogenerated.
999 break;
1000 }
1001 case ISD::SRL: {
1002 unsigned Imm, SH, MB, ME;
Gabor Greif1c80d112008-08-28 21:40:38 +00001003 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001005 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001007 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 }
1009
1010 // Other cases are autogenerated.
1011 break;
1012 }
1013 case ISD::SELECT_CC: {
1014 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1015
1016 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
1017 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1018 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1019 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1020 if (N1C->isNullValue() && N3C->isNullValue() &&
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001021 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001022 // FIXME: Implement this optzn for PPC64.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001023 N->getValueType(0) == MVT::i32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001024 SDNode *Tmp =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001025 CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
1026 N->getOperand(0), getI32Imm(~0U));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001027 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
Dan Gohman8181bd12008-07-27 21:46:04 +00001028 SDValue(Tmp, 0), N->getOperand(0),
1029 SDValue(Tmp, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 }
1031
Dale Johannesen5d398a32009-02-06 19:16:40 +00001032 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001033 unsigned BROpc = getPredicateForSetCC(CC);
1034
1035 unsigned SelectCCOp;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001036 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 SelectCCOp = PPC::SELECT_CC_I4;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001038 else if (N->getValueType(0) == MVT::i64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039 SelectCCOp = PPC::SELECT_CC_I8;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001040 else if (N->getValueType(0) == MVT::f32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041 SelectCCOp = PPC::SELECT_CC_F4;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001042 else if (N->getValueType(0) == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001043 SelectCCOp = PPC::SELECT_CC_F8;
1044 else
1045 SelectCCOp = PPC::SELECT_CC_VRRC;
1046
Dan Gohman8181bd12008-07-27 21:46:04 +00001047 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 getI32Imm(BROpc) };
1049 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
1050 }
1051 case PPCISD::COND_BRANCH: {
Dan Gohmana1fb67a2008-11-05 17:16:24 +00001052 // Op #0 is the Chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053 // Op #1 is the PPC::PRED_* number.
1054 // Op #2 is the CR#
1055 // Op #3 is the Dest MBB
Dan Gohmancc3df852008-11-05 04:14:16 +00001056 // Op #4 is the Flag.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman8181bd12008-07-27 21:46:04 +00001058 SDValue Pred =
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001059 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00001060 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 N->getOperand(0), N->getOperand(4) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001062 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 }
1064 case ISD::BR_CC: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001065 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesen5d398a32009-02-06 19:16:40 +00001066 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Dan Gohman8181bd12008-07-27 21:46:04 +00001067 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068 N->getOperand(4), N->getOperand(0) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001069 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070 }
1071 case ISD::BRIND: {
1072 // FIXME: Should custom lower this.
Dan Gohman8181bd12008-07-27 21:46:04 +00001073 SDValue Chain = N->getOperand(0);
1074 SDValue Target = N->getOperand(1);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001075 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Dan Gohman61fda0d2009-09-25 18:54:59 +00001076 Chain = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Target,
1077 Chain), 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001078 return CurDAG->SelectNodeTo(N, PPC::BCTR, MVT::Other, Chain);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 }
1081
Dan Gohman5f082a72010-01-05 01:24:18 +00001082 return SelectCode(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083}
1084
1085
1086
1087/// createPPCISelDag - This pass converts a legalized DAG into a
1088/// PowerPC-specific DAG, ready for instruction scheduling.
1089///
1090FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
1091 return new PPCDAGToDAGISel(TM);
1092}
1093