blob: 32c1879cf713aea7b8b1d78f2067eccb63b5f1c2 [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCISelDAGToDAG.cpp - PPC --pattern matching inst selector --------===//
Chris Lattnera5a91b12005-08-17 19:33:03 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnera5a91b12005-08-17 19:33:03 +00007//
8//===----------------------------------------------------------------------===//
9//
Nate Begeman21e463b2005-10-16 05:39:50 +000010// This file defines a pattern matching instruction selector for PowerPC,
Chris Lattnera5a91b12005-08-17 19:33:03 +000011// converting from a legalized dag to a PPC dag.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner95b2c7d2006-12-19 22:59:26 +000015#define DEBUG_TYPE "ppc-codegen"
Chris Lattner26689592005-10-14 23:51:18 +000016#include "PPC.h"
Chris Lattnerdf4ed632006-11-17 22:10:59 +000017#include "PPCPredicates.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000018#include "PPCTargetMachine.h"
19#include "PPCISelLowering.h"
Chris Lattnerc6644182006-03-07 06:32:48 +000020#include "PPCHazardRecognizers.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/CodeGen/MachineFunction.h"
Dan Gohmanad2afc22009-07-31 18:16:33 +000023#include "llvm/CodeGen/MachineFunctionAnalysis.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000025#include "llvm/CodeGen/SelectionDAG.h"
26#include "llvm/CodeGen/SelectionDAGISel.h"
27#include "llvm/Target/TargetOptions.h"
Chris Lattner2fe76e52005-08-25 04:47:18 +000028#include "llvm/Constants.h"
Chris Lattner9062d9a2009-04-17 00:26:12 +000029#include "llvm/Function.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000030#include "llvm/GlobalValue.h"
Chris Lattner420736d2006-03-25 06:47:10 +000031#include "llvm/Intrinsics.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000032#include "llvm/Support/Debug.h"
33#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
35#include "llvm/Support/raw_ostream.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000036using namespace llvm;
37
38namespace {
Chris Lattnera5a91b12005-08-17 19:33:03 +000039 //===--------------------------------------------------------------------===//
Nate Begeman1d9d7422005-10-18 00:28:58 +000040 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
Chris Lattnera5a91b12005-08-17 19:33:03 +000041 /// instructions for SelectionDAG operations.
42 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +000043 class PPCDAGToDAGISel : public SelectionDAGISel {
Chris Lattner4bb18952006-03-16 18:25:23 +000044 PPCTargetMachine &TM;
Dan Gohmanda8ac5f2008-10-03 16:55:19 +000045 PPCTargetLowering &PPCLowering;
Evan Cheng152b7e12007-10-23 06:42:42 +000046 const PPCSubtarget &PPCSubTarget;
Chris Lattner4416f1a2005-08-19 22:38:53 +000047 unsigned GlobalBaseReg;
Chris Lattnera5a91b12005-08-17 19:33:03 +000048 public:
Dan Gohman1002c022008-07-07 18:00:37 +000049 explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
Dan Gohman79ce2762009-01-15 19:20:50 +000050 : SelectionDAGISel(tm), TM(tm),
Evan Cheng152b7e12007-10-23 06:42:42 +000051 PPCLowering(*TM.getTargetLowering()),
52 PPCSubTarget(*TM.getSubtargetImpl()) {}
Chris Lattnera5a91b12005-08-17 19:33:03 +000053
Dan Gohmanad2afc22009-07-31 18:16:33 +000054 virtual bool runOnMachineFunction(MachineFunction &MF) {
Chris Lattner4416f1a2005-08-19 22:38:53 +000055 // Make sure we re-emit a set of the global base reg if necessary
56 GlobalBaseReg = 0;
Dan Gohmanad2afc22009-07-31 18:16:33 +000057 SelectionDAGISel::runOnMachineFunction(MF);
Chris Lattner4bb18952006-03-16 18:25:23 +000058
Dan Gohmanad2afc22009-07-31 18:16:33 +000059 InsertVRSaveCode(MF);
Chris Lattner4bb18952006-03-16 18:25:23 +000060 return true;
Chris Lattner4416f1a2005-08-19 22:38:53 +000061 }
62
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 }
74
75 /// 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 }
79
Nate Begemanf42f1332006-09-22 05:01:56 +000080 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
81 /// 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);
Chris Lattnerc08f9022006-06-27 00:04:13 +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();
Chris Lattnera5a91b12005-08-17 19:33:03 +000095
96 // 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);
Chris Lattnera5a91b12005-08-17 19:33:03 +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].
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000108 bool SelectAddrImm(SDNode *Op, 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 }
Chris Lattner74531e42006-11-16 00:41:37 +0000112
113 /// 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.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000116 bool SelectAddrImmOffs(SDNode *Op, SDValue N, SDValue &Out) const {
Chris Lattner74531e42006-11-16 00:41:37 +0000117 Out = N;
118 return true;
119 }
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000120
121 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
122 /// represented as an indexed [r+r] operation. Returns false if it can
123 /// be represented by [r+imm], which are preferred.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000124 bool SelectAddrIdx(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000125 SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000126 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
127 }
Nate Begemanf43a3ca2005-11-30 08:22:07 +0000128
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000129 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
130 /// represented as an indexed [r+r] operation.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000131 bool SelectAddrIdxOnly(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000132 SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000133 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
134 }
Chris Lattner9944b762005-08-21 22:31:09 +0000135
Chris Lattnere5ba5802006-03-22 05:26:03 +0000136 /// SelectAddrImmShift - Returns true if the address N can be represented by
137 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
138 /// for use by STD and friends.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000139 bool SelectAddrImmShift(SDNode *Op, SDValue N, SDValue &Disp,
Dan Gohman475871a2008-07-27 21:46:04 +0000140 SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000141 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
142 }
143
Chris Lattnere5d88612006-02-24 02:13:12 +0000144 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000145 /// inline asm expressions. It is always correct to compute the value into
146 /// a register. The case of adding a (possibly relocatable) constant to a
147 /// register can be improved, but it is wrong to substitute Reg+Reg for
148 /// Reg in an asm, because the load or store opcode would have to change.
149 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnere5d88612006-02-24 02:13:12 +0000150 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000151 std::vector<SDValue> &OutOps) {
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000152 OutOps.push_back(Op);
Chris Lattnere5d88612006-02-24 02:13:12 +0000153 return false;
154 }
155
Dan Gohman475871a2008-07-27 21:46:04 +0000156 SDValue BuildSDIVSequence(SDNode *N);
157 SDValue BuildUDIVSequence(SDNode *N);
Chris Lattner047b9522005-08-25 22:04:30 +0000158
Evan Chengdb8d56b2008-06-30 20:45:06 +0000159 /// InstructionSelect - This callback is invoked by
Chris Lattnera5a91b12005-08-17 19:33:03 +0000160 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000161 virtual void InstructionSelect();
Chris Lattnerbd937b92005-10-06 18:45:51 +0000162
Dan Gohmanad2afc22009-07-31 18:16:33 +0000163 void InsertVRSaveCode(MachineFunction &MF);
Chris Lattner4bb18952006-03-16 18:25:23 +0000164
Chris Lattnera5a91b12005-08-17 19:33:03 +0000165 virtual const char *getPassName() const {
166 return "PowerPC DAG->DAG Pattern Instruction Selection";
167 }
Chris Lattnerc6644182006-03-07 06:32:48 +0000168
Chris Lattnerc04ba7a2006-05-16 23:54:25 +0000169 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
170 /// this target when scheduling the DAG.
Dan Gohmanfc54c552009-01-15 22:18:12 +0000171 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
Chris Lattnerc6644182006-03-07 06:32:48 +0000172 // Should use subtarget info to pick the right hazard recognizer. For
173 // now, always return a PPC970 recognizer.
Dan Gohman6448d912008-09-04 15:39:15 +0000174 const TargetInstrInfo *II = TM.getInstrInfo();
Chris Lattner88d211f2006-03-12 09:13:49 +0000175 assert(II && "No InstrInfo?");
176 return new PPCHazardRecognizer970(*II);
Chris Lattnerc6644182006-03-07 06:32:48 +0000177 }
Chris Lattneraf165382005-09-13 22:03:06 +0000178
179// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000180#include "PPCGenDAGISel.inc"
Chris Lattnerbd937b92005-10-06 18:45:51 +0000181
182private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000183 SDNode *SelectSETCC(SDNode *N);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000184 };
185}
186
Evan Chengdb8d56b2008-06-30 20:45:06 +0000187/// InstructionSelect - This callback is invoked by
Chris Lattnerbd937b92005-10-06 18:45:51 +0000188/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000189void PPCDAGToDAGISel::InstructionSelect() {
Chris Lattnerbd937b92005-10-06 18:45:51 +0000190 // Select target instructions for the DAG.
David Greene8ad4c002008-10-27 21:56:29 +0000191 SelectRoot(*CurDAG);
Dan Gohmanf350b272008-08-23 02:25:05 +0000192 CurDAG->RemoveDeadNodes();
Chris Lattner4bb18952006-03-16 18:25:23 +0000193}
194
195/// InsertVRSaveCode - Once the entire function has been instruction selected,
196/// all virtual registers are created and all machine instructions are built,
197/// check to see if we need to save/restore VRSAVE. If so, do it.
Dan Gohmanad2afc22009-07-31 18:16:33 +0000198void PPCDAGToDAGISel::InsertVRSaveCode(MachineFunction &Fn) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000199 // Check to see if this function uses vector registers, which means we have to
200 // save and restore the VRSAVE register and update it with the regs we use.
201 //
202 // In this case, there will be virtual registers of vector type type created
203 // by the scheduler. Detect them now.
Chris Lattner1877ec92006-03-13 21:52:10 +0000204 bool HasVectorVReg = false;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000205 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000206 e = RegInfo->getLastVirtReg()+1; i != e; ++i)
207 if (RegInfo->getRegClass(i) == &PPC::VRRCRegClass) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000208 HasVectorVReg = true;
209 break;
210 }
Chris Lattner4bb18952006-03-16 18:25:23 +0000211 if (!HasVectorVReg) return; // nothing to do.
212
Chris Lattner1877ec92006-03-13 21:52:10 +0000213 // If we have a vector register, we want to emit code into the entry and exit
214 // blocks to save and restore the VRSAVE register. We do this here (instead
215 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
216 //
217 // 1. This (trivially) reduces the load on the register allocator, by not
218 // having to represent the live range of the VRSAVE register.
219 // 2. This (more significantly) allows us to create a temporary virtual
220 // register to hold the saved VRSAVE value, allowing this temporary to be
221 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner4bb18952006-03-16 18:25:23 +0000222
223 // Create two vregs - one to hold the VRSAVE register that is live-in to the
224 // function and one for the value after having bits or'd into it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000225 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
226 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Chris Lattner4bb18952006-03-16 18:25:23 +0000227
Evan Chengc0f64ff2006-11-27 23:37:22 +0000228 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4bb18952006-03-16 18:25:23 +0000229 MachineBasicBlock &EntryBB = *Fn.begin();
Dale Johannesen536a2f12009-02-13 02:27:39 +0000230 DebugLoc dl = DebugLoc::getUnknownLoc();
Chris Lattner4bb18952006-03-16 18:25:23 +0000231 // Emit the following code into the entry block:
232 // InVRSAVE = MFVRSAVE
233 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
234 // MTVRSAVE UpdatedVRSAVE
235 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesen536a2f12009-02-13 02:27:39 +0000236 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
237 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattner69244302008-01-07 01:56:04 +0000238 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000239 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Chris Lattner4bb18952006-03-16 18:25:23 +0000240
241 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner4bb18952006-03-16 18:25:23 +0000242 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000243 if (!BB->empty() && BB->back().getDesc().isReturn()) {
Chris Lattner4bb18952006-03-16 18:25:23 +0000244 IP = BB->end(); --IP;
245
246 // Skip over all terminator instructions, which are part of the return
247 // sequence.
248 MachineBasicBlock::iterator I2 = IP;
Chris Lattner749c6f62008-01-07 07:27:27 +0000249 while (I2 != BB->begin() && (--I2)->getDesc().isTerminator())
Chris Lattner4bb18952006-03-16 18:25:23 +0000250 IP = I2;
251
252 // Emit: MTVRSAVE InVRSave
Dale Johannesen536a2f12009-02-13 02:27:39 +0000253 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Chris Lattner4bb18952006-03-16 18:25:23 +0000254 }
Chris Lattner1877ec92006-03-13 21:52:10 +0000255 }
Chris Lattnerbd937b92005-10-06 18:45:51 +0000256}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000257
Chris Lattner4bb18952006-03-16 18:25:23 +0000258
Chris Lattner4416f1a2005-08-19 22:38:53 +0000259/// getGlobalBaseReg - Output the instructions required to put the
260/// base address to use for accessing globals into a register.
261///
Evan Cheng9ade2182006-08-26 05:34:46 +0000262SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000263 if (!GlobalBaseReg) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000264 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000265 // Insert the set of GlobalBaseReg into the first MBB of the function
Dan Gohmanbd51c672009-08-15 02:07:36 +0000266 MachineBasicBlock &FirstMBB = MF->front();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000267 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Dale Johannesen536a2f12009-02-13 02:27:39 +0000268 DebugLoc dl = DebugLoc::getUnknownLoc();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000269
Owen Anderson825b72b2009-08-11 20:47:22 +0000270 if (PPCLowering.getPointerTy() == MVT::i32) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000271 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::GPRCRegisterClass);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000272 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR), PPC::LR);
273 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000274 } else {
Chris Lattner84bc5422007-12-31 04:13:23 +0000275 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::G8RCRegisterClass);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000276 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8), PPC::LR8);
277 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000278 }
Chris Lattner4416f1a2005-08-19 22:38:53 +0000279 }
Gabor Greif93c53e52008-08-31 15:37:04 +0000280 return CurDAG->getRegister(GlobalBaseReg,
281 PPCLowering.getPointerTy()).getNode();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000282}
283
284/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
285/// or 64-bit immediate, and if the value can be accurately represented as a
286/// sign extension from a 16-bit value. If so, this returns true and the
287/// immediate.
288static bool isIntS16Immediate(SDNode *N, short &Imm) {
289 if (N->getOpcode() != ISD::Constant)
290 return false;
291
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000292 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000293 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000294 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000295 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000296 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000297}
298
Dan Gohman475871a2008-07-27 21:46:04 +0000299static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000300 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000301}
302
303
Chris Lattnerc08f9022006-06-27 00:04:13 +0000304/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
305/// operand. If so Imm will receive the 32-bit value.
306static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000307 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000308 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Nate Begeman0f3257a2005-08-18 05:00:13 +0000309 return true;
310 }
311 return false;
312}
313
Chris Lattnerc08f9022006-06-27 00:04:13 +0000314/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
315/// operand. If so Imm will receive the 64-bit value.
316static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000318 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000319 return true;
320 }
321 return false;
322}
323
324// isInt32Immediate - This method tests to see if a constant operand.
325// If so Imm will receive the 32 bit value.
Dan Gohman475871a2008-07-27 21:46:04 +0000326static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000327 return isInt32Immediate(N.getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000328}
329
330
331// isOpcWithIntImmediate - This method tests to see if the node is a specific
332// opcode and that it has a immediate integer right operand.
333// If so Imm will receive the 32 bit value.
334static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000335 return N->getOpcode() == Opc
336 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000337}
338
Nate Begemanf42f1332006-09-22 05:01:56 +0000339bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000340 if (isShiftedMask_32(Val)) {
341 // look for the first non-zero bit
342 MB = CountLeadingZeros_32(Val);
343 // look for the first zero bit after the run of ones
344 ME = CountLeadingZeros_32((Val - 1) ^ Val);
345 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000346 } else {
347 Val = ~Val; // invert mask
348 if (isShiftedMask_32(Val)) {
349 // effectively look for the first zero bit
350 ME = CountLeadingZeros_32(Val) - 1;
351 // effectively look for the first one bit after the run of zeros
352 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
353 return true;
354 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000355 }
356 // no run present
357 return false;
358}
359
Nate Begemanf42f1332006-09-22 05:01:56 +0000360bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
Dale Johannesenb60d5192009-11-24 01:09:07 +0000361 bool isShiftMask, unsigned &SH,
Nate Begemanf42f1332006-09-22 05:01:56 +0000362 unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000363 // Don't even go down this path for i64, since different logic will be
364 // necessary for rldicl/rldicr/rldimi.
Owen Anderson825b72b2009-08-11 20:47:22 +0000365 if (N->getValueType(0) != MVT::i32)
Nate Begemanda32c9e2005-10-19 00:05:37 +0000366 return false;
367
Nate Begemancffc32b2005-08-18 07:30:46 +0000368 unsigned Shift = 32;
369 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
370 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000371 if (N->getNumOperands() != 2 ||
Gabor Greifba36cb52008-08-28 21:40:38 +0000372 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000373 return false;
374
375 if (Opcode == ISD::SHL) {
376 // apply shift left to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000377 if (isShiftMask) Mask = Mask << Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000378 // determine which bits are made indeterminant by shift
379 Indeterminant = ~(0xFFFFFFFFu << Shift);
Chris Lattner651dea72005-10-15 21:40:12 +0000380 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000381 // apply shift right to mask if it comes first
Dale Johannesenb60d5192009-11-24 01:09:07 +0000382 if (isShiftMask) Mask = Mask >> Shift;
Nate Begemancffc32b2005-08-18 07:30:46 +0000383 // determine which bits are made indeterminant by shift
384 Indeterminant = ~(0xFFFFFFFFu >> Shift);
385 // adjust for the left rotate
386 Shift = 32 - Shift;
Nate Begemanf42f1332006-09-22 05:01:56 +0000387 } else if (Opcode == ISD::ROTL) {
388 Indeterminant = 0;
Nate Begemancffc32b2005-08-18 07:30:46 +0000389 } else {
390 return false;
391 }
392
393 // if the mask doesn't intersect any Indeterminant bits
394 if (Mask && !(Mask & Indeterminant)) {
Chris Lattner0949ed52006-05-12 16:29:37 +0000395 SH = Shift & 31;
Nate Begemancffc32b2005-08-18 07:30:46 +0000396 // make sure the mask is still a mask (wrap arounds may not be)
397 return isRunOfOnes(Mask, MB, ME);
398 }
399 return false;
400}
401
Nate Begeman02b88a42005-08-19 00:38:14 +0000402/// SelectBitfieldInsert - turn an or of two masked values into
403/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000404SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000405 SDValue Op0 = N->getOperand(0);
406 SDValue Op1 = N->getOperand(1);
Dale Johannesened2eee62009-02-06 01:31:28 +0000407 DebugLoc dl = N->getDebugLoc();
Nate Begeman02b88a42005-08-19 00:38:14 +0000408
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000409 APInt LKZ, LKO, RKZ, RKO;
410 CurDAG->ComputeMaskedBits(Op0, APInt::getAllOnesValue(32), LKZ, LKO);
411 CurDAG->ComputeMaskedBits(Op1, APInt::getAllOnesValue(32), RKZ, RKO);
Nate Begeman02b88a42005-08-19 00:38:14 +0000412
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000413 unsigned TargetMask = LKZ.getZExtValue();
414 unsigned InsertMask = RKZ.getZExtValue();
Nate Begeman4667f2c2006-05-08 17:38:32 +0000415
416 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
417 unsigned Op0Opc = Op0.getOpcode();
418 unsigned Op1Opc = Op1.getOpcode();
419 unsigned Value, SH = 0;
420 TargetMask = ~TargetMask;
421 InsertMask = ~InsertMask;
Nate Begeman77f361f2006-05-07 00:23:38 +0000422
Nate Begeman4667f2c2006-05-08 17:38:32 +0000423 // If the LHS has a foldable shift and the RHS does not, then swap it to the
424 // RHS so that we can fold the shift into the insert.
Nate Begeman77f361f2006-05-07 00:23:38 +0000425 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
426 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
427 Op0.getOperand(0).getOpcode() == ISD::SRL) {
428 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
429 Op1.getOperand(0).getOpcode() != ISD::SRL) {
430 std::swap(Op0, Op1);
431 std::swap(Op0Opc, Op1Opc);
Nate Begeman4667f2c2006-05-08 17:38:32 +0000432 std::swap(TargetMask, InsertMask);
Nate Begeman77f361f2006-05-07 00:23:38 +0000433 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000434 }
Nate Begeman4667f2c2006-05-08 17:38:32 +0000435 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
436 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
437 Op1.getOperand(0).getOpcode() != ISD::SRL) {
438 std::swap(Op0, Op1);
439 std::swap(Op0Opc, Op1Opc);
440 std::swap(TargetMask, InsertMask);
441 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000442 }
Nate Begeman77f361f2006-05-07 00:23:38 +0000443
444 unsigned MB, ME;
Chris Lattner0949ed52006-05-12 16:29:37 +0000445 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dale Johannesen5ca12462009-11-20 22:16:40 +0000446 SDValue Tmp1, Tmp2;
Nate Begeman77f361f2006-05-07 00:23:38 +0000447
448 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000449 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000450 Op1 = Op1.getOperand(0);
451 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
452 }
453 if (Op1Opc == ISD::AND) {
454 unsigned SHOpc = Op1.getOperand(0).getOpcode();
455 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000456 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000457 Op1 = Op1.getOperand(0).getOperand(0);
458 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
459 } else {
460 Op1 = Op1.getOperand(0);
461 }
462 }
Dale Johannesen5ca12462009-11-20 22:16:40 +0000463
Chris Lattner0949ed52006-05-12 16:29:37 +0000464 SH &= 31;
Dale Johannesen5ca12462009-11-20 22:16:40 +0000465 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
Evan Cheng0b828e02006-08-27 08:14:06 +0000466 getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +0000467 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman02b88a42005-08-19 00:38:14 +0000468 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000469 }
470 return 0;
471}
472
Chris Lattner2fbb4572005-08-21 18:50:37 +0000473/// SelectCC - Select a comparison of the specified values with the specified
474/// condition code, returning the CR# of the expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000475SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000476 ISD::CondCode CC, DebugLoc dl) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000477 // Always select the LHS.
Chris Lattnerc08f9022006-06-27 00:04:13 +0000478 unsigned Opc;
479
Owen Anderson825b72b2009-08-11 20:47:22 +0000480 if (LHS.getValueType() == MVT::i32) {
Chris Lattner529c2332006-06-27 00:10:13 +0000481 unsigned Imm;
Chris Lattner3836dbd2006-09-20 04:25:47 +0000482 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
483 if (isInt32Immediate(RHS, Imm)) {
484 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
485 if (isUInt16(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000486 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
487 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000488 // If this is a 16-bit signed immediate, fold it.
Chris Lattneraa43e9f2007-04-02 05:59:42 +0000489 if (isInt16((int)Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000490 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
491 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000492
493 // For non-equality comparisons, the default code would materialize the
494 // constant, then compare against it, like this:
495 // lis r2, 4660
496 // ori r2, r2, 22136
497 // cmpw cr0, r3, r2
498 // Since we are just comparing for equality, we can emit this instead:
499 // xoris r0,r3,0x1234
500 // cmplwi cr0,r0,0x5678
501 // beq cr0,L6
Dan Gohman602b0c82009-09-25 18:54:59 +0000502 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS, dl, MVT::i32, LHS,
503 getI32Imm(Imm >> 16)), 0);
504 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, Xor,
505 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner3836dbd2006-09-20 04:25:47 +0000506 }
507 Opc = PPC::CMPLW;
508 } else if (ISD::isUnsignedIntSetCC(CC)) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000509 if (isInt32Immediate(RHS, Imm) && isUInt16(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000510 return SDValue(CurDAG->getMachineNode(PPC::CMPLWI, dl, MVT::i32, LHS,
511 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000512 Opc = PPC::CMPLW;
513 } else {
514 short SImm;
515 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000516 return SDValue(CurDAG->getMachineNode(PPC::CMPWI, dl, MVT::i32, LHS,
517 getI32Imm((int)SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000518 0);
519 Opc = PPC::CMPW;
520 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000521 } else if (LHS.getValueType() == MVT::i64) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000522 uint64_t Imm;
Chris Lattner71176242006-09-20 04:33:27 +0000523 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000524 if (isInt64Immediate(RHS.getNode(), Imm)) {
Chris Lattner71176242006-09-20 04:33:27 +0000525 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
526 if (isUInt16(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000527 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
528 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000529 // If this is a 16-bit signed immediate, fold it.
530 if (isInt16(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000531 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
532 getI32Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000533
534 // For non-equality comparisons, the default code would materialize the
535 // constant, then compare against it, like this:
536 // lis r2, 4660
537 // ori r2, r2, 22136
538 // cmpd cr0, r3, r2
539 // Since we are just comparing for equality, we can emit this instead:
540 // xoris r0,r3,0x1234
541 // cmpldi cr0,r0,0x5678
542 // beq cr0,L6
543 if (isUInt32(Imm)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000544 SDValue Xor(CurDAG->getMachineNode(PPC::XORIS8, dl, MVT::i64, LHS,
545 getI64Imm(Imm >> 16)), 0);
546 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, Xor,
547 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattner71176242006-09-20 04:33:27 +0000548 }
549 }
550 Opc = PPC::CMPLD;
551 } else if (ISD::isUnsignedIntSetCC(CC)) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000552 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt16(Imm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000553 return SDValue(CurDAG->getMachineNode(PPC::CMPLDI, dl, MVT::i64, LHS,
554 getI64Imm(Imm & 0xFFFF)), 0);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000555 Opc = PPC::CMPLD;
556 } else {
557 short SImm;
558 if (isIntS16Immediate(RHS, SImm))
Dan Gohman602b0c82009-09-25 18:54:59 +0000559 return SDValue(CurDAG->getMachineNode(PPC::CMPDI, dl, MVT::i64, LHS,
560 getI64Imm(SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000561 0);
562 Opc = PPC::CMPD;
563 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000565 Opc = PPC::FCMPUS;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000566 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000567 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
Chris Lattnerc08f9022006-06-27 00:04:13 +0000568 Opc = PPC::FCMPUD;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000569 }
Dan Gohman602b0c82009-09-25 18:54:59 +0000570 return SDValue(CurDAG->getMachineNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000571}
572
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000573static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000574 switch (CC) {
Chris Lattner5d634ce2006-05-25 16:54:16 +0000575 case ISD::SETUEQ:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000576 case ISD::SETONE:
577 case ISD::SETOLE:
578 case ISD::SETOGE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000579 llvm_unreachable("Should be lowered by legalize!");
580 default: llvm_unreachable("Unknown condition!");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000581 case ISD::SETOEQ:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000582 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattner5d634ce2006-05-25 16:54:16 +0000583 case ISD::SETUNE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000584 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000585 case ISD::SETOLT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000586 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000587 case ISD::SETULE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000588 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000589 case ISD::SETOGT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000590 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000591 case ISD::SETUGE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000592 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000593 case ISD::SETO: return PPC::PRED_NU;
594 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000595 // These two are invalid for floating point. Assume we have int.
596 case ISD::SETULT: return PPC::PRED_LT;
597 case ISD::SETUGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000598 }
Chris Lattner2fbb4572005-08-21 18:50:37 +0000599}
600
Chris Lattner64906a02005-08-25 20:08:18 +0000601/// getCRIdxForSetCC - Return the index of the condition register field
602/// associated with the SetCC condition, and whether or not the field is
603/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000604///
605/// If this returns with Other != -1, then the returned comparison is an or of
606/// two simpler comparisons. In this case, Invert is guaranteed to be false.
607static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
608 Invert = false;
609 Other = -1;
Chris Lattner64906a02005-08-25 20:08:18 +0000610 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000611 default: llvm_unreachable("Unknown condition!");
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000612 case ISD::SETOLT:
613 case ISD::SETLT: return 0; // Bit #0 = SETOLT
614 case ISD::SETOGT:
615 case ISD::SETGT: return 1; // Bit #1 = SETOGT
616 case ISD::SETOEQ:
617 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
618 case ISD::SETUO: return 3; // Bit #3 = SETUO
Chris Lattner64906a02005-08-25 20:08:18 +0000619 case ISD::SETUGE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000620 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Chris Lattner64906a02005-08-25 20:08:18 +0000621 case ISD::SETULE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000622 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000623 case ISD::SETUNE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000624 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
625 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Dale Johannesen53e4e442008-11-07 22:54:33 +0000626 case ISD::SETUEQ:
627 case ISD::SETOGE:
628 case ISD::SETOLE:
629 case ISD::SETONE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000630 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000631 // These are invalid for floating point. Assume integer.
632 case ISD::SETULT: return 0;
633 case ISD::SETUGT: return 1;
Chris Lattner64906a02005-08-25 20:08:18 +0000634 }
635 return 0;
636}
Chris Lattner9944b762005-08-21 22:31:09 +0000637
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000638SDNode *PPCDAGToDAGISel::SelectSETCC(SDNode *N) {
Dale Johannesena05dca42009-02-04 23:02:30 +0000639 DebugLoc dl = N->getDebugLoc();
Chris Lattner222adac2005-10-06 19:03:35 +0000640 unsigned Imm;
641 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000642 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner222adac2005-10-06 19:03:35 +0000643 // We can codegen setcc op, imm very efficiently compared to a brcond.
644 // Check for those cases here.
645 // setcc op, 0
646 if (Imm == 0) {
Dan Gohman475871a2008-07-27 21:46:04 +0000647 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000648 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000649 default: break;
Evan Cheng0b828e02006-08-27 08:14:06 +0000650 case ISD::SETEQ: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000651 Op = SDValue(CurDAG->getMachineNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000652 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000653 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000654 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000655 case ISD::SETNE: {
Dan Gohman475871a2008-07-27 21:46:04 +0000656 SDValue AD =
Dan Gohman602b0c82009-09-25 18:54:59 +0000657 SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
658 Op, getI32Imm(~0U)), 0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000659 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000660 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000661 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000662 case ISD::SETLT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000663 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000664 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Evan Cheng0b828e02006-08-27 08:14:06 +0000665 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000666 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000667 SDValue T =
Dan Gohman602b0c82009-09-25 18:54:59 +0000668 SDValue(CurDAG->getMachineNode(PPC::NEG, dl, MVT::i32, Op), 0);
669 T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000670 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000671 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000672 }
673 }
Chris Lattner222adac2005-10-06 19:03:35 +0000674 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman475871a2008-07-27 21:46:04 +0000675 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000676 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000677 default: break;
678 case ISD::SETEQ:
Dan Gohman602b0c82009-09-25 18:54:59 +0000679 Op = SDValue(CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
680 Op, getI32Imm(1)), 0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000681 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +0000682 SDValue(CurDAG->getMachineNode(PPC::LI, dl,
683 MVT::i32,
684 getI32Imm(0)), 0),
Dale Johannesena05dca42009-02-04 23:02:30 +0000685 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000686 case ISD::SETNE: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000687 Op = SDValue(CurDAG->getMachineNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
688 SDNode *AD = CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
689 Op, getI32Imm(~0U));
Owen Anderson825b72b2009-08-11 20:47:22 +0000690 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
Dan Gohman475871a2008-07-27 21:46:04 +0000691 Op, SDValue(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000692 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000693 case ISD::SETLT: {
Dan Gohman602b0c82009-09-25 18:54:59 +0000694 SDValue AD = SDValue(CurDAG->getMachineNode(PPC::ADDI, dl, MVT::i32, Op,
695 getI32Imm(1)), 0);
696 SDValue AN = SDValue(CurDAG->getMachineNode(PPC::AND, dl, MVT::i32, AD,
697 Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000698 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000699 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000700 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000701 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000702 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dan Gohman602b0c82009-09-25 18:54:59 +0000703 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
Dale Johannesena05dca42009-02-04 23:02:30 +0000704 0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000705 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000706 getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000707 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000708 }
Chris Lattner222adac2005-10-06 19:03:35 +0000709 }
710 }
711
712 bool Inv;
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000713 int OtherCondIdx;
714 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000715 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000716 SDValue IntCR;
Chris Lattner222adac2005-10-06 19:03:35 +0000717
718 // Force the ccreg into CR7.
Owen Anderson825b72b2009-08-11 20:47:22 +0000719 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Chris Lattner222adac2005-10-06 19:03:35 +0000720
Dan Gohman475871a2008-07-27 21:46:04 +0000721 SDValue InFlag(0, 0); // Null incoming flag value.
Dale Johannesena05dca42009-02-04 23:02:30 +0000722 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000723 InFlag).getValue(1);
Chris Lattner222adac2005-10-06 19:03:35 +0000724
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000725 if (PPCSubTarget.isGigaProcessor() && OtherCondIdx == -1)
Dan Gohman602b0c82009-09-25 18:54:59 +0000726 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
727 CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000728 else
Dan Gohman602b0c82009-09-25 18:54:59 +0000729 IntCR = SDValue(CurDAG->getMachineNode(PPC::MFCR, dl, MVT::i32, CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000730
Dan Gohman475871a2008-07-27 21:46:04 +0000731 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Evan Cheng0b828e02006-08-27 08:14:06 +0000732 getI32Imm(31), getI32Imm(31) };
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000733 if (OtherCondIdx == -1 && !Inv)
Owen Anderson825b72b2009-08-11 20:47:22 +0000734 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000735
736 // Get the specified bit.
Dan Gohman475871a2008-07-27 21:46:04 +0000737 SDValue Tmp =
Dan Gohman602b0c82009-09-25 18:54:59 +0000738 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000739 if (Inv) {
740 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Owen Anderson825b72b2009-08-11 20:47:22 +0000741 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000742 }
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000743
744 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
745 // We already got the bit for the first part of the comparison (e.g. SETULE).
746
747 // Get the other bit of the comparison.
748 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Dan Gohman475871a2008-07-27 21:46:04 +0000749 SDValue OtherCond =
Dan Gohman602b0c82009-09-25 18:54:59 +0000750 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000751
Owen Anderson825b72b2009-08-11 20:47:22 +0000752 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Chris Lattner222adac2005-10-06 19:03:35 +0000753}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000754
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000755
Chris Lattnera5a91b12005-08-17 19:33:03 +0000756// Select - Convert the specified operand from a target-independent to a
757// target-specific node if it hasn't already been changed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000758SDNode *PPCDAGToDAGISel::Select(SDNode *N) {
759 DebugLoc dl = N->getDebugLoc();
Dan Gohmane8be6c62008-07-17 19:10:17 +0000760 if (N->isMachineOpcode())
Evan Cheng64a752f2006-08-11 09:08:15 +0000761 return NULL; // Already selected.
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000762
Chris Lattnera5a91b12005-08-17 19:33:03 +0000763 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000764 default: break;
Jim Laskey78f97f32006-12-12 13:23:43 +0000765
766 case ISD::Constant: {
Owen Anderson825b72b2009-08-11 20:47:22 +0000767 if (N->getValueType(0) == MVT::i64) {
Jim Laskey78f97f32006-12-12 13:23:43 +0000768 // Get 64 bit value.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000769 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Jim Laskey78f97f32006-12-12 13:23:43 +0000770 // Assume no remaining bits.
771 unsigned Remainder = 0;
772 // Assume no shift required.
773 unsigned Shift = 0;
774
775 // If it can't be represented as a 32 bit value.
776 if (!isInt32(Imm)) {
777 Shift = CountTrailingZeros_64(Imm);
778 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
779
780 // If the shifted value fits 32 bits.
781 if (isInt32(ImmSh)) {
782 // Go with the shifted value.
783 Imm = ImmSh;
784 } else {
785 // Still stuck with a 64 bit value.
786 Remainder = Imm;
787 Shift = 32;
788 Imm >>= 32;
789 }
790 }
791
792 // Intermediate operand.
793 SDNode *Result;
794
795 // Handle first 32 bits.
796 unsigned Lo = Imm & 0xFFFF;
797 unsigned Hi = (Imm >> 16) & 0xFFFF;
798
799 // Simple value.
800 if (isInt16(Imm)) {
801 // Just the Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000802 Result = CurDAG->getMachineNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000803 } else if (Lo) {
804 // Handle the Hi bits.
805 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dan Gohman602b0c82009-09-25 18:54:59 +0000806 Result = CurDAG->getMachineNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000807 // And Lo bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000808 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
809 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000810 } else {
811 // Just the Hi bits.
Dan Gohman602b0c82009-09-25 18:54:59 +0000812 Result = CurDAG->getMachineNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000813 }
814
815 // If no shift, we're done.
816 if (!Shift) return Result;
817
818 // Shift for next step if the upper 32-bits were not zero.
819 if (Imm) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000820 Result = CurDAG->getMachineNode(PPC::RLDICR, dl, MVT::i64,
821 SDValue(Result, 0),
822 getI32Imm(Shift),
823 getI32Imm(63 - Shift));
Jim Laskey78f97f32006-12-12 13:23:43 +0000824 }
825
826 // Add in the last bits as required.
827 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000828 Result = CurDAG->getMachineNode(PPC::ORIS8, dl, MVT::i64,
829 SDValue(Result, 0), getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000830 }
831 if ((Lo = Remainder & 0xFFFF)) {
Dan Gohman602b0c82009-09-25 18:54:59 +0000832 Result = CurDAG->getMachineNode(PPC::ORI8, dl, MVT::i64,
833 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000834 }
835
836 return Result;
837 }
838 break;
839 }
840
Evan Cheng34167212006-02-09 00:37:58 +0000841 case ISD::SETCC:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000842 return SelectSETCC(N);
Evan Cheng34167212006-02-09 00:37:58 +0000843 case PPCISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +0000844 return getGlobalBaseReg();
Chris Lattner860e8862005-11-17 07:30:41 +0000845
Chris Lattnere28e40a2005-08-25 00:45:43 +0000846 case ISD::FrameIndex: {
847 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000848 SDValue TFI = CurDAG->getTargetFrameIndex(FI, N->getValueType(0));
849 unsigned Opc = N->getValueType(0) == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000850 if (N->hasOneUse())
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000851 return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), TFI,
Evan Cheng95514ba2006-08-26 08:00:10 +0000852 getSmallIPtrImm(0));
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000853 return CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI,
Dan Gohman602b0c82009-09-25 18:54:59 +0000854 getSmallIPtrImm(0));
Chris Lattnere28e40a2005-08-25 00:45:43 +0000855 }
Chris Lattner6d92cad2006-03-26 10:06:40 +0000856
857 case PPCISD::MFCR: {
Dan Gohman475871a2008-07-27 21:46:04 +0000858 SDValue InFlag = N->getOperand(1);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000859 // Use MFOCRF if supported.
Evan Cheng152b7e12007-10-23 06:42:42 +0000860 if (PPCSubTarget.isGigaProcessor())
Dan Gohman602b0c82009-09-25 18:54:59 +0000861 return CurDAG->getMachineNode(PPC::MFOCRF, dl, MVT::i32,
862 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000863 else
Dan Gohman602b0c82009-09-25 18:54:59 +0000864 return CurDAG->getMachineNode(PPC::MFCR, dl, MVT::i32, InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000865 }
866
Chris Lattner88add102005-09-28 22:50:24 +0000867 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +0000868 // FIXME: since this depends on the setting of the carry flag from the srawi
869 // we should really be making notes about that for the scheduler.
870 // FIXME: It sure would be nice if we could cheaply recognize the
871 // srl/add/sra pattern the dag combiner will generate for this as
872 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +0000873 unsigned Imm;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000874 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000875 SDValue N0 = N->getOperand(0);
Chris Lattner8784a232005-08-25 17:50:06 +0000876 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000877 SDNode *Op =
Dan Gohman602b0c82009-09-25 18:54:59 +0000878 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
879 N0, getI32Imm(Log2_32(Imm)));
Owen Anderson825b72b2009-08-11 20:47:22 +0000880 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +0000881 SDValue(Op, 0), SDValue(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +0000882 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000883 SDNode *Op =
Dan Gohman602b0c82009-09-25 18:54:59 +0000884 CurDAG->getMachineNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
885 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman475871a2008-07-27 21:46:04 +0000886 SDValue PT =
Dan Gohman602b0c82009-09-25 18:54:59 +0000887 SDValue(CurDAG->getMachineNode(PPC::ADDZE, dl, MVT::i32,
888 SDValue(Op, 0), SDValue(Op, 1)),
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000889 0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000890 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +0000891 }
892 }
Chris Lattner047b9522005-08-25 22:04:30 +0000893
Chris Lattner237733e2005-09-29 23:33:31 +0000894 // Other cases are autogenerated.
895 break;
Chris Lattner047b9522005-08-25 22:04:30 +0000896 }
Chris Lattner4eab7142006-11-10 02:08:47 +0000897
898 case ISD::LOAD: {
899 // Handle preincrement loads.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000900 LoadSDNode *LD = cast<LoadSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +0000901 EVT LoadedVT = LD->getMemoryVT();
Chris Lattner4eab7142006-11-10 02:08:47 +0000902
903 // Normal loads are handled by code generated from the .td file.
904 if (LD->getAddressingMode() != ISD::PRE_INC)
905 break;
906
Dan Gohman475871a2008-07-27 21:46:04 +0000907 SDValue Offset = LD->getOffset();
Chris Lattner5b3bbc72006-11-11 04:53:30 +0000908 if (isa<ConstantSDNode>(Offset) ||
909 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000910
911 unsigned Opcode;
912 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
Owen Anderson825b72b2009-08-11 20:47:22 +0000913 if (LD->getValueType(0) != MVT::i64) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000914 // Handle PPC32 integer and normal FP loads.
Owen Anderson825b72b2009-08-11 20:47:22 +0000915 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
916 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000917 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000918 case MVT::f64: Opcode = PPC::LFDU; break;
919 case MVT::f32: Opcode = PPC::LFSU; break;
920 case MVT::i32: Opcode = PPC::LWZU; break;
921 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
922 case MVT::i1:
923 case MVT::i8: Opcode = PPC::LBZU; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +0000924 }
925 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000926 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
927 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
928 switch (LoadedVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000929 default: llvm_unreachable("Invalid PPC load type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000930 case MVT::i64: Opcode = PPC::LDU; break;
931 case MVT::i32: Opcode = PPC::LWZU8; break;
932 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
933 case MVT::i1:
934 case MVT::i8: Opcode = PPC::LBZU8; break;
Chris Lattner0851b4f2006-11-15 19:55:13 +0000935 }
936 }
937
Dan Gohman475871a2008-07-27 21:46:04 +0000938 SDValue Chain = LD->getChain();
939 SDValue Base = LD->getBasePtr();
Dan Gohman475871a2008-07-27 21:46:04 +0000940 SDValue Ops[] = { Offset, Base, Chain };
Chris Lattner4eab7142006-11-10 02:08:47 +0000941 // FIXME: PPC64
Dan Gohman602b0c82009-09-25 18:54:59 +0000942 return CurDAG->getMachineNode(Opcode, dl, LD->getValueType(0),
943 PPCLowering.getPointerTy(),
944 MVT::Other, Ops, 3);
Chris Lattner4eab7142006-11-10 02:08:47 +0000945 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000946 llvm_unreachable("R+R preindex loads not supported yet!");
Chris Lattner4eab7142006-11-10 02:08:47 +0000947 }
948 }
949
Nate Begemancffc32b2005-08-18 07:30:46 +0000950 case ISD::AND: {
Nate Begemanf42f1332006-09-22 05:01:56 +0000951 unsigned Imm, Imm2, SH, MB, ME;
952
Nate Begemancffc32b2005-08-18 07:30:46 +0000953 // If this is an and of a value rotated between 0 and 31 bits and then and'd
954 // with a mask, emit rlwinm
Chris Lattnerc08f9022006-06-27 00:04:13 +0000955 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000956 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000957 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000958 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000959 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemancffc32b2005-08-18 07:30:46 +0000960 }
Nate Begemanf42f1332006-09-22 05:01:56 +0000961 // If this is just a masked value where the input is not handled above, and
962 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
963 if (isInt32Immediate(N->getOperand(1), Imm) &&
964 isRunOfOnes(Imm, MB, ME) &&
965 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman475871a2008-07-27 21:46:04 +0000966 SDValue Val = N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000967 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +0000968 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemanf42f1332006-09-22 05:01:56 +0000969 }
970 // AND X, 0 -> 0, not "rlwinm 32".
971 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000972 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Nate Begemanf42f1332006-09-22 05:01:56 +0000973 return NULL;
974 }
Nate Begeman50fb3c42005-12-24 01:00:15 +0000975 // ISD::OR doesn't get all the bitfield insertion fun.
976 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Chris Lattnerc08f9022006-06-27 00:04:13 +0000977 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman50fb3c42005-12-24 01:00:15 +0000978 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000979 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +0000980 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +0000981 Imm = ~(Imm^Imm2);
982 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000983 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +0000984 N->getOperand(0).getOperand(1),
985 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dan Gohman602b0c82009-09-25 18:54:59 +0000986 return CurDAG->getMachineNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman50fb3c42005-12-24 01:00:15 +0000987 }
988 }
Chris Lattner237733e2005-09-29 23:33:31 +0000989
990 // Other cases are autogenerated.
991 break;
Nate Begemancffc32b2005-08-18 07:30:46 +0000992 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000993 case ISD::OR:
Owen Anderson825b72b2009-08-11 20:47:22 +0000994 if (N->getValueType(0) == MVT::i32)
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000995 if (SDNode *I = SelectBitfieldInsert(N))
996 return I;
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000997
Chris Lattner237733e2005-09-29 23:33:31 +0000998 // Other cases are autogenerated.
999 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001000 case ISD::SHL: {
1001 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001002 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001003 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001004 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001005 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001006 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001007 }
Nate Begeman2d5aff72005-10-19 18:42:01 +00001008
1009 // Other cases are autogenerated.
1010 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001011 }
1012 case ISD::SRL: {
1013 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001014 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001015 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001016 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001017 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001018 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001019 }
Nate Begeman2d5aff72005-10-19 18:42:01 +00001020
1021 // Other cases are autogenerated.
1022 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001023 }
Chris Lattner13794f52005-08-26 18:46:49 +00001024 case ISD::SELECT_CC: {
1025 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1026
Chris Lattnerc08f9022006-06-27 00:04:13 +00001027 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Chris Lattner13794f52005-08-26 18:46:49 +00001028 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1029 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1030 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1031 if (N1C->isNullValue() && N3C->isNullValue() &&
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001032 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001033 // FIXME: Implement this optzn for PPC64.
Owen Anderson825b72b2009-08-11 20:47:22 +00001034 N->getValueType(0) == MVT::i32) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001035 SDNode *Tmp =
Dan Gohman602b0c82009-09-25 18:54:59 +00001036 CurDAG->getMachineNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
1037 N->getOperand(0), getI32Imm(~0U));
Owen Anderson825b72b2009-08-11 20:47:22 +00001038 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +00001039 SDValue(Tmp, 0), N->getOperand(0),
1040 SDValue(Tmp, 1));
Chris Lattner13794f52005-08-26 18:46:49 +00001041 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001042
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001043 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00001044 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001045
Chris Lattner919c0322005-10-01 01:35:02 +00001046 unsigned SelectCCOp;
Owen Anderson825b72b2009-08-11 20:47:22 +00001047 if (N->getValueType(0) == MVT::i32)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001048 SelectCCOp = PPC::SELECT_CC_I4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001049 else if (N->getValueType(0) == MVT::i64)
Chris Lattnerc08f9022006-06-27 00:04:13 +00001050 SelectCCOp = PPC::SELECT_CC_I8;
Owen Anderson825b72b2009-08-11 20:47:22 +00001051 else if (N->getValueType(0) == MVT::f32)
Chris Lattner919c0322005-10-01 01:35:02 +00001052 SelectCCOp = PPC::SELECT_CC_F4;
Owen Anderson825b72b2009-08-11 20:47:22 +00001053 else if (N->getValueType(0) == MVT::f64)
Chris Lattner919c0322005-10-01 01:35:02 +00001054 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner710ff322006-04-08 22:45:08 +00001055 else
1056 SelectCCOp = PPC::SELECT_CC_VRRC;
1057
Dan Gohman475871a2008-07-27 21:46:04 +00001058 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Evan Cheng0b828e02006-08-27 08:14:06 +00001059 getI32Imm(BROpc) };
1060 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattner13794f52005-08-26 18:46:49 +00001061 }
Chris Lattner18258c62006-11-17 22:37:34 +00001062 case PPCISD::COND_BRANCH: {
Dan Gohmancbb7ab22008-11-05 17:16:24 +00001063 // Op #0 is the Chain.
Chris Lattner18258c62006-11-17 22:37:34 +00001064 // Op #1 is the PPC::PRED_* number.
1065 // Op #2 is the CR#
1066 // Op #3 is the Dest MBB
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001067 // Op #4 is the Flag.
Evan Cheng2bda17c2007-06-29 01:25:06 +00001068 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman475871a2008-07-27 21:46:04 +00001069 SDValue Pred =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001070 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman475871a2008-07-27 21:46:04 +00001071 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Chris Lattner18258c62006-11-17 22:37:34 +00001072 N->getOperand(0), N->getOperand(4) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001073 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
Chris Lattner18258c62006-11-17 22:37:34 +00001074 }
Nate Begeman81e80972006-03-17 01:40:33 +00001075 case ISD::BR_CC: {
Chris Lattner2fbb4572005-08-21 18:50:37 +00001076 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001077 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Dan Gohman475871a2008-07-27 21:46:04 +00001078 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Cheng0b828e02006-08-27 08:14:06 +00001079 N->getOperand(4), N->getOperand(0) };
Owen Anderson825b72b2009-08-11 20:47:22 +00001080 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001081 }
Nate Begeman37efe672006-04-22 18:53:45 +00001082 case ISD::BRIND: {
Chris Lattnercf006312006-06-10 01:15:02 +00001083 // FIXME: Should custom lower this.
Dan Gohman475871a2008-07-27 21:46:04 +00001084 SDValue Chain = N->getOperand(0);
1085 SDValue Target = N->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00001086 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Dan Gohman602b0c82009-09-25 18:54:59 +00001087 Chain = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Target,
1088 Chain), 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001089 return CurDAG->SelectNodeTo(N, PPC::BCTR, MVT::Other, Chain);
Nate Begeman37efe672006-04-22 18:53:45 +00001090 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001091 }
Chris Lattner25dae722005-09-03 00:53:47 +00001092
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001093 return SelectCode(N);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001094}
1095
1096
Chris Lattnercf006312006-06-10 01:15:02 +00001097
Nate Begeman1d9d7422005-10-18 00:28:58 +00001098/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001099/// PowerPC-specific DAG, ready for instruction scheduling.
1100///
Evan Chengc4c62572006-03-13 23:20:37 +00001101FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman1d9d7422005-10-18 00:28:58 +00001102 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001103}
1104