blob: fb9a2409e7165e9eacc90e550ba4692d5183caf1 [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"
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000023#include "llvm/CodeGen/MachineFunctionAnalysis.h"
Chris Lattner1b989192007-12-31 04:13:23 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025#include "llvm/CodeGen/SelectionDAG.h"
26#include "llvm/CodeGen/SelectionDAGISel.h"
27#include "llvm/Target/TargetOptions.h"
28#include "llvm/Constants.h"
Chris Lattner3ed055f2009-04-17 00:26:12 +000029#include "llvm/Function.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/GlobalValue.h"
31#include "llvm/Intrinsics.h"
32#include "llvm/Support/Debug.h"
33#include "llvm/Support/MathExtras.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
35#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036using namespace llvm;
37
38namespace {
39 //===--------------------------------------------------------------------===//
40 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
41 /// instructions for SelectionDAG operations.
42 ///
Nick Lewycky492d06e2009-10-25 06:33:48 +000043 class PPCDAGToDAGISel : public SelectionDAGISel {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044 PPCTargetMachine &TM;
Dan Gohmanf2b29572008-10-03 16:55:19 +000045 PPCTargetLowering &PPCLowering;
Evan Cheng9d99c5e2007-10-23 06:42:42 +000046 const PPCSubtarget &PPCSubTarget;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047 unsigned GlobalBaseReg;
48 public:
Dan Gohmane887fdf2008-07-07 18:00:37 +000049 explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
Dan Gohman96eb47a2009-01-15 19:20:50 +000050 : SelectionDAGISel(tm), TM(tm),
Evan Cheng9d99c5e2007-10-23 06:42:42 +000051 PPCLowering(*TM.getTargetLowering()),
52 PPCSubTarget(*TM.getSubtargetImpl()) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000054 virtual bool runOnMachineFunction(MachineFunction &MF) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 // Make sure we re-emit a set of the global base reg if necessary
56 GlobalBaseReg = 0;
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000057 SelectionDAGISel::runOnMachineFunction(MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000059 InsertVRSaveCode(MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060 return true;
61 }
62
63 /// getI32Imm - Return a target constant with the specified value, of type
64 /// i32.
Dan Gohman8181bd12008-07-27 21:46:04 +000065 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +000066 return CurDAG->getTargetConstant(Imm, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067 }
68
69 /// getI64Imm - Return a target constant with the specified value, of type
70 /// i64.
Dan Gohman8181bd12008-07-27 21:46:04 +000071 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +000072 return CurDAG->getTargetConstant(Imm, MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073 }
74
75 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman8181bd12008-07-27 21:46:04 +000076 inline SDValue getSmallIPtrImm(unsigned Imm) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
78 }
79
80 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
81 /// with any number of 0s on either side. The 1s are allowed to wrap from
82 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
83 /// 0x0F0F0000 is not, since all 1s are not contiguous.
84 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
85
86
87 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
88 /// rotate and mask opcode and mask operation.
89 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool IsShiftMask,
90 unsigned &SH, unsigned &MB, unsigned &ME);
91
92 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
93 /// base register. Return the virtual register that holds this value.
94 SDNode *getGlobalBaseReg();
95
96 // Select - Convert the specified operand from a target-independent to a
97 // target-specific node if it hasn't already been changed.
Dan Gohman8181bd12008-07-27 21:46:04 +000098 SDNode *Select(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099
100 SDNode *SelectBitfieldInsert(SDNode *N);
101
102 /// SelectCC - Select a comparison of the specified values with the
103 /// specified condition code, returning the CR# of the expression.
Dale Johannesen5d398a32009-02-06 19:16:40 +0000104 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105
106 /// SelectAddrImm - Returns true if the address N can be represented by
107 /// a base register plus a signed 16-bit displacement [r+imm].
Dan Gohman8181bd12008-07-27 21:46:04 +0000108 bool SelectAddrImm(SDValue Op, SDValue N, SDValue &Disp,
109 SDValue &Base) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
111 }
112
113 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
114 /// immediate field. Because preinc imms have already been validated, just
115 /// accept it.
Dan Gohman8181bd12008-07-27 21:46:04 +0000116 bool SelectAddrImmOffs(SDValue Op, SDValue N, SDValue &Out) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117 Out = N;
118 return true;
119 }
120
121 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
122 /// represented as an indexed [r+r] operation. Returns false if it can
123 /// be represented by [r+imm], which are preferred.
Dan Gohman8181bd12008-07-27 21:46:04 +0000124 bool SelectAddrIdx(SDValue Op, SDValue N, SDValue &Base,
125 SDValue &Index) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
127 }
128
129 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
130 /// represented as an indexed [r+r] operation.
Dan Gohman8181bd12008-07-27 21:46:04 +0000131 bool SelectAddrIdxOnly(SDValue Op, SDValue N, SDValue &Base,
132 SDValue &Index) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
134 }
135
136 /// SelectAddrImmShift - Returns true if the address N can be represented by
137 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
138 /// for use by STD and friends.
Dan Gohman8181bd12008-07-27 21:46:04 +0000139 bool SelectAddrImmShift(SDValue Op, SDValue N, SDValue &Disp,
140 SDValue &Base) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
142 }
143
144 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000145 /// inline asm expressions. It is always correct to compute the value into
146 /// a register. The case of adding a (possibly relocatable) constant to a
147 /// register can be improved, but it is wrong to substitute Reg+Reg for
148 /// Reg in an asm, because the load or store opcode would have to change.
149 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000150 char ConstraintCode,
Dan Gohman14a66442008-08-23 02:25:05 +0000151 std::vector<SDValue> &OutOps) {
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000152 OutOps.push_back(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 return false;
154 }
155
Dan Gohman8181bd12008-07-27 21:46:04 +0000156 SDValue BuildSDIVSequence(SDNode *N);
157 SDValue BuildUDIVSequence(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158
Evan Cheng34fd4f32008-06-30 20:45:06 +0000159 /// InstructionSelect - This callback is invoked by
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohman14a66442008-08-23 02:25:05 +0000161 virtual void InstructionSelect();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162
Dan Gohmanfdf9ee22009-07-31 18:16:33 +0000163 void InsertVRSaveCode(MachineFunction &MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164
165 virtual const char *getPassName() const {
166 return "PowerPC DAG->DAG Pattern Instruction Selection";
167 }
168
169 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
170 /// this target when scheduling the DAG.
Dan Gohmandd6547d2009-01-15 22:18:12 +0000171 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172 // Should use subtarget info to pick the right hazard recognizer. For
173 // now, always return a PPC970 recognizer.
Dan Gohman404e8542008-09-04 15:39:15 +0000174 const TargetInstrInfo *II = TM.getInstrInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 assert(II && "No InstrInfo?");
176 return new PPCHazardRecognizer970(*II);
177 }
178
179// Include the pieces autogenerated from the target description.
180#include "PPCGenDAGISel.inc"
181
182private:
Dan Gohman8181bd12008-07-27 21:46:04 +0000183 SDNode *SelectSETCC(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 };
185}
186
Evan Cheng34fd4f32008-06-30 20:45:06 +0000187/// InstructionSelect - This callback is invoked by
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohman14a66442008-08-23 02:25:05 +0000189void PPCDAGToDAGISel::InstructionSelect() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 // Select target instructions for the DAG.
David Greene932618b2008-10-27 21:56:29 +0000191 SelectRoot(*CurDAG);
Dan Gohman14a66442008-08-23 02:25:05 +0000192 CurDAG->RemoveDeadNodes();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193}
194
195/// InsertVRSaveCode - Once the entire function has been instruction selected,
196/// all virtual registers are created and all machine instructions are built,
197/// check to see if we need to save/restore VRSAVE. If so, do it.
Dan Gohmanfdf9ee22009-07-31 18:16:33 +0000198void PPCDAGToDAGISel::InsertVRSaveCode(MachineFunction &Fn) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199 // Check to see if this function uses vector registers, which means we have to
200 // save and restore the VRSAVE register and update it with the regs we use.
201 //
202 // In this case, there will be virtual registers of vector type type created
203 // by the scheduler. Detect them now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 bool HasVectorVReg = false;
Dan Gohman1e57df32008-02-10 18:45:23 +0000205 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner1b989192007-12-31 04:13:23 +0000206 e = RegInfo->getLastVirtReg()+1; i != e; ++i)
207 if (RegInfo->getRegClass(i) == &PPC::VRRCRegClass) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 HasVectorVReg = true;
209 break;
210 }
211 if (!HasVectorVReg) return; // nothing to do.
212
213 // If we have a vector register, we want to emit code into the entry and exit
214 // blocks to save and restore the VRSAVE register. We do this here (instead
215 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
216 //
217 // 1. This (trivially) reduces the load on the register allocator, by not
218 // having to represent the live range of the VRSAVE register.
219 // 2. This (more significantly) allows us to create a temporary virtual
220 // register to hold the saved VRSAVE value, allowing this temporary to be
221 // register allocated, instead of forcing it to be spilled to the stack.
222
223 // Create two vregs - one to hold the VRSAVE register that is live-in to the
224 // function and one for the value after having bits or'd into it.
Chris Lattner1b989192007-12-31 04:13:23 +0000225 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
226 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227
228 const TargetInstrInfo &TII = *TM.getInstrInfo();
229 MachineBasicBlock &EntryBB = *Fn.begin();
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000230 DebugLoc dl = DebugLoc::getUnknownLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231 // Emit the following code into the entry block:
232 // InVRSAVE = MFVRSAVE
233 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
234 // MTVRSAVE UpdatedVRSAVE
235 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000236 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
237 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattner62327602008-01-07 01:56:04 +0000238 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000239 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240
241 // Find all return blocks, outputting a restore in each epilog.
242 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Chris Lattner5b930372008-01-07 07:27:27 +0000243 if (!BB->empty() && BB->back().getDesc().isReturn()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 IP = BB->end(); --IP;
245
246 // Skip over all terminator instructions, which are part of the return
247 // sequence.
248 MachineBasicBlock::iterator I2 = IP;
Chris Lattner5b930372008-01-07 07:27:27 +0000249 while (I2 != BB->begin() && (--I2)->getDesc().isTerminator())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000250 IP = I2;
251
252 // Emit: MTVRSAVE InVRSave
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000253 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 }
255 }
256}
257
258
259/// getGlobalBaseReg - Output the instructions required to put the
260/// base address to use for accessing globals into a register.
261///
262SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
263 if (!GlobalBaseReg) {
264 const TargetInstrInfo &TII = *TM.getInstrInfo();
265 // Insert the set of GlobalBaseReg into the first MBB of the function
Dan Gohman40660072009-08-15 02:07:36 +0000266 MachineBasicBlock &FirstMBB = MF->front();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000268 DebugLoc dl = DebugLoc::getUnknownLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000270 if (PPCLowering.getPointerTy() == MVT::i32) {
Chris Lattner1b989192007-12-31 04:13:23 +0000271 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::GPRCRegisterClass);
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000272 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR), PPC::LR);
273 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274 } else {
Chris Lattner1b989192007-12-31 04:13:23 +0000275 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::G8RCRegisterClass);
Dale Johannesenf1cac0f2009-02-13 02:27:39 +0000276 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8), PPC::LR8);
277 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 }
279 }
Gabor Greife9f7f582008-08-31 15:37:04 +0000280 return CurDAG->getRegister(GlobalBaseReg,
281 PPCLowering.getPointerTy()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000282}
283
284/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
285/// or 64-bit immediate, and if the value can be accurately represented as a
286/// sign extension from a 16-bit value. If so, this returns true and the
287/// immediate.
288static bool isIntS16Immediate(SDNode *N, short &Imm) {
289 if (N->getOpcode() != ISD::Constant)
290 return false;
291
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000292 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000293 if (N->getValueType(0) == MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000294 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 else
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000296 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297}
298
Dan Gohman8181bd12008-07-27 21:46:04 +0000299static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000300 return isIntS16Immediate(Op.getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301}
302
303
304/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
305/// operand. If so Imm will receive the 32-bit value.
306static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000307 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000308 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 return true;
310 }
311 return false;
312}
313
314/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
315/// operand. If so Imm will receive the 64-bit value.
316static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000317 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000318 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000319 return true;
320 }
321 return false;
322}
323
324// isInt32Immediate - This method tests to see if a constant operand.
325// If so Imm will receive the 32 bit value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000326static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000327 return isInt32Immediate(N.getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328}
329
330
331// isOpcWithIntImmediate - This method tests to see if the node is a specific
332// opcode and that it has a immediate integer right operand.
333// If so Imm will receive the 32 bit value.
334static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greife9f7f582008-08-31 15:37:04 +0000335 return N->getOpcode() == Opc
336 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337}
338
339bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
340 if (isShiftedMask_32(Val)) {
341 // look for the first non-zero bit
342 MB = CountLeadingZeros_32(Val);
343 // look for the first zero bit after the run of ones
344 ME = CountLeadingZeros_32((Val - 1) ^ Val);
345 return true;
346 } else {
347 Val = ~Val; // invert mask
348 if (isShiftedMask_32(Val)) {
349 // effectively look for the first zero bit
350 ME = CountLeadingZeros_32(Val) - 1;
351 // effectively look for the first one bit after the run of zeros
352 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
353 return true;
354 }
355 }
356 // no run present
357 return false;
358}
359
360bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
361 bool IsShiftMask, unsigned &SH,
362 unsigned &MB, unsigned &ME) {
363 // Don't even go down this path for i64, since different logic will be
364 // necessary for rldicl/rldicr/rldimi.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000365 if (N->getValueType(0) != MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 return false;
367
368 unsigned Shift = 32;
369 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
370 unsigned Opcode = N->getOpcode();
371 if (N->getNumOperands() != 2 ||
Gabor Greif1c80d112008-08-28 21:40:38 +0000372 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 return false;
374
375 if (Opcode == ISD::SHL) {
376 // apply shift left to mask if it comes first
377 if (IsShiftMask) Mask = Mask << Shift;
378 // determine which bits are made indeterminant by shift
379 Indeterminant = ~(0xFFFFFFFFu << Shift);
380 } else if (Opcode == ISD::SRL) {
381 // apply shift right to mask if it comes first
382 if (IsShiftMask) Mask = Mask >> Shift;
383 // determine which bits are made indeterminant by shift
384 Indeterminant = ~(0xFFFFFFFFu >> Shift);
385 // adjust for the left rotate
386 Shift = 32 - Shift;
387 } else if (Opcode == ISD::ROTL) {
388 Indeterminant = 0;
389 } else {
390 return false;
391 }
392
393 // if the mask doesn't intersect any Indeterminant bits
394 if (Mask && !(Mask & Indeterminant)) {
395 SH = Shift & 31;
396 // make sure the mask is still a mask (wrap arounds may not be)
397 return isRunOfOnes(Mask, MB, ME);
398 }
399 return false;
400}
401
402/// SelectBitfieldInsert - turn an or of two masked values into
403/// the rotate left word immediate then mask insert (rlwimi) instruction.
404SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000405 SDValue Op0 = N->getOperand(0);
406 SDValue Op1 = N->getOperand(1);
Dale Johannesen913ba762009-02-06 01:31:28 +0000407 DebugLoc dl = N->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000408
Dan Gohman63f4e462008-02-27 01:23:58 +0000409 APInt LKZ, LKO, RKZ, RKO;
410 CurDAG->ComputeMaskedBits(Op0, APInt::getAllOnesValue(32), LKZ, LKO);
411 CurDAG->ComputeMaskedBits(Op1, APInt::getAllOnesValue(32), RKZ, RKO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412
Dan Gohman63f4e462008-02-27 01:23:58 +0000413 unsigned TargetMask = LKZ.getZExtValue();
414 unsigned InsertMask = RKZ.getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415
416 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
417 unsigned Op0Opc = Op0.getOpcode();
418 unsigned Op1Opc = Op1.getOpcode();
419 unsigned Value, SH = 0;
420 TargetMask = ~TargetMask;
421 InsertMask = ~InsertMask;
422
423 // If the LHS has a foldable shift and the RHS does not, then swap it to the
424 // RHS so that we can fold the shift into the insert.
425 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
426 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
427 Op0.getOperand(0).getOpcode() == ISD::SRL) {
428 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
429 Op1.getOperand(0).getOpcode() != ISD::SRL) {
430 std::swap(Op0, Op1);
431 std::swap(Op0Opc, Op1Opc);
432 std::swap(TargetMask, InsertMask);
433 }
434 }
435 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
436 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
437 Op1.getOperand(0).getOpcode() != ISD::SRL) {
438 std::swap(Op0, Op1);
439 std::swap(Op0Opc, Op1Opc);
440 std::swap(TargetMask, InsertMask);
441 }
442 }
443
444 unsigned MB, ME;
445 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000446 SDValue Tmp1, Tmp2, Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 bool DisjointMask = (TargetMask ^ InsertMask) == 0xFFFFFFFF;
448
449 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
450 isInt32Immediate(Op1.getOperand(1), Value)) {
451 Op1 = Op1.getOperand(0);
452 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
453 }
454 if (Op1Opc == ISD::AND) {
455 unsigned SHOpc = Op1.getOperand(0).getOpcode();
456 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
457 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
458 Op1 = Op1.getOperand(0).getOperand(0);
459 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
460 } else {
461 Op1 = Op1.getOperand(0);
462 }
463 }
464
465 Tmp3 = (Op0Opc == ISD::AND && DisjointMask) ? Op0.getOperand(0) : Op0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466 SH &= 31;
Dan Gohman8181bd12008-07-27 21:46:04 +0000467 SDValue Ops[] = { Tmp3, Op1, getI32Imm(SH), getI32Imm(MB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 getI32Imm(ME) };
Dan Gohman61fda0d2009-09-25 18:54:59 +0000469 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000470 }
471 }
472 return 0;
473}
474
475/// SelectCC - Select a comparison of the specified values with the specified
476/// condition code, returning the CR# of the expression.
Dan Gohman8181bd12008-07-27 21:46:04 +0000477SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesen5d398a32009-02-06 19:16:40 +0000478 ISD::CondCode CC, DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 // Always select the LHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 unsigned Opc;
481
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000482 if (LHS.getValueType() == MVT::i32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000483 unsigned Imm;
484 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
485 if (isInt32Immediate(RHS, Imm)) {
486 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
487 if (isUInt16(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000488 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
489 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000490 // If this is a 16-bit signed immediate, fold it.
491 if (isInt16((int)Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000492 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
493 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494
495 // For non-equality comparisons, the default code would materialize the
496 // constant, then compare against it, like this:
497 // lis r2, 4660
498 // ori r2, r2, 22136
499 // cmpw cr0, r3, r2
500 // Since we are just comparing for equality, we can emit this instead:
501 // xoris r0,r3,0x1234
502 // cmplwi cr0,r0,0x5678
503 // beq cr0,L6
Dan Gohman61fda0d2009-09-25 18:54:59 +0000504 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS, dl, MVT::i32, LHS,
505 getI32Imm(Imm >> 16)), 0);
506 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, Xor,
507 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 }
509 Opc = PPC::CMPLW;
510 } else if (ISD::isUnsignedIntSetCC(CC)) {
511 if (isInt32Immediate(RHS, Imm) && isUInt16(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000512 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
513 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 Opc = PPC::CMPLW;
515 } else {
516 short SImm;
517 if (isIntS16Immediate(RHS, SImm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000518 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
519 getI32Imm((int)SImm & 0xFFFF)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 0);
521 Opc = PPC::CMPW;
522 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000523 } else if (LHS.getValueType() == MVT::i64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 uint64_t Imm;
525 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000526 if (isInt64Immediate(RHS.getNode(), Imm)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
528 if (isUInt16(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000529 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
530 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 // If this is a 16-bit signed immediate, fold it.
532 if (isInt16(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000533 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
534 getI32Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535
536 // For non-equality comparisons, the default code would materialize the
537 // constant, then compare against it, like this:
538 // lis r2, 4660
539 // ori r2, r2, 22136
540 // cmpd cr0, r3, r2
541 // Since we are just comparing for equality, we can emit this instead:
542 // xoris r0,r3,0x1234
543 // cmpldi cr0,r0,0x5678
544 // beq cr0,L6
545 if (isUInt32(Imm)) {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000546 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS8, dl, MVT::i64, LHS,
547 getI64Imm(Imm >> 16)), 0);
548 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, Xor,
549 getI64Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550 }
551 }
552 Opc = PPC::CMPLD;
553 } else if (ISD::isUnsignedIntSetCC(CC)) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000554 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt16(Imm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000555 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
556 getI64Imm(Imm & 0xFFFF)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557 Opc = PPC::CMPLD;
558 } else {
559 short SImm;
560 if (isIntS16Immediate(RHS, SImm))
Dan Gohman61fda0d2009-09-25 18:54:59 +0000561 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
562 getI64Imm(SImm & 0xFFFF)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563 0);
564 Opc = PPC::CMPD;
565 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000566 } else if (LHS.getValueType() == MVT::f32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 Opc = PPC::FCMPUS;
568 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000569 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570 Opc = PPC::FCMPUD;
571 }
Dan Gohman61fda0d2009-09-25 18:54:59 +0000572 return SDValue(CurDAG->getMachineNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573}
574
575static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
576 switch (CC) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 case ISD::SETUEQ:
Dale Johannesen32100b22008-11-07 22:54:33 +0000578 case ISD::SETONE:
579 case ISD::SETOLE:
580 case ISD::SETOGE:
Edwin Törökbd448e32009-07-14 16:55:14 +0000581 llvm_unreachable("Should be lowered by legalize!");
582 default: llvm_unreachable("Unknown condition!");
Dale Johannesen32100b22008-11-07 22:54:33 +0000583 case ISD::SETOEQ:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584 case ISD::SETEQ: return PPC::PRED_EQ;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 case ISD::SETUNE:
586 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen32100b22008-11-07 22:54:33 +0000587 case ISD::SETOLT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 case ISD::SETLT: return PPC::PRED_LT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589 case ISD::SETULE:
590 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen32100b22008-11-07 22:54:33 +0000591 case ISD::SETOGT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 case ISD::SETGT: return PPC::PRED_GT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593 case ISD::SETUGE:
594 case ISD::SETGE: return PPC::PRED_GE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 case ISD::SETO: return PPC::PRED_NU;
596 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen32100b22008-11-07 22:54:33 +0000597 // These two are invalid for floating point. Assume we have int.
598 case ISD::SETULT: return PPC::PRED_LT;
599 case ISD::SETUGT: return PPC::PRED_GT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000600 }
601}
602
603/// getCRIdxForSetCC - Return the index of the condition register field
604/// associated with the SetCC condition, and whether or not the field is
605/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattner6c36fb52008-01-08 06:46:30 +0000606///
607/// If this returns with Other != -1, then the returned comparison is an or of
608/// two simpler comparisons. In this case, Invert is guaranteed to be false.
609static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
610 Invert = false;
611 Other = -1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612 switch (CC) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000613 default: llvm_unreachable("Unknown condition!");
Chris Lattner6c36fb52008-01-08 06:46:30 +0000614 case ISD::SETOLT:
615 case ISD::SETLT: return 0; // Bit #0 = SETOLT
616 case ISD::SETOGT:
617 case ISD::SETGT: return 1; // Bit #1 = SETOGT
618 case ISD::SETOEQ:
619 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
620 case ISD::SETUO: return 3; // Bit #3 = SETUO
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621 case ISD::SETUGE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000622 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623 case ISD::SETULE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000624 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 case ISD::SETUNE:
Chris Lattner6c36fb52008-01-08 06:46:30 +0000626 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
627 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Dale Johannesen32100b22008-11-07 22:54:33 +0000628 case ISD::SETUEQ:
629 case ISD::SETOGE:
630 case ISD::SETOLE:
631 case ISD::SETONE:
Edwin Törökbd448e32009-07-14 16:55:14 +0000632 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen32100b22008-11-07 22:54:33 +0000633 // These are invalid for floating point. Assume integer.
634 case ISD::SETULT: return 0;
635 case ISD::SETUGT: return 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 }
637 return 0;
638}
639
Dan Gohman8181bd12008-07-27 21:46:04 +0000640SDNode *PPCDAGToDAGISel::SelectSETCC(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000641 SDNode *N = Op.getNode();
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000642 DebugLoc dl = N->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 unsigned Imm;
644 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
645 if (isInt32Immediate(N->getOperand(1), Imm)) {
646 // We can codegen setcc op, imm very efficiently compared to a brcond.
647 // Check for those cases here.
648 // setcc op, 0
649 if (Imm == 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000650 SDValue Op = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 switch (CC) {
652 default: break;
653 case ISD::SETEQ: {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000654 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000655 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000656 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 }
658 case ISD::SETNE: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000659 SDValue AD =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000660 SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
661 Op, getI32Imm(~0U)), 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000662 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 AD.getValue(1));
664 }
665 case ISD::SETLT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000666 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000667 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668 }
669 case ISD::SETGT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000670 SDValue T =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000671 SDValue(CurDAG->getMachineNode(PPC::NEG, dl, MVT::i32, Op), 0);
672 T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000673 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000674 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000675 }
676 }
677 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman8181bd12008-07-27 21:46:04 +0000678 SDValue Op = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679 switch (CC) {
680 default: break;
681 case ISD::SETEQ:
Dan Gohman61fda0d2009-09-25 18:54:59 +0000682 Op = SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
683 Op, getI32Imm(1)), 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000684 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman61fda0d2009-09-25 18:54:59 +0000685 SDValue(CurDAG->getMachineNode(PPC::LI, dl,
686 MVT::i32,
687 getI32Imm(0)), 0),
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000688 Op.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689 case ISD::SETNE: {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000690 Op = SDValue(CurDAG->getMachineNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
691 SDNode *AD = CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
692 Op, getI32Imm(~0U));
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000693 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
Dan Gohman8181bd12008-07-27 21:46:04 +0000694 Op, SDValue(AD, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695 }
696 case ISD::SETLT: {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000697 SDValue AD = SDValue(CurDAG->getMachineNode(PPC::ADDI, dl, MVT::i32, Op,
698 getI32Imm(1)), 0);
699 SDValue AN = SDValue(CurDAG->getMachineNode(PPC::AND, dl, MVT::i32, AD,
700 Op), 0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000701 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000702 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000703 }
704 case ISD::SETGT: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000705 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dan Gohman61fda0d2009-09-25 18:54:59 +0000706 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000707 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000708 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000709 getI32Imm(1));
710 }
711 }
712 }
713 }
714
715 bool Inv;
Chris Lattner6c36fb52008-01-08 06:46:30 +0000716 int OtherCondIdx;
717 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Dale Johannesen5d398a32009-02-06 19:16:40 +0000718 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000719 SDValue IntCR;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720
721 // Force the ccreg into CR7.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000722 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723
Dan Gohman8181bd12008-07-27 21:46:04 +0000724 SDValue InFlag(0, 0); // Null incoming flag value.
Dale Johannesenb03cc3f2009-02-04 23:02:30 +0000725 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726 InFlag).getValue(1);
727
Chris Lattner6c36fb52008-01-08 06:46:30 +0000728 if (PPCSubTarget.isGigaProcessor() && OtherCondIdx == -1)
Dan Gohman61fda0d2009-09-25 18:54:59 +0000729 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
730 CCReg), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000731 else
Dan Gohman61fda0d2009-09-25 18:54:59 +0000732 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFCR, dl, MVT::i32, CCReg), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000733
Dan Gohman8181bd12008-07-27 21:46:04 +0000734 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 getI32Imm(31), getI32Imm(31) };
Chris Lattner6c36fb52008-01-08 06:46:30 +0000736 if (OtherCondIdx == -1 && !Inv)
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000737 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000738
739 // Get the specified bit.
Dan Gohman8181bd12008-07-27 21:46:04 +0000740 SDValue Tmp =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000741 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000742 if (Inv) {
743 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000744 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000745 }
Chris Lattner6c36fb52008-01-08 06:46:30 +0000746
747 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
748 // We already got the bit for the first part of the comparison (e.g. SETULE).
749
750 // Get the other bit of the comparison.
751 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Dan Gohman8181bd12008-07-27 21:46:04 +0000752 SDValue OtherCond =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000753 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattner6c36fb52008-01-08 06:46:30 +0000754
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000755 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756}
757
758
759// Select - Convert the specified operand from a target-independent to a
760// target-specific node if it hasn't already been changed.
Dan Gohman8181bd12008-07-27 21:46:04 +0000761SDNode *PPCDAGToDAGISel::Select(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000762 SDNode *N = Op.getNode();
Dale Johannesen913ba762009-02-06 01:31:28 +0000763 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanbd68c792008-07-17 19:10:17 +0000764 if (N->isMachineOpcode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 return NULL; // Already selected.
766
767 switch (N->getOpcode()) {
768 default: break;
769
770 case ISD::Constant: {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000771 if (N->getValueType(0) == MVT::i64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 // Get 64 bit value.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000773 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000774 // Assume no remaining bits.
775 unsigned Remainder = 0;
776 // Assume no shift required.
777 unsigned Shift = 0;
778
779 // If it can't be represented as a 32 bit value.
780 if (!isInt32(Imm)) {
781 Shift = CountTrailingZeros_64(Imm);
782 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
783
784 // If the shifted value fits 32 bits.
785 if (isInt32(ImmSh)) {
786 // Go with the shifted value.
787 Imm = ImmSh;
788 } else {
789 // Still stuck with a 64 bit value.
790 Remainder = Imm;
791 Shift = 32;
792 Imm >>= 32;
793 }
794 }
795
796 // Intermediate operand.
797 SDNode *Result;
798
799 // Handle first 32 bits.
800 unsigned Lo = Imm & 0xFFFF;
801 unsigned Hi = (Imm >> 16) & 0xFFFF;
802
803 // Simple value.
804 if (isInt16(Imm)) {
805 // Just the Lo bits.
Dan Gohman61fda0d2009-09-25 18:54:59 +0000806 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000807 } else if (Lo) {
808 // Handle the Hi bits.
809 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dan Gohman61fda0d2009-09-25 18:54:59 +0000810 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811 // And Lo bits.
Dan Gohman61fda0d2009-09-25 18:54:59 +0000812 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
813 SDValue(Result, 0), getI32Imm(Lo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 } else {
815 // Just the Hi bits.
Dan Gohman61fda0d2009-09-25 18:54:59 +0000816 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817 }
818
819 // If no shift, we're done.
820 if (!Shift) return Result;
821
822 // Shift for next step if the upper 32-bits were not zero.
823 if (Imm) {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000824 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
825 SDValue(Result, 0),
826 getI32Imm(Shift),
827 getI32Imm(63 - Shift));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000828 }
829
830 // Add in the last bits as required.
831 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000832 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64,
833 SDValue(Result, 0), getI32Imm(Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000834 }
835 if ((Lo = Remainder & 0xFFFF)) {
Dan Gohman61fda0d2009-09-25 18:54:59 +0000836 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
837 SDValue(Result, 0), getI32Imm(Lo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 }
839
840 return Result;
841 }
842 break;
843 }
844
845 case ISD::SETCC:
846 return SelectSETCC(Op);
847 case PPCISD::GlobalBaseReg:
848 return getGlobalBaseReg();
849
850 case ISD::FrameIndex: {
851 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohman8181bd12008-07-27 21:46:04 +0000852 SDValue TFI = CurDAG->getTargetFrameIndex(FI, Op.getValueType());
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000853 unsigned Opc = Op.getValueType() == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 if (N->hasOneUse())
855 return CurDAG->SelectNodeTo(N, Opc, Op.getValueType(), TFI,
856 getSmallIPtrImm(0));
Dan Gohman61fda0d2009-09-25 18:54:59 +0000857 return CurDAG->getMachineNode(Opc, dl, Op.getValueType(), TFI,
858 getSmallIPtrImm(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000859 }
860
861 case PPCISD::MFCR: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000862 SDValue InFlag = N->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863 // Use MFOCRF if supported.
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000864 if (PPCSubTarget.isGigaProcessor())
Dan Gohman61fda0d2009-09-25 18:54:59 +0000865 return CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32,
866 N->getOperand(0), InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000867 else
Dan Gohman61fda0d2009-09-25 18:54:59 +0000868 return CurDAG->getMachineNode(PPC::MFCR, dl, MVT::i32, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 }
870
871 case ISD::SDIV: {
872 // FIXME: since this depends on the setting of the carry flag from the srawi
873 // we should really be making notes about that for the scheduler.
874 // FIXME: It sure would be nice if we could cheaply recognize the
875 // srl/add/sra pattern the dag combiner will generate for this as
876 // sra/addze rather than having to handle sdiv ourselves. oh well.
877 unsigned Imm;
878 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000879 SDValue N0 = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
881 SDNode *Op =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000882 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
883 N0, getI32Imm(Log2_32(Imm)));
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000884 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman8181bd12008-07-27 21:46:04 +0000885 SDValue(Op, 0), SDValue(Op, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
887 SDNode *Op =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000888 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
889 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman8181bd12008-07-27 21:46:04 +0000890 SDValue PT =
Dan Gohman61fda0d2009-09-25 18:54:59 +0000891 SDValue(CurDAG->getMachineNode(PPC::ADDZE, dl, MVT::i32,
892 SDValue(Op, 0), SDValue(Op, 1)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000893 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000894 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000895 }
896 }
897
898 // Other cases are autogenerated.
899 break;
900 }
901
902 case ISD::LOAD: {
903 // Handle preincrement loads.
904 LoadSDNode *LD = cast<LoadSDNode>(Op);
Owen Andersonac9de032009-08-10 22:56:29 +0000905 EVT LoadedVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906
907 // Normal loads are handled by code generated from the .td file.
908 if (LD->getAddressingMode() != ISD::PRE_INC)
909 break;
910
Dan Gohman8181bd12008-07-27 21:46:04 +0000911 SDValue Offset = LD->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000912 if (isa<ConstantSDNode>(Offset) ||
913 Offset.getOpcode() == ISD::TargetGlobalAddress) {
914
915 unsigned Opcode;
916 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000917 if (LD->getValueType(0) != MVT::i64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000918 // Handle PPC32 integer and normal FP loads.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000919 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
920 switch (LoadedVT.getSimpleVT().SimpleTy) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000921 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000922 case MVT::f64: Opcode = PPC::LFDU; break;
923 case MVT::f32: Opcode = PPC::LFSU; break;
924 case MVT::i32: Opcode = PPC::LWZU; break;
925 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
926 case MVT::i1:
927 case MVT::i8: Opcode = PPC::LBZU; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000928 }
929 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000930 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
931 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
932 switch (LoadedVT.getSimpleVT().SimpleTy) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000933 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000934 case MVT::i64: Opcode = PPC::LDU; break;
935 case MVT::i32: Opcode = PPC::LWZU8; break;
936 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
937 case MVT::i1:
938 case MVT::i8: Opcode = PPC::LBZU8; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 }
940 }
941
Dan Gohman8181bd12008-07-27 21:46:04 +0000942 SDValue Chain = LD->getChain();
943 SDValue Base = LD->getBasePtr();
Dan Gohman8181bd12008-07-27 21:46:04 +0000944 SDValue Ops[] = { Offset, Base, Chain };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 // FIXME: PPC64
Dan Gohman61fda0d2009-09-25 18:54:59 +0000946 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
947 PPCLowering.getPointerTy(),
948 MVT::Other, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 } else {
Edwin Törökbd448e32009-07-14 16:55:14 +0000950 llvm_unreachable("R+R preindex loads not supported yet!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000951 }
952 }
953
954 case ISD::AND: {
955 unsigned Imm, Imm2, SH, MB, ME;
956
957 // If this is an and of a value rotated between 0 and 31 bits and then and'd
958 // with a mask, emit rlwinm
959 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greif1c80d112008-08-28 21:40:38 +0000960 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000961 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000962 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000963 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000964 }
965 // If this is just a masked value where the input is not handled above, and
966 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
967 if (isInt32Immediate(N->getOperand(1), Imm) &&
968 isRunOfOnes(Imm, MB, ME) &&
969 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000970 SDValue Val = N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000971 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000972 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 }
974 // AND X, 0 -> 0, not "rlwinm 32".
975 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000976 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977 return NULL;
978 }
979 // ISD::OR doesn't get all the bitfield insertion fun.
980 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
981 if (isInt32Immediate(N->getOperand(1), Imm) &&
982 N->getOperand(0).getOpcode() == ISD::OR &&
983 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
984 unsigned MB, ME;
985 Imm = ~(Imm^Imm2);
986 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000987 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988 N->getOperand(0).getOperand(1),
989 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dan Gohman61fda0d2009-09-25 18:54:59 +0000990 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 }
992 }
993
994 // Other cases are autogenerated.
995 break;
996 }
997 case ISD::OR:
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000998 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000999 if (SDNode *I = SelectBitfieldInsert(N))
1000 return I;
1001
1002 // Other cases are autogenerated.
1003 break;
1004 case ISD::SHL: {
1005 unsigned Imm, SH, MB, ME;
Gabor Greif1c80d112008-08-28 21:40:38 +00001006 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001007 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001008 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001009 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001010 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001011 }
1012
1013 // Other cases are autogenerated.
1014 break;
1015 }
1016 case ISD::SRL: {
1017 unsigned Imm, SH, MB, ME;
Gabor Greif1c80d112008-08-28 21:40:38 +00001018 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001020 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001022 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001023 }
1024
1025 // Other cases are autogenerated.
1026 break;
1027 }
1028 case ISD::SELECT_CC: {
1029 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1030
1031 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
1032 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1033 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1034 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1035 if (N1C->isNullValue() && N3C->isNullValue() &&
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001036 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 // FIXME: Implement this optzn for PPC64.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001038 N->getValueType(0) == MVT::i32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039 SDNode *Tmp =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001040 CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
1041 N->getOperand(0), getI32Imm(~0U));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001042 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
Dan Gohman8181bd12008-07-27 21:46:04 +00001043 SDValue(Tmp, 0), N->getOperand(0),
1044 SDValue(Tmp, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 }
1046
Dale Johannesen5d398a32009-02-06 19:16:40 +00001047 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 unsigned BROpc = getPredicateForSetCC(CC);
1049
1050 unsigned SelectCCOp;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001051 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 SelectCCOp = PPC::SELECT_CC_I4;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001053 else if (N->getValueType(0) == MVT::i64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054 SelectCCOp = PPC::SELECT_CC_I8;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001055 else if (N->getValueType(0) == MVT::f32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 SelectCCOp = PPC::SELECT_CC_F4;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001057 else if (N->getValueType(0) == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001058 SelectCCOp = PPC::SELECT_CC_F8;
1059 else
1060 SelectCCOp = PPC::SELECT_CC_VRRC;
1061
Dan Gohman8181bd12008-07-27 21:46:04 +00001062 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 getI32Imm(BROpc) };
1064 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
1065 }
1066 case PPCISD::COND_BRANCH: {
Dan Gohmana1fb67a2008-11-05 17:16:24 +00001067 // Op #0 is the Chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068 // Op #1 is the PPC::PRED_* number.
1069 // Op #2 is the CR#
1070 // Op #3 is the Dest MBB
Dan Gohmancc3df852008-11-05 04:14:16 +00001071 // Op #4 is the Flag.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001072 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman8181bd12008-07-27 21:46:04 +00001073 SDValue Pred =
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001074 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00001075 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001076 N->getOperand(0), N->getOperand(4) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001077 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 }
1079 case ISD::BR_CC: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesen5d398a32009-02-06 19:16:40 +00001081 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Dan Gohman8181bd12008-07-27 21:46:04 +00001082 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083 N->getOperand(4), N->getOperand(0) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001084 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 }
1086 case ISD::BRIND: {
1087 // FIXME: Should custom lower this.
Dan Gohman8181bd12008-07-27 21:46:04 +00001088 SDValue Chain = N->getOperand(0);
1089 SDValue Target = N->getOperand(1);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001090 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Dan Gohman61fda0d2009-09-25 18:54:59 +00001091 Chain = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Target,
1092 Chain), 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001093 return CurDAG->SelectNodeTo(N, PPC::BCTR, MVT::Other, Chain);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001095 }
1096
1097 return SelectCode(Op);
1098}
1099
1100
1101
1102/// createPPCISelDag - This pass converts a legalized DAG into a
1103/// PowerPC-specific DAG, ready for instruction scheduling.
1104///
1105FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
1106 return new PPCDAGToDAGISel(TM);
1107}
1108