blob: 0f943e82badff068d9ace4bf2d7de989e13e236b [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"
Evan Cheng94b95502011-07-26 00:24:13 +000017#include "MCTargetDesc/PPCPredicates.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "PPCTargetMachine.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000019#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000020#include "llvm/CodeGen/MachineInstrBuilder.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"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000024#include "llvm/IR/Constants.h"
25#include "llvm/IR/Function.h"
Chandler Carruth90230c82013-01-19 08:03:47 +000026#include "llvm/IR/GlobalAlias.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000027#include "llvm/IR/GlobalValue.h"
28#include "llvm/IR/GlobalVariable.h"
29#include "llvm/IR/Intrinsics.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000030#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000031#include "llvm/Support/ErrorHandling.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000032#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000033#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000034#include "llvm/Target/TargetOptions.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000035using namespace llvm;
36
Krzysztof Parzyszek96848df2013-02-13 17:40:07 +000037namespace llvm {
38 void initializePPCDAGToDAGISelPass(PassRegistry&);
39}
40
Chris Lattnera5a91b12005-08-17 19:33:03 +000041namespace {
Chris Lattnera5a91b12005-08-17 19:33:03 +000042 //===--------------------------------------------------------------------===//
Nate Begeman1d9d7422005-10-18 00:28:58 +000043 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
Chris Lattnera5a91b12005-08-17 19:33:03 +000044 /// instructions for SelectionDAG operations.
45 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +000046 class PPCDAGToDAGISel : public SelectionDAGISel {
Dan Gohmand858e902010-04-17 15:26:15 +000047 const PPCTargetMachine &TM;
48 const PPCTargetLowering &PPCLowering;
Evan Cheng152b7e12007-10-23 06:42:42 +000049 const PPCSubtarget &PPCSubTarget;
Chris Lattner4416f1a2005-08-19 22:38:53 +000050 unsigned GlobalBaseReg;
Chris Lattnera5a91b12005-08-17 19:33:03 +000051 public:
Dan Gohman1002c022008-07-07 18:00:37 +000052 explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
Dan Gohman79ce2762009-01-15 19:20:50 +000053 : SelectionDAGISel(tm), TM(tm),
Evan Cheng152b7e12007-10-23 06:42:42 +000054 PPCLowering(*TM.getTargetLowering()),
Krzysztof Parzyszek96848df2013-02-13 17:40:07 +000055 PPCSubTarget(*TM.getSubtargetImpl()) {
56 initializePPCDAGToDAGISelPass(*PassRegistry::getPassRegistry());
57 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000058
Dan Gohmanad2afc22009-07-31 18:16:33 +000059 virtual bool runOnMachineFunction(MachineFunction &MF) {
Chris Lattner4416f1a2005-08-19 22:38:53 +000060 // Make sure we re-emit a set of the global base reg if necessary
61 GlobalBaseReg = 0;
Dan Gohmanad2afc22009-07-31 18:16:33 +000062 SelectionDAGISel::runOnMachineFunction(MF);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000063
Bill Schmidta5d0ab52012-10-10 20:54:15 +000064 if (!PPCSubTarget.isSVR4ABI())
65 InsertVRSaveCode(MF);
66
Chris Lattner4bb18952006-03-16 18:25:23 +000067 return true;
Chris Lattner4416f1a2005-08-19 22:38:53 +000068 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000069
Chris Lattnera5a91b12005-08-17 19:33:03 +000070 /// getI32Imm - Return a target constant with the specified value, of type
71 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +000072 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000073 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnera5a91b12005-08-17 19:33:03 +000074 }
Chris Lattner4416f1a2005-08-19 22:38:53 +000075
Chris Lattnerc08f9022006-06-27 00:04:13 +000076 /// getI64Imm - Return a target constant with the specified value, of type
77 /// i64.
Dan Gohman475871a2008-07-27 21:46:04 +000078 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000079 return CurDAG->getTargetConstant(Imm, MVT::i64);
Chris Lattnerc08f9022006-06-27 00:04:13 +000080 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000081
Chris Lattnerc08f9022006-06-27 00:04:13 +000082 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman475871a2008-07-27 21:46:04 +000083 inline SDValue getSmallIPtrImm(unsigned Imm) {
Chris Lattnerc08f9022006-06-27 00:04:13 +000084 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
85 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000086
Sylvestre Ledru94c22712012-09-27 10:14:43 +000087 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
Nate Begemanf42f1332006-09-22 05:01:56 +000088 /// with any number of 0s on either side. The 1s are allowed to wrap from
89 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
90 /// 0x0F0F0000 is not, since all 1s are not contiguous.
91 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
92
93
94 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
95 /// rotate and mask opcode and mask operation.
Dale Johannesenb60d5192009-11-24 01:09:07 +000096 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask,
Nate Begemanf42f1332006-09-22 05:01:56 +000097 unsigned &SH, unsigned &MB, unsigned &ME);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000098
Chris Lattner4416f1a2005-08-19 22:38:53 +000099 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
100 /// base register. Return the virtual register that holds this value.
Evan Cheng9ade2182006-08-26 05:34:46 +0000101 SDNode *getGlobalBaseReg();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000102
Chris Lattnera5a91b12005-08-17 19:33:03 +0000103 // Select - Convert the specified operand from a target-independent to a
104 // target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000105 SDNode *Select(SDNode *N);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000106
Nate Begeman02b88a42005-08-19 00:38:14 +0000107 SDNode *SelectBitfieldInsert(SDNode *N);
108
Chris Lattner2fbb4572005-08-21 18:50:37 +0000109 /// SelectCC - Select a comparison of the specified values with the
110 /// specified condition code, returning the CR# of the expression.
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000111 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000112
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000113 /// SelectAddrImm - Returns true if the address N can be represented by
114 /// a base register plus a signed 16-bit displacement [r+imm].
Chris Lattner52a261b2010-09-21 20:31:19 +0000115 bool SelectAddrImm(SDValue N, SDValue &Disp,
Dan Gohman475871a2008-07-27 21:46:04 +0000116 SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000117 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
118 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000119
Chris Lattner74531e42006-11-16 00:41:37 +0000120 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
121 /// immediate field. Because preinc imms have already been validated, just
122 /// accept it.
Chris Lattner52a261b2010-09-21 20:31:19 +0000123 bool SelectAddrImmOffs(SDValue N, SDValue &Out) const {
Hal Finkel2bbc9192012-06-21 20:10:48 +0000124 if (isa<ConstantSDNode>(N) || N.getOpcode() == PPCISD::Lo ||
125 N.getOpcode() == ISD::TargetGlobalAddress) {
Hal Finkelac81cc32012-06-19 02:34:32 +0000126 Out = N;
127 return true;
128 }
129
130 return false;
131 }
132
133 /// SelectAddrIdxOffs - Return true if the operand is valid for a preinc
134 /// index field. Because preinc imms have already been validated, just
135 /// accept it.
136 bool SelectAddrIdxOffs(SDValue N, SDValue &Out) const {
Hal Finkel2bbc9192012-06-21 20:10:48 +0000137 if (isa<ConstantSDNode>(N) || N.getOpcode() == PPCISD::Lo ||
138 N.getOpcode() == ISD::TargetGlobalAddress)
139 return false;
140
Chris Lattner74531e42006-11-16 00:41:37 +0000141 Out = N;
142 return true;
143 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000144
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000145 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
146 /// represented as an indexed [r+r] operation. Returns false if it can
147 /// be represented by [r+imm], which are preferred.
Chris Lattner52a261b2010-09-21 20:31:19 +0000148 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000149 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
150 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000151
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000152 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
153 /// represented as an indexed [r+r] operation.
Chris Lattner52a261b2010-09-21 20:31:19 +0000154 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000155 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
156 }
Chris Lattner9944b762005-08-21 22:31:09 +0000157
Chris Lattnere5ba5802006-03-22 05:26:03 +0000158 /// SelectAddrImmShift - Returns true if the address N can be represented by
159 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
160 /// for use by STD and friends.
Chris Lattner52a261b2010-09-21 20:31:19 +0000161 bool SelectAddrImmShift(SDValue N, SDValue &Disp, SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000162 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
163 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000164
Chris Lattnere5d88612006-02-24 02:13:12 +0000165 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000166 /// inline asm expressions. It is always correct to compute the value into
167 /// a register. The case of adding a (possibly relocatable) constant to a
168 /// register can be improved, but it is wrong to substitute Reg+Reg for
169 /// Reg in an asm, because the load or store opcode would have to change.
170 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnere5d88612006-02-24 02:13:12 +0000171 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000172 std::vector<SDValue> &OutOps) {
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000173 OutOps.push_back(Op);
Chris Lattnere5d88612006-02-24 02:13:12 +0000174 return false;
175 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000176
Dan Gohmanad2afc22009-07-31 18:16:33 +0000177 void InsertVRSaveCode(MachineFunction &MF);
Chris Lattner4bb18952006-03-16 18:25:23 +0000178
Chris Lattnera5a91b12005-08-17 19:33:03 +0000179 virtual const char *getPassName() const {
180 return "PowerPC DAG->DAG Pattern Instruction Selection";
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000181 }
182
Chris Lattneraf165382005-09-13 22:03:06 +0000183// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000184#include "PPCGenDAGISel.inc"
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000185
Chris Lattnerbd937b92005-10-06 18:45:51 +0000186private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000187 SDNode *SelectSETCC(SDNode *N);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000188 };
189}
190
Chris Lattner4bb18952006-03-16 18:25:23 +0000191/// InsertVRSaveCode - Once the entire function has been instruction selected,
192/// all virtual registers are created and all machine instructions are built,
193/// check to see if we need to save/restore VRSAVE. If so, do it.
Dan Gohmanad2afc22009-07-31 18:16:33 +0000194void PPCDAGToDAGISel::InsertVRSaveCode(MachineFunction &Fn) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000195 // Check to see if this function uses vector registers, which means we have to
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000196 // save and restore the VRSAVE register and update it with the regs we use.
Chris Lattner1877ec92006-03-13 21:52:10 +0000197 //
Dan Gohmanf451cb82010-02-10 16:03:48 +0000198 // In this case, there will be virtual registers of vector type created
Chris Lattner1877ec92006-03-13 21:52:10 +0000199 // by the scheduler. Detect them now.
Chris Lattner1877ec92006-03-13 21:52:10 +0000200 bool HasVectorVReg = false;
Jakob Stoklund Olesenb2581352011-01-08 23:11:11 +0000201 for (unsigned i = 0, e = RegInfo->getNumVirtRegs(); i != e; ++i) {
202 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
203 if (RegInfo->getRegClass(Reg) == &PPC::VRRCRegClass) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000204 HasVectorVReg = true;
205 break;
206 }
Jakob Stoklund Olesenb2581352011-01-08 23:11:11 +0000207 }
Chris Lattner4bb18952006-03-16 18:25:23 +0000208 if (!HasVectorVReg) return; // nothing to do.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000209
Chris Lattner1877ec92006-03-13 21:52:10 +0000210 // If we have a vector register, we want to emit code into the entry and exit
211 // blocks to save and restore the VRSAVE register. We do this here (instead
212 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
213 //
214 // 1. This (trivially) reduces the load on the register allocator, by not
215 // having to represent the live range of the VRSAVE register.
216 // 2. This (more significantly) allows us to create a temporary virtual
217 // register to hold the saved VRSAVE value, allowing this temporary to be
218 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner4bb18952006-03-16 18:25:23 +0000219
220 // Create two vregs - one to hold the VRSAVE register that is live-in to the
221 // function and one for the value after having bits or'd into it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000222 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
223 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000224
Evan Chengc0f64ff2006-11-27 23:37:22 +0000225 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4bb18952006-03-16 18:25:23 +0000226 MachineBasicBlock &EntryBB = *Fn.begin();
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000227 DebugLoc dl;
Chris Lattner4bb18952006-03-16 18:25:23 +0000228 // Emit the following code into the entry block:
229 // InVRSAVE = MFVRSAVE
230 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
231 // MTVRSAVE UpdatedVRSAVE
232 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesen536a2f12009-02-13 02:27:39 +0000233 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
234 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattner69244302008-01-07 01:56:04 +0000235 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000236 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000237
Chris Lattner4bb18952006-03-16 18:25:23 +0000238 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner4bb18952006-03-16 18:25:23 +0000239 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000240 if (!BB->empty() && BB->back().isReturn()) {
Chris Lattner4bb18952006-03-16 18:25:23 +0000241 IP = BB->end(); --IP;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000242
Chris Lattner4bb18952006-03-16 18:25:23 +0000243 // Skip over all terminator instructions, which are part of the return
244 // sequence.
245 MachineBasicBlock::iterator I2 = IP;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000246 while (I2 != BB->begin() && (--I2)->isTerminator())
Chris Lattner4bb18952006-03-16 18:25:23 +0000247 IP = I2;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000248
Chris Lattner4bb18952006-03-16 18:25:23 +0000249 // Emit: MTVRSAVE InVRSave
Dale Johannesen536a2f12009-02-13 02:27:39 +0000250 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000251 }
Chris Lattner1877ec92006-03-13 21:52:10 +0000252 }
Chris Lattnerbd937b92005-10-06 18:45:51 +0000253}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000254
Chris Lattner4bb18952006-03-16 18:25:23 +0000255
Chris Lattner4416f1a2005-08-19 22:38:53 +0000256/// getGlobalBaseReg - Output the instructions required to put the
257/// base address to use for accessing globals into a register.
258///
Evan Cheng9ade2182006-08-26 05:34:46 +0000259SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000260 if (!GlobalBaseReg) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000261 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000262 // Insert the set of GlobalBaseReg into the first MBB of the function
Dan Gohmanbd51c672009-08-15 02:07:36 +0000263 MachineBasicBlock &FirstMBB = MF->front();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000264 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000265 DebugLoc dl;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000266
Owen Anderson825b72b2009-08-11 20:47:22 +0000267 if (PPCLowering.getPointerTy() == MVT::i32) {
Craig Topperc9099502012-04-20 06:31:50 +0000268 GlobalBaseReg = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Cameron Zwarich0113e4e2011-05-19 02:56:28 +0000269 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR));
Dale Johannesen536a2f12009-02-13 02:27:39 +0000270 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000271 } else {
Craig Topperc9099502012-04-20 06:31:50 +0000272 GlobalBaseReg = RegInfo->createVirtualRegister(&PPC::G8RCRegClass);
Cameron Zwarich0113e4e2011-05-19 02:56:28 +0000273 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8));
Dale Johannesen536a2f12009-02-13 02:27:39 +0000274 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000275 }
Chris Lattner4416f1a2005-08-19 22:38:53 +0000276 }
Gabor Greif93c53e52008-08-31 15:37:04 +0000277 return CurDAG->getRegister(GlobalBaseReg,
278 PPCLowering.getPointerTy()).getNode();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000279}
280
281/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
282/// or 64-bit immediate, and if the value can be accurately represented as a
283/// sign extension from a 16-bit value. If so, this returns true and the
284/// immediate.
285static bool isIntS16Immediate(SDNode *N, short &Imm) {
286 if (N->getOpcode() != ISD::Constant)
287 return false;
288
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000289 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000290 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000291 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000292 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000293 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000294}
295
Dan Gohman475871a2008-07-27 21:46:04 +0000296static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000297 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000298}
299
300
Chris Lattnerc08f9022006-06-27 00:04:13 +0000301/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
302/// operand. If so Imm will receive the 32-bit value.
303static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000304 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000305 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Nate Begeman0f3257a2005-08-18 05:00:13 +0000306 return true;
307 }
308 return false;
309}
310
Chris Lattnerc08f9022006-06-27 00:04:13 +0000311/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
312/// operand. If so Imm will receive the 64-bit value.
313static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000314 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000315 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000316 return true;
317 }
318 return false;
319}
320
321// isInt32Immediate - This method tests to see if a constant operand.
322// If so Imm will receive the 32 bit value.
Dan Gohman475871a2008-07-27 21:46:04 +0000323static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000324 return isInt32Immediate(N.getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000325}
326
327
328// isOpcWithIntImmediate - This method tests to see if the node is a specific
329// opcode and that it has a immediate integer right operand.
330// If so Imm will receive the 32 bit value.
331static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000332 return N->getOpcode() == Opc
333 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000334}
335
Nate Begemanf42f1332006-09-22 05:01:56 +0000336bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000337 if (isShiftedMask_32(Val)) {
338 // look for the first non-zero bit
339 MB = CountLeadingZeros_32(Val);
340 // look for the first zero bit after the run of ones
341 ME = CountLeadingZeros_32((Val - 1) ^ Val);
342 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000343 } else {
344 Val = ~Val; // invert mask
345 if (isShiftedMask_32(Val)) {
346 // effectively look for the first zero bit
347 ME = CountLeadingZeros_32(Val) - 1;
348 // effectively look for the first one bit after the run of zeros
349 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
350 return true;
351 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000352 }
353 // no run present
354 return false;
355}
356
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000357bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
358 bool isShiftMask, unsigned &SH,
Nate Begemanf42f1332006-09-22 05:01:56 +0000359 unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000360 // Don't even go down this path for i64, since different logic will be
361 // necessary for rldicl/rldicr/rldimi.
Owen Anderson825b72b2009-08-11 20:47:22 +0000362 if (N->getValueType(0) != MVT::i32)
Nate Begemanda32c9e2005-10-19 00:05:37 +0000363 return false;
364
Nate Begemancffc32b2005-08-18 07:30:46 +0000365 unsigned Shift = 32;
366 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
367 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000368 if (N->getNumOperands() != 2 ||
Gabor Greifba36cb52008-08-28 21:40:38 +0000369 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000370 return false;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000371
Nate Begemancffc32b2005-08-18 07:30:46 +0000372 if (Opcode == ISD::SHL) {
373 // apply shift left to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000374 if (isShiftMask) Mask = Mask << Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000375 // determine which bits are made indeterminant by shift
376 Indeterminant = ~(0xFFFFFFFFu << Shift);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000377 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000378 // apply shift right to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000379 if (isShiftMask) Mask = Mask >> Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000380 // determine which bits are made indeterminant by shift
381 Indeterminant = ~(0xFFFFFFFFu >> Shift);
382 // adjust for the left rotate
383 Shift = 32 - Shift;
Nate Begemanf42f1332006-09-22 05:01:56 +0000384 } else if (Opcode == ISD::ROTL) {
385 Indeterminant = 0;
Nate Begemancffc32b2005-08-18 07:30:46 +0000386 } else {
387 return false;
388 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000389
Nate Begemancffc32b2005-08-18 07:30:46 +0000390 // if the mask doesn't intersect any Indeterminant bits
391 if (Mask && !(Mask & Indeterminant)) {
Chris Lattner0949ed52006-05-12 16:29:37 +0000392 SH = Shift & 31;
Nate Begemancffc32b2005-08-18 07:30:46 +0000393 // make sure the mask is still a mask (wrap arounds may not be)
394 return isRunOfOnes(Mask, MB, ME);
395 }
396 return false;
397}
398
Nate Begeman02b88a42005-08-19 00:38:14 +0000399/// SelectBitfieldInsert - turn an or of two masked values into
400/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000401SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000402 SDValue Op0 = N->getOperand(0);
403 SDValue Op1 = N->getOperand(1);
Dale Johannesened2eee62009-02-06 01:31:28 +0000404 DebugLoc dl = N->getDebugLoc();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000405
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000406 APInt LKZ, LKO, RKZ, RKO;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000407 CurDAG->ComputeMaskedBits(Op0, LKZ, LKO);
408 CurDAG->ComputeMaskedBits(Op1, RKZ, RKO);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000409
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000410 unsigned TargetMask = LKZ.getZExtValue();
411 unsigned InsertMask = RKZ.getZExtValue();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000412
Nate Begeman4667f2c2006-05-08 17:38:32 +0000413 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
414 unsigned Op0Opc = Op0.getOpcode();
415 unsigned Op1Opc = Op1.getOpcode();
416 unsigned Value, SH = 0;
417 TargetMask = ~TargetMask;
418 InsertMask = ~InsertMask;
Nate Begeman77f361f2006-05-07 00:23:38 +0000419
Nate Begeman4667f2c2006-05-08 17:38:32 +0000420 // If the LHS has a foldable shift and the RHS does not, then swap it to the
421 // RHS so that we can fold the shift into the insert.
Nate Begeman77f361f2006-05-07 00:23:38 +0000422 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
423 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
424 Op0.getOperand(0).getOpcode() == ISD::SRL) {
425 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
426 Op1.getOperand(0).getOpcode() != ISD::SRL) {
427 std::swap(Op0, Op1);
428 std::swap(Op0Opc, Op1Opc);
Nate Begeman4667f2c2006-05-08 17:38:32 +0000429 std::swap(TargetMask, InsertMask);
Nate Begeman77f361f2006-05-07 00:23:38 +0000430 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000431 }
Nate Begeman4667f2c2006-05-08 17:38:32 +0000432 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
433 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
434 Op1.getOperand(0).getOpcode() != ISD::SRL) {
435 std::swap(Op0, Op1);
436 std::swap(Op0Opc, Op1Opc);
437 std::swap(TargetMask, InsertMask);
438 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000439 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000440
Nate Begeman77f361f2006-05-07 00:23:38 +0000441 unsigned MB, ME;
Chris Lattner0949ed52006-05-12 16:29:37 +0000442 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dale Johannesen5ca12462009-11-20 22:16:40 +0000443 SDValue Tmp1, Tmp2;
Nate Begeman77f361f2006-05-07 00:23:38 +0000444
445 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000446 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000447 Op1 = Op1.getOperand(0);
448 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
449 }
450 if (Op1Opc == ISD::AND) {
451 unsigned SHOpc = Op1.getOperand(0).getOpcode();
452 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000453 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000454 Op1 = Op1.getOperand(0).getOperand(0);
455 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
456 } else {
457 Op1 = Op1.getOperand(0);
458 }
459 }
Dale Johannesen5ca12462009-11-20 22:16:40 +0000460
Chris Lattner0949ed52006-05-12 16:29:37 +0000461 SH &= 31;
Dale Johannesen5ca12462009-11-20 22:16:40 +0000462 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
Evan Cheng0b828e02006-08-27 08:14:06 +0000463 getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +0000464 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman02b88a42005-08-19 00:38:14 +0000465 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000466 }
467 return 0;
468}
469
Chris Lattner2fbb4572005-08-21 18:50:37 +0000470/// SelectCC - Select a comparison of the specified values with the specified
471/// condition code, returning the CR# of the expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000472SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000473 ISD::CondCode CC, DebugLoc dl) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000474 // Always select the LHS.
Chris Lattnerc08f9022006-06-27 00:04:13 +0000475 unsigned Opc;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000476
Owen Anderson825b72b2009-08-11 20:47:22 +0000477 if (LHS.getValueType() == MVT::i32) {
Chris Lattner529c2332006-06-27 00:10:13 +0000478 unsigned Imm;
Chris Lattner3836dbd2006-09-20 04:25:47 +0000479 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
480 if (isInt32Immediate(RHS, Imm)) {
481 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000482 if (isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000483 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
484 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000485 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000486 if (isInt<16>((int)Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000487 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
488 getI32Imm(Imm & 0xFFFF)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000489
Chris Lattner3836dbd2006-09-20 04:25:47 +0000490 // For non-equality comparisons, the default code would materialize the
491 // constant, then compare against it, like this:
492 // lis r2, 4660
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000493 // ori r2, r2, 22136
Chris Lattner3836dbd2006-09-20 04:25:47 +0000494 // cmpw cr0, r3, r2
495 // Since we are just comparing for equality, we can emit this instead:
496 // xoris r0,r3,0x1234
497 // cmplwi cr0,r0,0x5678
498 // beq cr0,L6
Dan Gohman602b0c82009-09-25 18:54:59 +0000499 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS, dl, MVT::i32, LHS,
500 getI32Imm(Imm >> 16)), 0);
501 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, Xor,
502 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000503 }
504 Opc = PPC::CMPLW;
505 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer34247a02010-03-29 21:13:41 +0000506 if (isInt32Immediate(RHS, Imm) && isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000507 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
508 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000509 Opc = PPC::CMPLW;
510 } else {
511 short SImm;
512 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000513 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
514 getI32Imm((int)SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000515 0);
516 Opc = PPC::CMPW;
517 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000518 } else if (LHS.getValueType() == MVT::i64) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000519 uint64_t Imm;
Chris Lattner71176242006-09-20 04:33:27 +0000520 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000521 if (isInt64Immediate(RHS.getNode(), Imm)) {
Chris Lattner71176242006-09-20 04:33:27 +0000522 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000523 if (isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000524 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
525 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000526 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000527 if (isInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000528 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
529 getI32Imm(Imm & 0xFFFF)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000530
Chris Lattner71176242006-09-20 04:33:27 +0000531 // For non-equality comparisons, the default code would materialize the
532 // constant, then compare against it, like this:
533 // lis r2, 4660
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000534 // ori r2, r2, 22136
Chris Lattner71176242006-09-20 04:33:27 +0000535 // cmpd cr0, r3, r2
536 // Since we are just comparing for equality, we can emit this instead:
537 // xoris r0,r3,0x1234
538 // cmpldi cr0,r0,0x5678
539 // beq cr0,L6
Benjamin Kramer34247a02010-03-29 21:13:41 +0000540 if (isUInt<32>(Imm)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000541 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS8, dl, MVT::i64, LHS,
542 getI64Imm(Imm >> 16)), 0);
543 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, Xor,
544 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000545 }
546 }
547 Opc = PPC::CMPLD;
548 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer34247a02010-03-29 21:13:41 +0000549 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000550 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
551 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000552 Opc = PPC::CMPLD;
553 } else {
554 short SImm;
555 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000556 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
557 getI64Imm(SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000558 0);
559 Opc = PPC::CMPD;
560 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000561 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000562 Opc = PPC::FCMPUS;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000563 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
Chris Lattnerc08f9022006-06-27 00:04:13 +0000565 Opc = PPC::FCMPUD;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000566 }
Dan Gohman602b0c82009-09-25 18:54:59 +0000567 return SDValue(CurDAG->getMachineNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000568}
569
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000570static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000571 switch (CC) {
Chris Lattner5d634ce2006-05-25 16:54:16 +0000572 case ISD::SETUEQ:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000573 case ISD::SETONE:
574 case ISD::SETOLE:
575 case ISD::SETOGE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000576 llvm_unreachable("Should be lowered by legalize!");
577 default: llvm_unreachable("Unknown condition!");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000578 case ISD::SETOEQ:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000579 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattner5d634ce2006-05-25 16:54:16 +0000580 case ISD::SETUNE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000581 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000582 case ISD::SETOLT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000583 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000584 case ISD::SETULE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000585 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000586 case ISD::SETOGT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000587 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000588 case ISD::SETUGE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000589 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000590 case ISD::SETO: return PPC::PRED_NU;
591 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000592 // These two are invalid for floating point. Assume we have int.
593 case ISD::SETULT: return PPC::PRED_LT;
594 case ISD::SETUGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000595 }
Chris Lattner2fbb4572005-08-21 18:50:37 +0000596}
597
Chris Lattner64906a02005-08-25 20:08:18 +0000598/// getCRIdxForSetCC - Return the index of the condition register field
599/// associated with the SetCC condition, and whether or not the field is
600/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000601///
602/// If this returns with Other != -1, then the returned comparison is an or of
603/// two simpler comparisons. In this case, Invert is guaranteed to be false.
604static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
605 Invert = false;
606 Other = -1;
Chris Lattner64906a02005-08-25 20:08:18 +0000607 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000608 default: llvm_unreachable("Unknown condition!");
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000609 case ISD::SETOLT:
610 case ISD::SETLT: return 0; // Bit #0 = SETOLT
611 case ISD::SETOGT:
612 case ISD::SETGT: return 1; // Bit #1 = SETOGT
613 case ISD::SETOEQ:
614 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
615 case ISD::SETUO: return 3; // Bit #3 = SETUO
Chris Lattner64906a02005-08-25 20:08:18 +0000616 case ISD::SETUGE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000617 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Chris Lattner64906a02005-08-25 20:08:18 +0000618 case ISD::SETULE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000619 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000620 case ISD::SETUNE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000621 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
622 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000623 case ISD::SETUEQ:
624 case ISD::SETOGE:
625 case ISD::SETOLE:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000626 case ISD::SETONE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000627 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000628 // These are invalid for floating point. Assume integer.
629 case ISD::SETULT: return 0;
630 case ISD::SETUGT: return 1;
Chris Lattner64906a02005-08-25 20:08:18 +0000631 }
Chris Lattner64906a02005-08-25 20:08:18 +0000632}
Chris Lattner9944b762005-08-21 22:31:09 +0000633
Adhemerval Zanella5f41fd62012-10-30 13:50:19 +0000634// getVCmpInst: return the vector compare instruction for the specified
635// vector type and condition code. Since this is for altivec specific code,
636// only support the altivec types (v16i8, v8i16, v4i32, and v4f32).
637static unsigned int getVCmpInst(MVT::SimpleValueType VecVT, ISD::CondCode CC) {
638 switch (CC) {
639 case ISD::SETEQ:
640 case ISD::SETUEQ:
641 case ISD::SETNE:
642 case ISD::SETUNE:
643 if (VecVT == MVT::v16i8)
644 return PPC::VCMPEQUB;
645 else if (VecVT == MVT::v8i16)
646 return PPC::VCMPEQUH;
647 else if (VecVT == MVT::v4i32)
648 return PPC::VCMPEQUW;
649 // v4f32 != v4f32 could be translate to unordered not equal
650 else if (VecVT == MVT::v4f32)
651 return PPC::VCMPEQFP;
652 break;
653 case ISD::SETLT:
654 case ISD::SETGT:
655 case ISD::SETLE:
656 case ISD::SETGE:
657 if (VecVT == MVT::v16i8)
658 return PPC::VCMPGTSB;
659 else if (VecVT == MVT::v8i16)
660 return PPC::VCMPGTSH;
661 else if (VecVT == MVT::v4i32)
662 return PPC::VCMPGTSW;
663 else if (VecVT == MVT::v4f32)
664 return PPC::VCMPGTFP;
665 break;
666 case ISD::SETULT:
667 case ISD::SETUGT:
668 case ISD::SETUGE:
669 case ISD::SETULE:
670 if (VecVT == MVT::v16i8)
671 return PPC::VCMPGTUB;
672 else if (VecVT == MVT::v8i16)
673 return PPC::VCMPGTUH;
674 else if (VecVT == MVT::v4i32)
675 return PPC::VCMPGTUW;
676 break;
677 case ISD::SETOEQ:
678 if (VecVT == MVT::v4f32)
679 return PPC::VCMPEQFP;
680 break;
681 case ISD::SETOLT:
682 case ISD::SETOGT:
683 case ISD::SETOLE:
684 if (VecVT == MVT::v4f32)
685 return PPC::VCMPGTFP;
686 break;
687 case ISD::SETOGE:
688 if (VecVT == MVT::v4f32)
689 return PPC::VCMPGEFP;
690 break;
691 default:
692 break;
693 }
694 llvm_unreachable("Invalid integer vector compare condition");
695}
696
697// getVCmpEQInst: return the equal compare instruction for the specified vector
698// type. Since this is for altivec specific code, only support the altivec
699// types (v16i8, v8i16, v4i32, and v4f32).
700static unsigned int getVCmpEQInst(MVT::SimpleValueType VecVT) {
701 switch (VecVT) {
702 case MVT::v16i8:
703 return PPC::VCMPEQUB;
704 case MVT::v8i16:
705 return PPC::VCMPEQUH;
706 case MVT::v4i32:
707 return PPC::VCMPEQUW;
708 case MVT::v4f32:
709 return PPC::VCMPEQFP;
710 default:
711 llvm_unreachable("Invalid integer vector compare condition");
712 }
713}
714
715
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000716SDNode *PPCDAGToDAGISel::SelectSETCC(SDNode *N) {
Dale Johannesena05dca42009-02-04 23:02:30 +0000717 DebugLoc dl = N->getDebugLoc();
Chris Lattner222adac2005-10-06 19:03:35 +0000718 unsigned Imm;
719 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Roman Divacky8e9d6722011-06-20 15:28:39 +0000720 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
721 bool isPPC64 = (PtrVT == MVT::i64);
722
Chris Lattnerc08f9022006-06-27 00:04:13 +0000723 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner222adac2005-10-06 19:03:35 +0000724 // We can codegen setcc op, imm very efficiently compared to a brcond.
725 // Check for those cases here.
726 // setcc op, 0
727 if (Imm == 0) {
Dan Gohman475871a2008-07-27 21:46:04 +0000728 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000729 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000730 default: break;
Evan Cheng0b828e02006-08-27 08:14:06 +0000731 case ISD::SETEQ: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000732 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000733 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000734 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000735 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000736 case ISD::SETNE: {
Roman Divacky8e9d6722011-06-20 15:28:39 +0000737 if (isPPC64) break;
Dan Gohman475871a2008-07-27 21:46:04 +0000738 SDValue AD =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000739 SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000740 Op, getI32Imm(~0U)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000741 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000742 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000743 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000744 case ISD::SETLT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000745 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000746 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000747 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000748 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000749 SDValue T =
Dan Gohman602b0c82009-09-25 18:54:59 +0000750 SDValue(CurDAG->getMachineNode(PPC::NEG, dl, MVT::i32, Op), 0);
751 T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000752 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000753 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000754 }
755 }
Chris Lattner222adac2005-10-06 19:03:35 +0000756 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman475871a2008-07-27 21:46:04 +0000757 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000758 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000759 default: break;
760 case ISD::SETEQ:
Roman Divacky8e9d6722011-06-20 15:28:39 +0000761 if (isPPC64) break;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000762 Op = SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000763 Op, getI32Imm(1)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000764 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
765 SDValue(CurDAG->getMachineNode(PPC::LI, dl,
Dan Gohman602b0c82009-09-25 18:54:59 +0000766 MVT::i32,
767 getI32Imm(0)), 0),
Dale Johannesena05dca42009-02-04 23:02:30 +0000768 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000769 case ISD::SETNE: {
Roman Divacky8e9d6722011-06-20 15:28:39 +0000770 if (isPPC64) break;
Dan Gohman602b0c82009-09-25 18:54:59 +0000771 Op = SDValue(CurDAG->getMachineNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000772 SDNode *AD = CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000773 Op, getI32Imm(~0U));
Owen Anderson825b72b2009-08-11 20:47:22 +0000774 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
Dan Gohman475871a2008-07-27 21:46:04 +0000775 Op, SDValue(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000776 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000777 case ISD::SETLT: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000778 SDValue AD = SDValue(CurDAG->getMachineNode(PPC::ADDI, dl, MVT::i32, Op,
779 getI32Imm(1)), 0);
780 SDValue AN = SDValue(CurDAG->getMachineNode(PPC::AND, dl, MVT::i32, AD,
781 Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000782 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000783 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000784 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000785 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000786 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000787 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
Dale Johannesena05dca42009-02-04 23:02:30 +0000788 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000789 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000790 getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000791 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000792 }
Chris Lattner222adac2005-10-06 19:03:35 +0000793 }
794 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000795
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000796 SDValue LHS = N->getOperand(0);
797 SDValue RHS = N->getOperand(1);
798
Adhemerval Zanella5f41fd62012-10-30 13:50:19 +0000799 // Altivec Vector compare instructions do not set any CR register by default and
800 // vector compare operations return the same type as the operands.
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000801 if (LHS.getValueType().isVector()) {
Adhemerval Zanella5f41fd62012-10-30 13:50:19 +0000802 EVT VecVT = LHS.getValueType();
803 MVT::SimpleValueType VT = VecVT.getSimpleVT().SimpleTy;
804 unsigned int VCmpInst = getVCmpInst(VT, CC);
805
806 switch (CC) {
807 case ISD::SETEQ:
808 case ISD::SETOEQ:
809 case ISD::SETUEQ:
810 return CurDAG->SelectNodeTo(N, VCmpInst, VecVT, LHS, RHS);
811 case ISD::SETNE:
812 case ISD::SETONE:
813 case ISD::SETUNE: {
814 SDValue VCmp(CurDAG->getMachineNode(VCmpInst, dl, VecVT, LHS, RHS), 0);
815 return CurDAG->SelectNodeTo(N, PPC::VNOR, VecVT, VCmp, VCmp);
816 }
817 case ISD::SETLT:
818 case ISD::SETOLT:
819 case ISD::SETULT:
820 return CurDAG->SelectNodeTo(N, VCmpInst, VecVT, RHS, LHS);
821 case ISD::SETGT:
822 case ISD::SETOGT:
823 case ISD::SETUGT:
824 return CurDAG->SelectNodeTo(N, VCmpInst, VecVT, LHS, RHS);
825 case ISD::SETGE:
826 case ISD::SETOGE:
827 case ISD::SETUGE: {
828 // Small optimization: Altivec provides a 'Vector Compare Greater Than
829 // or Equal To' instruction (vcmpgefp), so in this case there is no
830 // need for extra logic for the equal compare.
831 if (VecVT.getSimpleVT().isFloatingPoint()) {
832 return CurDAG->SelectNodeTo(N, VCmpInst, VecVT, LHS, RHS);
833 } else {
834 SDValue VCmpGT(CurDAG->getMachineNode(VCmpInst, dl, VecVT, LHS, RHS), 0);
835 unsigned int VCmpEQInst = getVCmpEQInst(VT);
836 SDValue VCmpEQ(CurDAG->getMachineNode(VCmpEQInst, dl, VecVT, LHS, RHS), 0);
837 return CurDAG->SelectNodeTo(N, PPC::VOR, VecVT, VCmpGT, VCmpEQ);
838 }
839 }
840 case ISD::SETLE:
841 case ISD::SETOLE:
842 case ISD::SETULE: {
843 SDValue VCmpLE(CurDAG->getMachineNode(VCmpInst, dl, VecVT, RHS, LHS), 0);
844 unsigned int VCmpEQInst = getVCmpEQInst(VT);
845 SDValue VCmpEQ(CurDAG->getMachineNode(VCmpEQInst, dl, VecVT, LHS, RHS), 0);
846 return CurDAG->SelectNodeTo(N, PPC::VOR, VecVT, VCmpLE, VCmpEQ);
847 }
848 default:
849 llvm_unreachable("Invalid vector compare type: should be expanded by legalize");
850 }
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000851 }
852
Chris Lattner222adac2005-10-06 19:03:35 +0000853 bool Inv;
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000854 int OtherCondIdx;
855 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000856 SDValue CCReg = SelectCC(LHS, RHS, CC, dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000857 SDValue IntCR;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000858
Chris Lattner222adac2005-10-06 19:03:35 +0000859 // Force the ccreg into CR7.
Owen Anderson825b72b2009-08-11 20:47:22 +0000860 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000861
Dan Gohman475871a2008-07-27 21:46:04 +0000862 SDValue InFlag(0, 0); // Null incoming flag value.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000863 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000864 InFlag).getValue(1);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000865
Hal Finkelbd5cafd2012-06-11 19:57:01 +0000866 if (PPCSubTarget.hasMFOCRF() && OtherCondIdx == -1)
Dan Gohman602b0c82009-09-25 18:54:59 +0000867 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
868 CCReg), 0);
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000869 else
Dale Johannesen5f07d522010-05-20 17:48:26 +0000870 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
871 CR7Reg, CCReg), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000872
Dan Gohman475871a2008-07-27 21:46:04 +0000873 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Evan Cheng0b828e02006-08-27 08:14:06 +0000874 getI32Imm(31), getI32Imm(31) };
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000875 if (OtherCondIdx == -1 && !Inv)
Owen Anderson825b72b2009-08-11 20:47:22 +0000876 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000877
878 // Get the specified bit.
Dan Gohman475871a2008-07-27 21:46:04 +0000879 SDValue Tmp =
Dan Gohman602b0c82009-09-25 18:54:59 +0000880 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000881 if (Inv) {
882 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Owen Anderson825b72b2009-08-11 20:47:22 +0000883 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000884 }
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000885
886 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
887 // We already got the bit for the first part of the comparison (e.g. SETULE).
888
889 // Get the other bit of the comparison.
890 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000891 SDValue OtherCond =
Dan Gohman602b0c82009-09-25 18:54:59 +0000892 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000893
Owen Anderson825b72b2009-08-11 20:47:22 +0000894 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Chris Lattner222adac2005-10-06 19:03:35 +0000895}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000896
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000897
Chris Lattnera5a91b12005-08-17 19:33:03 +0000898// Select - Convert the specified operand from a target-independent to a
899// target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000900SDNode *PPCDAGToDAGISel::Select(SDNode *N) {
901 DebugLoc dl = N->getDebugLoc();
Dan Gohmane8be6c62008-07-17 19:10:17 +0000902 if (N->isMachineOpcode())
Evan Cheng64a752f2006-08-11 09:08:15 +0000903 return NULL; // Already selected.
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000904
Chris Lattnera5a91b12005-08-17 19:33:03 +0000905 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000906 default: break;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000907
Jim Laskey78f97f32006-12-12 13:23:43 +0000908 case ISD::Constant: {
Owen Anderson825b72b2009-08-11 20:47:22 +0000909 if (N->getValueType(0) == MVT::i64) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000910 // Get 64 bit value.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000911 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Jim Laskey78f97f32006-12-12 13:23:43 +0000912 // Assume no remaining bits.
913 unsigned Remainder = 0;
914 // Assume no shift required.
915 unsigned Shift = 0;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000916
Jim Laskey78f97f32006-12-12 13:23:43 +0000917 // If it can't be represented as a 32 bit value.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000918 if (!isInt<32>(Imm)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000919 Shift = CountTrailingZeros_64(Imm);
920 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000921
Jim Laskey78f97f32006-12-12 13:23:43 +0000922 // If the shifted value fits 32 bits.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000923 if (isInt<32>(ImmSh)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000924 // Go with the shifted value.
925 Imm = ImmSh;
926 } else {
927 // Still stuck with a 64 bit value.
928 Remainder = Imm;
929 Shift = 32;
930 Imm >>= 32;
931 }
932 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000933
Jim Laskey78f97f32006-12-12 13:23:43 +0000934 // Intermediate operand.
935 SDNode *Result;
936
937 // Handle first 32 bits.
938 unsigned Lo = Imm & 0xFFFF;
939 unsigned Hi = (Imm >> 16) & 0xFFFF;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000940
Jim Laskey78f97f32006-12-12 13:23:43 +0000941 // Simple value.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000942 if (isInt<16>(Imm)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000943 // Just the Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000944 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000945 } else if (Lo) {
946 // Handle the Hi bits.
947 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dan Gohman602b0c82009-09-25 18:54:59 +0000948 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000949 // And Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000950 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
951 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000952 } else {
953 // Just the Hi bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000954 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000955 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000956
Jim Laskey78f97f32006-12-12 13:23:43 +0000957 // If no shift, we're done.
958 if (!Shift) return Result;
959
960 // Shift for next step if the upper 32-bits were not zero.
961 if (Imm) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000962 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
963 SDValue(Result, 0),
964 getI32Imm(Shift),
965 getI32Imm(63 - Shift));
Jim Laskey78f97f32006-12-12 13:23:43 +0000966 }
967
968 // Add in the last bits as required.
969 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000970 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64,
971 SDValue(Result, 0), getI32Imm(Hi));
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000972 }
Jim Laskey78f97f32006-12-12 13:23:43 +0000973 if ((Lo = Remainder & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000974 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
975 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000976 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000977
Jim Laskey78f97f32006-12-12 13:23:43 +0000978 return Result;
979 }
980 break;
981 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000982
Evan Cheng34167212006-02-09 00:37:58 +0000983 case ISD::SETCC:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000984 return SelectSETCC(N);
Evan Cheng34167212006-02-09 00:37:58 +0000985 case PPCISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +0000986 return getGlobalBaseReg();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000987
Chris Lattnere28e40a2005-08-25 00:45:43 +0000988 case ISD::FrameIndex: {
989 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000990 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
991 unsigned Opc = N->getValueType(0) == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000992 if (N->hasOneUse())
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000993 return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), TFI,
Evan Cheng95514ba2006-08-26 08:00:10 +0000994 getSmallIPtrImm(0));
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000995 return CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI,
Dan Gohman602b0c82009-09-25 18:54:59 +0000996 getSmallIPtrImm(0));
Chris Lattnere28e40a2005-08-25 00:45:43 +0000997 }
Chris Lattner6d92cad2006-03-26 10:06:40 +0000998
999 case PPCISD::MFCR: {
Dan Gohman475871a2008-07-27 21:46:04 +00001000 SDValue InFlag = N->getOperand(1);
Chris Lattner6d92cad2006-03-26 10:06:40 +00001001 // Use MFOCRF if supported.
Hal Finkelbd5cafd2012-06-11 19:57:01 +00001002 if (PPCSubTarget.hasMFOCRF())
Dan Gohman602b0c82009-09-25 18:54:59 +00001003 return CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32,
1004 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +00001005 else
Dale Johannesen5f07d522010-05-20 17:48:26 +00001006 return CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
1007 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +00001008 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001009
Chris Lattner88add102005-09-28 22:50:24 +00001010 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001011 // FIXME: since this depends on the setting of the carry flag from the srawi
1012 // we should really be making notes about that for the scheduler.
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001013 // FIXME: It sure would be nice if we could cheaply recognize the
Nate Begeman405e3ec2005-10-21 00:02:42 +00001014 // srl/add/sra pattern the dag combiner will generate for this as
1015 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +00001016 unsigned Imm;
Chris Lattnerc08f9022006-06-27 00:04:13 +00001017 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001018 SDValue N0 = N->getOperand(0);
Chris Lattner8784a232005-08-25 17:50:06 +00001019 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001020 SDNode *Op =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001021 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +00001022 N0, getI32Imm(Log2_32(Imm)));
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001023 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +00001024 SDValue(Op, 0), SDValue(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +00001025 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001026 SDNode *Op =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001027 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +00001028 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman475871a2008-07-27 21:46:04 +00001029 SDValue PT =
Dan Gohman602b0c82009-09-25 18:54:59 +00001030 SDValue(CurDAG->getMachineNode(PPC::ADDZE, dl, MVT::i32,
1031 SDValue(Op, 0), SDValue(Op, 1)),
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001032 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001033 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +00001034 }
1035 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001036
Chris Lattner237733e2005-09-29 23:33:31 +00001037 // Other cases are autogenerated.
1038 break;
Chris Lattner047b9522005-08-25 22:04:30 +00001039 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001040
Chris Lattner4eab7142006-11-10 02:08:47 +00001041 case ISD::LOAD: {
1042 // Handle preincrement loads.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001043 LoadSDNode *LD = cast<LoadSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +00001044 EVT LoadedVT = LD->getMemoryVT();
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001045
Chris Lattner4eab7142006-11-10 02:08:47 +00001046 // Normal loads are handled by code generated from the .td file.
1047 if (LD->getAddressingMode() != ISD::PRE_INC)
1048 break;
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001049
Dan Gohman475871a2008-07-27 21:46:04 +00001050 SDValue Offset = LD->getOffset();
Chris Lattner5b3bbc72006-11-11 04:53:30 +00001051 if (isa<ConstantSDNode>(Offset) ||
1052 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001053
Chris Lattner0851b4f2006-11-15 19:55:13 +00001054 unsigned Opcode;
1055 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
Owen Anderson825b72b2009-08-11 20:47:22 +00001056 if (LD->getValueType(0) != MVT::i64) {
Chris Lattner0851b4f2006-11-15 19:55:13 +00001057 // Handle PPC32 integer and normal FP loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00001058 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
1059 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001060 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001061 case MVT::f64: Opcode = PPC::LFDU; break;
1062 case MVT::f32: Opcode = PPC::LFSU; break;
1063 case MVT::i32: Opcode = PPC::LWZU; break;
1064 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
1065 case MVT::i1:
1066 case MVT::i8: Opcode = PPC::LBZU; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +00001067 }
1068 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001069 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
1070 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
1071 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001072 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001073 case MVT::i64: Opcode = PPC::LDU; break;
1074 case MVT::i32: Opcode = PPC::LWZU8; break;
1075 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
1076 case MVT::i1:
1077 case MVT::i8: Opcode = PPC::LBZU8; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +00001078 }
1079 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001080
Dan Gohman475871a2008-07-27 21:46:04 +00001081 SDValue Chain = LD->getChain();
1082 SDValue Base = LD->getBasePtr();
Dan Gohman475871a2008-07-27 21:46:04 +00001083 SDValue Ops[] = { Offset, Base, Chain };
Dan Gohman602b0c82009-09-25 18:54:59 +00001084 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
1085 PPCLowering.getPointerTy(),
1086 MVT::Other, Ops, 3);
Chris Lattner4eab7142006-11-10 02:08:47 +00001087 } else {
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001088 unsigned Opcode;
1089 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
1090 if (LD->getValueType(0) != MVT::i64) {
1091 // Handle PPC32 integer and normal FP loads.
1092 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
1093 switch (LoadedVT.getSimpleVT().SimpleTy) {
1094 default: llvm_unreachable("Invalid PPC load type!");
1095 case MVT::f64: Opcode = PPC::LFDUX; break;
1096 case MVT::f32: Opcode = PPC::LFSUX; break;
1097 case MVT::i32: Opcode = PPC::LWZUX; break;
1098 case MVT::i16: Opcode = isSExt ? PPC::LHAUX : PPC::LHZUX; break;
1099 case MVT::i1:
1100 case MVT::i8: Opcode = PPC::LBZUX; break;
1101 }
1102 } else {
1103 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
1104 assert((!isSExt || LoadedVT == MVT::i16 || LoadedVT == MVT::i32) &&
1105 "Invalid sext update load");
1106 switch (LoadedVT.getSimpleVT().SimpleTy) {
1107 default: llvm_unreachable("Invalid PPC load type!");
1108 case MVT::i64: Opcode = PPC::LDUX; break;
1109 case MVT::i32: Opcode = isSExt ? PPC::LWAUX : PPC::LWZUX8; break;
1110 case MVT::i16: Opcode = isSExt ? PPC::LHAUX8 : PPC::LHZUX8; break;
1111 case MVT::i1:
1112 case MVT::i8: Opcode = PPC::LBZUX8; break;
1113 }
1114 }
1115
1116 SDValue Chain = LD->getChain();
1117 SDValue Base = LD->getBasePtr();
1118 SDValue Ops[] = { Offset, Base, Chain };
1119 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
1120 PPCLowering.getPointerTy(),
1121 MVT::Other, Ops, 3);
Chris Lattner4eab7142006-11-10 02:08:47 +00001122 }
1123 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001124
Nate Begemancffc32b2005-08-18 07:30:46 +00001125 case ISD::AND: {
Nate Begemanf42f1332006-09-22 05:01:56 +00001126 unsigned Imm, Imm2, SH, MB, ME;
Hal Finkel97d047d2012-08-28 02:10:15 +00001127 uint64_t Imm64;
Nate Begemanf42f1332006-09-22 05:01:56 +00001128
Nate Begemancffc32b2005-08-18 07:30:46 +00001129 // If this is an and of a value rotated between 0 and 31 bits and then and'd
1130 // with a mask, emit rlwinm
Chris Lattnerc08f9022006-06-27 00:04:13 +00001131 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001132 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001133 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001134 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001135 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemancffc32b2005-08-18 07:30:46 +00001136 }
Nate Begemanf42f1332006-09-22 05:01:56 +00001137 // If this is just a masked value where the input is not handled above, and
1138 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
1139 if (isInt32Immediate(N->getOperand(1), Imm) &&
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001140 isRunOfOnes(Imm, MB, ME) &&
Nate Begemanf42f1332006-09-22 05:01:56 +00001141 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman475871a2008-07-27 21:46:04 +00001142 SDValue Val = N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001143 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001144 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemanf42f1332006-09-22 05:01:56 +00001145 }
Hal Finkel97d047d2012-08-28 02:10:15 +00001146 // If this is a 64-bit zero-extension mask, emit rldicl.
1147 if (isInt64Immediate(N->getOperand(1).getNode(), Imm64) &&
1148 isMask_64(Imm64)) {
1149 SDValue Val = N->getOperand(0);
1150 MB = 64 - CountTrailingOnes_64(Imm64);
1151 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB) };
1152 return CurDAG->SelectNodeTo(N, PPC::RLDICL, MVT::i64, Ops, 3);
1153 }
Nate Begemanf42f1332006-09-22 05:01:56 +00001154 // AND X, 0 -> 0, not "rlwinm 32".
1155 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001156 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Nate Begemanf42f1332006-09-22 05:01:56 +00001157 return NULL;
1158 }
Nate Begeman50fb3c42005-12-24 01:00:15 +00001159 // ISD::OR doesn't get all the bitfield insertion fun.
1160 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001161 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman50fb3c42005-12-24 01:00:15 +00001162 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001163 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +00001164 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +00001165 Imm = ~(Imm^Imm2);
1166 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001167 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001168 N->getOperand(0).getOperand(1),
1169 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +00001170 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman50fb3c42005-12-24 01:00:15 +00001171 }
1172 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001173
Chris Lattner237733e2005-09-29 23:33:31 +00001174 // Other cases are autogenerated.
1175 break;
Nate Begemancffc32b2005-08-18 07:30:46 +00001176 }
Nate Begeman02b88a42005-08-19 00:38:14 +00001177 case ISD::OR:
Owen Anderson825b72b2009-08-11 20:47:22 +00001178 if (N->getValueType(0) == MVT::i32)
Chris Lattnerccbe2ec2006-08-15 23:48:22 +00001179 if (SDNode *I = SelectBitfieldInsert(N))
1180 return I;
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001181
Chris Lattner237733e2005-09-29 23:33:31 +00001182 // Other cases are autogenerated.
1183 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001184 case ISD::SHL: {
1185 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001186 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001187 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001188 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001189 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001190 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001191 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001192
Nate Begeman2d5aff72005-10-19 18:42:01 +00001193 // Other cases are autogenerated.
1194 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001195 }
1196 case ISD::SRL: {
1197 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001198 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001199 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001200 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001201 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001202 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001203 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001204
Nate Begeman2d5aff72005-10-19 18:42:01 +00001205 // Other cases are autogenerated.
1206 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001207 }
Chris Lattner13794f52005-08-26 18:46:49 +00001208 case ISD::SELECT_CC: {
1209 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
Roman Divacky8e9d6722011-06-20 15:28:39 +00001210 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
1211 bool isPPC64 = (PtrVT == MVT::i64);
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001212
Chris Lattnerc08f9022006-06-27 00:04:13 +00001213 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Roman Divacky8e9d6722011-06-20 15:28:39 +00001214 if (!isPPC64)
1215 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1216 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1217 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1218 if (N1C->isNullValue() && N3C->isNullValue() &&
1219 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
1220 // FIXME: Implement this optzn for PPC64.
1221 N->getValueType(0) == MVT::i32) {
1222 SDNode *Tmp =
1223 CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
1224 N->getOperand(0), getI32Imm(~0U));
1225 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
1226 SDValue(Tmp, 0), N->getOperand(0),
1227 SDValue(Tmp, 1));
1228 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001229
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001230 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00001231 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001232
Chris Lattner919c0322005-10-01 01:35:02 +00001233 unsigned SelectCCOp;
Owen Anderson825b72b2009-08-11 20:47:22 +00001234 if (N->getValueType(0) == MVT::i32)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001235 SelectCCOp = PPC::SELECT_CC_I4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001236 else if (N->getValueType(0) == MVT::i64)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001237 SelectCCOp = PPC::SELECT_CC_I8;
Owen Anderson825b72b2009-08-11 20:47:22 +00001238 else if (N->getValueType(0) == MVT::f32)
Chris Lattner919c0322005-10-01 01:35:02 +00001239 SelectCCOp = PPC::SELECT_CC_F4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001240 else if (N->getValueType(0) == MVT::f64)
Chris Lattner919c0322005-10-01 01:35:02 +00001241 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner710ff322006-04-08 22:45:08 +00001242 else
1243 SelectCCOp = PPC::SELECT_CC_VRRC;
1244
Dan Gohman475871a2008-07-27 21:46:04 +00001245 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Evan Cheng0b828e02006-08-27 08:14:06 +00001246 getI32Imm(BROpc) };
1247 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattner13794f52005-08-26 18:46:49 +00001248 }
Chris Lattner18258c62006-11-17 22:37:34 +00001249 case PPCISD::COND_BRANCH: {
Dan Gohmancbb7ab22008-11-05 17:16:24 +00001250 // Op #0 is the Chain.
Chris Lattner18258c62006-11-17 22:37:34 +00001251 // Op #1 is the PPC::PRED_* number.
1252 // Op #2 is the CR#
1253 // Op #3 is the Dest MBB
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001254 // Op #4 is the Flag.
Evan Cheng2bda17c2007-06-29 01:25:06 +00001255 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman475871a2008-07-27 21:46:04 +00001256 SDValue Pred =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001257 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman475871a2008-07-27 21:46:04 +00001258 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Chris Lattner18258c62006-11-17 22:37:34 +00001259 N->getOperand(0), N->getOperand(4) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001260 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
Chris Lattner18258c62006-11-17 22:37:34 +00001261 }
Nate Begeman81e80972006-03-17 01:40:33 +00001262 case ISD::BR_CC: {
Chris Lattner2fbb4572005-08-21 18:50:37 +00001263 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001264 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001265 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Cheng0b828e02006-08-27 08:14:06 +00001266 N->getOperand(4), N->getOperand(0) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001267 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001268 }
Nate Begeman37efe672006-04-22 18:53:45 +00001269 case ISD::BRIND: {
Chris Lattnercf006312006-06-10 01:15:02 +00001270 // FIXME: Should custom lower this.
Dan Gohman475871a2008-07-27 21:46:04 +00001271 SDValue Chain = N->getOperand(0);
1272 SDValue Target = N->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001273 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Roman Divacky0c9b5592011-06-03 15:47:49 +00001274 unsigned Reg = Target.getValueType() == MVT::i32 ? PPC::BCTR : PPC::BCTR8;
Hal Finkel67724522011-12-08 04:36:44 +00001275 Chain = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, Target,
Dan Gohman602b0c82009-09-25 18:54:59 +00001276 Chain), 0);
Roman Divacky0c9b5592011-06-03 15:47:49 +00001277 return CurDAG->SelectNodeTo(N, Reg, MVT::Other, Chain);
Nate Begeman37efe672006-04-22 18:53:45 +00001278 }
Bill Schmidt34a9d4b2012-11-27 17:35:46 +00001279 case PPCISD::TOC_ENTRY: {
1280 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1281
1282 // For medium code model, we generate two instructions as described
1283 // below. Otherwise we allow SelectCodeCommon to handle this, selecting
1284 // one of LDtoc, LDtocJTI, and LDtocCPT.
1285 if (TM.getCodeModel() != CodeModel::Medium)
1286 break;
1287
1288 // The first source operand is a TargetGlobalAddress or a
1289 // TargetJumpTable. If it is an externally defined symbol, a symbol
1290 // with common linkage, a function address, or a jump table address,
1291 // we generate:
1292 // LDtocL(<ga:@sym>, ADDIStocHA(%X2, <ga:@sym>))
1293 // Otherwise we generate:
1294 // ADDItocL(ADDIStocHA(%X2, <ga:@sym>), <ga:@sym>)
1295 SDValue GA = N->getOperand(0);
1296 SDValue TOCbase = N->getOperand(1);
1297 SDNode *Tmp = CurDAG->getMachineNode(PPC::ADDIStocHA, dl, MVT::i64,
1298 TOCbase, GA);
1299
1300 if (isa<JumpTableSDNode>(GA))
1301 return CurDAG->getMachineNode(PPC::LDtocL, dl, MVT::i64, GA,
1302 SDValue(Tmp, 0));
1303
1304 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(GA)) {
1305 const GlobalValue *GValue = G->getGlobal();
Bill Schmidt5b7f9212013-01-07 19:29:18 +00001306 const GlobalAlias *GAlias = dyn_cast<GlobalAlias>(GValue);
1307 const GlobalValue *RealGValue = GAlias ?
1308 GAlias->resolveAliasedGlobal(false) : GValue;
1309 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(RealGValue);
1310 assert((GVar || isa<Function>(RealGValue)) &&
Bill Schmidt34a9d4b2012-11-27 17:35:46 +00001311 "Unexpected global value subclass!");
1312
1313 // An external variable is one without an initializer. For these,
1314 // for variables with common linkage, and for Functions, generate
1315 // the LDtocL form.
Bill Schmidt5b7f9212013-01-07 19:29:18 +00001316 if (!GVar || !GVar->hasInitializer() || RealGValue->hasCommonLinkage() ||
1317 RealGValue->hasAvailableExternallyLinkage())
Bill Schmidt34a9d4b2012-11-27 17:35:46 +00001318 return CurDAG->getMachineNode(PPC::LDtocL, dl, MVT::i64, GA,
1319 SDValue(Tmp, 0));
1320 }
1321
1322 return CurDAG->getMachineNode(PPC::ADDItocL, dl, MVT::i64,
1323 SDValue(Tmp, 0), GA);
1324 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001325 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001326
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001327 return SelectCode(N);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001328}
1329
1330
Chris Lattnercf006312006-06-10 01:15:02 +00001331
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001332/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001333/// PowerPC-specific DAG, ready for instruction scheduling.
1334///
Evan Chengc4c62572006-03-13 23:20:37 +00001335FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman1d9d7422005-10-18 00:28:58 +00001336 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001337}
1338
Krzysztof Parzyszek96848df2013-02-13 17:40:07 +00001339static void initializePassOnce(PassRegistry &Registry) {
1340 const char *Name = "PowerPC DAG->DAG Pattern Instruction Selection";
1341 PassInfo *PI = new PassInfo(Name, "ppc-codegen", &SelectionDAGISel::ID, 0,
1342 false, false);
1343 Registry.registerPass(*PI, true);
1344}
1345
1346void llvm::initializePPCDAGToDAGISelPass(PassRegistry &Registry) {
1347 CALL_ONCE_INITIALIZATION(initializePassOnce);
1348}
1349