blob: f965ba6c1453605968b954526d641c43b687412f [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
Dan Gohmanad2afc22009-07-31 18:16:33 +000056 InsertVRSaveCode(MF);
Chris Lattner4bb18952006-03-16 18:25:23 +000057 return true;
Chris Lattner4416f1a2005-08-19 22:38:53 +000058 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000059
Chris Lattnera5a91b12005-08-17 19:33:03 +000060 /// getI32Imm - Return a target constant with the specified value, of type
61 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +000062 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000063 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnera5a91b12005-08-17 19:33:03 +000064 }
Chris Lattner4416f1a2005-08-19 22:38:53 +000065
Chris Lattnerc08f9022006-06-27 00:04:13 +000066 /// getI64Imm - Return a target constant with the specified value, of type
67 /// i64.
Dan Gohman475871a2008-07-27 21:46:04 +000068 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000069 return CurDAG->getTargetConstant(Imm, MVT::i64);
Chris Lattnerc08f9022006-06-27 00:04:13 +000070 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000071
Chris Lattnerc08f9022006-06-27 00:04:13 +000072 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman475871a2008-07-27 21:46:04 +000073 inline SDValue getSmallIPtrImm(unsigned Imm) {
Chris Lattnerc08f9022006-06-27 00:04:13 +000074 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
75 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000076
77 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
Nate Begemanf42f1332006-09-22 05:01:56 +000078 /// with any number of 0s on either side. The 1s are allowed to wrap from
79 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
80 /// 0x0F0F0000 is not, since all 1s are not contiguous.
81 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
82
83
84 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
85 /// rotate and mask opcode and mask operation.
Dale Johannesenb60d5192009-11-24 01:09:07 +000086 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask,
Nate Begemanf42f1332006-09-22 05:01:56 +000087 unsigned &SH, unsigned &MB, unsigned &ME);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000088
Chris Lattner4416f1a2005-08-19 22:38:53 +000089 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
90 /// base register. Return the virtual register that holds this value.
Evan Cheng9ade2182006-08-26 05:34:46 +000091 SDNode *getGlobalBaseReg();
Andrew Trick6e8f4c42010-12-24 04:28:06 +000092
Chris Lattnera5a91b12005-08-17 19:33:03 +000093 // Select - Convert the specified operand from a target-independent to a
94 // target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +000095 SDNode *Select(SDNode *N);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000096
Nate Begeman02b88a42005-08-19 00:38:14 +000097 SDNode *SelectBitfieldInsert(SDNode *N);
98
Chris Lattner2fbb4572005-08-21 18:50:37 +000099 /// SelectCC - Select a comparison of the specified values with the
100 /// specified condition code, returning the CR# of the expression.
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000101 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000102
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000103 /// SelectAddrImm - Returns true if the address N can be represented by
104 /// a base register plus a signed 16-bit displacement [r+imm].
Chris Lattner52a261b2010-09-21 20:31:19 +0000105 bool SelectAddrImm(SDValue N, SDValue &Disp,
Dan Gohman475871a2008-07-27 21:46:04 +0000106 SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000107 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
108 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000109
Chris Lattner74531e42006-11-16 00:41:37 +0000110 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
111 /// immediate field. Because preinc imms have already been validated, just
112 /// accept it.
Chris Lattner52a261b2010-09-21 20:31:19 +0000113 bool SelectAddrImmOffs(SDValue N, SDValue &Out) const {
Hal Finkelac81cc32012-06-19 02:34:32 +0000114 if (isa<ConstantSDNode>(N)) {
115 Out = N;
116 return true;
117 }
118
119 return false;
120 }
121
122 /// SelectAddrIdxOffs - Return true if the operand is valid for a preinc
123 /// index field. Because preinc imms have already been validated, just
124 /// accept it.
125 bool SelectAddrIdxOffs(SDValue N, SDValue &Out) const {
Chris Lattner74531e42006-11-16 00:41:37 +0000126 Out = N;
127 return true;
128 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000129
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000130 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
131 /// represented as an indexed [r+r] operation. Returns false if it can
132 /// be represented by [r+imm], which are preferred.
Chris Lattner52a261b2010-09-21 20:31:19 +0000133 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000134 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
135 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000136
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000137 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
138 /// represented as an indexed [r+r] operation.
Chris Lattner52a261b2010-09-21 20:31:19 +0000139 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000140 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
141 }
Chris Lattner9944b762005-08-21 22:31:09 +0000142
Chris Lattnere5ba5802006-03-22 05:26:03 +0000143 /// SelectAddrImmShift - Returns true if the address N can be represented by
144 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
145 /// for use by STD and friends.
Chris Lattner52a261b2010-09-21 20:31:19 +0000146 bool SelectAddrImmShift(SDValue N, SDValue &Disp, SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000147 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
148 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000149
Chris Lattnere5d88612006-02-24 02:13:12 +0000150 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000151 /// inline asm expressions. It is always correct to compute the value into
152 /// a register. The case of adding a (possibly relocatable) constant to a
153 /// register can be improved, but it is wrong to substitute Reg+Reg for
154 /// Reg in an asm, because the load or store opcode would have to change.
155 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnere5d88612006-02-24 02:13:12 +0000156 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000157 std::vector<SDValue> &OutOps) {
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000158 OutOps.push_back(Op);
Chris Lattnere5d88612006-02-24 02:13:12 +0000159 return false;
160 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000161
Dan Gohmanad2afc22009-07-31 18:16:33 +0000162 void InsertVRSaveCode(MachineFunction &MF);
Chris Lattner4bb18952006-03-16 18:25:23 +0000163
Chris Lattnera5a91b12005-08-17 19:33:03 +0000164 virtual const char *getPassName() const {
165 return "PowerPC DAG->DAG Pattern Instruction Selection";
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000166 }
167
Chris Lattneraf165382005-09-13 22:03:06 +0000168// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000169#include "PPCGenDAGISel.inc"
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000170
Chris Lattnerbd937b92005-10-06 18:45:51 +0000171private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000172 SDNode *SelectSETCC(SDNode *N);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000173 };
174}
175
Chris Lattner4bb18952006-03-16 18:25:23 +0000176/// InsertVRSaveCode - Once the entire function has been instruction selected,
177/// all virtual registers are created and all machine instructions are built,
178/// check to see if we need to save/restore VRSAVE. If so, do it.
Dan Gohmanad2afc22009-07-31 18:16:33 +0000179void PPCDAGToDAGISel::InsertVRSaveCode(MachineFunction &Fn) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000180 // Check to see if this function uses vector registers, which means we have to
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000181 // save and restore the VRSAVE register and update it with the regs we use.
Chris Lattner1877ec92006-03-13 21:52:10 +0000182 //
Dan Gohmanf451cb82010-02-10 16:03:48 +0000183 // In this case, there will be virtual registers of vector type created
Chris Lattner1877ec92006-03-13 21:52:10 +0000184 // by the scheduler. Detect them now.
Chris Lattner1877ec92006-03-13 21:52:10 +0000185 bool HasVectorVReg = false;
Jakob Stoklund Olesenb2581352011-01-08 23:11:11 +0000186 for (unsigned i = 0, e = RegInfo->getNumVirtRegs(); i != e; ++i) {
187 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
188 if (RegInfo->getRegClass(Reg) == &PPC::VRRCRegClass) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000189 HasVectorVReg = true;
190 break;
191 }
Jakob Stoklund Olesenb2581352011-01-08 23:11:11 +0000192 }
Chris Lattner4bb18952006-03-16 18:25:23 +0000193 if (!HasVectorVReg) return; // nothing to do.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000194
Chris Lattner1877ec92006-03-13 21:52:10 +0000195 // If we have a vector register, we want to emit code into the entry and exit
196 // blocks to save and restore the VRSAVE register. We do this here (instead
197 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
198 //
199 // 1. This (trivially) reduces the load on the register allocator, by not
200 // having to represent the live range of the VRSAVE register.
201 // 2. This (more significantly) allows us to create a temporary virtual
202 // register to hold the saved VRSAVE value, allowing this temporary to be
203 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner4bb18952006-03-16 18:25:23 +0000204
205 // Create two vregs - one to hold the VRSAVE register that is live-in to the
206 // function and one for the value after having bits or'd into it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000207 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
208 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000209
Evan Chengc0f64ff2006-11-27 23:37:22 +0000210 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4bb18952006-03-16 18:25:23 +0000211 MachineBasicBlock &EntryBB = *Fn.begin();
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000212 DebugLoc dl;
Chris Lattner4bb18952006-03-16 18:25:23 +0000213 // Emit the following code into the entry block:
214 // InVRSAVE = MFVRSAVE
215 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
216 // MTVRSAVE UpdatedVRSAVE
217 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesen536a2f12009-02-13 02:27:39 +0000218 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
219 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattner69244302008-01-07 01:56:04 +0000220 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000221 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000222
Chris Lattner4bb18952006-03-16 18:25:23 +0000223 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner4bb18952006-03-16 18:25:23 +0000224 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000225 if (!BB->empty() && BB->back().isReturn()) {
Chris Lattner4bb18952006-03-16 18:25:23 +0000226 IP = BB->end(); --IP;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000227
Chris Lattner4bb18952006-03-16 18:25:23 +0000228 // Skip over all terminator instructions, which are part of the return
229 // sequence.
230 MachineBasicBlock::iterator I2 = IP;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000231 while (I2 != BB->begin() && (--I2)->isTerminator())
Chris Lattner4bb18952006-03-16 18:25:23 +0000232 IP = I2;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000233
Chris Lattner4bb18952006-03-16 18:25:23 +0000234 // Emit: MTVRSAVE InVRSave
Dale Johannesen536a2f12009-02-13 02:27:39 +0000235 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000236 }
Chris Lattner1877ec92006-03-13 21:52:10 +0000237 }
Chris Lattnerbd937b92005-10-06 18:45:51 +0000238}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000239
Chris Lattner4bb18952006-03-16 18:25:23 +0000240
Chris Lattner4416f1a2005-08-19 22:38:53 +0000241/// getGlobalBaseReg - Output the instructions required to put the
242/// base address to use for accessing globals into a register.
243///
Evan Cheng9ade2182006-08-26 05:34:46 +0000244SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000245 if (!GlobalBaseReg) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000246 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000247 // Insert the set of GlobalBaseReg into the first MBB of the function
Dan Gohmanbd51c672009-08-15 02:07:36 +0000248 MachineBasicBlock &FirstMBB = MF->front();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000249 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000250 DebugLoc dl;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000251
Owen Anderson825b72b2009-08-11 20:47:22 +0000252 if (PPCLowering.getPointerTy() == MVT::i32) {
Craig Topperc9099502012-04-20 06:31:50 +0000253 GlobalBaseReg = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Cameron Zwarich0113e4e2011-05-19 02:56:28 +0000254 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR));
Dale Johannesen536a2f12009-02-13 02:27:39 +0000255 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000256 } else {
Craig Topperc9099502012-04-20 06:31:50 +0000257 GlobalBaseReg = RegInfo->createVirtualRegister(&PPC::G8RCRegClass);
Cameron Zwarich0113e4e2011-05-19 02:56:28 +0000258 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8));
Dale Johannesen536a2f12009-02-13 02:27:39 +0000259 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000260 }
Chris Lattner4416f1a2005-08-19 22:38:53 +0000261 }
Gabor Greif93c53e52008-08-31 15:37:04 +0000262 return CurDAG->getRegister(GlobalBaseReg,
263 PPCLowering.getPointerTy()).getNode();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000264}
265
266/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
267/// or 64-bit immediate, and if the value can be accurately represented as a
268/// sign extension from a 16-bit value. If so, this returns true and the
269/// immediate.
270static bool isIntS16Immediate(SDNode *N, short &Imm) {
271 if (N->getOpcode() != ISD::Constant)
272 return false;
273
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000274 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000275 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000276 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000277 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000278 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000279}
280
Dan Gohman475871a2008-07-27 21:46:04 +0000281static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000282 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000283}
284
285
Chris Lattnerc08f9022006-06-27 00:04:13 +0000286/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
287/// operand. If so Imm will receive the 32-bit value.
288static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000289 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000290 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Nate Begeman0f3257a2005-08-18 05:00:13 +0000291 return true;
292 }
293 return false;
294}
295
Chris Lattnerc08f9022006-06-27 00:04:13 +0000296/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
297/// operand. If so Imm will receive the 64-bit value.
298static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000300 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000301 return true;
302 }
303 return false;
304}
305
306// isInt32Immediate - This method tests to see if a constant operand.
307// If so Imm will receive the 32 bit value.
Dan Gohman475871a2008-07-27 21:46:04 +0000308static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000309 return isInt32Immediate(N.getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000310}
311
312
313// isOpcWithIntImmediate - This method tests to see if the node is a specific
314// opcode and that it has a immediate integer right operand.
315// If so Imm will receive the 32 bit value.
316static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000317 return N->getOpcode() == Opc
318 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000319}
320
Nate Begemanf42f1332006-09-22 05:01:56 +0000321bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000322 if (isShiftedMask_32(Val)) {
323 // look for the first non-zero bit
324 MB = CountLeadingZeros_32(Val);
325 // look for the first zero bit after the run of ones
326 ME = CountLeadingZeros_32((Val - 1) ^ Val);
327 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000328 } else {
329 Val = ~Val; // invert mask
330 if (isShiftedMask_32(Val)) {
331 // effectively look for the first zero bit
332 ME = CountLeadingZeros_32(Val) - 1;
333 // effectively look for the first one bit after the run of zeros
334 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
335 return true;
336 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000337 }
338 // no run present
339 return false;
340}
341
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000342bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
343 bool isShiftMask, unsigned &SH,
Nate Begemanf42f1332006-09-22 05:01:56 +0000344 unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000345 // Don't even go down this path for i64, since different logic will be
346 // necessary for rldicl/rldicr/rldimi.
Owen Anderson825b72b2009-08-11 20:47:22 +0000347 if (N->getValueType(0) != MVT::i32)
Nate Begemanda32c9e2005-10-19 00:05:37 +0000348 return false;
349
Nate Begemancffc32b2005-08-18 07:30:46 +0000350 unsigned Shift = 32;
351 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
352 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000353 if (N->getNumOperands() != 2 ||
Gabor Greifba36cb52008-08-28 21:40:38 +0000354 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000355 return false;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000356
Nate Begemancffc32b2005-08-18 07:30:46 +0000357 if (Opcode == ISD::SHL) {
358 // apply shift left to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000359 if (isShiftMask) Mask = Mask << Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000360 // determine which bits are made indeterminant by shift
361 Indeterminant = ~(0xFFFFFFFFu << Shift);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000362 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000363 // apply shift right to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000364 if (isShiftMask) Mask = Mask >> Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000365 // determine which bits are made indeterminant by shift
366 Indeterminant = ~(0xFFFFFFFFu >> Shift);
367 // adjust for the left rotate
368 Shift = 32 - Shift;
Nate Begemanf42f1332006-09-22 05:01:56 +0000369 } else if (Opcode == ISD::ROTL) {
370 Indeterminant = 0;
Nate Begemancffc32b2005-08-18 07:30:46 +0000371 } else {
372 return false;
373 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000374
Nate Begemancffc32b2005-08-18 07:30:46 +0000375 // if the mask doesn't intersect any Indeterminant bits
376 if (Mask && !(Mask & Indeterminant)) {
Chris Lattner0949ed52006-05-12 16:29:37 +0000377 SH = Shift & 31;
Nate Begemancffc32b2005-08-18 07:30:46 +0000378 // make sure the mask is still a mask (wrap arounds may not be)
379 return isRunOfOnes(Mask, MB, ME);
380 }
381 return false;
382}
383
Nate Begeman02b88a42005-08-19 00:38:14 +0000384/// SelectBitfieldInsert - turn an or of two masked values into
385/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000386SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000387 SDValue Op0 = N->getOperand(0);
388 SDValue Op1 = N->getOperand(1);
Dale Johannesened2eee62009-02-06 01:31:28 +0000389 DebugLoc dl = N->getDebugLoc();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000390
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000391 APInt LKZ, LKO, RKZ, RKO;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000392 CurDAG->ComputeMaskedBits(Op0, LKZ, LKO);
393 CurDAG->ComputeMaskedBits(Op1, RKZ, RKO);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000394
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000395 unsigned TargetMask = LKZ.getZExtValue();
396 unsigned InsertMask = RKZ.getZExtValue();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000397
Nate Begeman4667f2c2006-05-08 17:38:32 +0000398 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
399 unsigned Op0Opc = Op0.getOpcode();
400 unsigned Op1Opc = Op1.getOpcode();
401 unsigned Value, SH = 0;
402 TargetMask = ~TargetMask;
403 InsertMask = ~InsertMask;
Nate Begeman77f361f2006-05-07 00:23:38 +0000404
Nate Begeman4667f2c2006-05-08 17:38:32 +0000405 // If the LHS has a foldable shift and the RHS does not, then swap it to the
406 // RHS so that we can fold the shift into the insert.
Nate Begeman77f361f2006-05-07 00:23:38 +0000407 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
408 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
409 Op0.getOperand(0).getOpcode() == ISD::SRL) {
410 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
411 Op1.getOperand(0).getOpcode() != ISD::SRL) {
412 std::swap(Op0, Op1);
413 std::swap(Op0Opc, Op1Opc);
Nate Begeman4667f2c2006-05-08 17:38:32 +0000414 std::swap(TargetMask, InsertMask);
Nate Begeman77f361f2006-05-07 00:23:38 +0000415 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000416 }
Nate Begeman4667f2c2006-05-08 17:38:32 +0000417 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
418 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
419 Op1.getOperand(0).getOpcode() != ISD::SRL) {
420 std::swap(Op0, Op1);
421 std::swap(Op0Opc, Op1Opc);
422 std::swap(TargetMask, InsertMask);
423 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000424 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000425
Nate Begeman77f361f2006-05-07 00:23:38 +0000426 unsigned MB, ME;
Chris Lattner0949ed52006-05-12 16:29:37 +0000427 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dale Johannesen5ca12462009-11-20 22:16:40 +0000428 SDValue Tmp1, Tmp2;
Nate Begeman77f361f2006-05-07 00:23:38 +0000429
430 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000431 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000432 Op1 = Op1.getOperand(0);
433 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
434 }
435 if (Op1Opc == ISD::AND) {
436 unsigned SHOpc = Op1.getOperand(0).getOpcode();
437 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000438 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000439 Op1 = Op1.getOperand(0).getOperand(0);
440 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
441 } else {
442 Op1 = Op1.getOperand(0);
443 }
444 }
Dale Johannesen5ca12462009-11-20 22:16:40 +0000445
Chris Lattner0949ed52006-05-12 16:29:37 +0000446 SH &= 31;
Dale Johannesen5ca12462009-11-20 22:16:40 +0000447 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
Evan Cheng0b828e02006-08-27 08:14:06 +0000448 getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +0000449 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman02b88a42005-08-19 00:38:14 +0000450 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000451 }
452 return 0;
453}
454
Chris Lattner2fbb4572005-08-21 18:50:37 +0000455/// SelectCC - Select a comparison of the specified values with the specified
456/// condition code, returning the CR# of the expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000457SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000458 ISD::CondCode CC, DebugLoc dl) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000459 // Always select the LHS.
Chris Lattnerc08f9022006-06-27 00:04:13 +0000460 unsigned Opc;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000461
Owen Anderson825b72b2009-08-11 20:47:22 +0000462 if (LHS.getValueType() == MVT::i32) {
Chris Lattner529c2332006-06-27 00:10:13 +0000463 unsigned Imm;
Chris Lattner3836dbd2006-09-20 04:25:47 +0000464 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
465 if (isInt32Immediate(RHS, Imm)) {
466 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000467 if (isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000468 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
469 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000470 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000471 if (isInt<16>((int)Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000472 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
473 getI32Imm(Imm & 0xFFFF)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000474
Chris Lattner3836dbd2006-09-20 04:25:47 +0000475 // For non-equality comparisons, the default code would materialize the
476 // constant, then compare against it, like this:
477 // lis r2, 4660
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000478 // ori r2, r2, 22136
Chris Lattner3836dbd2006-09-20 04:25:47 +0000479 // cmpw cr0, r3, r2
480 // Since we are just comparing for equality, we can emit this instead:
481 // xoris r0,r3,0x1234
482 // cmplwi cr0,r0,0x5678
483 // beq cr0,L6
Dan Gohman602b0c82009-09-25 18:54:59 +0000484 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS, dl, MVT::i32, LHS,
485 getI32Imm(Imm >> 16)), 0);
486 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, Xor,
487 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000488 }
489 Opc = PPC::CMPLW;
490 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer34247a02010-03-29 21:13:41 +0000491 if (isInt32Immediate(RHS, Imm) && isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000492 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
493 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000494 Opc = PPC::CMPLW;
495 } else {
496 short SImm;
497 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000498 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
499 getI32Imm((int)SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000500 0);
501 Opc = PPC::CMPW;
502 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000503 } else if (LHS.getValueType() == MVT::i64) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000504 uint64_t Imm;
Chris Lattner71176242006-09-20 04:33:27 +0000505 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000506 if (isInt64Immediate(RHS.getNode(), Imm)) {
Chris Lattner71176242006-09-20 04:33:27 +0000507 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000508 if (isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000509 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
510 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000511 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000512 if (isInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000513 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
514 getI32Imm(Imm & 0xFFFF)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000515
Chris Lattner71176242006-09-20 04:33:27 +0000516 // For non-equality comparisons, the default code would materialize the
517 // constant, then compare against it, like this:
518 // lis r2, 4660
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000519 // ori r2, r2, 22136
Chris Lattner71176242006-09-20 04:33:27 +0000520 // cmpd cr0, r3, r2
521 // Since we are just comparing for equality, we can emit this instead:
522 // xoris r0,r3,0x1234
523 // cmpldi cr0,r0,0x5678
524 // beq cr0,L6
Benjamin Kramer34247a02010-03-29 21:13:41 +0000525 if (isUInt<32>(Imm)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000526 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS8, dl, MVT::i64, LHS,
527 getI64Imm(Imm >> 16)), 0);
528 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, Xor,
529 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000530 }
531 }
532 Opc = PPC::CMPLD;
533 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer34247a02010-03-29 21:13:41 +0000534 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000535 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
536 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000537 Opc = PPC::CMPLD;
538 } else {
539 short SImm;
540 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000541 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
542 getI64Imm(SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000543 0);
544 Opc = PPC::CMPD;
545 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000547 Opc = PPC::FCMPUS;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000548 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000549 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
Chris Lattnerc08f9022006-06-27 00:04:13 +0000550 Opc = PPC::FCMPUD;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000551 }
Dan Gohman602b0c82009-09-25 18:54:59 +0000552 return SDValue(CurDAG->getMachineNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000553}
554
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000555static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000556 switch (CC) {
Chris Lattner5d634ce2006-05-25 16:54:16 +0000557 case ISD::SETUEQ:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000558 case ISD::SETONE:
559 case ISD::SETOLE:
560 case ISD::SETOGE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000561 llvm_unreachable("Should be lowered by legalize!");
562 default: llvm_unreachable("Unknown condition!");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000563 case ISD::SETOEQ:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000564 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattner5d634ce2006-05-25 16:54:16 +0000565 case ISD::SETUNE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000566 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000567 case ISD::SETOLT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000568 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000569 case ISD::SETULE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000570 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000571 case ISD::SETOGT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000572 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000573 case ISD::SETUGE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000574 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000575 case ISD::SETO: return PPC::PRED_NU;
576 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000577 // These two are invalid for floating point. Assume we have int.
578 case ISD::SETULT: return PPC::PRED_LT;
579 case ISD::SETUGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000580 }
Chris Lattner2fbb4572005-08-21 18:50:37 +0000581}
582
Chris Lattner64906a02005-08-25 20:08:18 +0000583/// getCRIdxForSetCC - Return the index of the condition register field
584/// associated with the SetCC condition, and whether or not the field is
585/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000586///
587/// If this returns with Other != -1, then the returned comparison is an or of
588/// two simpler comparisons. In this case, Invert is guaranteed to be false.
589static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
590 Invert = false;
591 Other = -1;
Chris Lattner64906a02005-08-25 20:08:18 +0000592 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000593 default: llvm_unreachable("Unknown condition!");
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000594 case ISD::SETOLT:
595 case ISD::SETLT: return 0; // Bit #0 = SETOLT
596 case ISD::SETOGT:
597 case ISD::SETGT: return 1; // Bit #1 = SETOGT
598 case ISD::SETOEQ:
599 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
600 case ISD::SETUO: return 3; // Bit #3 = SETUO
Chris Lattner64906a02005-08-25 20:08:18 +0000601 case ISD::SETUGE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000602 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Chris Lattner64906a02005-08-25 20:08:18 +0000603 case ISD::SETULE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000604 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000605 case ISD::SETUNE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000606 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
607 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000608 case ISD::SETUEQ:
609 case ISD::SETOGE:
610 case ISD::SETOLE:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000611 case ISD::SETONE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000612 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000613 // These are invalid for floating point. Assume integer.
614 case ISD::SETULT: return 0;
615 case ISD::SETUGT: return 1;
Chris Lattner64906a02005-08-25 20:08:18 +0000616 }
Chris Lattner64906a02005-08-25 20:08:18 +0000617}
Chris Lattner9944b762005-08-21 22:31:09 +0000618
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000619SDNode *PPCDAGToDAGISel::SelectSETCC(SDNode *N) {
Dale Johannesena05dca42009-02-04 23:02:30 +0000620 DebugLoc dl = N->getDebugLoc();
Chris Lattner222adac2005-10-06 19:03:35 +0000621 unsigned Imm;
622 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Roman Divacky8e9d6722011-06-20 15:28:39 +0000623 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
624 bool isPPC64 = (PtrVT == MVT::i64);
625
Chris Lattnerc08f9022006-06-27 00:04:13 +0000626 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner222adac2005-10-06 19:03:35 +0000627 // We can codegen setcc op, imm very efficiently compared to a brcond.
628 // Check for those cases here.
629 // setcc op, 0
630 if (Imm == 0) {
Dan Gohman475871a2008-07-27 21:46:04 +0000631 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000632 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000633 default: break;
Evan Cheng0b828e02006-08-27 08:14:06 +0000634 case ISD::SETEQ: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000635 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000636 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000637 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000638 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000639 case ISD::SETNE: {
Roman Divacky8e9d6722011-06-20 15:28:39 +0000640 if (isPPC64) break;
Dan Gohman475871a2008-07-27 21:46:04 +0000641 SDValue AD =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000642 SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000643 Op, getI32Imm(~0U)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000644 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000645 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000646 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000647 case ISD::SETLT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000648 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000649 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000650 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000651 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000652 SDValue T =
Dan Gohman602b0c82009-09-25 18:54:59 +0000653 SDValue(CurDAG->getMachineNode(PPC::NEG, dl, MVT::i32, Op), 0);
654 T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000655 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000656 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000657 }
658 }
Chris Lattner222adac2005-10-06 19:03:35 +0000659 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman475871a2008-07-27 21:46:04 +0000660 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000661 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000662 default: break;
663 case ISD::SETEQ:
Roman Divacky8e9d6722011-06-20 15:28:39 +0000664 if (isPPC64) break;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000665 Op = SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000666 Op, getI32Imm(1)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000667 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
668 SDValue(CurDAG->getMachineNode(PPC::LI, dl,
Dan Gohman602b0c82009-09-25 18:54:59 +0000669 MVT::i32,
670 getI32Imm(0)), 0),
Dale Johannesena05dca42009-02-04 23:02:30 +0000671 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000672 case ISD::SETNE: {
Roman Divacky8e9d6722011-06-20 15:28:39 +0000673 if (isPPC64) break;
Dan Gohman602b0c82009-09-25 18:54:59 +0000674 Op = SDValue(CurDAG->getMachineNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000675 SDNode *AD = CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000676 Op, getI32Imm(~0U));
Owen Anderson825b72b2009-08-11 20:47:22 +0000677 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
Dan Gohman475871a2008-07-27 21:46:04 +0000678 Op, SDValue(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000679 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000680 case ISD::SETLT: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000681 SDValue AD = SDValue(CurDAG->getMachineNode(PPC::ADDI, dl, MVT::i32, Op,
682 getI32Imm(1)), 0);
683 SDValue AN = SDValue(CurDAG->getMachineNode(PPC::AND, dl, MVT::i32, AD,
684 Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000685 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000686 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000687 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000688 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000689 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000690 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
Dale Johannesena05dca42009-02-04 23:02:30 +0000691 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000692 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000693 getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000694 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000695 }
Chris Lattner222adac2005-10-06 19:03:35 +0000696 }
697 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000698
Chris Lattner222adac2005-10-06 19:03:35 +0000699 bool Inv;
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000700 int OtherCondIdx;
701 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000702 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000703 SDValue IntCR;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000704
Chris Lattner222adac2005-10-06 19:03:35 +0000705 // Force the ccreg into CR7.
Owen Anderson825b72b2009-08-11 20:47:22 +0000706 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000707
Dan Gohman475871a2008-07-27 21:46:04 +0000708 SDValue InFlag(0, 0); // Null incoming flag value.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000709 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000710 InFlag).getValue(1);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000711
Hal Finkelbd5cafd2012-06-11 19:57:01 +0000712 if (PPCSubTarget.hasMFOCRF() && OtherCondIdx == -1)
Dan Gohman602b0c82009-09-25 18:54:59 +0000713 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
714 CCReg), 0);
Dale Johannesen5f07d522010-05-20 17:48:26 +0000715 else
716 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
717 CR7Reg, CCReg), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000718
Dan Gohman475871a2008-07-27 21:46:04 +0000719 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Evan Cheng0b828e02006-08-27 08:14:06 +0000720 getI32Imm(31), getI32Imm(31) };
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000721 if (OtherCondIdx == -1 && !Inv)
Owen Anderson825b72b2009-08-11 20:47:22 +0000722 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000723
724 // Get the specified bit.
Dan Gohman475871a2008-07-27 21:46:04 +0000725 SDValue Tmp =
Dan Gohman602b0c82009-09-25 18:54:59 +0000726 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000727 if (Inv) {
728 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Owen Anderson825b72b2009-08-11 20:47:22 +0000729 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000730 }
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000731
732 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
733 // We already got the bit for the first part of the comparison (e.g. SETULE).
734
735 // Get the other bit of the comparison.
736 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000737 SDValue OtherCond =
Dan Gohman602b0c82009-09-25 18:54:59 +0000738 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000739
Owen Anderson825b72b2009-08-11 20:47:22 +0000740 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Chris Lattner222adac2005-10-06 19:03:35 +0000741}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000742
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000743
Chris Lattnera5a91b12005-08-17 19:33:03 +0000744// Select - Convert the specified operand from a target-independent to a
745// target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000746SDNode *PPCDAGToDAGISel::Select(SDNode *N) {
747 DebugLoc dl = N->getDebugLoc();
Dan Gohmane8be6c62008-07-17 19:10:17 +0000748 if (N->isMachineOpcode())
Evan Cheng64a752f2006-08-11 09:08:15 +0000749 return NULL; // Already selected.
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000750
Chris Lattnera5a91b12005-08-17 19:33:03 +0000751 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000752 default: break;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000753
Jim Laskey78f97f32006-12-12 13:23:43 +0000754 case ISD::Constant: {
Owen Anderson825b72b2009-08-11 20:47:22 +0000755 if (N->getValueType(0) == MVT::i64) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000756 // Get 64 bit value.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000757 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Jim Laskey78f97f32006-12-12 13:23:43 +0000758 // Assume no remaining bits.
759 unsigned Remainder = 0;
760 // Assume no shift required.
761 unsigned Shift = 0;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000762
Jim Laskey78f97f32006-12-12 13:23:43 +0000763 // If it can't be represented as a 32 bit value.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000764 if (!isInt<32>(Imm)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000765 Shift = CountTrailingZeros_64(Imm);
766 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000767
Jim Laskey78f97f32006-12-12 13:23:43 +0000768 // If the shifted value fits 32 bits.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000769 if (isInt<32>(ImmSh)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000770 // Go with the shifted value.
771 Imm = ImmSh;
772 } else {
773 // Still stuck with a 64 bit value.
774 Remainder = Imm;
775 Shift = 32;
776 Imm >>= 32;
777 }
778 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000779
Jim Laskey78f97f32006-12-12 13:23:43 +0000780 // Intermediate operand.
781 SDNode *Result;
782
783 // Handle first 32 bits.
784 unsigned Lo = Imm & 0xFFFF;
785 unsigned Hi = (Imm >> 16) & 0xFFFF;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000786
Jim Laskey78f97f32006-12-12 13:23:43 +0000787 // Simple value.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000788 if (isInt<16>(Imm)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000789 // Just the Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000790 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000791 } else if (Lo) {
792 // Handle the Hi bits.
793 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dan Gohman602b0c82009-09-25 18:54:59 +0000794 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000795 // And Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000796 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
797 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000798 } else {
799 // Just the Hi bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000800 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000801 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000802
Jim Laskey78f97f32006-12-12 13:23:43 +0000803 // If no shift, we're done.
804 if (!Shift) return Result;
805
806 // Shift for next step if the upper 32-bits were not zero.
807 if (Imm) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000808 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
809 SDValue(Result, 0),
810 getI32Imm(Shift),
811 getI32Imm(63 - Shift));
Jim Laskey78f97f32006-12-12 13:23:43 +0000812 }
813
814 // Add in the last bits as required.
815 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000816 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64,
817 SDValue(Result, 0), getI32Imm(Hi));
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000818 }
Jim Laskey78f97f32006-12-12 13:23:43 +0000819 if ((Lo = Remainder & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000820 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
821 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000822 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000823
Jim Laskey78f97f32006-12-12 13:23:43 +0000824 return Result;
825 }
826 break;
827 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000828
Evan Cheng34167212006-02-09 00:37:58 +0000829 case ISD::SETCC:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000830 return SelectSETCC(N);
Evan Cheng34167212006-02-09 00:37:58 +0000831 case PPCISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +0000832 return getGlobalBaseReg();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000833
Chris Lattnere28e40a2005-08-25 00:45:43 +0000834 case ISD::FrameIndex: {
835 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000836 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
837 unsigned Opc = N->getValueType(0) == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000838 if (N->hasOneUse())
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000839 return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), TFI,
Evan Cheng95514ba2006-08-26 08:00:10 +0000840 getSmallIPtrImm(0));
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000841 return CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI,
Dan Gohman602b0c82009-09-25 18:54:59 +0000842 getSmallIPtrImm(0));
Chris Lattnere28e40a2005-08-25 00:45:43 +0000843 }
Chris Lattner6d92cad2006-03-26 10:06:40 +0000844
845 case PPCISD::MFCR: {
Dan Gohman475871a2008-07-27 21:46:04 +0000846 SDValue InFlag = N->getOperand(1);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000847 // Use MFOCRF if supported.
Hal Finkelbd5cafd2012-06-11 19:57:01 +0000848 if (PPCSubTarget.hasMFOCRF())
Dan Gohman602b0c82009-09-25 18:54:59 +0000849 return CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32,
850 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000851 else
Dale Johannesen5f07d522010-05-20 17:48:26 +0000852 return CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
853 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000854 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000855
Chris Lattner88add102005-09-28 22:50:24 +0000856 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +0000857 // FIXME: since this depends on the setting of the carry flag from the srawi
858 // we should really be making notes about that for the scheduler.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000859 // FIXME: It sure would be nice if we could cheaply recognize the
Nate Begeman405e3ec2005-10-21 00:02:42 +0000860 // srl/add/sra pattern the dag combiner will generate for this as
861 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +0000862 unsigned Imm;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000863 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000864 SDValue N0 = N->getOperand(0);
Chris Lattner8784a232005-08-25 17:50:06 +0000865 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000866 SDNode *Op =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000867 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000868 N0, getI32Imm(Log2_32(Imm)));
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000869 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +0000870 SDValue(Op, 0), SDValue(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +0000871 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000872 SDNode *Op =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000873 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000874 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman475871a2008-07-27 21:46:04 +0000875 SDValue PT =
Dan Gohman602b0c82009-09-25 18:54:59 +0000876 SDValue(CurDAG->getMachineNode(PPC::ADDZE, dl, MVT::i32,
877 SDValue(Op, 0), SDValue(Op, 1)),
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000878 0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000879 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +0000880 }
881 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000882
Chris Lattner237733e2005-09-29 23:33:31 +0000883 // Other cases are autogenerated.
884 break;
Chris Lattner047b9522005-08-25 22:04:30 +0000885 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000886
Chris Lattner4eab7142006-11-10 02:08:47 +0000887 case ISD::LOAD: {
888 // Handle preincrement loads.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000889 LoadSDNode *LD = cast<LoadSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +0000890 EVT LoadedVT = LD->getMemoryVT();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000891
Chris Lattner4eab7142006-11-10 02:08:47 +0000892 // Normal loads are handled by code generated from the .td file.
893 if (LD->getAddressingMode() != ISD::PRE_INC)
894 break;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000895
Dan Gohman475871a2008-07-27 21:46:04 +0000896 SDValue Offset = LD->getOffset();
Chris Lattner5b3bbc72006-11-11 04:53:30 +0000897 if (isa<ConstantSDNode>(Offset) ||
898 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000899
Chris Lattner0851b4f2006-11-15 19:55:13 +0000900 unsigned Opcode;
901 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
Owen Anderson825b72b2009-08-11 20:47:22 +0000902 if (LD->getValueType(0) != MVT::i64) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000903 // Handle PPC32 integer and normal FP loads.
Owen Anderson825b72b2009-08-11 20:47:22 +0000904 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
905 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000906 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000907 case MVT::f64: Opcode = PPC::LFDU; break;
908 case MVT::f32: Opcode = PPC::LFSU; break;
909 case MVT::i32: Opcode = PPC::LWZU; break;
910 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
911 case MVT::i1:
912 case MVT::i8: Opcode = PPC::LBZU; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +0000913 }
914 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000915 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
916 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
917 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000918 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000919 case MVT::i64: Opcode = PPC::LDU; break;
920 case MVT::i32: Opcode = PPC::LWZU8; break;
921 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
922 case MVT::i1:
923 case MVT::i8: Opcode = PPC::LBZU8; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +0000924 }
925 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000926
Dan Gohman475871a2008-07-27 21:46:04 +0000927 SDValue Chain = LD->getChain();
928 SDValue Base = LD->getBasePtr();
Dan Gohman475871a2008-07-27 21:46:04 +0000929 SDValue Ops[] = { Offset, Base, Chain };
Chris Lattner4eab7142006-11-10 02:08:47 +0000930 // FIXME: PPC64
Dan Gohman602b0c82009-09-25 18:54:59 +0000931 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
932 PPCLowering.getPointerTy(),
933 MVT::Other, Ops, 3);
Chris Lattner4eab7142006-11-10 02:08:47 +0000934 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000935 llvm_unreachable("R+R preindex loads not supported yet!");
Chris Lattner4eab7142006-11-10 02:08:47 +0000936 }
937 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000938
Nate Begemancffc32b2005-08-18 07:30:46 +0000939 case ISD::AND: {
Nate Begemanf42f1332006-09-22 05:01:56 +0000940 unsigned Imm, Imm2, SH, MB, ME;
941
Nate Begemancffc32b2005-08-18 07:30:46 +0000942 // If this is an and of a value rotated between 0 and 31 bits and then and'd
943 // with a mask, emit rlwinm
Chris Lattnerc08f9022006-06-27 00:04:13 +0000944 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000945 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000946 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000947 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000948 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemancffc32b2005-08-18 07:30:46 +0000949 }
Nate Begemanf42f1332006-09-22 05:01:56 +0000950 // If this is just a masked value where the input is not handled above, and
951 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
952 if (isInt32Immediate(N->getOperand(1), Imm) &&
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000953 isRunOfOnes(Imm, MB, ME) &&
Nate Begemanf42f1332006-09-22 05:01:56 +0000954 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman475871a2008-07-27 21:46:04 +0000955 SDValue Val = N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000956 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000957 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemanf42f1332006-09-22 05:01:56 +0000958 }
959 // AND X, 0 -> 0, not "rlwinm 32".
960 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000961 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Nate Begemanf42f1332006-09-22 05:01:56 +0000962 return NULL;
963 }
Nate Begeman50fb3c42005-12-24 01:00:15 +0000964 // ISD::OR doesn't get all the bitfield insertion fun.
965 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000966 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman50fb3c42005-12-24 01:00:15 +0000967 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000968 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +0000969 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +0000970 Imm = ~(Imm^Imm2);
971 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000972 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +0000973 N->getOperand(0).getOperand(1),
974 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +0000975 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman50fb3c42005-12-24 01:00:15 +0000976 }
977 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000978
Chris Lattner237733e2005-09-29 23:33:31 +0000979 // Other cases are autogenerated.
980 break;
Nate Begemancffc32b2005-08-18 07:30:46 +0000981 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000982 case ISD::OR:
Owen Anderson825b72b2009-08-11 20:47:22 +0000983 if (N->getValueType(0) == MVT::i32)
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000984 if (SDNode *I = SelectBitfieldInsert(N))
985 return I;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000986
Chris Lattner237733e2005-09-29 23:33:31 +0000987 // Other cases are autogenerated.
988 break;
Nate Begemanc15ed442005-08-18 23:38:00 +0000989 case ISD::SHL: {
990 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +0000991 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +0000992 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000993 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +0000994 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000995 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +0000996 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000997
Nate Begeman2d5aff72005-10-19 18:42:01 +0000998 // Other cases are autogenerated.
999 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001000 }
1001 case ISD::SRL: {
1002 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001003 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001004 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001005 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001006 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 Begeman8d948322005-10-19 01:12:32 +00001008 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001009
Nate Begeman2d5aff72005-10-19 18:42:01 +00001010 // Other cases are autogenerated.
1011 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001012 }
Chris Lattner13794f52005-08-26 18:46:49 +00001013 case ISD::SELECT_CC: {
1014 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
Roman Divacky8e9d6722011-06-20 15:28:39 +00001015 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
1016 bool isPPC64 = (PtrVT == MVT::i64);
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001017
Chris Lattnerc08f9022006-06-27 00:04:13 +00001018 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Roman Divacky8e9d6722011-06-20 15:28:39 +00001019 if (!isPPC64)
1020 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1021 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1022 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1023 if (N1C->isNullValue() && N3C->isNullValue() &&
1024 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
1025 // FIXME: Implement this optzn for PPC64.
1026 N->getValueType(0) == MVT::i32) {
1027 SDNode *Tmp =
1028 CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
1029 N->getOperand(0), getI32Imm(~0U));
1030 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
1031 SDValue(Tmp, 0), N->getOperand(0),
1032 SDValue(Tmp, 1));
1033 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001034
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001035 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00001036 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001037
Chris Lattner919c0322005-10-01 01:35:02 +00001038 unsigned SelectCCOp;
Owen Anderson825b72b2009-08-11 20:47:22 +00001039 if (N->getValueType(0) == MVT::i32)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001040 SelectCCOp = PPC::SELECT_CC_I4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001041 else if (N->getValueType(0) == MVT::i64)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001042 SelectCCOp = PPC::SELECT_CC_I8;
Owen Anderson825b72b2009-08-11 20:47:22 +00001043 else if (N->getValueType(0) == MVT::f32)
Chris Lattner919c0322005-10-01 01:35:02 +00001044 SelectCCOp = PPC::SELECT_CC_F4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001045 else if (N->getValueType(0) == MVT::f64)
Chris Lattner919c0322005-10-01 01:35:02 +00001046 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner710ff322006-04-08 22:45:08 +00001047 else
1048 SelectCCOp = PPC::SELECT_CC_VRRC;
1049
Dan Gohman475871a2008-07-27 21:46:04 +00001050 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Evan Cheng0b828e02006-08-27 08:14:06 +00001051 getI32Imm(BROpc) };
1052 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattner13794f52005-08-26 18:46:49 +00001053 }
Chris Lattner18258c62006-11-17 22:37:34 +00001054 case PPCISD::COND_BRANCH: {
Dan Gohmancbb7ab22008-11-05 17:16:24 +00001055 // Op #0 is the Chain.
Chris Lattner18258c62006-11-17 22:37:34 +00001056 // Op #1 is the PPC::PRED_* number.
1057 // Op #2 is the CR#
1058 // Op #3 is the Dest MBB
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001059 // Op #4 is the Flag.
Evan Cheng2bda17c2007-06-29 01:25:06 +00001060 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman475871a2008-07-27 21:46:04 +00001061 SDValue Pred =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001062 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman475871a2008-07-27 21:46:04 +00001063 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Chris Lattner18258c62006-11-17 22:37:34 +00001064 N->getOperand(0), N->getOperand(4) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001065 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
Chris Lattner18258c62006-11-17 22:37:34 +00001066 }
Nate Begeman81e80972006-03-17 01:40:33 +00001067 case ISD::BR_CC: {
Chris Lattner2fbb4572005-08-21 18:50:37 +00001068 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001069 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001070 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Cheng0b828e02006-08-27 08:14:06 +00001071 N->getOperand(4), N->getOperand(0) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001072 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001073 }
Nate Begeman37efe672006-04-22 18:53:45 +00001074 case ISD::BRIND: {
Chris Lattnercf006312006-06-10 01:15:02 +00001075 // FIXME: Should custom lower this.
Dan Gohman475871a2008-07-27 21:46:04 +00001076 SDValue Chain = N->getOperand(0);
1077 SDValue Target = N->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001078 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Roman Divacky0c9b5592011-06-03 15:47:49 +00001079 unsigned Reg = Target.getValueType() == MVT::i32 ? PPC::BCTR : PPC::BCTR8;
Hal Finkel67724522011-12-08 04:36:44 +00001080 Chain = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, Target,
Dan Gohman602b0c82009-09-25 18:54:59 +00001081 Chain), 0);
Roman Divacky0c9b5592011-06-03 15:47:49 +00001082 return CurDAG->SelectNodeTo(N, Reg, MVT::Other, Chain);
Nate Begeman37efe672006-04-22 18:53:45 +00001083 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001084 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001085
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001086 return SelectCode(N);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001087}
1088
1089
Chris Lattnercf006312006-06-10 01:15:02 +00001090
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001091/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001092/// PowerPC-specific DAG, ready for instruction scheduling.
1093///
Evan Chengc4c62572006-03-13 23:20:37 +00001094FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman1d9d7422005-10-18 00:28:58 +00001095 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001096}
1097