blob: 6195441cfc0d9cb5218e2dde25441f334ce9c3e4 [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCISelDAGToDAG.cpp - PPC --pattern matching inst selector --------===//
Chris Lattnera5a91b12005-08-17 19:33:03 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnera5a91b12005-08-17 19:33:03 +00007//
8//===----------------------------------------------------------------------===//
9//
Nate Begeman21e463b2005-10-16 05:39:50 +000010// This file defines a pattern matching instruction selector for PowerPC,
Chris Lattnera5a91b12005-08-17 19:33:03 +000011// converting from a legalized dag to a PPC dag.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner95b2c7d2006-12-19 22:59:26 +000015#define DEBUG_TYPE "ppc-codegen"
Chris Lattner26689592005-10-14 23:51:18 +000016#include "PPC.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000017#include "PPCTargetMachine.h"
Evan Cheng94b95502011-07-26 00:24:13 +000018#include "MCTargetDesc/PPCPredicates.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000019#include "llvm/CodeGen/MachineInstrBuilder.h"
20#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000022#include "llvm/CodeGen/SelectionDAG.h"
23#include "llvm/CodeGen/SelectionDAGISel.h"
24#include "llvm/Target/TargetOptions.h"
Chris Lattner2fe76e52005-08-25 04:47:18 +000025#include "llvm/Constants.h"
Chris Lattner9062d9a2009-04-17 00:26:12 +000026#include "llvm/Function.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000027#include "llvm/GlobalValue.h"
Chris Lattner420736d2006-03-25 06:47:10 +000028#include "llvm/Intrinsics.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000029#include "llvm/Support/Debug.h"
30#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000031#include "llvm/Support/ErrorHandling.h"
32#include "llvm/Support/raw_ostream.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000033using namespace llvm;
34
35namespace {
Chris Lattnera5a91b12005-08-17 19:33:03 +000036 //===--------------------------------------------------------------------===//
Nate Begeman1d9d7422005-10-18 00:28:58 +000037 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
Chris Lattnera5a91b12005-08-17 19:33:03 +000038 /// instructions for SelectionDAG operations.
39 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +000040 class PPCDAGToDAGISel : public SelectionDAGISel {
Dan Gohmand858e902010-04-17 15:26:15 +000041 const PPCTargetMachine &TM;
42 const PPCTargetLowering &PPCLowering;
Evan Cheng152b7e12007-10-23 06:42:42 +000043 const PPCSubtarget &PPCSubTarget;
Chris Lattner4416f1a2005-08-19 22:38:53 +000044 unsigned GlobalBaseReg;
Chris Lattnera5a91b12005-08-17 19:33:03 +000045 public:
Dan Gohman1002c022008-07-07 18:00:37 +000046 explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
Dan Gohman79ce2762009-01-15 19:20:50 +000047 : SelectionDAGISel(tm), TM(tm),
Evan Cheng152b7e12007-10-23 06:42:42 +000048 PPCLowering(*TM.getTargetLowering()),
49 PPCSubTarget(*TM.getSubtargetImpl()) {}
Andrew Trick6e8f4c42010-12-24 04:28:06 +000050
Dan Gohmanad2afc22009-07-31 18:16:33 +000051 virtual bool runOnMachineFunction(MachineFunction &MF) {
Chris Lattner4416f1a2005-08-19 22:38:53 +000052 // Make sure we re-emit a set of the global base reg if necessary
53 GlobalBaseReg = 0;
Dan Gohmanad2afc22009-07-31 18:16:33 +000054 SelectionDAGISel::runOnMachineFunction(MF);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000055
Bill Schmidta5d0ab52012-10-10 20:54:15 +000056 if (!PPCSubTarget.isSVR4ABI())
57 InsertVRSaveCode(MF);
58
Chris Lattner4bb18952006-03-16 18:25:23 +000059 return true;
Chris Lattner4416f1a2005-08-19 22:38:53 +000060 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000061
Chris Lattnera5a91b12005-08-17 19:33:03 +000062 /// getI32Imm - Return a target constant with the specified value, of type
63 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +000064 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000065 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnera5a91b12005-08-17 19:33:03 +000066 }
Chris Lattner4416f1a2005-08-19 22:38:53 +000067
Chris Lattnerc08f9022006-06-27 00:04:13 +000068 /// getI64Imm - Return a target constant with the specified value, of type
69 /// i64.
Dan Gohman475871a2008-07-27 21:46:04 +000070 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000071 return CurDAG->getTargetConstant(Imm, MVT::i64);
Chris Lattnerc08f9022006-06-27 00:04:13 +000072 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000073
Chris Lattnerc08f9022006-06-27 00:04:13 +000074 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman475871a2008-07-27 21:46:04 +000075 inline SDValue getSmallIPtrImm(unsigned Imm) {
Chris Lattnerc08f9022006-06-27 00:04:13 +000076 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
77 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000078
Sylvestre Ledru94c22712012-09-27 10:14:43 +000079 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
Nate Begemanf42f1332006-09-22 05:01:56 +000080 /// 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 Johannesenb60d5192009-11-24 01:09:07 +000088 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask,
Nate Begemanf42f1332006-09-22 05:01:56 +000089 unsigned &SH, unsigned &MB, unsigned &ME);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000090
Chris Lattner4416f1a2005-08-19 22:38:53 +000091 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
92 /// base register. Return the virtual register that holds this value.
Evan Cheng9ade2182006-08-26 05:34:46 +000093 SDNode *getGlobalBaseReg();
Andrew Trick6e8f4c42010-12-24 04:28:06 +000094
Chris Lattnera5a91b12005-08-17 19:33:03 +000095 // Select - Convert the specified operand from a target-independent to a
96 // target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +000097 SDNode *Select(SDNode *N);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000098
Nate Begeman02b88a42005-08-19 00:38:14 +000099 SDNode *SelectBitfieldInsert(SDNode *N);
100
Chris Lattner2fbb4572005-08-21 18:50:37 +0000101 /// SelectCC - Select a comparison of the specified values with the
102 /// specified condition code, returning the CR# of the expression.
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000103 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000104
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000105 /// SelectAddrImm - Returns true if the address N can be represented by
106 /// a base register plus a signed 16-bit displacement [r+imm].
Chris Lattner52a261b2010-09-21 20:31:19 +0000107 bool SelectAddrImm(SDValue N, SDValue &Disp,
Dan Gohman475871a2008-07-27 21:46:04 +0000108 SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000109 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
110 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000111
Chris Lattner74531e42006-11-16 00:41:37 +0000112 /// 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.
Chris Lattner52a261b2010-09-21 20:31:19 +0000115 bool SelectAddrImmOffs(SDValue N, SDValue &Out) const {
Hal Finkel2bbc9192012-06-21 20:10:48 +0000116 if (isa<ConstantSDNode>(N) || N.getOpcode() == PPCISD::Lo ||
117 N.getOpcode() == ISD::TargetGlobalAddress) {
Hal Finkelac81cc32012-06-19 02:34:32 +0000118 Out = N;
119 return true;
120 }
121
122 return false;
123 }
124
125 /// SelectAddrIdxOffs - Return true if the operand is valid for a preinc
126 /// index field. Because preinc imms have already been validated, just
127 /// accept it.
128 bool SelectAddrIdxOffs(SDValue N, SDValue &Out) const {
Hal Finkel2bbc9192012-06-21 20:10:48 +0000129 if (isa<ConstantSDNode>(N) || N.getOpcode() == PPCISD::Lo ||
130 N.getOpcode() == ISD::TargetGlobalAddress)
131 return false;
132
Chris Lattner74531e42006-11-16 00:41:37 +0000133 Out = N;
134 return true;
135 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000136
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000137 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
138 /// represented as an indexed [r+r] operation. Returns false if it can
139 /// be represented by [r+imm], which are preferred.
Chris Lattner52a261b2010-09-21 20:31:19 +0000140 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000141 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
142 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000143
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000144 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
145 /// represented as an indexed [r+r] operation.
Chris Lattner52a261b2010-09-21 20:31:19 +0000146 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000147 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
148 }
Chris Lattner9944b762005-08-21 22:31:09 +0000149
Chris Lattnere5ba5802006-03-22 05:26:03 +0000150 /// SelectAddrImmShift - Returns true if the address N can be represented by
151 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
152 /// for use by STD and friends.
Chris Lattner52a261b2010-09-21 20:31:19 +0000153 bool SelectAddrImmShift(SDValue N, SDValue &Disp, SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000154 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
155 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000156
Chris Lattnere5d88612006-02-24 02:13:12 +0000157 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000158 /// inline asm expressions. It is always correct to compute the value into
159 /// a register. The case of adding a (possibly relocatable) constant to a
160 /// register can be improved, but it is wrong to substitute Reg+Reg for
161 /// Reg in an asm, because the load or store opcode would have to change.
162 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnere5d88612006-02-24 02:13:12 +0000163 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000164 std::vector<SDValue> &OutOps) {
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000165 OutOps.push_back(Op);
Chris Lattnere5d88612006-02-24 02:13:12 +0000166 return false;
167 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000168
Dan Gohmanad2afc22009-07-31 18:16:33 +0000169 void InsertVRSaveCode(MachineFunction &MF);
Chris Lattner4bb18952006-03-16 18:25:23 +0000170
Chris Lattnera5a91b12005-08-17 19:33:03 +0000171 virtual const char *getPassName() const {
172 return "PowerPC DAG->DAG Pattern Instruction Selection";
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000173 }
174
Chris Lattneraf165382005-09-13 22:03:06 +0000175// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000176#include "PPCGenDAGISel.inc"
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000177
Chris Lattnerbd937b92005-10-06 18:45:51 +0000178private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000179 SDNode *SelectSETCC(SDNode *N);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000180 };
181}
182
Chris Lattner4bb18952006-03-16 18:25:23 +0000183/// InsertVRSaveCode - Once the entire function has been instruction selected,
184/// all virtual registers are created and all machine instructions are built,
185/// check to see if we need to save/restore VRSAVE. If so, do it.
Dan Gohmanad2afc22009-07-31 18:16:33 +0000186void PPCDAGToDAGISel::InsertVRSaveCode(MachineFunction &Fn) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000187 // Check to see if this function uses vector registers, which means we have to
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000188 // save and restore the VRSAVE register and update it with the regs we use.
Chris Lattner1877ec92006-03-13 21:52:10 +0000189 //
Dan Gohmanf451cb82010-02-10 16:03:48 +0000190 // In this case, there will be virtual registers of vector type created
Chris Lattner1877ec92006-03-13 21:52:10 +0000191 // by the scheduler. Detect them now.
Chris Lattner1877ec92006-03-13 21:52:10 +0000192 bool HasVectorVReg = false;
Jakob Stoklund Olesenb2581352011-01-08 23:11:11 +0000193 for (unsigned i = 0, e = RegInfo->getNumVirtRegs(); i != e; ++i) {
194 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
195 if (RegInfo->getRegClass(Reg) == &PPC::VRRCRegClass) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000196 HasVectorVReg = true;
197 break;
198 }
Jakob Stoklund Olesenb2581352011-01-08 23:11:11 +0000199 }
Chris Lattner4bb18952006-03-16 18:25:23 +0000200 if (!HasVectorVReg) return; // nothing to do.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000201
Chris Lattner1877ec92006-03-13 21:52:10 +0000202 // If we have a vector register, we want to emit code into the entry and exit
203 // blocks to save and restore the VRSAVE register. We do this here (instead
204 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
205 //
206 // 1. This (trivially) reduces the load on the register allocator, by not
207 // having to represent the live range of the VRSAVE register.
208 // 2. This (more significantly) allows us to create a temporary virtual
209 // register to hold the saved VRSAVE value, allowing this temporary to be
210 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner4bb18952006-03-16 18:25:23 +0000211
212 // Create two vregs - one to hold the VRSAVE register that is live-in to the
213 // function and one for the value after having bits or'd into it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000214 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
215 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000216
Evan Chengc0f64ff2006-11-27 23:37:22 +0000217 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4bb18952006-03-16 18:25:23 +0000218 MachineBasicBlock &EntryBB = *Fn.begin();
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000219 DebugLoc dl;
Chris Lattner4bb18952006-03-16 18:25:23 +0000220 // Emit the following code into the entry block:
221 // InVRSAVE = MFVRSAVE
222 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
223 // MTVRSAVE UpdatedVRSAVE
224 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesen536a2f12009-02-13 02:27:39 +0000225 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
226 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattner69244302008-01-07 01:56:04 +0000227 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000228 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000229
Chris Lattner4bb18952006-03-16 18:25:23 +0000230 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner4bb18952006-03-16 18:25:23 +0000231 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000232 if (!BB->empty() && BB->back().isReturn()) {
Chris Lattner4bb18952006-03-16 18:25:23 +0000233 IP = BB->end(); --IP;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000234
Chris Lattner4bb18952006-03-16 18:25:23 +0000235 // Skip over all terminator instructions, which are part of the return
236 // sequence.
237 MachineBasicBlock::iterator I2 = IP;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000238 while (I2 != BB->begin() && (--I2)->isTerminator())
Chris Lattner4bb18952006-03-16 18:25:23 +0000239 IP = I2;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000240
Chris Lattner4bb18952006-03-16 18:25:23 +0000241 // Emit: MTVRSAVE InVRSave
Dale Johannesen536a2f12009-02-13 02:27:39 +0000242 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000243 }
Chris Lattner1877ec92006-03-13 21:52:10 +0000244 }
Chris Lattnerbd937b92005-10-06 18:45:51 +0000245}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000246
Chris Lattner4bb18952006-03-16 18:25:23 +0000247
Chris Lattner4416f1a2005-08-19 22:38:53 +0000248/// getGlobalBaseReg - Output the instructions required to put the
249/// base address to use for accessing globals into a register.
250///
Evan Cheng9ade2182006-08-26 05:34:46 +0000251SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000252 if (!GlobalBaseReg) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000253 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000254 // Insert the set of GlobalBaseReg into the first MBB of the function
Dan Gohmanbd51c672009-08-15 02:07:36 +0000255 MachineBasicBlock &FirstMBB = MF->front();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000256 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000257 DebugLoc dl;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000258
Owen Anderson825b72b2009-08-11 20:47:22 +0000259 if (PPCLowering.getPointerTy() == MVT::i32) {
Craig Topperc9099502012-04-20 06:31:50 +0000260 GlobalBaseReg = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Cameron Zwarich0113e4e2011-05-19 02:56:28 +0000261 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR));
Dale Johannesen536a2f12009-02-13 02:27:39 +0000262 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000263 } else {
Craig Topperc9099502012-04-20 06:31:50 +0000264 GlobalBaseReg = RegInfo->createVirtualRegister(&PPC::G8RCRegClass);
Cameron Zwarich0113e4e2011-05-19 02:56:28 +0000265 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8));
Dale Johannesen536a2f12009-02-13 02:27:39 +0000266 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000267 }
Chris Lattner4416f1a2005-08-19 22:38:53 +0000268 }
Gabor Greif93c53e52008-08-31 15:37:04 +0000269 return CurDAG->getRegister(GlobalBaseReg,
270 PPCLowering.getPointerTy()).getNode();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000271}
272
273/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
274/// or 64-bit immediate, and if the value can be accurately represented as a
275/// sign extension from a 16-bit value. If so, this returns true and the
276/// immediate.
277static bool isIntS16Immediate(SDNode *N, short &Imm) {
278 if (N->getOpcode() != ISD::Constant)
279 return false;
280
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000281 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000282 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000283 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000284 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000285 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000286}
287
Dan Gohman475871a2008-07-27 21:46:04 +0000288static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000289 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000290}
291
292
Chris Lattnerc08f9022006-06-27 00:04:13 +0000293/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
294/// operand. If so Imm will receive the 32-bit value.
295static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000296 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000297 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Nate Begeman0f3257a2005-08-18 05:00:13 +0000298 return true;
299 }
300 return false;
301}
302
Chris Lattnerc08f9022006-06-27 00:04:13 +0000303/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
304/// operand. If so Imm will receive the 64-bit value.
305static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000306 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000307 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000308 return true;
309 }
310 return false;
311}
312
313// isInt32Immediate - This method tests to see if a constant operand.
314// If so Imm will receive the 32 bit value.
Dan Gohman475871a2008-07-27 21:46:04 +0000315static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000316 return isInt32Immediate(N.getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000317}
318
319
320// isOpcWithIntImmediate - This method tests to see if the node is a specific
321// opcode and that it has a immediate integer right operand.
322// If so Imm will receive the 32 bit value.
323static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000324 return N->getOpcode() == Opc
325 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000326}
327
Nate Begemanf42f1332006-09-22 05:01:56 +0000328bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000329 if (isShiftedMask_32(Val)) {
330 // look for the first non-zero bit
331 MB = CountLeadingZeros_32(Val);
332 // look for the first zero bit after the run of ones
333 ME = CountLeadingZeros_32((Val - 1) ^ Val);
334 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000335 } else {
336 Val = ~Val; // invert mask
337 if (isShiftedMask_32(Val)) {
338 // effectively look for the first zero bit
339 ME = CountLeadingZeros_32(Val) - 1;
340 // effectively look for the first one bit after the run of zeros
341 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
342 return true;
343 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000344 }
345 // no run present
346 return false;
347}
348
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000349bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
350 bool isShiftMask, unsigned &SH,
Nate Begemanf42f1332006-09-22 05:01:56 +0000351 unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000352 // Don't even go down this path for i64, since different logic will be
353 // necessary for rldicl/rldicr/rldimi.
Owen Anderson825b72b2009-08-11 20:47:22 +0000354 if (N->getValueType(0) != MVT::i32)
Nate Begemanda32c9e2005-10-19 00:05:37 +0000355 return false;
356
Nate Begemancffc32b2005-08-18 07:30:46 +0000357 unsigned Shift = 32;
358 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
359 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000360 if (N->getNumOperands() != 2 ||
Gabor Greifba36cb52008-08-28 21:40:38 +0000361 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000362 return false;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000363
Nate Begemancffc32b2005-08-18 07:30:46 +0000364 if (Opcode == ISD::SHL) {
365 // apply shift left to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000366 if (isShiftMask) Mask = Mask << Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000367 // determine which bits are made indeterminant by shift
368 Indeterminant = ~(0xFFFFFFFFu << Shift);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000369 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000370 // apply shift right to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000371 if (isShiftMask) Mask = Mask >> Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000372 // determine which bits are made indeterminant by shift
373 Indeterminant = ~(0xFFFFFFFFu >> Shift);
374 // adjust for the left rotate
375 Shift = 32 - Shift;
Nate Begemanf42f1332006-09-22 05:01:56 +0000376 } else if (Opcode == ISD::ROTL) {
377 Indeterminant = 0;
Nate Begemancffc32b2005-08-18 07:30:46 +0000378 } else {
379 return false;
380 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000381
Nate Begemancffc32b2005-08-18 07:30:46 +0000382 // if the mask doesn't intersect any Indeterminant bits
383 if (Mask && !(Mask & Indeterminant)) {
Chris Lattner0949ed52006-05-12 16:29:37 +0000384 SH = Shift & 31;
Nate Begemancffc32b2005-08-18 07:30:46 +0000385 // make sure the mask is still a mask (wrap arounds may not be)
386 return isRunOfOnes(Mask, MB, ME);
387 }
388 return false;
389}
390
Nate Begeman02b88a42005-08-19 00:38:14 +0000391/// SelectBitfieldInsert - turn an or of two masked values into
392/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000393SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000394 SDValue Op0 = N->getOperand(0);
395 SDValue Op1 = N->getOperand(1);
Dale Johannesened2eee62009-02-06 01:31:28 +0000396 DebugLoc dl = N->getDebugLoc();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000397
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000398 APInt LKZ, LKO, RKZ, RKO;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000399 CurDAG->ComputeMaskedBits(Op0, LKZ, LKO);
400 CurDAG->ComputeMaskedBits(Op1, RKZ, RKO);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000401
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000402 unsigned TargetMask = LKZ.getZExtValue();
403 unsigned InsertMask = RKZ.getZExtValue();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000404
Nate Begeman4667f2c2006-05-08 17:38:32 +0000405 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
406 unsigned Op0Opc = Op0.getOpcode();
407 unsigned Op1Opc = Op1.getOpcode();
408 unsigned Value, SH = 0;
409 TargetMask = ~TargetMask;
410 InsertMask = ~InsertMask;
Nate Begeman77f361f2006-05-07 00:23:38 +0000411
Nate Begeman4667f2c2006-05-08 17:38:32 +0000412 // If the LHS has a foldable shift and the RHS does not, then swap it to the
413 // RHS so that we can fold the shift into the insert.
Nate Begeman77f361f2006-05-07 00:23:38 +0000414 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
415 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
416 Op0.getOperand(0).getOpcode() == ISD::SRL) {
417 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
418 Op1.getOperand(0).getOpcode() != ISD::SRL) {
419 std::swap(Op0, Op1);
420 std::swap(Op0Opc, Op1Opc);
Nate Begeman4667f2c2006-05-08 17:38:32 +0000421 std::swap(TargetMask, InsertMask);
Nate Begeman77f361f2006-05-07 00:23:38 +0000422 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000423 }
Nate Begeman4667f2c2006-05-08 17:38:32 +0000424 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
425 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
426 Op1.getOperand(0).getOpcode() != ISD::SRL) {
427 std::swap(Op0, Op1);
428 std::swap(Op0Opc, Op1Opc);
429 std::swap(TargetMask, InsertMask);
430 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000431 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000432
Nate Begeman77f361f2006-05-07 00:23:38 +0000433 unsigned MB, ME;
Chris Lattner0949ed52006-05-12 16:29:37 +0000434 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dale Johannesen5ca12462009-11-20 22:16:40 +0000435 SDValue Tmp1, Tmp2;
Nate Begeman77f361f2006-05-07 00:23:38 +0000436
437 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000438 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000439 Op1 = Op1.getOperand(0);
440 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
441 }
442 if (Op1Opc == ISD::AND) {
443 unsigned SHOpc = Op1.getOperand(0).getOpcode();
444 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000445 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000446 Op1 = Op1.getOperand(0).getOperand(0);
447 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
448 } else {
449 Op1 = Op1.getOperand(0);
450 }
451 }
Dale Johannesen5ca12462009-11-20 22:16:40 +0000452
Chris Lattner0949ed52006-05-12 16:29:37 +0000453 SH &= 31;
Dale Johannesen5ca12462009-11-20 22:16:40 +0000454 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
Evan Cheng0b828e02006-08-27 08:14:06 +0000455 getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +0000456 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman02b88a42005-08-19 00:38:14 +0000457 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000458 }
459 return 0;
460}
461
Chris Lattner2fbb4572005-08-21 18:50:37 +0000462/// SelectCC - Select a comparison of the specified values with the specified
463/// condition code, returning the CR# of the expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000464SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000465 ISD::CondCode CC, DebugLoc dl) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000466 // Always select the LHS.
Chris Lattnerc08f9022006-06-27 00:04:13 +0000467 unsigned Opc;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000468
Owen Anderson825b72b2009-08-11 20:47:22 +0000469 if (LHS.getValueType() == MVT::i32) {
Chris Lattner529c2332006-06-27 00:10:13 +0000470 unsigned Imm;
Chris Lattner3836dbd2006-09-20 04:25:47 +0000471 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
472 if (isInt32Immediate(RHS, Imm)) {
473 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000474 if (isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000475 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
476 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000477 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000478 if (isInt<16>((int)Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000479 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
480 getI32Imm(Imm & 0xFFFF)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000481
Chris Lattner3836dbd2006-09-20 04:25:47 +0000482 // For non-equality comparisons, the default code would materialize the
483 // constant, then compare against it, like this:
484 // lis r2, 4660
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000485 // ori r2, r2, 22136
Chris Lattner3836dbd2006-09-20 04:25:47 +0000486 // cmpw cr0, r3, r2
487 // Since we are just comparing for equality, we can emit this instead:
488 // xoris r0,r3,0x1234
489 // cmplwi cr0,r0,0x5678
490 // beq cr0,L6
Dan Gohman602b0c82009-09-25 18:54:59 +0000491 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS, dl, MVT::i32, LHS,
492 getI32Imm(Imm >> 16)), 0);
493 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, Xor,
494 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000495 }
496 Opc = PPC::CMPLW;
497 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer34247a02010-03-29 21:13:41 +0000498 if (isInt32Immediate(RHS, Imm) && isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000499 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
500 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000501 Opc = PPC::CMPLW;
502 } else {
503 short SImm;
504 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000505 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
506 getI32Imm((int)SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000507 0);
508 Opc = PPC::CMPW;
509 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000510 } else if (LHS.getValueType() == MVT::i64) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000511 uint64_t Imm;
Chris Lattner71176242006-09-20 04:33:27 +0000512 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000513 if (isInt64Immediate(RHS.getNode(), Imm)) {
Chris Lattner71176242006-09-20 04:33:27 +0000514 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000515 if (isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000516 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
517 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000518 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000519 if (isInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000520 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
521 getI32Imm(Imm & 0xFFFF)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000522
Chris Lattner71176242006-09-20 04:33:27 +0000523 // For non-equality comparisons, the default code would materialize the
524 // constant, then compare against it, like this:
525 // lis r2, 4660
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000526 // ori r2, r2, 22136
Chris Lattner71176242006-09-20 04:33:27 +0000527 // cmpd cr0, r3, r2
528 // Since we are just comparing for equality, we can emit this instead:
529 // xoris r0,r3,0x1234
530 // cmpldi cr0,r0,0x5678
531 // beq cr0,L6
Benjamin Kramer34247a02010-03-29 21:13:41 +0000532 if (isUInt<32>(Imm)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000533 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS8, dl, MVT::i64, LHS,
534 getI64Imm(Imm >> 16)), 0);
535 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, Xor,
536 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000537 }
538 }
539 Opc = PPC::CMPLD;
540 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer34247a02010-03-29 21:13:41 +0000541 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000542 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
543 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000544 Opc = PPC::CMPLD;
545 } else {
546 short SImm;
547 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000548 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
549 getI64Imm(SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000550 0);
551 Opc = PPC::CMPD;
552 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000553 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000554 Opc = PPC::FCMPUS;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000555 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000556 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
Chris Lattnerc08f9022006-06-27 00:04:13 +0000557 Opc = PPC::FCMPUD;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000558 }
Dan Gohman602b0c82009-09-25 18:54:59 +0000559 return SDValue(CurDAG->getMachineNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000560}
561
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000562static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000563 switch (CC) {
Chris Lattner5d634ce2006-05-25 16:54:16 +0000564 case ISD::SETUEQ:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000565 case ISD::SETONE:
566 case ISD::SETOLE:
567 case ISD::SETOGE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000568 llvm_unreachable("Should be lowered by legalize!");
569 default: llvm_unreachable("Unknown condition!");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000570 case ISD::SETOEQ:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000571 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattner5d634ce2006-05-25 16:54:16 +0000572 case ISD::SETUNE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000573 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000574 case ISD::SETOLT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000575 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000576 case ISD::SETULE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000577 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000578 case ISD::SETOGT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000579 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000580 case ISD::SETUGE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000581 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000582 case ISD::SETO: return PPC::PRED_NU;
583 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000584 // These two are invalid for floating point. Assume we have int.
585 case ISD::SETULT: return PPC::PRED_LT;
586 case ISD::SETUGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000587 }
Chris Lattner2fbb4572005-08-21 18:50:37 +0000588}
589
Chris Lattner64906a02005-08-25 20:08:18 +0000590/// getCRIdxForSetCC - Return the index of the condition register field
591/// associated with the SetCC condition, and whether or not the field is
592/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000593///
594/// If this returns with Other != -1, then the returned comparison is an or of
595/// two simpler comparisons. In this case, Invert is guaranteed to be false.
596static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
597 Invert = false;
598 Other = -1;
Chris Lattner64906a02005-08-25 20:08:18 +0000599 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000600 default: llvm_unreachable("Unknown condition!");
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000601 case ISD::SETOLT:
602 case ISD::SETLT: return 0; // Bit #0 = SETOLT
603 case ISD::SETOGT:
604 case ISD::SETGT: return 1; // Bit #1 = SETOGT
605 case ISD::SETOEQ:
606 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
607 case ISD::SETUO: return 3; // Bit #3 = SETUO
Chris Lattner64906a02005-08-25 20:08:18 +0000608 case ISD::SETUGE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000609 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Chris Lattner64906a02005-08-25 20:08:18 +0000610 case ISD::SETULE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000611 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000612 case ISD::SETUNE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000613 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
614 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000615 case ISD::SETUEQ:
616 case ISD::SETOGE:
617 case ISD::SETOLE:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000618 case ISD::SETONE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000619 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000620 // These are invalid for floating point. Assume integer.
621 case ISD::SETULT: return 0;
622 case ISD::SETUGT: return 1;
Chris Lattner64906a02005-08-25 20:08:18 +0000623 }
Chris Lattner64906a02005-08-25 20:08:18 +0000624}
Chris Lattner9944b762005-08-21 22:31:09 +0000625
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000626SDNode *PPCDAGToDAGISel::SelectSETCC(SDNode *N) {
Dale Johannesena05dca42009-02-04 23:02:30 +0000627 DebugLoc dl = N->getDebugLoc();
Chris Lattner222adac2005-10-06 19:03:35 +0000628 unsigned Imm;
629 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Roman Divacky8e9d6722011-06-20 15:28:39 +0000630 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
631 bool isPPC64 = (PtrVT == MVT::i64);
632
Chris Lattnerc08f9022006-06-27 00:04:13 +0000633 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner222adac2005-10-06 19:03:35 +0000634 // We can codegen setcc op, imm very efficiently compared to a brcond.
635 // Check for those cases here.
636 // setcc op, 0
637 if (Imm == 0) {
Dan Gohman475871a2008-07-27 21:46:04 +0000638 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000639 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000640 default: break;
Evan Cheng0b828e02006-08-27 08:14:06 +0000641 case ISD::SETEQ: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000642 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000643 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000644 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000645 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000646 case ISD::SETNE: {
Roman Divacky8e9d6722011-06-20 15:28:39 +0000647 if (isPPC64) break;
Dan Gohman475871a2008-07-27 21:46:04 +0000648 SDValue AD =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000649 SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000650 Op, getI32Imm(~0U)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000651 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000652 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000653 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000654 case ISD::SETLT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000655 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000656 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000657 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000658 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000659 SDValue T =
Dan Gohman602b0c82009-09-25 18:54:59 +0000660 SDValue(CurDAG->getMachineNode(PPC::NEG, dl, MVT::i32, Op), 0);
661 T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000662 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000663 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000664 }
665 }
Chris Lattner222adac2005-10-06 19:03:35 +0000666 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman475871a2008-07-27 21:46:04 +0000667 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000668 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000669 default: break;
670 case ISD::SETEQ:
Roman Divacky8e9d6722011-06-20 15:28:39 +0000671 if (isPPC64) break;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000672 Op = SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000673 Op, getI32Imm(1)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000674 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
675 SDValue(CurDAG->getMachineNode(PPC::LI, dl,
Dan Gohman602b0c82009-09-25 18:54:59 +0000676 MVT::i32,
677 getI32Imm(0)), 0),
Dale Johannesena05dca42009-02-04 23:02:30 +0000678 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000679 case ISD::SETNE: {
Roman Divacky8e9d6722011-06-20 15:28:39 +0000680 if (isPPC64) break;
Dan Gohman602b0c82009-09-25 18:54:59 +0000681 Op = SDValue(CurDAG->getMachineNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000682 SDNode *AD = CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000683 Op, getI32Imm(~0U));
Owen Anderson825b72b2009-08-11 20:47:22 +0000684 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
Dan Gohman475871a2008-07-27 21:46:04 +0000685 Op, SDValue(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000686 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000687 case ISD::SETLT: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000688 SDValue AD = SDValue(CurDAG->getMachineNode(PPC::ADDI, dl, MVT::i32, Op,
689 getI32Imm(1)), 0);
690 SDValue AN = SDValue(CurDAG->getMachineNode(PPC::AND, dl, MVT::i32, AD,
691 Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000692 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000693 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000694 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000695 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000696 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000697 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
Dale Johannesena05dca42009-02-04 23:02:30 +0000698 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000699 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000700 getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000701 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000702 }
Chris Lattner222adac2005-10-06 19:03:35 +0000703 }
704 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000705
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000706 SDValue LHS = N->getOperand(0);
707 SDValue RHS = N->getOperand(1);
708
709 // Altivec Vector compare instructions do not set any CR register by default
710 if (LHS.getValueType().isVector()) {
711 unsigned int Opc;
712 if (LHS.getValueType() == MVT::v16i8)
713 Opc = PPC::VCMPEQUB;
714 else if (LHS.getValueType() == MVT::v4i32)
715 Opc = PPC::VCMPEQUW;
716 else if (LHS.getValueType() == MVT::v8i16)
717 Opc = PPC::VCMPEQUH;
718 else if (LHS.getValueType() == MVT::v4f32)
719 Opc = PPC::VCMPEQFP;
720 else
721 llvm_unreachable("Invalid vector compare type: should be expanded by legalize");
722 return CurDAG->SelectNodeTo(N, Opc, LHS.getValueType(), LHS, RHS);
723 }
724
Chris Lattner222adac2005-10-06 19:03:35 +0000725 bool Inv;
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000726 int OtherCondIdx;
727 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000728 SDValue CCReg = SelectCC(LHS, RHS, CC, dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000729 SDValue IntCR;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000730
Chris Lattner222adac2005-10-06 19:03:35 +0000731 // Force the ccreg into CR7.
Owen Anderson825b72b2009-08-11 20:47:22 +0000732 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000733
Dan Gohman475871a2008-07-27 21:46:04 +0000734 SDValue InFlag(0, 0); // Null incoming flag value.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000735 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000736 InFlag).getValue(1);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000737
Hal Finkelbd5cafd2012-06-11 19:57:01 +0000738 if (PPCSubTarget.hasMFOCRF() && OtherCondIdx == -1)
Dan Gohman602b0c82009-09-25 18:54:59 +0000739 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
740 CCReg), 0);
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000741 else
Dale Johannesen5f07d522010-05-20 17:48:26 +0000742 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
743 CR7Reg, CCReg), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000744
Dan Gohman475871a2008-07-27 21:46:04 +0000745 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Evan Cheng0b828e02006-08-27 08:14:06 +0000746 getI32Imm(31), getI32Imm(31) };
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000747 if (OtherCondIdx == -1 && !Inv)
Owen Anderson825b72b2009-08-11 20:47:22 +0000748 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000749
750 // Get the specified bit.
Dan Gohman475871a2008-07-27 21:46:04 +0000751 SDValue Tmp =
Dan Gohman602b0c82009-09-25 18:54:59 +0000752 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000753 if (Inv) {
754 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Owen Anderson825b72b2009-08-11 20:47:22 +0000755 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000756 }
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000757
758 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
759 // We already got the bit for the first part of the comparison (e.g. SETULE).
760
761 // Get the other bit of the comparison.
762 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000763 SDValue OtherCond =
Dan Gohman602b0c82009-09-25 18:54:59 +0000764 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000765
Owen Anderson825b72b2009-08-11 20:47:22 +0000766 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Chris Lattner222adac2005-10-06 19:03:35 +0000767}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000768
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000769
Chris Lattnera5a91b12005-08-17 19:33:03 +0000770// Select - Convert the specified operand from a target-independent to a
771// target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000772SDNode *PPCDAGToDAGISel::Select(SDNode *N) {
773 DebugLoc dl = N->getDebugLoc();
Dan Gohmane8be6c62008-07-17 19:10:17 +0000774 if (N->isMachineOpcode())
Evan Cheng64a752f2006-08-11 09:08:15 +0000775 return NULL; // Already selected.
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000776
Chris Lattnera5a91b12005-08-17 19:33:03 +0000777 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000778 default: break;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000779
Jim Laskey78f97f32006-12-12 13:23:43 +0000780 case ISD::Constant: {
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 if (N->getValueType(0) == MVT::i64) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000782 // Get 64 bit value.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000783 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Jim Laskey78f97f32006-12-12 13:23:43 +0000784 // Assume no remaining bits.
785 unsigned Remainder = 0;
786 // Assume no shift required.
787 unsigned Shift = 0;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000788
Jim Laskey78f97f32006-12-12 13:23:43 +0000789 // If it can't be represented as a 32 bit value.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000790 if (!isInt<32>(Imm)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000791 Shift = CountTrailingZeros_64(Imm);
792 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000793
Jim Laskey78f97f32006-12-12 13:23:43 +0000794 // If the shifted value fits 32 bits.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000795 if (isInt<32>(ImmSh)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000796 // Go with the shifted value.
797 Imm = ImmSh;
798 } else {
799 // Still stuck with a 64 bit value.
800 Remainder = Imm;
801 Shift = 32;
802 Imm >>= 32;
803 }
804 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000805
Jim Laskey78f97f32006-12-12 13:23:43 +0000806 // Intermediate operand.
807 SDNode *Result;
808
809 // Handle first 32 bits.
810 unsigned Lo = Imm & 0xFFFF;
811 unsigned Hi = (Imm >> 16) & 0xFFFF;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000812
Jim Laskey78f97f32006-12-12 13:23:43 +0000813 // Simple value.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000814 if (isInt<16>(Imm)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000815 // Just the Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000816 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000817 } else if (Lo) {
818 // Handle the Hi bits.
819 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dan Gohman602b0c82009-09-25 18:54:59 +0000820 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000821 // And Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000822 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
823 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000824 } else {
825 // Just the Hi bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000826 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000827 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000828
Jim Laskey78f97f32006-12-12 13:23:43 +0000829 // If no shift, we're done.
830 if (!Shift) return Result;
831
832 // Shift for next step if the upper 32-bits were not zero.
833 if (Imm) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000834 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
835 SDValue(Result, 0),
836 getI32Imm(Shift),
837 getI32Imm(63 - Shift));
Jim Laskey78f97f32006-12-12 13:23:43 +0000838 }
839
840 // Add in the last bits as required.
841 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000842 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64,
843 SDValue(Result, 0), getI32Imm(Hi));
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000844 }
Jim Laskey78f97f32006-12-12 13:23:43 +0000845 if ((Lo = Remainder & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000846 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
847 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000848 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000849
Jim Laskey78f97f32006-12-12 13:23:43 +0000850 return Result;
851 }
852 break;
853 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000854
Evan Cheng34167212006-02-09 00:37:58 +0000855 case ISD::SETCC:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000856 return SelectSETCC(N);
Evan Cheng34167212006-02-09 00:37:58 +0000857 case PPCISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +0000858 return getGlobalBaseReg();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000859
Chris Lattnere28e40a2005-08-25 00:45:43 +0000860 case ISD::FrameIndex: {
861 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000862 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
863 unsigned Opc = N->getValueType(0) == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000864 if (N->hasOneUse())
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000865 return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), TFI,
Evan Cheng95514ba2006-08-26 08:00:10 +0000866 getSmallIPtrImm(0));
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000867 return CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI,
Dan Gohman602b0c82009-09-25 18:54:59 +0000868 getSmallIPtrImm(0));
Chris Lattnere28e40a2005-08-25 00:45:43 +0000869 }
Chris Lattner6d92cad2006-03-26 10:06:40 +0000870
871 case PPCISD::MFCR: {
Dan Gohman475871a2008-07-27 21:46:04 +0000872 SDValue InFlag = N->getOperand(1);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000873 // Use MFOCRF if supported.
Hal Finkelbd5cafd2012-06-11 19:57:01 +0000874 if (PPCSubTarget.hasMFOCRF())
Dan Gohman602b0c82009-09-25 18:54:59 +0000875 return CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32,
876 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000877 else
Dale Johannesen5f07d522010-05-20 17:48:26 +0000878 return CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
879 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000880 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000881
Chris Lattner88add102005-09-28 22:50:24 +0000882 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +0000883 // FIXME: since this depends on the setting of the carry flag from the srawi
884 // we should really be making notes about that for the scheduler.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000885 // FIXME: It sure would be nice if we could cheaply recognize the
Nate Begeman405e3ec2005-10-21 00:02:42 +0000886 // srl/add/sra pattern the dag combiner will generate for this as
887 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +0000888 unsigned Imm;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000889 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000890 SDValue N0 = N->getOperand(0);
Chris Lattner8784a232005-08-25 17:50:06 +0000891 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000892 SDNode *Op =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000893 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000894 N0, getI32Imm(Log2_32(Imm)));
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000895 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +0000896 SDValue(Op, 0), SDValue(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +0000897 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000898 SDNode *Op =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000899 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000900 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman475871a2008-07-27 21:46:04 +0000901 SDValue PT =
Dan Gohman602b0c82009-09-25 18:54:59 +0000902 SDValue(CurDAG->getMachineNode(PPC::ADDZE, dl, MVT::i32,
903 SDValue(Op, 0), SDValue(Op, 1)),
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000904 0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000905 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +0000906 }
907 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000908
Chris Lattner237733e2005-09-29 23:33:31 +0000909 // Other cases are autogenerated.
910 break;
Chris Lattner047b9522005-08-25 22:04:30 +0000911 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000912
Chris Lattner4eab7142006-11-10 02:08:47 +0000913 case ISD::LOAD: {
914 // Handle preincrement loads.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000915 LoadSDNode *LD = cast<LoadSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +0000916 EVT LoadedVT = LD->getMemoryVT();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000917
Chris Lattner4eab7142006-11-10 02:08:47 +0000918 // Normal loads are handled by code generated from the .td file.
919 if (LD->getAddressingMode() != ISD::PRE_INC)
920 break;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000921
Dan Gohman475871a2008-07-27 21:46:04 +0000922 SDValue Offset = LD->getOffset();
Chris Lattner5b3bbc72006-11-11 04:53:30 +0000923 if (isa<ConstantSDNode>(Offset) ||
924 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000925
Chris Lattner0851b4f2006-11-15 19:55:13 +0000926 unsigned Opcode;
927 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
Owen Anderson825b72b2009-08-11 20:47:22 +0000928 if (LD->getValueType(0) != MVT::i64) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000929 // Handle PPC32 integer and normal FP loads.
Owen Anderson825b72b2009-08-11 20:47:22 +0000930 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
931 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000932 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000933 case MVT::f64: Opcode = PPC::LFDU; break;
934 case MVT::f32: Opcode = PPC::LFSU; break;
935 case MVT::i32: Opcode = PPC::LWZU; break;
936 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
937 case MVT::i1:
938 case MVT::i8: Opcode = PPC::LBZU; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +0000939 }
940 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000941 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
942 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
943 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000944 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000945 case MVT::i64: Opcode = PPC::LDU; break;
946 case MVT::i32: Opcode = PPC::LWZU8; break;
947 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
948 case MVT::i1:
949 case MVT::i8: Opcode = PPC::LBZU8; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +0000950 }
951 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000952
Dan Gohman475871a2008-07-27 21:46:04 +0000953 SDValue Chain = LD->getChain();
954 SDValue Base = LD->getBasePtr();
Dan Gohman475871a2008-07-27 21:46:04 +0000955 SDValue Ops[] = { Offset, Base, Chain };
Dan Gohman602b0c82009-09-25 18:54:59 +0000956 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
957 PPCLowering.getPointerTy(),
958 MVT::Other, Ops, 3);
Chris Lattner4eab7142006-11-10 02:08:47 +0000959 } else {
Hal Finkel0fcdd8b2012-06-20 15:43:03 +0000960 unsigned Opcode;
961 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
962 if (LD->getValueType(0) != MVT::i64) {
963 // Handle PPC32 integer and normal FP loads.
964 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
965 switch (LoadedVT.getSimpleVT().SimpleTy) {
966 default: llvm_unreachable("Invalid PPC load type!");
967 case MVT::f64: Opcode = PPC::LFDUX; break;
968 case MVT::f32: Opcode = PPC::LFSUX; break;
969 case MVT::i32: Opcode = PPC::LWZUX; break;
970 case MVT::i16: Opcode = isSExt ? PPC::LHAUX : PPC::LHZUX; break;
971 case MVT::i1:
972 case MVT::i8: Opcode = PPC::LBZUX; break;
973 }
974 } else {
975 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
976 assert((!isSExt || LoadedVT == MVT::i16 || LoadedVT == MVT::i32) &&
977 "Invalid sext update load");
978 switch (LoadedVT.getSimpleVT().SimpleTy) {
979 default: llvm_unreachable("Invalid PPC load type!");
980 case MVT::i64: Opcode = PPC::LDUX; break;
981 case MVT::i32: Opcode = isSExt ? PPC::LWAUX : PPC::LWZUX8; break;
982 case MVT::i16: Opcode = isSExt ? PPC::LHAUX8 : PPC::LHZUX8; break;
983 case MVT::i1:
984 case MVT::i8: Opcode = PPC::LBZUX8; break;
985 }
986 }
987
988 SDValue Chain = LD->getChain();
989 SDValue Base = LD->getBasePtr();
990 SDValue Ops[] = { Offset, Base, Chain };
991 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
992 PPCLowering.getPointerTy(),
993 MVT::Other, Ops, 3);
Chris Lattner4eab7142006-11-10 02:08:47 +0000994 }
995 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000996
Nate Begemancffc32b2005-08-18 07:30:46 +0000997 case ISD::AND: {
Nate Begemanf42f1332006-09-22 05:01:56 +0000998 unsigned Imm, Imm2, SH, MB, ME;
Hal Finkel97d047d2012-08-28 02:10:15 +0000999 uint64_t Imm64;
Nate Begemanf42f1332006-09-22 05:01:56 +00001000
Nate Begemancffc32b2005-08-18 07:30:46 +00001001 // If this is an and of a value rotated between 0 and 31 bits and then and'd
1002 // with a mask, emit rlwinm
Chris Lattnerc08f9022006-06-27 00:04:13 +00001003 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001004 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001005 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001006 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001007 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemancffc32b2005-08-18 07:30:46 +00001008 }
Nate Begemanf42f1332006-09-22 05:01:56 +00001009 // If this is just a masked value where the input is not handled above, and
1010 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
1011 if (isInt32Immediate(N->getOperand(1), Imm) &&
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001012 isRunOfOnes(Imm, MB, ME) &&
Nate Begemanf42f1332006-09-22 05:01:56 +00001013 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman475871a2008-07-27 21:46:04 +00001014 SDValue Val = N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001015 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001016 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemanf42f1332006-09-22 05:01:56 +00001017 }
Hal Finkel97d047d2012-08-28 02:10:15 +00001018 // If this is a 64-bit zero-extension mask, emit rldicl.
1019 if (isInt64Immediate(N->getOperand(1).getNode(), Imm64) &&
1020 isMask_64(Imm64)) {
1021 SDValue Val = N->getOperand(0);
1022 MB = 64 - CountTrailingOnes_64(Imm64);
1023 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB) };
1024 return CurDAG->SelectNodeTo(N, PPC::RLDICL, MVT::i64, Ops, 3);
1025 }
Nate Begemanf42f1332006-09-22 05:01:56 +00001026 // AND X, 0 -> 0, not "rlwinm 32".
1027 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001028 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Nate Begemanf42f1332006-09-22 05:01:56 +00001029 return NULL;
1030 }
Nate Begeman50fb3c42005-12-24 01:00:15 +00001031 // ISD::OR doesn't get all the bitfield insertion fun.
1032 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001033 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman50fb3c42005-12-24 01:00:15 +00001034 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001035 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +00001036 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +00001037 Imm = ~(Imm^Imm2);
1038 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001039 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001040 N->getOperand(0).getOperand(1),
1041 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +00001042 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman50fb3c42005-12-24 01:00:15 +00001043 }
1044 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001045
Chris Lattner237733e2005-09-29 23:33:31 +00001046 // Other cases are autogenerated.
1047 break;
Nate Begemancffc32b2005-08-18 07:30:46 +00001048 }
Nate Begeman02b88a42005-08-19 00:38:14 +00001049 case ISD::OR:
Owen Anderson825b72b2009-08-11 20:47:22 +00001050 if (N->getValueType(0) == MVT::i32)
Chris Lattnerccbe2ec2006-08-15 23:48:22 +00001051 if (SDNode *I = SelectBitfieldInsert(N))
1052 return I;
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001053
Chris Lattner237733e2005-09-29 23:33:31 +00001054 // Other cases are autogenerated.
1055 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001056 case ISD::SHL: {
1057 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001058 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001059 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001060 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001061 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001062 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001063 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001064
Nate Begeman2d5aff72005-10-19 18:42:01 +00001065 // Other cases are autogenerated.
1066 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001067 }
1068 case ISD::SRL: {
1069 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001070 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001071 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001072 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001073 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001074 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001075 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001076
Nate Begeman2d5aff72005-10-19 18:42:01 +00001077 // Other cases are autogenerated.
1078 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001079 }
Chris Lattner13794f52005-08-26 18:46:49 +00001080 case ISD::SELECT_CC: {
1081 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
Roman Divacky8e9d6722011-06-20 15:28:39 +00001082 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
1083 bool isPPC64 = (PtrVT == MVT::i64);
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001084
Chris Lattnerc08f9022006-06-27 00:04:13 +00001085 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Roman Divacky8e9d6722011-06-20 15:28:39 +00001086 if (!isPPC64)
1087 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1088 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1089 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1090 if (N1C->isNullValue() && N3C->isNullValue() &&
1091 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
1092 // FIXME: Implement this optzn for PPC64.
1093 N->getValueType(0) == MVT::i32) {
1094 SDNode *Tmp =
1095 CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
1096 N->getOperand(0), getI32Imm(~0U));
1097 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
1098 SDValue(Tmp, 0), N->getOperand(0),
1099 SDValue(Tmp, 1));
1100 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001101
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001102 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00001103 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001104
Chris Lattner919c0322005-10-01 01:35:02 +00001105 unsigned SelectCCOp;
Owen Anderson825b72b2009-08-11 20:47:22 +00001106 if (N->getValueType(0) == MVT::i32)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001107 SelectCCOp = PPC::SELECT_CC_I4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001108 else if (N->getValueType(0) == MVT::i64)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001109 SelectCCOp = PPC::SELECT_CC_I8;
Owen Anderson825b72b2009-08-11 20:47:22 +00001110 else if (N->getValueType(0) == MVT::f32)
Chris Lattner919c0322005-10-01 01:35:02 +00001111 SelectCCOp = PPC::SELECT_CC_F4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001112 else if (N->getValueType(0) == MVT::f64)
Chris Lattner919c0322005-10-01 01:35:02 +00001113 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner710ff322006-04-08 22:45:08 +00001114 else
1115 SelectCCOp = PPC::SELECT_CC_VRRC;
1116
Dan Gohman475871a2008-07-27 21:46:04 +00001117 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Evan Cheng0b828e02006-08-27 08:14:06 +00001118 getI32Imm(BROpc) };
1119 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattner13794f52005-08-26 18:46:49 +00001120 }
Chris Lattner18258c62006-11-17 22:37:34 +00001121 case PPCISD::COND_BRANCH: {
Dan Gohmancbb7ab22008-11-05 17:16:24 +00001122 // Op #0 is the Chain.
Chris Lattner18258c62006-11-17 22:37:34 +00001123 // Op #1 is the PPC::PRED_* number.
1124 // Op #2 is the CR#
1125 // Op #3 is the Dest MBB
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001126 // Op #4 is the Flag.
Evan Cheng2bda17c2007-06-29 01:25:06 +00001127 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman475871a2008-07-27 21:46:04 +00001128 SDValue Pred =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001129 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman475871a2008-07-27 21:46:04 +00001130 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Chris Lattner18258c62006-11-17 22:37:34 +00001131 N->getOperand(0), N->getOperand(4) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001132 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
Chris Lattner18258c62006-11-17 22:37:34 +00001133 }
Nate Begeman81e80972006-03-17 01:40:33 +00001134 case ISD::BR_CC: {
Chris Lattner2fbb4572005-08-21 18:50:37 +00001135 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001136 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001137 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Cheng0b828e02006-08-27 08:14:06 +00001138 N->getOperand(4), N->getOperand(0) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001139 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001140 }
Nate Begeman37efe672006-04-22 18:53:45 +00001141 case ISD::BRIND: {
Chris Lattnercf006312006-06-10 01:15:02 +00001142 // FIXME: Should custom lower this.
Dan Gohman475871a2008-07-27 21:46:04 +00001143 SDValue Chain = N->getOperand(0);
1144 SDValue Target = N->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001145 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Roman Divacky0c9b5592011-06-03 15:47:49 +00001146 unsigned Reg = Target.getValueType() == MVT::i32 ? PPC::BCTR : PPC::BCTR8;
Hal Finkel67724522011-12-08 04:36:44 +00001147 Chain = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, Target,
Dan Gohman602b0c82009-09-25 18:54:59 +00001148 Chain), 0);
Roman Divacky0c9b5592011-06-03 15:47:49 +00001149 return CurDAG->SelectNodeTo(N, Reg, MVT::Other, Chain);
Nate Begeman37efe672006-04-22 18:53:45 +00001150 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001151 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001152
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001153 return SelectCode(N);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001154}
1155
1156
Chris Lattnercf006312006-06-10 01:15:02 +00001157
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001158/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001159/// PowerPC-specific DAG, ready for instruction scheduling.
1160///
Evan Chengc4c62572006-03-13 23:20:37 +00001161FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman1d9d7422005-10-18 00:28:58 +00001162 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001163}
1164