blob: 2e189a7f6fb03607001f9aefd394c6dd50050239 [file] [log] [blame]
Nate Begeman6cca84e2005-10-16 05:39:50 +00001//===-- PPCISelDAGToDAG.cpp - PPC --pattern matching inst selector --------===//
Chris Lattner43ff01e2005-08-17 19:33:03 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Lattner43ff01e2005-08-17 19:33:03 +00007//
8//===----------------------------------------------------------------------===//
9//
Nate Begeman6cca84e2005-10-16 05:39:50 +000010// This file defines a pattern matching instruction selector for PowerPC,
Chris Lattner43ff01e2005-08-17 19:33:03 +000011// converting from a legalized dag to a PPC dag.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner1ef9cd42006-12-19 22:59:26 +000015#define DEBUG_TYPE "ppc-codegen"
Chris Lattnerbfca1ab2005-10-14 23:51:18 +000016#include "PPC.h"
Chris Lattner8c6a41e2006-11-17 22:10:59 +000017#include "PPCPredicates.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000018#include "PPCTargetMachine.h"
Chris Lattner2cab1352006-03-07 06:32:48 +000019#include "PPCHazardRecognizers.h"
Chris Lattner45640392005-08-19 22:38:53 +000020#include "llvm/CodeGen/MachineInstrBuilder.h"
21#include "llvm/CodeGen/MachineFunction.h"
Dan Gohman5ea74d52009-07-31 18:16:33 +000022#include "llvm/CodeGen/MachineFunctionAnalysis.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner43ff01e2005-08-17 19:33:03 +000024#include "llvm/CodeGen/SelectionDAG.h"
25#include "llvm/CodeGen/SelectionDAGISel.h"
26#include "llvm/Target/TargetOptions.h"
Chris Lattner666512c2005-08-25 04:47:18 +000027#include "llvm/Constants.h"
Chris Lattnera8919d02009-04-17 00:26:12 +000028#include "llvm/Function.h"
Chris Lattner45640392005-08-19 22:38:53 +000029#include "llvm/GlobalValue.h"
Chris Lattner5d70a7c2006-03-25 06:47:10 +000030#include "llvm/Intrinsics.h"
Chris Lattner43ff01e2005-08-17 19:33:03 +000031#include "llvm/Support/Debug.h"
32#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000033#include "llvm/Support/ErrorHandling.h"
34#include "llvm/Support/raw_ostream.h"
Chris Lattner43ff01e2005-08-17 19:33:03 +000035using namespace llvm;
36
37namespace {
Chris Lattner43ff01e2005-08-17 19:33:03 +000038 //===--------------------------------------------------------------------===//
Nate Begeman0b71e002005-10-18 00:28:58 +000039 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
Chris Lattner43ff01e2005-08-17 19:33:03 +000040 /// instructions for SelectionDAG operations.
41 ///
Nick Lewycky02d5f772009-10-25 06:33:48 +000042 class PPCDAGToDAGISel : public SelectionDAGISel {
Dan Gohman21cea8a2010-04-17 15:26:15 +000043 const PPCTargetMachine &TM;
44 const PPCTargetLowering &PPCLowering;
Evan Chengec271b12007-10-23 06:42:42 +000045 const PPCSubtarget &PPCSubTarget;
Chris Lattner45640392005-08-19 22:38:53 +000046 unsigned GlobalBaseReg;
Chris Lattner43ff01e2005-08-17 19:33:03 +000047 public:
Dan Gohman56e3f632008-07-07 18:00:37 +000048 explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
Dan Gohman619ef482009-01-15 19:20:50 +000049 : SelectionDAGISel(tm), TM(tm),
Evan Chengec271b12007-10-23 06:42:42 +000050 PPCLowering(*TM.getTargetLowering()),
51 PPCSubTarget(*TM.getSubtargetImpl()) {}
Chris Lattner43ff01e2005-08-17 19:33:03 +000052
Dan Gohman5ea74d52009-07-31 18:16:33 +000053 virtual bool runOnMachineFunction(MachineFunction &MF) {
Chris Lattner45640392005-08-19 22:38:53 +000054 // Make sure we re-emit a set of the global base reg if necessary
55 GlobalBaseReg = 0;
Dan Gohman5ea74d52009-07-31 18:16:33 +000056 SelectionDAGISel::runOnMachineFunction(MF);
Chris Lattner1678a6c2006-03-16 18:25:23 +000057
Dan Gohman5ea74d52009-07-31 18:16:33 +000058 InsertVRSaveCode(MF);
Chris Lattner1678a6c2006-03-16 18:25:23 +000059 return true;
Chris Lattner45640392005-08-19 22:38:53 +000060 }
61
Chris Lattner43ff01e2005-08-17 19:33:03 +000062 /// getI32Imm - Return a target constant with the specified value, of type
63 /// i32.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000064 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +000065 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattner43ff01e2005-08-17 19:33:03 +000066 }
Chris Lattner45640392005-08-19 22:38:53 +000067
Chris Lattner97b3da12006-06-27 00:04:13 +000068 /// getI64Imm - Return a target constant with the specified value, of type
69 /// i64.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000070 inline SDValue getI64Imm(uint64_t Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +000071 return CurDAG->getTargetConstant(Imm, MVT::i64);
Chris Lattner97b3da12006-06-27 00:04:13 +000072 }
73
74 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000075 inline SDValue getSmallIPtrImm(unsigned Imm) {
Chris Lattner97b3da12006-06-27 00:04:13 +000076 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
77 }
78
Nate Begemand31efd12006-09-22 05:01:56 +000079 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
80 /// with any number of 0s on either side. The 1s are allowed to wrap from
81 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
82 /// 0x0F0F0000 is not, since all 1s are not contiguous.
83 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
84
85
86 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
87 /// rotate and mask opcode and mask operation.
Dale Johannesen86dcae12009-11-24 01:09:07 +000088 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask,
Nate Begemand31efd12006-09-22 05:01:56 +000089 unsigned &SH, unsigned &MB, unsigned &ME);
Chris Lattner97b3da12006-06-27 00:04:13 +000090
Chris Lattner45640392005-08-19 22:38:53 +000091 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
92 /// base register. Return the virtual register that holds this value.
Evan Cheng61413a32006-08-26 05:34:46 +000093 SDNode *getGlobalBaseReg();
Chris Lattner43ff01e2005-08-17 19:33:03 +000094
95 // Select - Convert the specified operand from a target-independent to a
96 // target-specific node if it hasn't already been changed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +000097 SDNode *Select(SDNode *N);
Chris Lattner43ff01e2005-08-17 19:33:03 +000098
Nate Begeman93c4bc62005-08-19 00:38:14 +000099 SDNode *SelectBitfieldInsert(SDNode *N);
100
Chris Lattner2a1823d2005-08-21 18:50:37 +0000101 /// SelectCC - Select a comparison of the specified values with the
102 /// specified condition code, returning the CR# of the expression.
Dale Johannesenab8e4422009-02-06 19:16:40 +0000103 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
Chris Lattner2a1823d2005-08-21 18:50:37 +0000104
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000105 /// SelectAddrImm - Returns true if the address N can be represented by
106 /// a base register plus a signed 16-bit displacement [r+imm].
Chris Lattner0e023ea2010-09-21 20:31:19 +0000107 bool SelectAddrImm(SDValue N, SDValue &Disp,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000108 SDValue &Base) {
Chris Lattnera801fced2006-11-08 02:15:41 +0000109 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
110 }
Chris Lattner6f5840c2006-11-16 00:41:37 +0000111
112 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
113 /// immediate field. Because preinc imms have already been validated, just
114 /// accept it.
Chris Lattner0e023ea2010-09-21 20:31:19 +0000115 bool SelectAddrImmOffs(SDValue N, SDValue &Out) const {
Chris Lattner6f5840c2006-11-16 00:41:37 +0000116 Out = N;
117 return true;
118 }
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000119
120 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
121 /// represented as an indexed [r+r] operation. Returns false if it can
122 /// be represented by [r+imm], which are preferred.
Chris Lattner0e023ea2010-09-21 20:31:19 +0000123 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnera801fced2006-11-08 02:15:41 +0000124 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
125 }
Nate Begeman1064d6e2005-11-30 08:22:07 +0000126
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000127 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
128 /// represented as an indexed [r+r] operation.
Chris Lattner0e023ea2010-09-21 20:31:19 +0000129 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) {
Chris Lattnera801fced2006-11-08 02:15:41 +0000130 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
131 }
Chris Lattnerc5292ec2005-08-21 22:31:09 +0000132
Chris Lattner77373d12006-03-22 05:26:03 +0000133 /// SelectAddrImmShift - Returns true if the address N can be represented by
134 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
135 /// for use by STD and friends.
Chris Lattner0e023ea2010-09-21 20:31:19 +0000136 bool SelectAddrImmShift(SDValue N, SDValue &Disp, SDValue &Base) {
Chris Lattnera801fced2006-11-08 02:15:41 +0000137 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
138 }
139
Chris Lattnera1ec1dd2006-02-24 02:13:12 +0000140 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
Dale Johannesen4a50e682009-08-18 00:18:39 +0000141 /// inline asm expressions. It is always correct to compute the value into
142 /// a register. The case of adding a (possibly relocatable) constant to a
143 /// register can be improved, but it is wrong to substitute Reg+Reg for
144 /// Reg in an asm, because the load or store opcode would have to change.
145 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnera1ec1dd2006-02-24 02:13:12 +0000146 char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000147 std::vector<SDValue> &OutOps) {
Dale Johannesen4a50e682009-08-18 00:18:39 +0000148 OutOps.push_back(Op);
Chris Lattnera1ec1dd2006-02-24 02:13:12 +0000149 return false;
150 }
151
Dan Gohman5ea74d52009-07-31 18:16:33 +0000152 void InsertVRSaveCode(MachineFunction &MF);
Chris Lattner1678a6c2006-03-16 18:25:23 +0000153
Chris Lattner43ff01e2005-08-17 19:33:03 +0000154 virtual const char *getPassName() const {
155 return "PowerPC DAG->DAG Pattern Instruction Selection";
156 }
Chris Lattner2cab1352006-03-07 06:32:48 +0000157
Chris Lattnerf058f5a2006-05-16 23:54:25 +0000158 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
159 /// this target when scheduling the DAG.
Dan Gohman7e105f02009-01-15 22:18:12 +0000160 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
Chris Lattner2cab1352006-03-07 06:32:48 +0000161 // Should use subtarget info to pick the right hazard recognizer. For
162 // now, always return a PPC970 recognizer.
Dan Gohman634412f2008-09-04 15:39:15 +0000163 const TargetInstrInfo *II = TM.getInstrInfo();
Chris Lattner51348c52006-03-12 09:13:49 +0000164 assert(II && "No InstrInfo?");
165 return new PPCHazardRecognizer970(*II);
Chris Lattner2cab1352006-03-07 06:32:48 +0000166 }
Chris Lattner03e08ee2005-09-13 22:03:06 +0000167
168// Include the pieces autogenerated from the target description.
Chris Lattner0921e3b2005-10-14 23:37:35 +0000169#include "PPCGenDAGISel.inc"
Chris Lattner259e6c72005-10-06 18:45:51 +0000170
171private:
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000172 SDNode *SelectSETCC(SDNode *N);
Chris Lattner43ff01e2005-08-17 19:33:03 +0000173 };
174}
175
Chris Lattner1678a6c2006-03-16 18:25:23 +0000176/// InsertVRSaveCode - Once the entire function has been instruction selected,
177/// all virtual registers are created and all machine instructions are built,
178/// check to see if we need to save/restore VRSAVE. If so, do it.
Dan Gohman5ea74d52009-07-31 18:16:33 +0000179void PPCDAGToDAGISel::InsertVRSaveCode(MachineFunction &Fn) {
Chris Lattner02e2c182006-03-13 21:52:10 +0000180 // Check to see if this function uses vector registers, which means we have to
181 // save and restore the VRSAVE register and update it with the regs we use.
182 //
Dan Gohman4a618822010-02-10 16:03:48 +0000183 // In this case, there will be virtual registers of vector type created
Chris Lattner02e2c182006-03-13 21:52:10 +0000184 // by the scheduler. Detect them now.
Chris Lattner02e2c182006-03-13 21:52:10 +0000185 bool HasVectorVReg = false;
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000186 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattnera10fff52007-12-31 04:13:23 +0000187 e = RegInfo->getLastVirtReg()+1; i != e; ++i)
188 if (RegInfo->getRegClass(i) == &PPC::VRRCRegClass) {
Chris Lattner02e2c182006-03-13 21:52:10 +0000189 HasVectorVReg = true;
190 break;
191 }
Chris Lattner1678a6c2006-03-16 18:25:23 +0000192 if (!HasVectorVReg) return; // nothing to do.
193
Chris Lattner02e2c182006-03-13 21:52:10 +0000194 // If we have a vector register, we want to emit code into the entry and exit
195 // blocks to save and restore the VRSAVE register. We do this here (instead
196 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
197 //
198 // 1. This (trivially) reduces the load on the register allocator, by not
199 // having to represent the live range of the VRSAVE register.
200 // 2. This (more significantly) allows us to create a temporary virtual
201 // register to hold the saved VRSAVE value, allowing this temporary to be
202 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner1678a6c2006-03-16 18:25:23 +0000203
204 // Create two vregs - one to hold the VRSAVE register that is live-in to the
205 // function and one for the value after having bits or'd into it.
Chris Lattnera10fff52007-12-31 04:13:23 +0000206 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
207 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Chris Lattner1678a6c2006-03-16 18:25:23 +0000208
Evan Cheng20350c42006-11-27 23:37:22 +0000209 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner1678a6c2006-03-16 18:25:23 +0000210 MachineBasicBlock &EntryBB = *Fn.begin();
Chris Lattner6f306d72010-04-02 20:16:16 +0000211 DebugLoc dl;
Chris Lattner1678a6c2006-03-16 18:25:23 +0000212 // Emit the following code into the entry block:
213 // InVRSAVE = MFVRSAVE
214 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
215 // MTVRSAVE UpdatedVRSAVE
216 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesene9f623e2009-02-13 02:27:39 +0000217 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
218 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattnera98c6792008-01-07 01:56:04 +0000219 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesene9f623e2009-02-13 02:27:39 +0000220 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Chris Lattner1678a6c2006-03-16 18:25:23 +0000221
222 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner1678a6c2006-03-16 18:25:23 +0000223 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Chris Lattner03ad8852008-01-07 07:27:27 +0000224 if (!BB->empty() && BB->back().getDesc().isReturn()) {
Chris Lattner1678a6c2006-03-16 18:25:23 +0000225 IP = BB->end(); --IP;
226
227 // Skip over all terminator instructions, which are part of the return
228 // sequence.
229 MachineBasicBlock::iterator I2 = IP;
Chris Lattner03ad8852008-01-07 07:27:27 +0000230 while (I2 != BB->begin() && (--I2)->getDesc().isTerminator())
Chris Lattner1678a6c2006-03-16 18:25:23 +0000231 IP = I2;
232
233 // Emit: MTVRSAVE InVRSave
Dale Johannesene9f623e2009-02-13 02:27:39 +0000234 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Chris Lattner1678a6c2006-03-16 18:25:23 +0000235 }
Chris Lattner02e2c182006-03-13 21:52:10 +0000236 }
Chris Lattner259e6c72005-10-06 18:45:51 +0000237}
Chris Lattner8ae95252005-09-03 01:17:22 +0000238
Chris Lattner1678a6c2006-03-16 18:25:23 +0000239
Chris Lattner45640392005-08-19 22:38:53 +0000240/// getGlobalBaseReg - Output the instructions required to put the
241/// base address to use for accessing globals into a register.
242///
Evan Cheng61413a32006-08-26 05:34:46 +0000243SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner45640392005-08-19 22:38:53 +0000244 if (!GlobalBaseReg) {
Evan Cheng20350c42006-11-27 23:37:22 +0000245 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner45640392005-08-19 22:38:53 +0000246 // Insert the set of GlobalBaseReg into the first MBB of the function
Dan Gohmanfca89682009-08-15 02:07:36 +0000247 MachineBasicBlock &FirstMBB = MF->front();
Chris Lattner45640392005-08-19 22:38:53 +0000248 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Chris Lattner6f306d72010-04-02 20:16:16 +0000249 DebugLoc dl;
Chris Lattner97b3da12006-06-27 00:04:13 +0000250
Owen Anderson9f944592009-08-11 20:47:22 +0000251 if (PPCLowering.getPointerTy() == MVT::i32) {
Chris Lattnera10fff52007-12-31 04:13:23 +0000252 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::GPRCRegisterClass);
Dale Johannesene9f623e2009-02-13 02:27:39 +0000253 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR), PPC::LR);
254 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerb5429252006-11-14 18:43:11 +0000255 } else {
Chris Lattnera10fff52007-12-31 04:13:23 +0000256 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::G8RCRegisterClass);
Dale Johannesene9f623e2009-02-13 02:27:39 +0000257 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8), PPC::LR8);
258 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerb5429252006-11-14 18:43:11 +0000259 }
Chris Lattner45640392005-08-19 22:38:53 +0000260 }
Gabor Greif81d6a382008-08-31 15:37:04 +0000261 return CurDAG->getRegister(GlobalBaseReg,
262 PPCLowering.getPointerTy()).getNode();
Chris Lattner97b3da12006-06-27 00:04:13 +0000263}
264
265/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
266/// or 64-bit immediate, and if the value can be accurately represented as a
267/// sign extension from a 16-bit value. If so, this returns true and the
268/// immediate.
269static bool isIntS16Immediate(SDNode *N, short &Imm) {
270 if (N->getOpcode() != ISD::Constant)
271 return false;
272
Dan Gohmaneffb8942008-09-12 16:56:44 +0000273 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson9f944592009-08-11 20:47:22 +0000274 if (N->getValueType(0) == MVT::i32)
Dan Gohmaneffb8942008-09-12 16:56:44 +0000275 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattner97b3da12006-06-27 00:04:13 +0000276 else
Dan Gohmaneffb8942008-09-12 16:56:44 +0000277 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattner97b3da12006-06-27 00:04:13 +0000278}
279
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000280static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000281 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattner45640392005-08-19 22:38:53 +0000282}
283
284
Chris Lattner97b3da12006-06-27 00:04:13 +0000285/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
286/// operand. If so Imm will receive the 32-bit value.
287static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000288 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmaneffb8942008-09-12 16:56:44 +0000289 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Nate Begeman72d6f882005-08-18 05:00:13 +0000290 return true;
291 }
292 return false;
293}
294
Chris Lattner97b3da12006-06-27 00:04:13 +0000295/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
296/// operand. If so Imm will receive the 64-bit value.
297static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000298 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmaneffb8942008-09-12 16:56:44 +0000299 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattner97b3da12006-06-27 00:04:13 +0000300 return true;
301 }
302 return false;
303}
304
305// isInt32Immediate - This method tests to see if a constant operand.
306// If so Imm will receive the 32 bit value.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000307static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000308 return isInt32Immediate(N.getNode(), Imm);
Chris Lattner97b3da12006-06-27 00:04:13 +0000309}
310
311
312// isOpcWithIntImmediate - This method tests to see if the node is a specific
313// opcode and that it has a immediate integer right operand.
314// If so Imm will receive the 32 bit value.
315static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greif81d6a382008-08-31 15:37:04 +0000316 return N->getOpcode() == Opc
317 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Chris Lattner97b3da12006-06-27 00:04:13 +0000318}
319
Nate Begemand31efd12006-09-22 05:01:56 +0000320bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemanb3821a32005-08-18 07:30:46 +0000321 if (isShiftedMask_32(Val)) {
322 // look for the first non-zero bit
323 MB = CountLeadingZeros_32(Val);
324 // look for the first zero bit after the run of ones
325 ME = CountLeadingZeros_32((Val - 1) ^ Val);
326 return true;
Chris Lattner666512c2005-08-25 04:47:18 +0000327 } else {
328 Val = ~Val; // invert mask
329 if (isShiftedMask_32(Val)) {
330 // effectively look for the first zero bit
331 ME = CountLeadingZeros_32(Val) - 1;
332 // effectively look for the first one bit after the run of zeros
333 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
334 return true;
335 }
Nate Begemanb3821a32005-08-18 07:30:46 +0000336 }
337 // no run present
338 return false;
339}
340
Nate Begemand31efd12006-09-22 05:01:56 +0000341bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
Dale Johannesen86dcae12009-11-24 01:09:07 +0000342 bool isShiftMask, unsigned &SH,
Nate Begemand31efd12006-09-22 05:01:56 +0000343 unsigned &MB, unsigned &ME) {
Nate Begeman92e77502005-10-19 00:05:37 +0000344 // Don't even go down this path for i64, since different logic will be
345 // necessary for rldicl/rldicr/rldimi.
Owen Anderson9f944592009-08-11 20:47:22 +0000346 if (N->getValueType(0) != MVT::i32)
Nate Begeman92e77502005-10-19 00:05:37 +0000347 return false;
348
Nate Begemanb3821a32005-08-18 07:30:46 +0000349 unsigned Shift = 32;
350 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
351 unsigned Opcode = N->getOpcode();
Chris Lattnere413b602005-08-30 00:59:16 +0000352 if (N->getNumOperands() != 2 ||
Gabor Greiff304a7a2008-08-28 21:40:38 +0000353 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Nate Begemanb3821a32005-08-18 07:30:46 +0000354 return false;
355
356 if (Opcode == ISD::SHL) {
357 // apply shift left to mask if it comes first
Dale Johannesen86dcae12009-11-24 01:09:07 +0000358 if (isShiftMask) Mask = Mask << Shift;
Nate Begemanb3821a32005-08-18 07:30:46 +0000359 // determine which bits are made indeterminant by shift
360 Indeterminant = ~(0xFFFFFFFFu << Shift);
Chris Lattnerefa38262005-10-15 21:40:12 +0000361 } else if (Opcode == ISD::SRL) {
Nate Begemanb3821a32005-08-18 07:30:46 +0000362 // apply shift right to mask if it comes first
Dale Johannesen86dcae12009-11-24 01:09:07 +0000363 if (isShiftMask) Mask = Mask >> Shift;
Nate Begemanb3821a32005-08-18 07:30:46 +0000364 // determine which bits are made indeterminant by shift
365 Indeterminant = ~(0xFFFFFFFFu >> Shift);
366 // adjust for the left rotate
367 Shift = 32 - Shift;
Nate Begemand31efd12006-09-22 05:01:56 +0000368 } else if (Opcode == ISD::ROTL) {
369 Indeterminant = 0;
Nate Begemanb3821a32005-08-18 07:30:46 +0000370 } else {
371 return false;
372 }
373
374 // if the mask doesn't intersect any Indeterminant bits
375 if (Mask && !(Mask & Indeterminant)) {
Chris Lattnera2963392006-05-12 16:29:37 +0000376 SH = Shift & 31;
Nate Begemanb3821a32005-08-18 07:30:46 +0000377 // make sure the mask is still a mask (wrap arounds may not be)
378 return isRunOfOnes(Mask, MB, ME);
379 }
380 return false;
381}
382
Nate Begeman93c4bc62005-08-19 00:38:14 +0000383/// SelectBitfieldInsert - turn an or of two masked values into
384/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman0b71e002005-10-18 00:28:58 +0000385SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000386 SDValue Op0 = N->getOperand(0);
387 SDValue Op1 = N->getOperand(1);
Dale Johannesen9f3f72f2009-02-06 01:31:28 +0000388 DebugLoc dl = N->getDebugLoc();
Nate Begeman93c4bc62005-08-19 00:38:14 +0000389
Dan Gohmanf19609a2008-02-27 01:23:58 +0000390 APInt LKZ, LKO, RKZ, RKO;
391 CurDAG->ComputeMaskedBits(Op0, APInt::getAllOnesValue(32), LKZ, LKO);
392 CurDAG->ComputeMaskedBits(Op1, APInt::getAllOnesValue(32), RKZ, RKO);
Nate Begeman93c4bc62005-08-19 00:38:14 +0000393
Dan Gohmanf19609a2008-02-27 01:23:58 +0000394 unsigned TargetMask = LKZ.getZExtValue();
395 unsigned InsertMask = RKZ.getZExtValue();
Nate Begeman9b6d4c22006-05-08 17:38:32 +0000396
397 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
398 unsigned Op0Opc = Op0.getOpcode();
399 unsigned Op1Opc = Op1.getOpcode();
400 unsigned Value, SH = 0;
401 TargetMask = ~TargetMask;
402 InsertMask = ~InsertMask;
Nate Begeman1333cea2006-05-07 00:23:38 +0000403
Nate Begeman9b6d4c22006-05-08 17:38:32 +0000404 // If the LHS has a foldable shift and the RHS does not, then swap it to the
405 // RHS so that we can fold the shift into the insert.
Nate Begeman1333cea2006-05-07 00:23:38 +0000406 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
407 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
408 Op0.getOperand(0).getOpcode() == ISD::SRL) {
409 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
410 Op1.getOperand(0).getOpcode() != ISD::SRL) {
411 std::swap(Op0, Op1);
412 std::swap(Op0Opc, Op1Opc);
Nate Begeman9b6d4c22006-05-08 17:38:32 +0000413 std::swap(TargetMask, InsertMask);
Nate Begeman1333cea2006-05-07 00:23:38 +0000414 }
Nate Begeman93c4bc62005-08-19 00:38:14 +0000415 }
Nate Begeman9b6d4c22006-05-08 17:38:32 +0000416 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
417 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
418 Op1.getOperand(0).getOpcode() != ISD::SRL) {
419 std::swap(Op0, Op1);
420 std::swap(Op0Opc, Op1Opc);
421 std::swap(TargetMask, InsertMask);
422 }
Nate Begeman93c4bc62005-08-19 00:38:14 +0000423 }
Nate Begeman1333cea2006-05-07 00:23:38 +0000424
425 unsigned MB, ME;
Chris Lattnera2963392006-05-12 16:29:37 +0000426 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dale Johannesen8495a502009-11-20 22:16:40 +0000427 SDValue Tmp1, Tmp2;
Nate Begeman1333cea2006-05-07 00:23:38 +0000428
429 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattner97b3da12006-06-27 00:04:13 +0000430 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman1333cea2006-05-07 00:23:38 +0000431 Op1 = Op1.getOperand(0);
432 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
433 }
434 if (Op1Opc == ISD::AND) {
435 unsigned SHOpc = Op1.getOperand(0).getOpcode();
436 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattner97b3da12006-06-27 00:04:13 +0000437 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman1333cea2006-05-07 00:23:38 +0000438 Op1 = Op1.getOperand(0).getOperand(0);
439 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
440 } else {
441 Op1 = Op1.getOperand(0);
442 }
443 }
Dale Johannesen8495a502009-11-20 22:16:40 +0000444
Chris Lattnera2963392006-05-12 16:29:37 +0000445 SH &= 31;
Dale Johannesen8495a502009-11-20 22:16:40 +0000446 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
Evan Chengc3acfc02006-08-27 08:14:06 +0000447 getI32Imm(ME) };
Dan Gohman32f71d72009-09-25 18:54:59 +0000448 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman93c4bc62005-08-19 00:38:14 +0000449 }
Nate Begeman93c4bc62005-08-19 00:38:14 +0000450 }
451 return 0;
452}
453
Chris Lattner2a1823d2005-08-21 18:50:37 +0000454/// SelectCC - Select a comparison of the specified values with the specified
455/// condition code, returning the CR# of the expression.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000456SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesenab8e4422009-02-06 19:16:40 +0000457 ISD::CondCode CC, DebugLoc dl) {
Chris Lattner2a1823d2005-08-21 18:50:37 +0000458 // Always select the LHS.
Chris Lattner97b3da12006-06-27 00:04:13 +0000459 unsigned Opc;
460
Owen Anderson9f944592009-08-11 20:47:22 +0000461 if (LHS.getValueType() == MVT::i32) {
Chris Lattner9a40cca2006-06-27 00:10:13 +0000462 unsigned Imm;
Chris Lattneraa3926b2006-09-20 04:25:47 +0000463 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
464 if (isInt32Immediate(RHS, Imm)) {
465 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000466 if (isUInt<16>(Imm))
Dan Gohman32f71d72009-09-25 18:54:59 +0000467 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
468 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattneraa3926b2006-09-20 04:25:47 +0000469 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000470 if (isInt<16>((int)Imm))
Dan Gohman32f71d72009-09-25 18:54:59 +0000471 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
472 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattneraa3926b2006-09-20 04:25:47 +0000473
474 // For non-equality comparisons, the default code would materialize the
475 // constant, then compare against it, like this:
476 // lis r2, 4660
477 // ori r2, r2, 22136
478 // cmpw cr0, r3, r2
479 // Since we are just comparing for equality, we can emit this instead:
480 // xoris r0,r3,0x1234
481 // cmplwi cr0,r0,0x5678
482 // beq cr0,L6
Dan Gohman32f71d72009-09-25 18:54:59 +0000483 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS, dl, MVT::i32, LHS,
484 getI32Imm(Imm >> 16)), 0);
485 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, Xor,
486 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattneraa3926b2006-09-20 04:25:47 +0000487 }
488 Opc = PPC::CMPLW;
489 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer2788f792010-03-29 21:13:41 +0000490 if (isInt32Immediate(RHS, Imm) && isUInt<16>(Imm))
Dan Gohman32f71d72009-09-25 18:54:59 +0000491 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
492 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner97b3da12006-06-27 00:04:13 +0000493 Opc = PPC::CMPLW;
494 } else {
495 short SImm;
496 if (isIntS16Immediate(RHS, SImm))
Dan Gohman32f71d72009-09-25 18:54:59 +0000497 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
498 getI32Imm((int)SImm & 0xFFFF)),
Chris Lattner97b3da12006-06-27 00:04:13 +0000499 0);
500 Opc = PPC::CMPW;
501 }
Owen Anderson9f944592009-08-11 20:47:22 +0000502 } else if (LHS.getValueType() == MVT::i64) {
Chris Lattner97b3da12006-06-27 00:04:13 +0000503 uint64_t Imm;
Chris Lattnerda9b1a92006-09-20 04:33:27 +0000504 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000505 if (isInt64Immediate(RHS.getNode(), Imm)) {
Chris Lattnerda9b1a92006-09-20 04:33:27 +0000506 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000507 if (isUInt<16>(Imm))
Dan Gohman32f71d72009-09-25 18:54:59 +0000508 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
509 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattnerda9b1a92006-09-20 04:33:27 +0000510 // If this is a 16-bit signed immediate, fold it.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000511 if (isInt<16>(Imm))
Dan Gohman32f71d72009-09-25 18:54:59 +0000512 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
513 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattnerda9b1a92006-09-20 04:33:27 +0000514
515 // For non-equality comparisons, the default code would materialize the
516 // constant, then compare against it, like this:
517 // lis r2, 4660
518 // ori r2, r2, 22136
519 // cmpd cr0, r3, r2
520 // Since we are just comparing for equality, we can emit this instead:
521 // xoris r0,r3,0x1234
522 // cmpldi cr0,r0,0x5678
523 // beq cr0,L6
Benjamin Kramer2788f792010-03-29 21:13:41 +0000524 if (isUInt<32>(Imm)) {
Dan Gohman32f71d72009-09-25 18:54:59 +0000525 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS8, dl, MVT::i64, LHS,
526 getI64Imm(Imm >> 16)), 0);
527 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, Xor,
528 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattnerda9b1a92006-09-20 04:33:27 +0000529 }
530 }
531 Opc = PPC::CMPLD;
532 } else if (ISD::isUnsignedIntSetCC(CC)) {
Benjamin Kramer2788f792010-03-29 21:13:41 +0000533 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt<16>(Imm))
Dan Gohman32f71d72009-09-25 18:54:59 +0000534 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
535 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattner97b3da12006-06-27 00:04:13 +0000536 Opc = PPC::CMPLD;
537 } else {
538 short SImm;
539 if (isIntS16Immediate(RHS, SImm))
Dan Gohman32f71d72009-09-25 18:54:59 +0000540 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
541 getI64Imm(SImm & 0xFFFF)),
Chris Lattner97b3da12006-06-27 00:04:13 +0000542 0);
543 Opc = PPC::CMPD;
544 }
Owen Anderson9f944592009-08-11 20:47:22 +0000545 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattner97b3da12006-06-27 00:04:13 +0000546 Opc = PPC::FCMPUS;
Chris Lattner2a1823d2005-08-21 18:50:37 +0000547 } else {
Owen Anderson9f944592009-08-11 20:47:22 +0000548 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
Chris Lattner97b3da12006-06-27 00:04:13 +0000549 Opc = PPC::FCMPUD;
Chris Lattner2a1823d2005-08-21 18:50:37 +0000550 }
Dan Gohman32f71d72009-09-25 18:54:59 +0000551 return SDValue(CurDAG->getMachineNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Chris Lattner2a1823d2005-08-21 18:50:37 +0000552}
553
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000554static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2a1823d2005-08-21 18:50:37 +0000555 switch (CC) {
Chris Lattner630bbce2006-05-25 16:54:16 +0000556 case ISD::SETUEQ:
Dale Johannesen160be0f2008-11-07 22:54:33 +0000557 case ISD::SETONE:
558 case ISD::SETOLE:
559 case ISD::SETOGE:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000560 llvm_unreachable("Should be lowered by legalize!");
561 default: llvm_unreachable("Unknown condition!");
Dale Johannesen160be0f2008-11-07 22:54:33 +0000562 case ISD::SETOEQ:
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000563 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattner630bbce2006-05-25 16:54:16 +0000564 case ISD::SETUNE:
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000565 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen160be0f2008-11-07 22:54:33 +0000566 case ISD::SETOLT:
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000567 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattner2a1823d2005-08-21 18:50:37 +0000568 case ISD::SETULE:
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000569 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen160be0f2008-11-07 22:54:33 +0000570 case ISD::SETOGT:
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000571 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattner2a1823d2005-08-21 18:50:37 +0000572 case ISD::SETUGE:
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000573 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000574 case ISD::SETO: return PPC::PRED_NU;
575 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen160be0f2008-11-07 22:54:33 +0000576 // These two are invalid for floating point. Assume we have int.
577 case ISD::SETULT: return PPC::PRED_LT;
578 case ISD::SETUGT: return PPC::PRED_GT;
Chris Lattner2a1823d2005-08-21 18:50:37 +0000579 }
Chris Lattner2a1823d2005-08-21 18:50:37 +0000580}
581
Chris Lattner3dcd75b2005-08-25 20:08:18 +0000582/// getCRIdxForSetCC - Return the index of the condition register field
583/// associated with the SetCC condition, and whether or not the field is
584/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattner89f36e62008-01-08 06:46:30 +0000585///
586/// If this returns with Other != -1, then the returned comparison is an or of
587/// two simpler comparisons. In this case, Invert is guaranteed to be false.
588static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
589 Invert = false;
590 Other = -1;
Chris Lattner3dcd75b2005-08-25 20:08:18 +0000591 switch (CC) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000592 default: llvm_unreachable("Unknown condition!");
Chris Lattner89f36e62008-01-08 06:46:30 +0000593 case ISD::SETOLT:
594 case ISD::SETLT: return 0; // Bit #0 = SETOLT
595 case ISD::SETOGT:
596 case ISD::SETGT: return 1; // Bit #1 = SETOGT
597 case ISD::SETOEQ:
598 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
599 case ISD::SETUO: return 3; // Bit #3 = SETUO
Chris Lattner3dcd75b2005-08-25 20:08:18 +0000600 case ISD::SETUGE:
Chris Lattner89f36e62008-01-08 06:46:30 +0000601 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Chris Lattner3dcd75b2005-08-25 20:08:18 +0000602 case ISD::SETULE:
Chris Lattner89f36e62008-01-08 06:46:30 +0000603 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Chris Lattner1fbb0d32006-05-25 18:06:16 +0000604 case ISD::SETUNE:
Chris Lattner89f36e62008-01-08 06:46:30 +0000605 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
606 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Dale Johannesen160be0f2008-11-07 22:54:33 +0000607 case ISD::SETUEQ:
608 case ISD::SETOGE:
609 case ISD::SETOLE:
610 case ISD::SETONE:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000611 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen160be0f2008-11-07 22:54:33 +0000612 // These are invalid for floating point. Assume integer.
613 case ISD::SETULT: return 0;
614 case ISD::SETUGT: return 1;
Chris Lattner3dcd75b2005-08-25 20:08:18 +0000615 }
616 return 0;
617}
Chris Lattnerc5292ec2005-08-21 22:31:09 +0000618
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000619SDNode *PPCDAGToDAGISel::SelectSETCC(SDNode *N) {
Dale Johannesenf08a47b2009-02-04 23:02:30 +0000620 DebugLoc dl = N->getDebugLoc();
Chris Lattner491b8292005-10-06 19:03:35 +0000621 unsigned Imm;
622 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Chris Lattner97b3da12006-06-27 00:04:13 +0000623 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner491b8292005-10-06 19:03:35 +0000624 // We can codegen setcc op, imm very efficiently compared to a brcond.
625 // Check for those cases here.
626 // setcc op, 0
627 if (Imm == 0) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000628 SDValue Op = N->getOperand(0);
Chris Lattner491b8292005-10-06 19:03:35 +0000629 switch (CC) {
Chris Lattnere2969492005-10-21 21:17:10 +0000630 default: break;
Evan Chengc3acfc02006-08-27 08:14:06 +0000631 case ISD::SETEQ: {
Dan Gohman32f71d72009-09-25 18:54:59 +0000632 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000633 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Owen Anderson9f944592009-08-11 20:47:22 +0000634 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Chengc3acfc02006-08-27 08:14:06 +0000635 }
Chris Lattnere2969492005-10-21 21:17:10 +0000636 case ISD::SETNE: {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000637 SDValue AD =
Dan Gohman32f71d72009-09-25 18:54:59 +0000638 SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
639 Op, getI32Imm(~0U)), 0);
Owen Anderson9f944592009-08-11 20:47:22 +0000640 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng34b70ee2006-08-26 08:00:10 +0000641 AD.getValue(1));
Chris Lattner491b8292005-10-06 19:03:35 +0000642 }
Evan Chengc3acfc02006-08-27 08:14:06 +0000643 case ISD::SETLT: {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000644 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson9f944592009-08-11 20:47:22 +0000645 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Chengc3acfc02006-08-27 08:14:06 +0000646 }
Chris Lattnere2969492005-10-21 21:17:10 +0000647 case ISD::SETGT: {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000648 SDValue T =
Dan Gohman32f71d72009-09-25 18:54:59 +0000649 SDValue(CurDAG->getMachineNode(PPC::NEG, dl, MVT::i32, Op), 0);
650 T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000651 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson9f944592009-08-11 20:47:22 +0000652 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnere2969492005-10-21 21:17:10 +0000653 }
654 }
Chris Lattner491b8292005-10-06 19:03:35 +0000655 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000656 SDValue Op = N->getOperand(0);
Chris Lattner491b8292005-10-06 19:03:35 +0000657 switch (CC) {
Chris Lattnere2969492005-10-21 21:17:10 +0000658 default: break;
659 case ISD::SETEQ:
Dan Gohman32f71d72009-09-25 18:54:59 +0000660 Op = SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
661 Op, getI32Imm(1)), 0);
Owen Anderson9f944592009-08-11 20:47:22 +0000662 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman32f71d72009-09-25 18:54:59 +0000663 SDValue(CurDAG->getMachineNode(PPC::LI, dl,
664 MVT::i32,
665 getI32Imm(0)), 0),
Dale Johannesenf08a47b2009-02-04 23:02:30 +0000666 Op.getValue(1));
Chris Lattnere2969492005-10-21 21:17:10 +0000667 case ISD::SETNE: {
Dan Gohman32f71d72009-09-25 18:54:59 +0000668 Op = SDValue(CurDAG->getMachineNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
669 SDNode *AD = CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
670 Op, getI32Imm(~0U));
Owen Anderson9f944592009-08-11 20:47:22 +0000671 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000672 Op, SDValue(AD, 1));
Chris Lattner491b8292005-10-06 19:03:35 +0000673 }
Chris Lattnere2969492005-10-21 21:17:10 +0000674 case ISD::SETLT: {
Dan Gohman32f71d72009-09-25 18:54:59 +0000675 SDValue AD = SDValue(CurDAG->getMachineNode(PPC::ADDI, dl, MVT::i32, Op,
676 getI32Imm(1)), 0);
677 SDValue AN = SDValue(CurDAG->getMachineNode(PPC::AND, dl, MVT::i32, AD,
678 Op), 0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000679 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson9f944592009-08-11 20:47:22 +0000680 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnere2969492005-10-21 21:17:10 +0000681 }
Evan Chengc3acfc02006-08-27 08:14:06 +0000682 case ISD::SETGT: {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000683 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dan Gohman32f71d72009-09-25 18:54:59 +0000684 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
Dale Johannesenf08a47b2009-02-04 23:02:30 +0000685 0);
Owen Anderson9f944592009-08-11 20:47:22 +0000686 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng34b70ee2006-08-26 08:00:10 +0000687 getI32Imm(1));
Chris Lattnere2969492005-10-21 21:17:10 +0000688 }
Evan Chengc3acfc02006-08-27 08:14:06 +0000689 }
Chris Lattner491b8292005-10-06 19:03:35 +0000690 }
691 }
692
693 bool Inv;
Chris Lattner89f36e62008-01-08 06:46:30 +0000694 int OtherCondIdx;
695 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Dale Johannesenab8e4422009-02-06 19:16:40 +0000696 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000697 SDValue IntCR;
Chris Lattner491b8292005-10-06 19:03:35 +0000698
699 // Force the ccreg into CR7.
Owen Anderson9f944592009-08-11 20:47:22 +0000700 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Chris Lattner491b8292005-10-06 19:03:35 +0000701
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000702 SDValue InFlag(0, 0); // Null incoming flag value.
Dale Johannesenf08a47b2009-02-04 23:02:30 +0000703 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Chris Lattnerbd099102005-12-01 03:50:19 +0000704 InFlag).getValue(1);
Chris Lattner491b8292005-10-06 19:03:35 +0000705
Chris Lattner89f36e62008-01-08 06:46:30 +0000706 if (PPCSubTarget.isGigaProcessor() && OtherCondIdx == -1)
Dan Gohman32f71d72009-09-25 18:54:59 +0000707 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
708 CCReg), 0);
Dale Johannesend7d66382010-05-20 17:48:26 +0000709 else
710 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
711 CR7Reg, CCReg), 0);
Chris Lattner491b8292005-10-06 19:03:35 +0000712
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000713 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Evan Chengc3acfc02006-08-27 08:14:06 +0000714 getI32Imm(31), getI32Imm(31) };
Chris Lattner89f36e62008-01-08 06:46:30 +0000715 if (OtherCondIdx == -1 && !Inv)
Owen Anderson9f944592009-08-11 20:47:22 +0000716 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattner89f36e62008-01-08 06:46:30 +0000717
718 // Get the specified bit.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000719 SDValue Tmp =
Dan Gohman32f71d72009-09-25 18:54:59 +0000720 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattner89f36e62008-01-08 06:46:30 +0000721 if (Inv) {
722 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Owen Anderson9f944592009-08-11 20:47:22 +0000723 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner491b8292005-10-06 19:03:35 +0000724 }
Chris Lattner89f36e62008-01-08 06:46:30 +0000725
726 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
727 // We already got the bit for the first part of the comparison (e.g. SETULE).
728
729 // Get the other bit of the comparison.
730 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000731 SDValue OtherCond =
Dan Gohman32f71d72009-09-25 18:54:59 +0000732 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattner89f36e62008-01-08 06:46:30 +0000733
Owen Anderson9f944592009-08-11 20:47:22 +0000734 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Chris Lattner491b8292005-10-06 19:03:35 +0000735}
Chris Lattner502a3692005-10-06 18:56:10 +0000736
Chris Lattner318622f2005-10-06 19:07:45 +0000737
Chris Lattner43ff01e2005-08-17 19:33:03 +0000738// Select - Convert the specified operand from a target-independent to a
739// target-specific node if it hasn't already been changed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000740SDNode *PPCDAGToDAGISel::Select(SDNode *N) {
741 DebugLoc dl = N->getDebugLoc();
Dan Gohman17059682008-07-17 19:10:17 +0000742 if (N->isMachineOpcode())
Evan Chengbd1c5a82006-08-11 09:08:15 +0000743 return NULL; // Already selected.
Chris Lattner08c319f2005-09-29 00:59:32 +0000744
Chris Lattner43ff01e2005-08-17 19:33:03 +0000745 switch (N->getOpcode()) {
Chris Lattner498915d2005-09-07 23:45:15 +0000746 default: break;
Jim Laskey095e6f32006-12-12 13:23:43 +0000747
748 case ISD::Constant: {
Owen Anderson9f944592009-08-11 20:47:22 +0000749 if (N->getValueType(0) == MVT::i64) {
Jim Laskey095e6f32006-12-12 13:23:43 +0000750 // Get 64 bit value.
Dan Gohmaneffb8942008-09-12 16:56:44 +0000751 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Jim Laskey095e6f32006-12-12 13:23:43 +0000752 // Assume no remaining bits.
753 unsigned Remainder = 0;
754 // Assume no shift required.
755 unsigned Shift = 0;
756
757 // If it can't be represented as a 32 bit value.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000758 if (!isInt<32>(Imm)) {
Jim Laskey095e6f32006-12-12 13:23:43 +0000759 Shift = CountTrailingZeros_64(Imm);
760 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
761
762 // If the shifted value fits 32 bits.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000763 if (isInt<32>(ImmSh)) {
Jim Laskey095e6f32006-12-12 13:23:43 +0000764 // Go with the shifted value.
765 Imm = ImmSh;
766 } else {
767 // Still stuck with a 64 bit value.
768 Remainder = Imm;
769 Shift = 32;
770 Imm >>= 32;
771 }
772 }
773
774 // Intermediate operand.
775 SDNode *Result;
776
777 // Handle first 32 bits.
778 unsigned Lo = Imm & 0xFFFF;
779 unsigned Hi = (Imm >> 16) & 0xFFFF;
780
781 // Simple value.
Benjamin Kramer2788f792010-03-29 21:13:41 +0000782 if (isInt<16>(Imm)) {
Jim Laskey095e6f32006-12-12 13:23:43 +0000783 // Just the Lo bits.
Dan Gohman32f71d72009-09-25 18:54:59 +0000784 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Jim Laskey095e6f32006-12-12 13:23:43 +0000785 } else if (Lo) {
786 // Handle the Hi bits.
787 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dan Gohman32f71d72009-09-25 18:54:59 +0000788 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey095e6f32006-12-12 13:23:43 +0000789 // And Lo bits.
Dan Gohman32f71d72009-09-25 18:54:59 +0000790 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
791 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey095e6f32006-12-12 13:23:43 +0000792 } else {
793 // Just the Hi bits.
Dan Gohman32f71d72009-09-25 18:54:59 +0000794 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey095e6f32006-12-12 13:23:43 +0000795 }
796
797 // If no shift, we're done.
798 if (!Shift) return Result;
799
800 // Shift for next step if the upper 32-bits were not zero.
801 if (Imm) {
Dan Gohman32f71d72009-09-25 18:54:59 +0000802 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
803 SDValue(Result, 0),
804 getI32Imm(Shift),
805 getI32Imm(63 - Shift));
Jim Laskey095e6f32006-12-12 13:23:43 +0000806 }
807
808 // Add in the last bits as required.
809 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dan Gohman32f71d72009-09-25 18:54:59 +0000810 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64,
811 SDValue(Result, 0), getI32Imm(Hi));
Jim Laskey095e6f32006-12-12 13:23:43 +0000812 }
813 if ((Lo = Remainder & 0xFFFF)) {
Dan Gohman32f71d72009-09-25 18:54:59 +0000814 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
815 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey095e6f32006-12-12 13:23:43 +0000816 }
817
818 return Result;
819 }
820 break;
821 }
822
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000823 case ISD::SETCC:
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000824 return SelectSETCC(N);
Evan Cheng6dc90ca2006-02-09 00:37:58 +0000825 case PPCISD::GlobalBaseReg:
Evan Cheng61413a32006-08-26 05:34:46 +0000826 return getGlobalBaseReg();
Chris Lattner595088a2005-11-17 07:30:41 +0000827
Chris Lattnere4c338d2005-08-25 00:45:43 +0000828 case ISD::FrameIndex: {
829 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000830 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
831 unsigned Opc = N->getValueType(0) == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerbc485fd2006-08-15 23:48:22 +0000832 if (N->hasOneUse())
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000833 return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), TFI,
Evan Cheng34b70ee2006-08-26 08:00:10 +0000834 getSmallIPtrImm(0));
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000835 return CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI,
Dan Gohman32f71d72009-09-25 18:54:59 +0000836 getSmallIPtrImm(0));
Chris Lattnere4c338d2005-08-25 00:45:43 +0000837 }
Chris Lattner6961fc72006-03-26 10:06:40 +0000838
839 case PPCISD::MFCR: {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000840 SDValue InFlag = N->getOperand(1);
Chris Lattner6961fc72006-03-26 10:06:40 +0000841 // Use MFOCRF if supported.
Evan Chengec271b12007-10-23 06:42:42 +0000842 if (PPCSubTarget.isGigaProcessor())
Dan Gohman32f71d72009-09-25 18:54:59 +0000843 return CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32,
844 N->getOperand(0), InFlag);
Chris Lattner6961fc72006-03-26 10:06:40 +0000845 else
Dale Johannesend7d66382010-05-20 17:48:26 +0000846 return CurDAG->getMachineNode(PPC::MFCRpseud, dl, MVT::i32,
847 N->getOperand(0), InFlag);
Chris Lattner6961fc72006-03-26 10:06:40 +0000848 }
849
Chris Lattner57693112005-09-28 22:50:24 +0000850 case ISD::SDIV: {
Nate Begeman4dd38312005-10-21 00:02:42 +0000851 // FIXME: since this depends on the setting of the carry flag from the srawi
852 // we should really be making notes about that for the scheduler.
853 // FIXME: It sure would be nice if we could cheaply recognize the
854 // srl/add/sra pattern the dag combiner will generate for this as
855 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattnerdc664572005-08-25 17:50:06 +0000856 unsigned Imm;
Chris Lattner97b3da12006-06-27 00:04:13 +0000857 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000858 SDValue N0 = N->getOperand(0);
Chris Lattnerdc664572005-08-25 17:50:06 +0000859 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Chengd1b82d82006-02-09 07:17:49 +0000860 SDNode *Op =
Dan Gohman32f71d72009-09-25 18:54:59 +0000861 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
862 N0, getI32Imm(Log2_32(Imm)));
Owen Anderson9f944592009-08-11 20:47:22 +0000863 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000864 SDValue(Op, 0), SDValue(Op, 1));
Chris Lattnerdc664572005-08-25 17:50:06 +0000865 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Chengd1b82d82006-02-09 07:17:49 +0000866 SDNode *Op =
Dan Gohman32f71d72009-09-25 18:54:59 +0000867 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
868 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000869 SDValue PT =
Dan Gohman32f71d72009-09-25 18:54:59 +0000870 SDValue(CurDAG->getMachineNode(PPC::ADDZE, dl, MVT::i32,
871 SDValue(Op, 0), SDValue(Op, 1)),
Evan Chengd1b82d82006-02-09 07:17:49 +0000872 0);
Owen Anderson9f944592009-08-11 20:47:22 +0000873 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattnerdc664572005-08-25 17:50:06 +0000874 }
875 }
Chris Lattner6e184f22005-08-25 22:04:30 +0000876
Chris Lattner1de57062005-09-29 23:33:31 +0000877 // Other cases are autogenerated.
878 break;
Chris Lattner6e184f22005-08-25 22:04:30 +0000879 }
Chris Lattnerce645542006-11-10 02:08:47 +0000880
881 case ISD::LOAD: {
882 // Handle preincrement loads.
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000883 LoadSDNode *LD = cast<LoadSDNode>(N);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000884 EVT LoadedVT = LD->getMemoryVT();
Chris Lattnerce645542006-11-10 02:08:47 +0000885
886 // Normal loads are handled by code generated from the .td file.
887 if (LD->getAddressingMode() != ISD::PRE_INC)
888 break;
889
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000890 SDValue Offset = LD->getOffset();
Chris Lattnerc5102bf2006-11-11 04:53:30 +0000891 if (isa<ConstantSDNode>(Offset) ||
892 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Chris Lattner474b5b72006-11-15 19:55:13 +0000893
894 unsigned Opcode;
895 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
Owen Anderson9f944592009-08-11 20:47:22 +0000896 if (LD->getValueType(0) != MVT::i64) {
Chris Lattner474b5b72006-11-15 19:55:13 +0000897 // Handle PPC32 integer and normal FP loads.
Owen Anderson9f944592009-08-11 20:47:22 +0000898 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
899 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000900 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson9f944592009-08-11 20:47:22 +0000901 case MVT::f64: Opcode = PPC::LFDU; break;
902 case MVT::f32: Opcode = PPC::LFSU; break;
903 case MVT::i32: Opcode = PPC::LWZU; break;
904 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
905 case MVT::i1:
906 case MVT::i8: Opcode = PPC::LBZU; break;
Chris Lattner474b5b72006-11-15 19:55:13 +0000907 }
908 } else {
Owen Anderson9f944592009-08-11 20:47:22 +0000909 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
910 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
911 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000912 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson9f944592009-08-11 20:47:22 +0000913 case MVT::i64: Opcode = PPC::LDU; break;
914 case MVT::i32: Opcode = PPC::LWZU8; break;
915 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
916 case MVT::i1:
917 case MVT::i8: Opcode = PPC::LBZU8; break;
Chris Lattner474b5b72006-11-15 19:55:13 +0000918 }
919 }
920
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000921 SDValue Chain = LD->getChain();
922 SDValue Base = LD->getBasePtr();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000923 SDValue Ops[] = { Offset, Base, Chain };
Chris Lattnerce645542006-11-10 02:08:47 +0000924 // FIXME: PPC64
Dan Gohman32f71d72009-09-25 18:54:59 +0000925 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
926 PPCLowering.getPointerTy(),
927 MVT::Other, Ops, 3);
Chris Lattnerce645542006-11-10 02:08:47 +0000928 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000929 llvm_unreachable("R+R preindex loads not supported yet!");
Chris Lattnerce645542006-11-10 02:08:47 +0000930 }
931 }
932
Nate Begemanb3821a32005-08-18 07:30:46 +0000933 case ISD::AND: {
Nate Begemand31efd12006-09-22 05:01:56 +0000934 unsigned Imm, Imm2, SH, MB, ME;
935
Nate Begemanb3821a32005-08-18 07:30:46 +0000936 // If this is an and of a value rotated between 0 and 31 bits and then and'd
937 // with a mask, emit rlwinm
Chris Lattner97b3da12006-06-27 00:04:13 +0000938 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greiff304a7a2008-08-28 21:40:38 +0000939 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000940 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000941 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson9f944592009-08-11 20:47:22 +0000942 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemanb3821a32005-08-18 07:30:46 +0000943 }
Nate Begemand31efd12006-09-22 05:01:56 +0000944 // If this is just a masked value where the input is not handled above, and
945 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
946 if (isInt32Immediate(N->getOperand(1), Imm) &&
947 isRunOfOnes(Imm, MB, ME) &&
948 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000949 SDValue Val = N->getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000950 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson9f944592009-08-11 20:47:22 +0000951 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemand31efd12006-09-22 05:01:56 +0000952 }
953 // AND X, 0 -> 0, not "rlwinm 32".
954 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000955 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Nate Begemand31efd12006-09-22 05:01:56 +0000956 return NULL;
957 }
Nate Begeman9aea6e42005-12-24 01:00:15 +0000958 // ISD::OR doesn't get all the bitfield insertion fun.
959 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Chris Lattner97b3da12006-06-27 00:04:13 +0000960 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman9aea6e42005-12-24 01:00:15 +0000961 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattner97b3da12006-06-27 00:04:13 +0000962 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattner20c88df2006-01-05 18:32:49 +0000963 unsigned MB, ME;
Nate Begeman9aea6e42005-12-24 01:00:15 +0000964 Imm = ~(Imm^Imm2);
965 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000966 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Chengc3acfc02006-08-27 08:14:06 +0000967 N->getOperand(0).getOperand(1),
968 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dan Gohman32f71d72009-09-25 18:54:59 +0000969 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman9aea6e42005-12-24 01:00:15 +0000970 }
971 }
Chris Lattner1de57062005-09-29 23:33:31 +0000972
973 // Other cases are autogenerated.
974 break;
Nate Begemanb3821a32005-08-18 07:30:46 +0000975 }
Nate Begeman93c4bc62005-08-19 00:38:14 +0000976 case ISD::OR:
Owen Anderson9f944592009-08-11 20:47:22 +0000977 if (N->getValueType(0) == MVT::i32)
Chris Lattnerbc485fd2006-08-15 23:48:22 +0000978 if (SDNode *I = SelectBitfieldInsert(N))
979 return I;
Chris Lattner08c319f2005-09-29 00:59:32 +0000980
Chris Lattner1de57062005-09-29 23:33:31 +0000981 // Other cases are autogenerated.
982 break;
Nate Begeman33acb2c2005-08-18 23:38:00 +0000983 case ISD::SHL: {
984 unsigned Imm, SH, MB, ME;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000985 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman9f3c26c2005-10-19 18:42:01 +0000986 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000987 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Chengc3acfc02006-08-27 08:14:06 +0000988 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson9f944592009-08-11 20:47:22 +0000989 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman9eaa6ba2005-10-19 01:12:32 +0000990 }
Nate Begeman9f3c26c2005-10-19 18:42:01 +0000991
992 // Other cases are autogenerated.
993 break;
Nate Begeman33acb2c2005-08-18 23:38:00 +0000994 }
995 case ISD::SRL: {
996 unsigned Imm, SH, MB, ME;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000997 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman9f3c26c2005-10-19 18:42:01 +0000998 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000999 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Chengc3acfc02006-08-27 08:14:06 +00001000 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson9f944592009-08-11 20:47:22 +00001001 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman9eaa6ba2005-10-19 01:12:32 +00001002 }
Nate Begeman9f3c26c2005-10-19 18:42:01 +00001003
1004 // Other cases are autogenerated.
1005 break;
Nate Begeman33acb2c2005-08-18 23:38:00 +00001006 }
Chris Lattnerbec817c2005-08-26 18:46:49 +00001007 case ISD::SELECT_CC: {
1008 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1009
Chris Lattner97b3da12006-06-27 00:04:13 +00001010 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Chris Lattnerbec817c2005-08-26 18:46:49 +00001011 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1012 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1013 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1014 if (N1C->isNullValue() && N3C->isNullValue() &&
Dan Gohmaneffb8942008-09-12 16:56:44 +00001015 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
Chris Lattner97b3da12006-06-27 00:04:13 +00001016 // FIXME: Implement this optzn for PPC64.
Owen Anderson9f944592009-08-11 20:47:22 +00001017 N->getValueType(0) == MVT::i32) {
Evan Chengd1b82d82006-02-09 07:17:49 +00001018 SDNode *Tmp =
Dan Gohman32f71d72009-09-25 18:54:59 +00001019 CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
1020 N->getOperand(0), getI32Imm(~0U));
Owen Anderson9f944592009-08-11 20:47:22 +00001021 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001022 SDValue(Tmp, 0), N->getOperand(0),
1023 SDValue(Tmp, 1));
Chris Lattnerbec817c2005-08-26 18:46:49 +00001024 }
Chris Lattner9b577f12005-08-26 21:23:58 +00001025
Dale Johannesenab8e4422009-02-06 19:16:40 +00001026 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Chris Lattner8c6a41e2006-11-17 22:10:59 +00001027 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner9b577f12005-08-26 21:23:58 +00001028
Chris Lattnerd3eee1a2005-10-01 01:35:02 +00001029 unsigned SelectCCOp;
Owen Anderson9f944592009-08-11 20:47:22 +00001030 if (N->getValueType(0) == MVT::i32)
Chris Lattner97b3da12006-06-27 00:04:13 +00001031 SelectCCOp = PPC::SELECT_CC_I4;
Owen Anderson9f944592009-08-11 20:47:22 +00001032 else if (N->getValueType(0) == MVT::i64)
Chris Lattner97b3da12006-06-27 00:04:13 +00001033 SelectCCOp = PPC::SELECT_CC_I8;
Owen Anderson9f944592009-08-11 20:47:22 +00001034 else if (N->getValueType(0) == MVT::f32)
Chris Lattnerd3eee1a2005-10-01 01:35:02 +00001035 SelectCCOp = PPC::SELECT_CC_F4;
Owen Anderson9f944592009-08-11 20:47:22 +00001036 else if (N->getValueType(0) == MVT::f64)
Chris Lattnerd3eee1a2005-10-01 01:35:02 +00001037 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner0a3d1bb2006-04-08 22:45:08 +00001038 else
1039 SelectCCOp = PPC::SELECT_CC_VRRC;
1040
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001041 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Evan Chengc3acfc02006-08-27 08:14:06 +00001042 getI32Imm(BROpc) };
1043 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattnerbec817c2005-08-26 18:46:49 +00001044 }
Chris Lattnerbe9377a2006-11-17 22:37:34 +00001045 case PPCISD::COND_BRANCH: {
Dan Gohman7a638a82008-11-05 17:16:24 +00001046 // Op #0 is the Chain.
Chris Lattnerbe9377a2006-11-17 22:37:34 +00001047 // Op #1 is the PPC::PRED_* number.
1048 // Op #2 is the CR#
1049 // Op #3 is the Dest MBB
Dan Gohmanf14b77e2008-11-05 04:14:16 +00001050 // Op #4 is the Flag.
Evan Cheng58d1eac2007-06-29 01:25:06 +00001051 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001052 SDValue Pred =
Dan Gohmaneffb8942008-09-12 16:56:44 +00001053 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001054 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Chris Lattnerbe9377a2006-11-17 22:37:34 +00001055 N->getOperand(0), N->getOperand(4) };
Owen Anderson9f944592009-08-11 20:47:22 +00001056 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
Chris Lattnerbe9377a2006-11-17 22:37:34 +00001057 }
Nate Begemanbb01d4f2006-03-17 01:40:33 +00001058 case ISD::BR_CC: {
Chris Lattner2a1823d2005-08-21 18:50:37 +00001059 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesenab8e4422009-02-06 19:16:40 +00001060 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001061 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Chengc3acfc02006-08-27 08:14:06 +00001062 N->getOperand(4), N->getOperand(0) };
Owen Anderson9f944592009-08-11 20:47:22 +00001063 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2a1823d2005-08-21 18:50:37 +00001064 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001065 case ISD::BRIND: {
Chris Lattnerb055c872006-06-10 01:15:02 +00001066 // FIXME: Should custom lower this.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001067 SDValue Chain = N->getOperand(0);
1068 SDValue Target = N->getOperand(1);
Owen Anderson9f944592009-08-11 20:47:22 +00001069 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Dan Gohman32f71d72009-09-25 18:54:59 +00001070 Chain = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Target,
1071 Chain), 0);
Owen Anderson9f944592009-08-11 20:47:22 +00001072 return CurDAG->SelectNodeTo(N, PPC::BCTR, MVT::Other, Chain);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001073 }
Chris Lattner43ff01e2005-08-17 19:33:03 +00001074 }
Chris Lattner5f12cf12005-09-03 00:53:47 +00001075
Dan Gohmanea6f91f2010-01-05 01:24:18 +00001076 return SelectCode(N);
Chris Lattner43ff01e2005-08-17 19:33:03 +00001077}
1078
1079
Chris Lattnerb055c872006-06-10 01:15:02 +00001080
Nate Begeman0b71e002005-10-18 00:28:58 +00001081/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattner43ff01e2005-08-17 19:33:03 +00001082/// PowerPC-specific DAG, ready for instruction scheduling.
1083///
Evan Cheng2dd2c652006-03-13 23:20:37 +00001084FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman0b71e002005-10-18 00:28:58 +00001085 return new PPCDAGToDAGISel(TM);
Chris Lattner43ff01e2005-08-17 19:33:03 +00001086}
1087