blob: 806c44492705f8c1e65a749ee35696c303bb9d54 [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"
Chris Lattner2fe76e52005-08-25 04:47:18 +000024#include "llvm/Constants.h"
Chris Lattner9062d9a2009-04-17 00:26:12 +000025#include "llvm/Function.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000026#include "llvm/GlobalValue.h"
Bill Schmidt34a9d4b2012-11-27 17:35:46 +000027#include "llvm/GlobalVariable.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"
Torok Edwindac237e2009-07-08 20:53:28 +000030#include "llvm/Support/ErrorHandling.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000031#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000032#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000033#include "llvm/Target/TargetOptions.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000034using namespace llvm;
35
36namespace {
Chris Lattnera5a91b12005-08-17 19:33:03 +000037 //===--------------------------------------------------------------------===//
Nate Begeman1d9d7422005-10-18 00:28:58 +000038 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
Chris Lattnera5a91b12005-08-17 19:33:03 +000039 /// instructions for SelectionDAG operations.
40 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +000041 class PPCDAGToDAGISel : public SelectionDAGISel {
Dan Gohmand858e902010-04-17 15:26:15 +000042 const PPCTargetMachine &TM;
43 const PPCTargetLowering &PPCLowering;
Evan Cheng152b7e12007-10-23 06:42:42 +000044 const PPCSubtarget &PPCSubTarget;
Chris Lattner4416f1a2005-08-19 22:38:53 +000045 unsigned GlobalBaseReg;
Chris Lattnera5a91b12005-08-17 19:33:03 +000046 public:
Dan Gohman1002c022008-07-07 18:00:37 +000047 explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
Dan Gohman79ce2762009-01-15 19:20:50 +000048 : SelectionDAGISel(tm), TM(tm),
Evan Cheng152b7e12007-10-23 06:42:42 +000049 PPCLowering(*TM.getTargetLowering()),
50 PPCSubTarget(*TM.getSubtargetImpl()) {}
Andrew Trick6e8f4c42010-12-24 04:28:06 +000051
Dan Gohmanad2afc22009-07-31 18:16:33 +000052 virtual bool runOnMachineFunction(MachineFunction &MF) {
Chris Lattner4416f1a2005-08-19 22:38:53 +000053 // Make sure we re-emit a set of the global base reg if necessary
54 GlobalBaseReg = 0;
Dan Gohmanad2afc22009-07-31 18:16:33 +000055 SelectionDAGISel::runOnMachineFunction(MF);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000056
Bill Schmidta5d0ab52012-10-10 20:54:15 +000057 if (!PPCSubTarget.isSVR4ABI())
58 InsertVRSaveCode(MF);
59
Chris Lattner4bb18952006-03-16 18:25:23 +000060 return true;
Chris Lattner4416f1a2005-08-19 22:38:53 +000061 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000062
Chris Lattnera5a91b12005-08-17 19:33:03 +000063 /// getI32Imm - Return a target constant with the specified value, of type
64 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +000065 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000066 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnera5a91b12005-08-17 19:33:03 +000067 }
Chris Lattner4416f1a2005-08-19 22:38:53 +000068
Chris Lattnerc08f9022006-06-27 00:04:13 +000069 /// getI64Imm - Return a target constant with the specified value, of type
70 /// i64.
Dan Gohman475871a2008-07-27 21:46:04 +000071 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000072 return CurDAG->getTargetConstant(Imm, MVT::i64);
Chris Lattnerc08f9022006-06-27 00:04:13 +000073 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000074
Chris Lattnerc08f9022006-06-27 00:04:13 +000075 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman475871a2008-07-27 21:46:04 +000076 inline SDValue getSmallIPtrImm(unsigned Imm) {
Chris Lattnerc08f9022006-06-27 00:04:13 +000077 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
78 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +000079
Sylvestre Ledru94c22712012-09-27 10:14:43 +000080 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
Nate Begemanf42f1332006-09-22 05:01:56 +000081 /// with any number of 0s on either side. The 1s are allowed to wrap from
82 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
83 /// 0x0F0F0000 is not, since all 1s are not contiguous.
84 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
85
86
87 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
88 /// rotate and mask opcode and mask operation.
Dale Johannesenb60d5192009-11-24 01:09:07 +000089 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask,
Nate Begemanf42f1332006-09-22 05:01:56 +000090 unsigned &SH, unsigned &MB, unsigned &ME);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000091
Chris Lattner4416f1a2005-08-19 22:38:53 +000092 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
93 /// base register. Return the virtual register that holds this value.
Evan Cheng9ade2182006-08-26 05:34:46 +000094 SDNode *getGlobalBaseReg();
Andrew Trick6e8f4c42010-12-24 04:28:06 +000095
Chris Lattnera5a91b12005-08-17 19:33:03 +000096 // Select - Convert the specified operand from a target-independent to a
97 // target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +000098 SDNode *Select(SDNode *N);
Andrew Trick6e8f4c42010-12-24 04:28:06 +000099
Nate Begeman02b88a42005-08-19 00:38:14 +0000100 SDNode *SelectBitfieldInsert(SDNode *N);
101
Chris Lattner2fbb4572005-08-21 18:50:37 +0000102 /// SelectCC - Select a comparison of the specified values with the
103 /// specified condition code, returning the CR# of the expression.
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000104 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000105
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000106 /// SelectAddrImm - Returns true if the address N can be represented by
107 /// a base register plus a signed 16-bit displacement [r+imm].
Chris Lattner52a261b2010-09-21 20:31:19 +0000108 bool SelectAddrImm(SDValue N, SDValue &Disp,
Dan Gohman475871a2008-07-27 21:46:04 +0000109 SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000110 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
111 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000112
Chris Lattner74531e42006-11-16 00:41:37 +0000113 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
114 /// immediate field. Because preinc imms have already been validated, just
115 /// accept it.
Chris Lattner52a261b2010-09-21 20:31:19 +0000116 bool SelectAddrImmOffs(SDValue N, SDValue &Out) const {
Hal Finkel2bbc9192012-06-21 20:10:48 +0000117 if (isa<ConstantSDNode>(N) || N.getOpcode() == PPCISD::Lo ||
118 N.getOpcode() == ISD::TargetGlobalAddress) {
Hal Finkelac81cc32012-06-19 02:34:32 +0000119 Out = N;
120 return true;
121 }
122
123 return false;
124 }
125
126 /// SelectAddrIdxOffs - Return true if the operand is valid for a preinc
127 /// index field. Because preinc imms have already been validated, just
128 /// accept it.
129 bool SelectAddrIdxOffs(SDValue N, SDValue &Out) const {
Hal Finkel2bbc9192012-06-21 20:10:48 +0000130 if (isa<ConstantSDNode>(N) || N.getOpcode() == PPCISD::Lo ||
131 N.getOpcode() == ISD::TargetGlobalAddress)
132 return false;
133
Chris Lattner74531e42006-11-16 00:41:37 +0000134 Out = N;
135 return true;
136 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000137
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000138 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
139 /// represented as an indexed [r+r] operation. Returns false if it can
140 /// be represented by [r+imm], which are preferred.
Chris Lattner52a261b2010-09-21 20:31:19 +0000141 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000142 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
143 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000144
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000145 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
146 /// represented as an indexed [r+r] operation.
Chris Lattner52a261b2010-09-21 20:31:19 +0000147 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000148 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
149 }
Chris Lattner9944b762005-08-21 22:31:09 +0000150
Chris Lattnere5ba5802006-03-22 05:26:03 +0000151 /// SelectAddrImmShift - Returns true if the address N can be represented by
152 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
153 /// for use by STD and friends.
Chris Lattner52a261b2010-09-21 20:31:19 +0000154 bool SelectAddrImmShift(SDValue N, SDValue &Disp, SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000155 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
156 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000157
Chris Lattnere5d88612006-02-24 02:13:12 +0000158 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000159 /// inline asm expressions. It is always correct to compute the value into
160 /// a register. The case of adding a (possibly relocatable) constant to a
161 /// register can be improved, but it is wrong to substitute Reg+Reg for
162 /// Reg in an asm, because the load or store opcode would have to change.
163 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnere5d88612006-02-24 02:13:12 +0000164 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000165 std::vector<SDValue> &OutOps) {
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000166 OutOps.push_back(Op);
Chris Lattnere5d88612006-02-24 02:13:12 +0000167 return false;
168 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000169
Dan Gohmanad2afc22009-07-31 18:16:33 +0000170 void InsertVRSaveCode(MachineFunction &MF);
Chris Lattner4bb18952006-03-16 18:25:23 +0000171
Chris Lattnera5a91b12005-08-17 19:33:03 +0000172 virtual const char *getPassName() const {
173 return "PowerPC DAG->DAG Pattern Instruction Selection";
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000174 }
175
Chris Lattneraf165382005-09-13 22:03:06 +0000176// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000177#include "PPCGenDAGISel.inc"
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000178
Chris Lattnerbd937b92005-10-06 18:45:51 +0000179private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000180 SDNode *SelectSETCC(SDNode *N);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000181 };
182}
183
Chris Lattner4bb18952006-03-16 18:25:23 +0000184/// InsertVRSaveCode - Once the entire function has been instruction selected,
185/// all virtual registers are created and all machine instructions are built,
186/// check to see if we need to save/restore VRSAVE. If so, do it.
Dan Gohmanad2afc22009-07-31 18:16:33 +0000187void PPCDAGToDAGISel::InsertVRSaveCode(MachineFunction &Fn) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000188 // Check to see if this function uses vector registers, which means we have to
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000189 // save and restore the VRSAVE register and update it with the regs we use.
Chris Lattner1877ec92006-03-13 21:52:10 +0000190 //
Dan Gohmanf451cb82010-02-10 16:03:48 +0000191 // In this case, there will be virtual registers of vector type created
Chris Lattner1877ec92006-03-13 21:52:10 +0000192 // by the scheduler. Detect them now.
Chris Lattner1877ec92006-03-13 21:52:10 +0000193 bool HasVectorVReg = false;
Jakob Stoklund Olesenb2581352011-01-08 23:11:11 +0000194 for (unsigned i = 0, e = RegInfo->getNumVirtRegs(); i != e; ++i) {
195 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
196 if (RegInfo->getRegClass(Reg) == &PPC::VRRCRegClass) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000197 HasVectorVReg = true;
198 break;
199 }
Jakob Stoklund Olesenb2581352011-01-08 23:11:11 +0000200 }
Chris Lattner4bb18952006-03-16 18:25:23 +0000201 if (!HasVectorVReg) return; // nothing to do.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000202
Chris Lattner1877ec92006-03-13 21:52:10 +0000203 // If we have a vector register, we want to emit code into the entry and exit
204 // blocks to save and restore the VRSAVE register. We do this here (instead
205 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
206 //
207 // 1. This (trivially) reduces the load on the register allocator, by not
208 // having to represent the live range of the VRSAVE register.
209 // 2. This (more significantly) allows us to create a temporary virtual
210 // register to hold the saved VRSAVE value, allowing this temporary to be
211 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner4bb18952006-03-16 18:25:23 +0000212
213 // Create two vregs - one to hold the VRSAVE register that is live-in to the
214 // function and one for the value after having bits or'd into it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000215 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
216 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000217
Evan Chengc0f64ff2006-11-27 23:37:22 +0000218 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4bb18952006-03-16 18:25:23 +0000219 MachineBasicBlock &EntryBB = *Fn.begin();
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000220 DebugLoc dl;
Chris Lattner4bb18952006-03-16 18:25:23 +0000221 // Emit the following code into the entry block:
222 // InVRSAVE = MFVRSAVE
223 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
224 // MTVRSAVE UpdatedVRSAVE
225 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesen536a2f12009-02-13 02:27:39 +0000226 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
227 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattner69244302008-01-07 01:56:04 +0000228 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000229 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000230
Chris Lattner4bb18952006-03-16 18:25:23 +0000231 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner4bb18952006-03-16 18:25:23 +0000232 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000233 if (!BB->empty() && BB->back().isReturn()) {
Chris Lattner4bb18952006-03-16 18:25:23 +0000234 IP = BB->end(); --IP;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000235
Chris Lattner4bb18952006-03-16 18:25:23 +0000236 // Skip over all terminator instructions, which are part of the return
237 // sequence.
238 MachineBasicBlock::iterator I2 = IP;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000239 while (I2 != BB->begin() && (--I2)->isTerminator())
Chris Lattner4bb18952006-03-16 18:25:23 +0000240 IP = I2;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000241
Chris Lattner4bb18952006-03-16 18:25:23 +0000242 // Emit: MTVRSAVE InVRSave
Dale Johannesen536a2f12009-02-13 02:27:39 +0000243 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000244 }
Chris Lattner1877ec92006-03-13 21:52:10 +0000245 }
Chris Lattnerbd937b92005-10-06 18:45:51 +0000246}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000247
Chris Lattner4bb18952006-03-16 18:25:23 +0000248
Chris Lattner4416f1a2005-08-19 22:38:53 +0000249/// getGlobalBaseReg - Output the instructions required to put the
250/// base address to use for accessing globals into a register.
251///
Evan Cheng9ade2182006-08-26 05:34:46 +0000252SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000253 if (!GlobalBaseReg) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000254 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000255 // Insert the set of GlobalBaseReg into the first MBB of the function
Dan Gohmanbd51c672009-08-15 02:07:36 +0000256 MachineBasicBlock &FirstMBB = MF->front();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000257 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000258 DebugLoc dl;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000259
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 if (PPCLowering.getPointerTy() == MVT::i32) {
Craig Topperc9099502012-04-20 06:31:50 +0000261 GlobalBaseReg = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Cameron Zwarich0113e4e2011-05-19 02:56:28 +0000262 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR));
Dale Johannesen536a2f12009-02-13 02:27:39 +0000263 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000264 } else {
Craig Topperc9099502012-04-20 06:31:50 +0000265 GlobalBaseReg = RegInfo->createVirtualRegister(&PPC::G8RCRegClass);
Cameron Zwarich0113e4e2011-05-19 02:56:28 +0000266 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8));
Dale Johannesen536a2f12009-02-13 02:27:39 +0000267 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000268 }
Chris Lattner4416f1a2005-08-19 22:38:53 +0000269 }
Gabor Greif93c53e52008-08-31 15:37:04 +0000270 return CurDAG->getRegister(GlobalBaseReg,
271 PPCLowering.getPointerTy()).getNode();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000272}
273
274/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
275/// or 64-bit immediate, and if the value can be accurately represented as a
276/// sign extension from a 16-bit value. If so, this returns true and the
277/// immediate.
278static bool isIntS16Immediate(SDNode *N, short &Imm) {
279 if (N->getOpcode() != ISD::Constant)
280 return false;
281
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000282 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000283 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000284 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000285 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000286 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000287}
288
Dan Gohman475871a2008-07-27 21:46:04 +0000289static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000290 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000291}
292
293
Chris Lattnerc08f9022006-06-27 00:04:13 +0000294/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
295/// operand. If so Imm will receive the 32-bit value.
296static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000297 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000298 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Nate Begeman0f3257a2005-08-18 05:00:13 +0000299 return true;
300 }
301 return false;
302}
303
Chris Lattnerc08f9022006-06-27 00:04:13 +0000304/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
305/// operand. If so Imm will receive the 64-bit value.
306static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000307 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000308 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000309 return true;
310 }
311 return false;
312}
313
314// isInt32Immediate - This method tests to see if a constant operand.
315// If so Imm will receive the 32 bit value.
Dan Gohman475871a2008-07-27 21:46:04 +0000316static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000317 return isInt32Immediate(N.getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000318}
319
320
321// isOpcWithIntImmediate - This method tests to see if the node is a specific
322// opcode and that it has a immediate integer right operand.
323// If so Imm will receive the 32 bit value.
324static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000325 return N->getOpcode() == Opc
326 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000327}
328
Nate Begemanf42f1332006-09-22 05:01:56 +0000329bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000330 if (isShiftedMask_32(Val)) {
331 // look for the first non-zero bit
332 MB = CountLeadingZeros_32(Val);
333 // look for the first zero bit after the run of ones
334 ME = CountLeadingZeros_32((Val - 1) ^ Val);
335 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000336 } else {
337 Val = ~Val; // invert mask
338 if (isShiftedMask_32(Val)) {
339 // effectively look for the first zero bit
340 ME = CountLeadingZeros_32(Val) - 1;
341 // effectively look for the first one bit after the run of zeros
342 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
343 return true;
344 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000345 }
346 // no run present
347 return false;
348}
349
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000350bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
351 bool isShiftMask, unsigned &SH,
Nate Begemanf42f1332006-09-22 05:01:56 +0000352 unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000353 // Don't even go down this path for i64, since different logic will be
354 // necessary for rldicl/rldicr/rldimi.
Owen Anderson825b72b2009-08-11 20:47:22 +0000355 if (N->getValueType(0) != MVT::i32)
Nate Begemanda32c9e2005-10-19 00:05:37 +0000356 return false;
357
Nate Begemancffc32b2005-08-18 07:30:46 +0000358 unsigned Shift = 32;
359 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
360 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000361 if (N->getNumOperands() != 2 ||
Gabor Greifba36cb52008-08-28 21:40:38 +0000362 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000363 return false;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000364
Nate Begemancffc32b2005-08-18 07:30:46 +0000365 if (Opcode == ISD::SHL) {
366 // apply shift left to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000367 if (isShiftMask) Mask = Mask << Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000368 // determine which bits are made indeterminant by shift
369 Indeterminant = ~(0xFFFFFFFFu << Shift);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000370 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000371 // apply shift right to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000372 if (isShiftMask) Mask = Mask >> Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000373 // determine which bits are made indeterminant by shift
374 Indeterminant = ~(0xFFFFFFFFu >> Shift);
375 // adjust for the left rotate
376 Shift = 32 - Shift;
Nate Begemanf42f1332006-09-22 05:01:56 +0000377 } else if (Opcode == ISD::ROTL) {
378 Indeterminant = 0;
Nate Begemancffc32b2005-08-18 07:30:46 +0000379 } else {
380 return false;
381 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000382
Nate Begemancffc32b2005-08-18 07:30:46 +0000383 // if the mask doesn't intersect any Indeterminant bits
384 if (Mask && !(Mask & Indeterminant)) {
Chris Lattner0949ed52006-05-12 16:29:37 +0000385 SH = Shift & 31;
Nate Begemancffc32b2005-08-18 07:30:46 +0000386 // make sure the mask is still a mask (wrap arounds may not be)
387 return isRunOfOnes(Mask, MB, ME);
388 }
389 return false;
390}
391
Nate Begeman02b88a42005-08-19 00:38:14 +0000392/// SelectBitfieldInsert - turn an or of two masked values into
393/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000394SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000395 SDValue Op0 = N->getOperand(0);
396 SDValue Op1 = N->getOperand(1);
Dale Johannesened2eee62009-02-06 01:31:28 +0000397 DebugLoc dl = N->getDebugLoc();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000398
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000399 APInt LKZ, LKO, RKZ, RKO;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000400 CurDAG->ComputeMaskedBits(Op0, LKZ, LKO);
401 CurDAG->ComputeMaskedBits(Op1, RKZ, RKO);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000402
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000403 unsigned TargetMask = LKZ.getZExtValue();
404 unsigned InsertMask = RKZ.getZExtValue();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000405
Nate Begeman4667f2c2006-05-08 17:38:32 +0000406 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
407 unsigned Op0Opc = Op0.getOpcode();
408 unsigned Op1Opc = Op1.getOpcode();
409 unsigned Value, SH = 0;
410 TargetMask = ~TargetMask;
411 InsertMask = ~InsertMask;
Nate Begeman77f361f2006-05-07 00:23:38 +0000412
Nate Begeman4667f2c2006-05-08 17:38:32 +0000413 // If the LHS has a foldable shift and the RHS does not, then swap it to the
414 // RHS so that we can fold the shift into the insert.
Nate Begeman77f361f2006-05-07 00:23:38 +0000415 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
416 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
417 Op0.getOperand(0).getOpcode() == ISD::SRL) {
418 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
419 Op1.getOperand(0).getOpcode() != ISD::SRL) {
420 std::swap(Op0, Op1);
421 std::swap(Op0Opc, Op1Opc);
Nate Begeman4667f2c2006-05-08 17:38:32 +0000422 std::swap(TargetMask, InsertMask);
Nate Begeman77f361f2006-05-07 00:23:38 +0000423 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000424 }
Nate Begeman4667f2c2006-05-08 17:38:32 +0000425 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
426 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
427 Op1.getOperand(0).getOpcode() != ISD::SRL) {
428 std::swap(Op0, Op1);
429 std::swap(Op0Opc, Op1Opc);
430 std::swap(TargetMask, InsertMask);
431 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000432 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000433
Nate Begeman77f361f2006-05-07 00:23:38 +0000434 unsigned MB, ME;
Chris Lattner0949ed52006-05-12 16:29:37 +0000435 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dale Johannesen5ca12462009-11-20 22:16:40 +0000436 SDValue Tmp1, Tmp2;
Nate Begeman77f361f2006-05-07 00:23:38 +0000437
438 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000439 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000440 Op1 = Op1.getOperand(0);
441 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
442 }
443 if (Op1Opc == ISD::AND) {
444 unsigned SHOpc = Op1.getOperand(0).getOpcode();
445 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000446 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000447 Op1 = Op1.getOperand(0).getOperand(0);
448 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
449 } else {
450 Op1 = Op1.getOperand(0);
451 }
452 }
Dale Johannesen5ca12462009-11-20 22:16:40 +0000453
Chris Lattner0949ed52006-05-12 16:29:37 +0000454 SH &= 31;
Dale Johannesen5ca12462009-11-20 22:16:40 +0000455 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
Evan Cheng0b828e02006-08-27 08:14:06 +0000456 getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +0000457 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman02b88a42005-08-19 00:38:14 +0000458 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000459 }
460 return 0;
461}
462
Chris Lattner2fbb4572005-08-21 18:50:37 +0000463/// SelectCC - Select a comparison of the specified values with the specified
464/// condition code, returning the CR# of the expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000465SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000466 ISD::CondCode CC, DebugLoc dl) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000467 // Always select the LHS.
Chris Lattnerc08f9022006-06-27 00:04:13 +0000468 unsigned Opc;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000469
Owen Anderson825b72b2009-08-11 20:47:22 +0000470 if (LHS.getValueType() == MVT::i32) {
Chris Lattner529c2332006-06-27 00:10:13 +0000471 unsigned Imm;
Chris Lattner3836dbd2006-09-20 04:25:47 +0000472 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
473 if (isInt32Immediate(RHS, Imm)) {
474 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000475 if (isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000476 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
477 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000478 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000479 if (isInt<16>((int)Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000480 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
481 getI32Imm(Imm & 0xFFFF)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000482
Chris Lattner3836dbd2006-09-20 04:25:47 +0000483 // For non-equality comparisons, the default code would materialize the
484 // constant, then compare against it, like this:
485 // lis r2, 4660
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000486 // ori r2, r2, 22136
Chris Lattner3836dbd2006-09-20 04:25:47 +0000487 // cmpw cr0, r3, r2
488 // Since we are just comparing for equality, we can emit this instead:
489 // xoris r0,r3,0x1234
490 // cmplwi cr0,r0,0x5678
491 // beq cr0,L6
Dan Gohman602b0c82009-09-25 18:54:59 +0000492 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS, dl, MVT::i32, LHS,
493 getI32Imm(Imm >> 16)), 0);
494 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, Xor,
495 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000496 }
497 Opc = PPC::CMPLW;
498 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer34247a02010-03-29 21:13:41 +0000499 if (isInt32Immediate(RHS, Imm) && isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000500 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
501 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000502 Opc = PPC::CMPLW;
503 } else {
504 short SImm;
505 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000506 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
507 getI32Imm((int)SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000508 0);
509 Opc = PPC::CMPW;
510 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 } else if (LHS.getValueType() == MVT::i64) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000512 uint64_t Imm;
Chris Lattner71176242006-09-20 04:33:27 +0000513 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000514 if (isInt64Immediate(RHS.getNode(), Imm)) {
Chris Lattner71176242006-09-20 04:33:27 +0000515 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000516 if (isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000517 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
518 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000519 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000520 if (isInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000521 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
522 getI32Imm(Imm & 0xFFFF)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000523
Chris Lattner71176242006-09-20 04:33:27 +0000524 // For non-equality comparisons, the default code would materialize the
525 // constant, then compare against it, like this:
526 // lis r2, 4660
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000527 // ori r2, r2, 22136
Chris Lattner71176242006-09-20 04:33:27 +0000528 // cmpd cr0, r3, r2
529 // Since we are just comparing for equality, we can emit this instead:
530 // xoris r0,r3,0x1234
531 // cmpldi cr0,r0,0x5678
532 // beq cr0,L6
Benjamin Kramer34247a02010-03-29 21:13:41 +0000533 if (isUInt<32>(Imm)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000534 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS8, dl, MVT::i64, LHS,
535 getI64Imm(Imm >> 16)), 0);
536 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, Xor,
537 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000538 }
539 }
540 Opc = PPC::CMPLD;
541 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer34247a02010-03-29 21:13:41 +0000542 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt<16>(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000543 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
544 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000545 Opc = PPC::CMPLD;
546 } else {
547 short SImm;
548 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000549 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
550 getI64Imm(SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000551 0);
552 Opc = PPC::CMPD;
553 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000554 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000555 Opc = PPC::FCMPUS;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000556 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000557 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
Chris Lattnerc08f9022006-06-27 00:04:13 +0000558 Opc = PPC::FCMPUD;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000559 }
Dan Gohman602b0c82009-09-25 18:54:59 +0000560 return SDValue(CurDAG->getMachineNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000561}
562
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000563static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000564 switch (CC) {
Chris Lattner5d634ce2006-05-25 16:54:16 +0000565 case ISD::SETUEQ:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000566 case ISD::SETONE:
567 case ISD::SETOLE:
568 case ISD::SETOGE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000569 llvm_unreachable("Should be lowered by legalize!");
570 default: llvm_unreachable("Unknown condition!");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000571 case ISD::SETOEQ:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000572 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattner5d634ce2006-05-25 16:54:16 +0000573 case ISD::SETUNE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000574 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000575 case ISD::SETOLT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000576 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000577 case ISD::SETULE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000578 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000579 case ISD::SETOGT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000580 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000581 case ISD::SETUGE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000582 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000583 case ISD::SETO: return PPC::PRED_NU;
584 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000585 // These two are invalid for floating point. Assume we have int.
586 case ISD::SETULT: return PPC::PRED_LT;
587 case ISD::SETUGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000588 }
Chris Lattner2fbb4572005-08-21 18:50:37 +0000589}
590
Chris Lattner64906a02005-08-25 20:08:18 +0000591/// getCRIdxForSetCC - Return the index of the condition register field
592/// associated with the SetCC condition, and whether or not the field is
593/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000594///
595/// If this returns with Other != -1, then the returned comparison is an or of
596/// two simpler comparisons. In this case, Invert is guaranteed to be false.
597static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
598 Invert = false;
599 Other = -1;
Chris Lattner64906a02005-08-25 20:08:18 +0000600 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000601 default: llvm_unreachable("Unknown condition!");
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000602 case ISD::SETOLT:
603 case ISD::SETLT: return 0; // Bit #0 = SETOLT
604 case ISD::SETOGT:
605 case ISD::SETGT: return 1; // Bit #1 = SETOGT
606 case ISD::SETOEQ:
607 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
608 case ISD::SETUO: return 3; // Bit #3 = SETUO
Chris Lattner64906a02005-08-25 20:08:18 +0000609 case ISD::SETUGE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000610 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Chris Lattner64906a02005-08-25 20:08:18 +0000611 case ISD::SETULE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000612 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000613 case ISD::SETUNE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000614 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
615 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000616 case ISD::SETUEQ:
617 case ISD::SETOGE:
618 case ISD::SETOLE:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000619 case ISD::SETONE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000620 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000621 // These are invalid for floating point. Assume integer.
622 case ISD::SETULT: return 0;
623 case ISD::SETUGT: return 1;
Chris Lattner64906a02005-08-25 20:08:18 +0000624 }
Chris Lattner64906a02005-08-25 20:08:18 +0000625}
Chris Lattner9944b762005-08-21 22:31:09 +0000626
Adhemerval Zanella5f41fd62012-10-30 13:50:19 +0000627// getVCmpInst: return the vector compare instruction for the specified
628// vector type and condition code. Since this is for altivec specific code,
629// only support the altivec types (v16i8, v8i16, v4i32, and v4f32).
630static unsigned int getVCmpInst(MVT::SimpleValueType VecVT, ISD::CondCode CC) {
631 switch (CC) {
632 case ISD::SETEQ:
633 case ISD::SETUEQ:
634 case ISD::SETNE:
635 case ISD::SETUNE:
636 if (VecVT == MVT::v16i8)
637 return PPC::VCMPEQUB;
638 else if (VecVT == MVT::v8i16)
639 return PPC::VCMPEQUH;
640 else if (VecVT == MVT::v4i32)
641 return PPC::VCMPEQUW;
642 // v4f32 != v4f32 could be translate to unordered not equal
643 else if (VecVT == MVT::v4f32)
644 return PPC::VCMPEQFP;
645 break;
646 case ISD::SETLT:
647 case ISD::SETGT:
648 case ISD::SETLE:
649 case ISD::SETGE:
650 if (VecVT == MVT::v16i8)
651 return PPC::VCMPGTSB;
652 else if (VecVT == MVT::v8i16)
653 return PPC::VCMPGTSH;
654 else if (VecVT == MVT::v4i32)
655 return PPC::VCMPGTSW;
656 else if (VecVT == MVT::v4f32)
657 return PPC::VCMPGTFP;
658 break;
659 case ISD::SETULT:
660 case ISD::SETUGT:
661 case ISD::SETUGE:
662 case ISD::SETULE:
663 if (VecVT == MVT::v16i8)
664 return PPC::VCMPGTUB;
665 else if (VecVT == MVT::v8i16)
666 return PPC::VCMPGTUH;
667 else if (VecVT == MVT::v4i32)
668 return PPC::VCMPGTUW;
669 break;
670 case ISD::SETOEQ:
671 if (VecVT == MVT::v4f32)
672 return PPC::VCMPEQFP;
673 break;
674 case ISD::SETOLT:
675 case ISD::SETOGT:
676 case ISD::SETOLE:
677 if (VecVT == MVT::v4f32)
678 return PPC::VCMPGTFP;
679 break;
680 case ISD::SETOGE:
681 if (VecVT == MVT::v4f32)
682 return PPC::VCMPGEFP;
683 break;
684 default:
685 break;
686 }
687 llvm_unreachable("Invalid integer vector compare condition");
688}
689
690// getVCmpEQInst: return the equal compare instruction for the specified vector
691// type. Since this is for altivec specific code, only support the altivec
692// types (v16i8, v8i16, v4i32, and v4f32).
693static unsigned int getVCmpEQInst(MVT::SimpleValueType VecVT) {
694 switch (VecVT) {
695 case MVT::v16i8:
696 return PPC::VCMPEQUB;
697 case MVT::v8i16:
698 return PPC::VCMPEQUH;
699 case MVT::v4i32:
700 return PPC::VCMPEQUW;
701 case MVT::v4f32:
702 return PPC::VCMPEQFP;
703 default:
704 llvm_unreachable("Invalid integer vector compare condition");
705 }
706}
707
708
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000709SDNode *PPCDAGToDAGISel::SelectSETCC(SDNode *N) {
Dale Johannesena05dca42009-02-04 23:02:30 +0000710 DebugLoc dl = N->getDebugLoc();
Chris Lattner222adac2005-10-06 19:03:35 +0000711 unsigned Imm;
712 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Roman Divacky8e9d6722011-06-20 15:28:39 +0000713 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
714 bool isPPC64 = (PtrVT == MVT::i64);
715
Chris Lattnerc08f9022006-06-27 00:04:13 +0000716 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner222adac2005-10-06 19:03:35 +0000717 // We can codegen setcc op, imm very efficiently compared to a brcond.
718 // Check for those cases here.
719 // setcc op, 0
720 if (Imm == 0) {
Dan Gohman475871a2008-07-27 21:46:04 +0000721 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000722 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000723 default: break;
Evan Cheng0b828e02006-08-27 08:14:06 +0000724 case ISD::SETEQ: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000725 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000726 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000727 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000728 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000729 case ISD::SETNE: {
Roman Divacky8e9d6722011-06-20 15:28:39 +0000730 if (isPPC64) break;
Dan Gohman475871a2008-07-27 21:46:04 +0000731 SDValue AD =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000732 SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000733 Op, getI32Imm(~0U)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000734 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000735 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000736 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000737 case ISD::SETLT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000738 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000739 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000740 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000741 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000742 SDValue T =
Dan Gohman602b0c82009-09-25 18:54:59 +0000743 SDValue(CurDAG->getMachineNode(PPC::NEG, dl, MVT::i32, Op), 0);
744 T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000745 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000746 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000747 }
748 }
Chris Lattner222adac2005-10-06 19:03:35 +0000749 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman475871a2008-07-27 21:46:04 +0000750 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000751 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000752 default: break;
753 case ISD::SETEQ:
Roman Divacky8e9d6722011-06-20 15:28:39 +0000754 if (isPPC64) break;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000755 Op = SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000756 Op, getI32Imm(1)), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000757 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
758 SDValue(CurDAG->getMachineNode(PPC::LI, dl,
Dan Gohman602b0c82009-09-25 18:54:59 +0000759 MVT::i32,
760 getI32Imm(0)), 0),
Dale Johannesena05dca42009-02-04 23:02:30 +0000761 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000762 case ISD::SETNE: {
Roman Divacky8e9d6722011-06-20 15:28:39 +0000763 if (isPPC64) break;
Dan Gohman602b0c82009-09-25 18:54:59 +0000764 Op = SDValue(CurDAG->getMachineNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000765 SDNode *AD = CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +0000766 Op, getI32Imm(~0U));
Owen Anderson825b72b2009-08-11 20:47:22 +0000767 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
Dan Gohman475871a2008-07-27 21:46:04 +0000768 Op, SDValue(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000769 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000770 case ISD::SETLT: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000771 SDValue AD = SDValue(CurDAG->getMachineNode(PPC::ADDI, dl, MVT::i32, Op,
772 getI32Imm(1)), 0);
773 SDValue AN = SDValue(CurDAG->getMachineNode(PPC::AND, dl, MVT::i32, AD,
774 Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000775 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000776 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000777 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000778 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000779 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000780 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
Dale Johannesena05dca42009-02-04 23:02:30 +0000781 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000782 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000783 getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000784 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000785 }
Chris Lattner222adac2005-10-06 19:03:35 +0000786 }
787 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000788
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000789 SDValue LHS = N->getOperand(0);
790 SDValue RHS = N->getOperand(1);
791
Adhemerval Zanella5f41fd62012-10-30 13:50:19 +0000792 // Altivec Vector compare instructions do not set any CR register by default and
793 // vector compare operations return the same type as the operands.
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000794 if (LHS.getValueType().isVector()) {
Adhemerval Zanella5f41fd62012-10-30 13:50:19 +0000795 EVT VecVT = LHS.getValueType();
796 MVT::SimpleValueType VT = VecVT.getSimpleVT().SimpleTy;
797 unsigned int VCmpInst = getVCmpInst(VT, CC);
798
799 switch (CC) {
800 case ISD::SETEQ:
801 case ISD::SETOEQ:
802 case ISD::SETUEQ:
803 return CurDAG->SelectNodeTo(N, VCmpInst, VecVT, LHS, RHS);
804 case ISD::SETNE:
805 case ISD::SETONE:
806 case ISD::SETUNE: {
807 SDValue VCmp(CurDAG->getMachineNode(VCmpInst, dl, VecVT, LHS, RHS), 0);
808 return CurDAG->SelectNodeTo(N, PPC::VNOR, VecVT, VCmp, VCmp);
809 }
810 case ISD::SETLT:
811 case ISD::SETOLT:
812 case ISD::SETULT:
813 return CurDAG->SelectNodeTo(N, VCmpInst, VecVT, RHS, LHS);
814 case ISD::SETGT:
815 case ISD::SETOGT:
816 case ISD::SETUGT:
817 return CurDAG->SelectNodeTo(N, VCmpInst, VecVT, LHS, RHS);
818 case ISD::SETGE:
819 case ISD::SETOGE:
820 case ISD::SETUGE: {
821 // Small optimization: Altivec provides a 'Vector Compare Greater Than
822 // or Equal To' instruction (vcmpgefp), so in this case there is no
823 // need for extra logic for the equal compare.
824 if (VecVT.getSimpleVT().isFloatingPoint()) {
825 return CurDAG->SelectNodeTo(N, VCmpInst, VecVT, LHS, RHS);
826 } else {
827 SDValue VCmpGT(CurDAG->getMachineNode(VCmpInst, dl, VecVT, LHS, RHS), 0);
828 unsigned int VCmpEQInst = getVCmpEQInst(VT);
829 SDValue VCmpEQ(CurDAG->getMachineNode(VCmpEQInst, dl, VecVT, LHS, RHS), 0);
830 return CurDAG->SelectNodeTo(N, PPC::VOR, VecVT, VCmpGT, VCmpEQ);
831 }
832 }
833 case ISD::SETLE:
834 case ISD::SETOLE:
835 case ISD::SETULE: {
836 SDValue VCmpLE(CurDAG->getMachineNode(VCmpInst, dl, VecVT, RHS, LHS), 0);
837 unsigned int VCmpEQInst = getVCmpEQInst(VT);
838 SDValue VCmpEQ(CurDAG->getMachineNode(VCmpEQInst, dl, VecVT, LHS, RHS), 0);
839 return CurDAG->SelectNodeTo(N, PPC::VOR, VecVT, VCmpLE, VCmpEQ);
840 }
841 default:
842 llvm_unreachable("Invalid vector compare type: should be expanded by legalize");
843 }
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000844 }
845
Chris Lattner222adac2005-10-06 19:03:35 +0000846 bool Inv;
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000847 int OtherCondIdx;
848 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000849 SDValue CCReg = SelectCC(LHS, RHS, CC, dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000850 SDValue IntCR;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000851
Chris Lattner222adac2005-10-06 19:03:35 +0000852 // Force the ccreg into CR7.
Owen Anderson825b72b2009-08-11 20:47:22 +0000853 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000854
Dan Gohman475871a2008-07-27 21:46:04 +0000855 SDValue InFlag(0, 0); // Null incoming flag value.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000856 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000857 InFlag).getValue(1);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000858
Hal Finkelbd5cafd2012-06-11 19:57:01 +0000859 if (PPCSubTarget.hasMFOCRF() && OtherCondIdx == -1)
Dan Gohman602b0c82009-09-25 18:54:59 +0000860 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
861 CCReg), 0);
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000862 else
Dale Johannesen5f07d522010-05-20 17:48:26 +0000863 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
864 CR7Reg, CCReg), 0);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000865
Dan Gohman475871a2008-07-27 21:46:04 +0000866 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Evan Cheng0b828e02006-08-27 08:14:06 +0000867 getI32Imm(31), getI32Imm(31) };
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000868 if (OtherCondIdx == -1 && !Inv)
Owen Anderson825b72b2009-08-11 20:47:22 +0000869 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000870
871 // Get the specified bit.
Dan Gohman475871a2008-07-27 21:46:04 +0000872 SDValue Tmp =
Dan Gohman602b0c82009-09-25 18:54:59 +0000873 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000874 if (Inv) {
875 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Owen Anderson825b72b2009-08-11 20:47:22 +0000876 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000877 }
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000878
879 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
880 // We already got the bit for the first part of the comparison (e.g. SETULE).
881
882 // Get the other bit of the comparison.
883 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000884 SDValue OtherCond =
Dan Gohman602b0c82009-09-25 18:54:59 +0000885 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000886
Owen Anderson825b72b2009-08-11 20:47:22 +0000887 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Chris Lattner222adac2005-10-06 19:03:35 +0000888}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000889
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000890
Chris Lattnera5a91b12005-08-17 19:33:03 +0000891// Select - Convert the specified operand from a target-independent to a
892// target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000893SDNode *PPCDAGToDAGISel::Select(SDNode *N) {
894 DebugLoc dl = N->getDebugLoc();
Dan Gohmane8be6c62008-07-17 19:10:17 +0000895 if (N->isMachineOpcode())
Evan Cheng64a752f2006-08-11 09:08:15 +0000896 return NULL; // Already selected.
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000897
Chris Lattnera5a91b12005-08-17 19:33:03 +0000898 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000899 default: break;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000900
Jim Laskey78f97f32006-12-12 13:23:43 +0000901 case ISD::Constant: {
Owen Anderson825b72b2009-08-11 20:47:22 +0000902 if (N->getValueType(0) == MVT::i64) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000903 // Get 64 bit value.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000904 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Jim Laskey78f97f32006-12-12 13:23:43 +0000905 // Assume no remaining bits.
906 unsigned Remainder = 0;
907 // Assume no shift required.
908 unsigned Shift = 0;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000909
Jim Laskey78f97f32006-12-12 13:23:43 +0000910 // If it can't be represented as a 32 bit value.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000911 if (!isInt<32>(Imm)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000912 Shift = CountTrailingZeros_64(Imm);
913 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000914
Jim Laskey78f97f32006-12-12 13:23:43 +0000915 // If the shifted value fits 32 bits.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000916 if (isInt<32>(ImmSh)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000917 // Go with the shifted value.
918 Imm = ImmSh;
919 } else {
920 // Still stuck with a 64 bit value.
921 Remainder = Imm;
922 Shift = 32;
923 Imm >>= 32;
924 }
925 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000926
Jim Laskey78f97f32006-12-12 13:23:43 +0000927 // Intermediate operand.
928 SDNode *Result;
929
930 // Handle first 32 bits.
931 unsigned Lo = Imm & 0xFFFF;
932 unsigned Hi = (Imm >> 16) & 0xFFFF;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000933
Jim Laskey78f97f32006-12-12 13:23:43 +0000934 // Simple value.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000935 if (isInt<16>(Imm)) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000936 // Just the Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000937 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000938 } else if (Lo) {
939 // Handle the Hi bits.
940 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dan Gohman602b0c82009-09-25 18:54:59 +0000941 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000942 // And Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000943 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
944 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000945 } else {
946 // Just the Hi bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000947 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000948 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000949
Jim Laskey78f97f32006-12-12 13:23:43 +0000950 // If no shift, we're done.
951 if (!Shift) return Result;
952
953 // Shift for next step if the upper 32-bits were not zero.
954 if (Imm) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000955 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
956 SDValue(Result, 0),
957 getI32Imm(Shift),
958 getI32Imm(63 - Shift));
Jim Laskey78f97f32006-12-12 13:23:43 +0000959 }
960
961 // Add in the last bits as required.
962 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000963 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64,
964 SDValue(Result, 0), getI32Imm(Hi));
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000965 }
Jim Laskey78f97f32006-12-12 13:23:43 +0000966 if ((Lo = Remainder & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000967 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
968 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000969 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000970
Jim Laskey78f97f32006-12-12 13:23:43 +0000971 return Result;
972 }
973 break;
974 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000975
Evan Cheng34167212006-02-09 00:37:58 +0000976 case ISD::SETCC:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000977 return SelectSETCC(N);
Evan Cheng34167212006-02-09 00:37:58 +0000978 case PPCISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +0000979 return getGlobalBaseReg();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000980
Chris Lattnere28e40a2005-08-25 00:45:43 +0000981 case ISD::FrameIndex: {
982 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000983 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
984 unsigned Opc = N->getValueType(0) == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000985 if (N->hasOneUse())
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000986 return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), TFI,
Evan Cheng95514ba2006-08-26 08:00:10 +0000987 getSmallIPtrImm(0));
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000988 return CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI,
Dan Gohman602b0c82009-09-25 18:54:59 +0000989 getSmallIPtrImm(0));
Chris Lattnere28e40a2005-08-25 00:45:43 +0000990 }
Chris Lattner6d92cad2006-03-26 10:06:40 +0000991
992 case PPCISD::MFCR: {
Dan Gohman475871a2008-07-27 21:46:04 +0000993 SDValue InFlag = N->getOperand(1);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000994 // Use MFOCRF if supported.
Hal Finkelbd5cafd2012-06-11 19:57:01 +0000995 if (PPCSubTarget.hasMFOCRF())
Dan Gohman602b0c82009-09-25 18:54:59 +0000996 return CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32,
997 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000998 else
Dale Johannesen5f07d522010-05-20 17:48:26 +0000999 return CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
1000 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +00001001 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001002
Chris Lattner88add102005-09-28 22:50:24 +00001003 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001004 // FIXME: since this depends on the setting of the carry flag from the srawi
1005 // we should really be making notes about that for the scheduler.
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001006 // FIXME: It sure would be nice if we could cheaply recognize the
Nate Begeman405e3ec2005-10-21 00:02:42 +00001007 // srl/add/sra pattern the dag combiner will generate for this as
1008 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +00001009 unsigned Imm;
Chris Lattnerc08f9022006-06-27 00:04:13 +00001010 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001011 SDValue N0 = N->getOperand(0);
Chris Lattner8784a232005-08-25 17:50:06 +00001012 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001013 SDNode *Op =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001014 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +00001015 N0, getI32Imm(Log2_32(Imm)));
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001016 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +00001017 SDValue(Op, 0), SDValue(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +00001018 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001019 SDNode *Op =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001020 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Glue,
Dan Gohman602b0c82009-09-25 18:54:59 +00001021 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman475871a2008-07-27 21:46:04 +00001022 SDValue PT =
Dan Gohman602b0c82009-09-25 18:54:59 +00001023 SDValue(CurDAG->getMachineNode(PPC::ADDZE, dl, MVT::i32,
1024 SDValue(Op, 0), SDValue(Op, 1)),
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001025 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001026 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +00001027 }
1028 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001029
Chris Lattner237733e2005-09-29 23:33:31 +00001030 // Other cases are autogenerated.
1031 break;
Chris Lattner047b9522005-08-25 22:04:30 +00001032 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001033
Chris Lattner4eab7142006-11-10 02:08:47 +00001034 case ISD::LOAD: {
1035 // Handle preincrement loads.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001036 LoadSDNode *LD = cast<LoadSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +00001037 EVT LoadedVT = LD->getMemoryVT();
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001038
Chris Lattner4eab7142006-11-10 02:08:47 +00001039 // Normal loads are handled by code generated from the .td file.
1040 if (LD->getAddressingMode() != ISD::PRE_INC)
1041 break;
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001042
Dan Gohman475871a2008-07-27 21:46:04 +00001043 SDValue Offset = LD->getOffset();
Chris Lattner5b3bbc72006-11-11 04:53:30 +00001044 if (isa<ConstantSDNode>(Offset) ||
1045 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001046
Chris Lattner0851b4f2006-11-15 19:55:13 +00001047 unsigned Opcode;
1048 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
Owen Anderson825b72b2009-08-11 20:47:22 +00001049 if (LD->getValueType(0) != MVT::i64) {
Chris Lattner0851b4f2006-11-15 19:55:13 +00001050 // Handle PPC32 integer and normal FP loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00001051 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
1052 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001053 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001054 case MVT::f64: Opcode = PPC::LFDU; break;
1055 case MVT::f32: Opcode = PPC::LFSU; break;
1056 case MVT::i32: Opcode = PPC::LWZU; break;
1057 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
1058 case MVT::i1:
1059 case MVT::i8: Opcode = PPC::LBZU; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +00001060 }
1061 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001062 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
1063 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
1064 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001065 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001066 case MVT::i64: Opcode = PPC::LDU; break;
1067 case MVT::i32: Opcode = PPC::LWZU8; break;
1068 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
1069 case MVT::i1:
1070 case MVT::i8: Opcode = PPC::LBZU8; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +00001071 }
1072 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001073
Dan Gohman475871a2008-07-27 21:46:04 +00001074 SDValue Chain = LD->getChain();
1075 SDValue Base = LD->getBasePtr();
Dan Gohman475871a2008-07-27 21:46:04 +00001076 SDValue Ops[] = { Offset, Base, Chain };
Dan Gohman602b0c82009-09-25 18:54:59 +00001077 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
1078 PPCLowering.getPointerTy(),
1079 MVT::Other, Ops, 3);
Chris Lattner4eab7142006-11-10 02:08:47 +00001080 } else {
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001081 unsigned Opcode;
1082 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
1083 if (LD->getValueType(0) != MVT::i64) {
1084 // Handle PPC32 integer and normal FP loads.
1085 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
1086 switch (LoadedVT.getSimpleVT().SimpleTy) {
1087 default: llvm_unreachable("Invalid PPC load type!");
1088 case MVT::f64: Opcode = PPC::LFDUX; break;
1089 case MVT::f32: Opcode = PPC::LFSUX; break;
1090 case MVT::i32: Opcode = PPC::LWZUX; break;
1091 case MVT::i16: Opcode = isSExt ? PPC::LHAUX : PPC::LHZUX; break;
1092 case MVT::i1:
1093 case MVT::i8: Opcode = PPC::LBZUX; break;
1094 }
1095 } else {
1096 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
1097 assert((!isSExt || LoadedVT == MVT::i16 || LoadedVT == MVT::i32) &&
1098 "Invalid sext update load");
1099 switch (LoadedVT.getSimpleVT().SimpleTy) {
1100 default: llvm_unreachable("Invalid PPC load type!");
1101 case MVT::i64: Opcode = PPC::LDUX; break;
1102 case MVT::i32: Opcode = isSExt ? PPC::LWAUX : PPC::LWZUX8; break;
1103 case MVT::i16: Opcode = isSExt ? PPC::LHAUX8 : PPC::LHZUX8; break;
1104 case MVT::i1:
1105 case MVT::i8: Opcode = PPC::LBZUX8; break;
1106 }
1107 }
1108
1109 SDValue Chain = LD->getChain();
1110 SDValue Base = LD->getBasePtr();
1111 SDValue Ops[] = { Offset, Base, Chain };
1112 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
1113 PPCLowering.getPointerTy(),
1114 MVT::Other, Ops, 3);
Chris Lattner4eab7142006-11-10 02:08:47 +00001115 }
1116 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001117
Nate Begemancffc32b2005-08-18 07:30:46 +00001118 case ISD::AND: {
Nate Begemanf42f1332006-09-22 05:01:56 +00001119 unsigned Imm, Imm2, SH, MB, ME;
Hal Finkel97d047d2012-08-28 02:10:15 +00001120 uint64_t Imm64;
Nate Begemanf42f1332006-09-22 05:01:56 +00001121
Nate Begemancffc32b2005-08-18 07:30:46 +00001122 // If this is an and of a value rotated between 0 and 31 bits and then and'd
1123 // with a mask, emit rlwinm
Chris Lattnerc08f9022006-06-27 00:04:13 +00001124 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001125 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001126 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001127 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001128 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemancffc32b2005-08-18 07:30:46 +00001129 }
Nate Begemanf42f1332006-09-22 05:01:56 +00001130 // If this is just a masked value where the input is not handled above, and
1131 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
1132 if (isInt32Immediate(N->getOperand(1), Imm) &&
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001133 isRunOfOnes(Imm, MB, ME) &&
Nate Begemanf42f1332006-09-22 05:01:56 +00001134 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman475871a2008-07-27 21:46:04 +00001135 SDValue Val = N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001136 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001137 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemanf42f1332006-09-22 05:01:56 +00001138 }
Hal Finkel97d047d2012-08-28 02:10:15 +00001139 // If this is a 64-bit zero-extension mask, emit rldicl.
1140 if (isInt64Immediate(N->getOperand(1).getNode(), Imm64) &&
1141 isMask_64(Imm64)) {
1142 SDValue Val = N->getOperand(0);
1143 MB = 64 - CountTrailingOnes_64(Imm64);
1144 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB) };
1145 return CurDAG->SelectNodeTo(N, PPC::RLDICL, MVT::i64, Ops, 3);
1146 }
Nate Begemanf42f1332006-09-22 05:01:56 +00001147 // AND X, 0 -> 0, not "rlwinm 32".
1148 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001149 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Nate Begemanf42f1332006-09-22 05:01:56 +00001150 return NULL;
1151 }
Nate Begeman50fb3c42005-12-24 01:00:15 +00001152 // ISD::OR doesn't get all the bitfield insertion fun.
1153 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001154 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman50fb3c42005-12-24 01:00:15 +00001155 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001156 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +00001157 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +00001158 Imm = ~(Imm^Imm2);
1159 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001160 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001161 N->getOperand(0).getOperand(1),
1162 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +00001163 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman50fb3c42005-12-24 01:00:15 +00001164 }
1165 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001166
Chris Lattner237733e2005-09-29 23:33:31 +00001167 // Other cases are autogenerated.
1168 break;
Nate Begemancffc32b2005-08-18 07:30:46 +00001169 }
Nate Begeman02b88a42005-08-19 00:38:14 +00001170 case ISD::OR:
Owen Anderson825b72b2009-08-11 20:47:22 +00001171 if (N->getValueType(0) == MVT::i32)
Chris Lattnerccbe2ec2006-08-15 23:48:22 +00001172 if (SDNode *I = SelectBitfieldInsert(N))
1173 return I;
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001174
Chris Lattner237733e2005-09-29 23:33:31 +00001175 // Other cases are autogenerated.
1176 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001177 case ISD::SHL: {
1178 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001179 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001180 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001181 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001182 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001183 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001184 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001185
Nate Begeman2d5aff72005-10-19 18:42:01 +00001186 // Other cases are autogenerated.
1187 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001188 }
1189 case ISD::SRL: {
1190 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001191 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001192 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001193 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001194 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001195 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001196 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001197
Nate Begeman2d5aff72005-10-19 18:42:01 +00001198 // Other cases are autogenerated.
1199 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001200 }
Chris Lattner13794f52005-08-26 18:46:49 +00001201 case ISD::SELECT_CC: {
1202 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
Roman Divacky8e9d6722011-06-20 15:28:39 +00001203 EVT PtrVT = CurDAG->getTargetLoweringInfo().getPointerTy();
1204 bool isPPC64 = (PtrVT == MVT::i64);
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001205
Chris Lattnerc08f9022006-06-27 00:04:13 +00001206 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Roman Divacky8e9d6722011-06-20 15:28:39 +00001207 if (!isPPC64)
1208 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1209 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1210 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1211 if (N1C->isNullValue() && N3C->isNullValue() &&
1212 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
1213 // FIXME: Implement this optzn for PPC64.
1214 N->getValueType(0) == MVT::i32) {
1215 SDNode *Tmp =
1216 CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Glue,
1217 N->getOperand(0), getI32Imm(~0U));
1218 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
1219 SDValue(Tmp, 0), N->getOperand(0),
1220 SDValue(Tmp, 1));
1221 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001222
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001223 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00001224 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001225
Chris Lattner919c0322005-10-01 01:35:02 +00001226 unsigned SelectCCOp;
Owen Anderson825b72b2009-08-11 20:47:22 +00001227 if (N->getValueType(0) == MVT::i32)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001228 SelectCCOp = PPC::SELECT_CC_I4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001229 else if (N->getValueType(0) == MVT::i64)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001230 SelectCCOp = PPC::SELECT_CC_I8;
Owen Anderson825b72b2009-08-11 20:47:22 +00001231 else if (N->getValueType(0) == MVT::f32)
Chris Lattner919c0322005-10-01 01:35:02 +00001232 SelectCCOp = PPC::SELECT_CC_F4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001233 else if (N->getValueType(0) == MVT::f64)
Chris Lattner919c0322005-10-01 01:35:02 +00001234 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner710ff322006-04-08 22:45:08 +00001235 else
1236 SelectCCOp = PPC::SELECT_CC_VRRC;
1237
Dan Gohman475871a2008-07-27 21:46:04 +00001238 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Evan Cheng0b828e02006-08-27 08:14:06 +00001239 getI32Imm(BROpc) };
1240 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattner13794f52005-08-26 18:46:49 +00001241 }
Chris Lattner18258c62006-11-17 22:37:34 +00001242 case PPCISD::COND_BRANCH: {
Dan Gohmancbb7ab22008-11-05 17:16:24 +00001243 // Op #0 is the Chain.
Chris Lattner18258c62006-11-17 22:37:34 +00001244 // Op #1 is the PPC::PRED_* number.
1245 // Op #2 is the CR#
1246 // Op #3 is the Dest MBB
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001247 // Op #4 is the Flag.
Evan Cheng2bda17c2007-06-29 01:25:06 +00001248 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman475871a2008-07-27 21:46:04 +00001249 SDValue Pred =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001250 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman475871a2008-07-27 21:46:04 +00001251 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Chris Lattner18258c62006-11-17 22:37:34 +00001252 N->getOperand(0), N->getOperand(4) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001253 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
Chris Lattner18258c62006-11-17 22:37:34 +00001254 }
Nate Begeman81e80972006-03-17 01:40:33 +00001255 case ISD::BR_CC: {
Chris Lattner2fbb4572005-08-21 18:50:37 +00001256 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001257 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001258 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Cheng0b828e02006-08-27 08:14:06 +00001259 N->getOperand(4), N->getOperand(0) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001260 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001261 }
Nate Begeman37efe672006-04-22 18:53:45 +00001262 case ISD::BRIND: {
Chris Lattnercf006312006-06-10 01:15:02 +00001263 // FIXME: Should custom lower this.
Dan Gohman475871a2008-07-27 21:46:04 +00001264 SDValue Chain = N->getOperand(0);
1265 SDValue Target = N->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001266 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Roman Divacky0c9b5592011-06-03 15:47:49 +00001267 unsigned Reg = Target.getValueType() == MVT::i32 ? PPC::BCTR : PPC::BCTR8;
Hal Finkel67724522011-12-08 04:36:44 +00001268 Chain = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, Target,
Dan Gohman602b0c82009-09-25 18:54:59 +00001269 Chain), 0);
Roman Divacky0c9b5592011-06-03 15:47:49 +00001270 return CurDAG->SelectNodeTo(N, Reg, MVT::Other, Chain);
Nate Begeman37efe672006-04-22 18:53:45 +00001271 }
Bill Schmidt34a9d4b2012-11-27 17:35:46 +00001272 case PPCISD::TOC_ENTRY: {
1273 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1274
1275 // For medium code model, we generate two instructions as described
1276 // below. Otherwise we allow SelectCodeCommon to handle this, selecting
1277 // one of LDtoc, LDtocJTI, and LDtocCPT.
1278 if (TM.getCodeModel() != CodeModel::Medium)
1279 break;
1280
1281 // The first source operand is a TargetGlobalAddress or a
1282 // TargetJumpTable. If it is an externally defined symbol, a symbol
1283 // with common linkage, a function address, or a jump table address,
1284 // we generate:
1285 // LDtocL(<ga:@sym>, ADDIStocHA(%X2, <ga:@sym>))
1286 // Otherwise we generate:
1287 // ADDItocL(ADDIStocHA(%X2, <ga:@sym>), <ga:@sym>)
1288 SDValue GA = N->getOperand(0);
1289 SDValue TOCbase = N->getOperand(1);
1290 SDNode *Tmp = CurDAG->getMachineNode(PPC::ADDIStocHA, dl, MVT::i64,
1291 TOCbase, GA);
1292
1293 if (isa<JumpTableSDNode>(GA))
1294 return CurDAG->getMachineNode(PPC::LDtocL, dl, MVT::i64, GA,
1295 SDValue(Tmp, 0));
1296
1297 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(GA)) {
1298 const GlobalValue *GValue = G->getGlobal();
1299 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GValue);
1300 assert((GVar || isa<Function>(GValue)) &&
1301 "Unexpected global value subclass!");
1302
1303 // An external variable is one without an initializer. For these,
1304 // for variables with common linkage, and for Functions, generate
1305 // the LDtocL form.
1306 if (!GVar || !GVar->hasInitializer() || GValue->hasCommonLinkage())
1307 return CurDAG->getMachineNode(PPC::LDtocL, dl, MVT::i64, GA,
1308 SDValue(Tmp, 0));
1309 }
1310
1311 return CurDAG->getMachineNode(PPC::ADDItocL, dl, MVT::i64,
1312 SDValue(Tmp, 0), GA);
1313 }
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001314 case PPCISD::LD_GOT_TPREL: {
1315 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1316 return CurDAG->getMachineNode(PPC::LDgotTPREL, dl, MVT::i64,
1317 N->getOperand(0), N->getOperand(1));
1318 }
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001319 // FIXME: Try without these. Doesn't seem necessary.
1320 case PPCISD::ADDIS_TLSGD_HA: {
1321 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1322 return CurDAG->getMachineNode(PPC::ADDIStlsgdHA, dl, MVT::i64,
1323 N->getOperand(0), N->getOperand(1));
1324 }
1325 case PPCISD::ADDI_TLSGD_L: {
1326 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1327 return CurDAG->getMachineNode(PPC::ADDItlsgdL, dl, MVT::i64,
1328 N->getOperand(0), N->getOperand(1));
1329 }
1330 case PPCISD::GET_TLS_ADDR: {
1331 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1332 return CurDAG->getMachineNode(PPC::GETtlsADDR, dl, MVT::i64,
1333 N->getOperand(0), N->getOperand(1));
1334 }
Bill Schmidt349c2782012-12-12 19:29:35 +00001335 case PPCISD::ADDIS_TLSLD_HA: {
1336 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1337 return CurDAG->getMachineNode(PPC::ADDIStlsldHA, dl, MVT::i64,
1338 N->getOperand(0), N->getOperand(1));
1339 }
1340 case PPCISD::ADDI_TLSLD_L: {
1341 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1342 return CurDAG->getMachineNode(PPC::ADDItlsldL, dl, MVT::i64,
1343 N->getOperand(0), N->getOperand(1));
1344 }
1345 case PPCISD::GET_TLSLD_ADDR: {
1346 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1347 return CurDAG->getMachineNode(PPC::GETtlsldADDR, dl, MVT::i64,
1348 N->getOperand(0), N->getOperand(1));
1349 }
1350 case PPCISD::ADDIS_DTPREL_HA: {
1351 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1352 return CurDAG->getMachineNode(PPC::ADDISdtprelHA, dl, MVT::i64,
1353 N->getOperand(0), N->getOperand(1),
1354 N->getOperand(2));
1355 }
1356 case PPCISD::ADDI_DTPREL_L: {
1357 assert (PPCSubTarget.isPPC64() && "Only supported for 64-bit ABI");
1358 return CurDAG->getMachineNode(PPC::ADDIdtprelL, dl, MVT::i64,
1359 N->getOperand(0), N->getOperand(1));
1360 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001361 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001362
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001363 return SelectCode(N);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001364}
1365
1366
Chris Lattnercf006312006-06-10 01:15:02 +00001367
Andrew Trick6e8f4c42010-12-24 04:28:06 +00001368/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001369/// PowerPC-specific DAG, ready for instruction scheduling.
1370///
Evan Chengc4c62572006-03-13 23:20:37 +00001371FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman1d9d7422005-10-18 00:28:58 +00001372 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001373}
1374