blob: 922135571f018f28529736b67ed07e1e41c7dbe5 [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"
Chris Lattner84bc5422007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000024#include "llvm/CodeGen/SelectionDAG.h"
25#include "llvm/CodeGen/SelectionDAGISel.h"
26#include "llvm/Target/TargetOptions.h"
Chris Lattner2fe76e52005-08-25 04:47:18 +000027#include "llvm/Constants.h"
Chris Lattner9062d9a2009-04-17 00:26:12 +000028#include "llvm/Function.h"
Chris Lattner4416f1a2005-08-19 22:38:53 +000029#include "llvm/GlobalValue.h"
Chris Lattner420736d2006-03-25 06:47:10 +000030#include "llvm/Intrinsics.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000031#include "llvm/Support/Debug.h"
32#include "llvm/Support/MathExtras.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000033#include "llvm/Support/Compiler.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 ///
Chris Lattner2a41a982006-06-28 22:00:36 +000043 class VISIBILITY_HIDDEN 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
Chris Lattner4416f1a2005-08-19 22:38:53 +000054 virtual bool runOnFunction(Function &Fn) {
Chris Lattner9062d9a2009-04-17 00:26:12 +000055 // Do not codegen any 'available_externally' functions at all, they have
56 // definitions outside the translation unit.
57 if (Fn.hasAvailableExternallyLinkage())
58 return false;
59
Chris Lattner4416f1a2005-08-19 22:38:53 +000060 // Make sure we re-emit a set of the global base reg if necessary
61 GlobalBaseReg = 0;
Chris Lattner4bb18952006-03-16 18:25:23 +000062 SelectionDAGISel::runOnFunction(Fn);
63
64 InsertVRSaveCode(Fn);
65 return true;
Chris Lattner4416f1a2005-08-19 22:38:53 +000066 }
67
Chris Lattnera5a91b12005-08-17 19:33:03 +000068 /// getI32Imm - Return a target constant with the specified value, of type
69 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +000070 inline SDValue getI32Imm(unsigned Imm) {
Chris Lattnera5a91b12005-08-17 19:33:03 +000071 return CurDAG->getTargetConstant(Imm, MVT::i32);
72 }
Chris Lattner4416f1a2005-08-19 22:38:53 +000073
Chris Lattnerc08f9022006-06-27 00:04:13 +000074 /// getI64Imm - Return a target constant with the specified value, of type
75 /// i64.
Dan Gohman475871a2008-07-27 21:46:04 +000076 inline SDValue getI64Imm(uint64_t Imm) {
Chris Lattnerc08f9022006-06-27 00:04:13 +000077 return CurDAG->getTargetConstant(Imm, MVT::i64);
78 }
79
80 /// getSmallIPtrImm - Return a target constant of pointer type.
Dan Gohman475871a2008-07-27 21:46:04 +000081 inline SDValue getSmallIPtrImm(unsigned Imm) {
Chris Lattnerc08f9022006-06-27 00:04:13 +000082 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
83 }
84
Nate Begemanf42f1332006-09-22 05:01:56 +000085 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
86 /// with any number of 0s on either side. The 1s are allowed to wrap from
87 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
88 /// 0x0F0F0000 is not, since all 1s are not contiguous.
89 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
90
91
92 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
93 /// rotate and mask opcode and mask operation.
94 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool IsShiftMask,
95 unsigned &SH, unsigned &MB, unsigned &ME);
Chris Lattnerc08f9022006-06-27 00:04:13 +000096
Chris Lattner4416f1a2005-08-19 22:38:53 +000097 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
98 /// base register. Return the virtual register that holds this value.
Evan Cheng9ade2182006-08-26 05:34:46 +000099 SDNode *getGlobalBaseReg();
Chris Lattnera5a91b12005-08-17 19:33:03 +0000100
101 // Select - Convert the specified operand from a target-independent to a
102 // target-specific node if it hasn't already been changed.
Dan Gohman475871a2008-07-27 21:46:04 +0000103 SDNode *Select(SDValue Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000104
Nate Begeman02b88a42005-08-19 00:38:14 +0000105 SDNode *SelectBitfieldInsert(SDNode *N);
106
Chris Lattner2fbb4572005-08-21 18:50:37 +0000107 /// SelectCC - Select a comparison of the specified values with the
108 /// specified condition code, returning the CR# of the expression.
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000109 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000110
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000111 /// SelectAddrImm - Returns true if the address N can be represented by
112 /// a base register plus a signed 16-bit displacement [r+imm].
Dan Gohman475871a2008-07-27 21:46:04 +0000113 bool SelectAddrImm(SDValue Op, SDValue N, SDValue &Disp,
114 SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000115 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
116 }
Chris Lattner74531e42006-11-16 00:41:37 +0000117
118 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
119 /// immediate field. Because preinc imms have already been validated, just
120 /// accept it.
Dan Gohman475871a2008-07-27 21:46:04 +0000121 bool SelectAddrImmOffs(SDValue Op, SDValue N, SDValue &Out) const {
Chris Lattner74531e42006-11-16 00:41:37 +0000122 Out = N;
123 return true;
124 }
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000125
126 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
127 /// represented as an indexed [r+r] operation. Returns false if it can
128 /// be represented by [r+imm], which are preferred.
Dan Gohman475871a2008-07-27 21:46:04 +0000129 bool SelectAddrIdx(SDValue Op, SDValue N, SDValue &Base,
130 SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000131 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
132 }
Nate Begemanf43a3ca2005-11-30 08:22:07 +0000133
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000134 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
135 /// represented as an indexed [r+r] operation.
Dan Gohman475871a2008-07-27 21:46:04 +0000136 bool SelectAddrIdxOnly(SDValue Op, SDValue N, SDValue &Base,
137 SDValue &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000138 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
139 }
Chris Lattner9944b762005-08-21 22:31:09 +0000140
Chris Lattnere5ba5802006-03-22 05:26:03 +0000141 /// SelectAddrImmShift - Returns true if the address N can be represented by
142 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
143 /// for use by STD and friends.
Dan Gohman475871a2008-07-27 21:46:04 +0000144 bool SelectAddrImmShift(SDValue Op, SDValue N, SDValue &Disp,
145 SDValue &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000146 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
147 }
148
Chris Lattnere5d88612006-02-24 02:13:12 +0000149 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
150 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000151 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnere5d88612006-02-24 02:13:12 +0000152 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000153 std::vector<SDValue> &OutOps) {
Dan Gohman475871a2008-07-27 21:46:04 +0000154 SDValue Op0, Op1;
Chris Lattnere5d88612006-02-24 02:13:12 +0000155 switch (ConstraintCode) {
156 default: return true;
157 case 'm': // memory
Evan Cheng0d538262006-11-08 20:34:28 +0000158 if (!SelectAddrIdx(Op, Op, Op0, Op1))
159 SelectAddrImm(Op, Op, Op0, Op1);
Chris Lattnere5d88612006-02-24 02:13:12 +0000160 break;
161 case 'o': // offsetable
Evan Cheng0d538262006-11-08 20:34:28 +0000162 if (!SelectAddrImm(Op, Op, Op0, Op1)) {
Evan Cheng6da2f322006-08-26 01:07:58 +0000163 Op0 = Op;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000164 Op1 = getSmallIPtrImm(0);
Chris Lattnere5d88612006-02-24 02:13:12 +0000165 }
166 break;
167 case 'v': // not offsetable
Evan Cheng0d538262006-11-08 20:34:28 +0000168 SelectAddrIdxOnly(Op, Op, Op0, Op1);
Chris Lattnere5d88612006-02-24 02:13:12 +0000169 break;
170 }
171
172 OutOps.push_back(Op0);
173 OutOps.push_back(Op1);
174 return false;
175 }
176
Dan Gohman475871a2008-07-27 21:46:04 +0000177 SDValue BuildSDIVSequence(SDNode *N);
178 SDValue BuildUDIVSequence(SDNode *N);
Chris Lattner047b9522005-08-25 22:04:30 +0000179
Evan Chengdb8d56b2008-06-30 20:45:06 +0000180 /// InstructionSelect - This callback is invoked by
Chris Lattnera5a91b12005-08-17 19:33:03 +0000181 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000182 virtual void InstructionSelect();
Chris Lattnerbd937b92005-10-06 18:45:51 +0000183
Chris Lattner4bb18952006-03-16 18:25:23 +0000184 void InsertVRSaveCode(Function &Fn);
185
Chris Lattnera5a91b12005-08-17 19:33:03 +0000186 virtual const char *getPassName() const {
187 return "PowerPC DAG->DAG Pattern Instruction Selection";
188 }
Chris Lattnerc6644182006-03-07 06:32:48 +0000189
Chris Lattnerc04ba7a2006-05-16 23:54:25 +0000190 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
191 /// this target when scheduling the DAG.
Dan Gohmanfc54c552009-01-15 22:18:12 +0000192 virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
Chris Lattnerc6644182006-03-07 06:32:48 +0000193 // Should use subtarget info to pick the right hazard recognizer. For
194 // now, always return a PPC970 recognizer.
Dan Gohman6448d912008-09-04 15:39:15 +0000195 const TargetInstrInfo *II = TM.getInstrInfo();
Chris Lattner88d211f2006-03-12 09:13:49 +0000196 assert(II && "No InstrInfo?");
197 return new PPCHazardRecognizer970(*II);
Chris Lattnerc6644182006-03-07 06:32:48 +0000198 }
Chris Lattneraf165382005-09-13 22:03:06 +0000199
200// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000201#include "PPCGenDAGISel.inc"
Chris Lattnerbd937b92005-10-06 18:45:51 +0000202
203private:
Dan Gohman475871a2008-07-27 21:46:04 +0000204 SDNode *SelectSETCC(SDValue Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000205 };
206}
207
Evan Chengdb8d56b2008-06-30 20:45:06 +0000208/// InstructionSelect - This callback is invoked by
Chris Lattnerbd937b92005-10-06 18:45:51 +0000209/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000210void PPCDAGToDAGISel::InstructionSelect() {
Chris Lattnerbd937b92005-10-06 18:45:51 +0000211 DEBUG(BB->dump());
Evan Cheng33e9ad92006-07-27 06:40:15 +0000212
Chris Lattnerbd937b92005-10-06 18:45:51 +0000213 // Select target instructions for the DAG.
David Greene8ad4c002008-10-27 21:56:29 +0000214 SelectRoot(*CurDAG);
Dan Gohmanf350b272008-08-23 02:25:05 +0000215 CurDAG->RemoveDeadNodes();
Chris Lattner4bb18952006-03-16 18:25:23 +0000216}
217
218/// InsertVRSaveCode - Once the entire function has been instruction selected,
219/// all virtual registers are created and all machine instructions are built,
220/// check to see if we need to save/restore VRSAVE. If so, do it.
221void PPCDAGToDAGISel::InsertVRSaveCode(Function &F) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000222 // Check to see if this function uses vector registers, which means we have to
223 // save and restore the VRSAVE register and update it with the regs we use.
224 //
225 // In this case, there will be virtual registers of vector type type created
226 // by the scheduler. Detect them now.
Chris Lattner4bb18952006-03-16 18:25:23 +0000227 MachineFunction &Fn = MachineFunction::get(&F);
Chris Lattner1877ec92006-03-13 21:52:10 +0000228 bool HasVectorVReg = false;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000229 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000230 e = RegInfo->getLastVirtReg()+1; i != e; ++i)
231 if (RegInfo->getRegClass(i) == &PPC::VRRCRegClass) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000232 HasVectorVReg = true;
233 break;
234 }
Chris Lattner4bb18952006-03-16 18:25:23 +0000235 if (!HasVectorVReg) return; // nothing to do.
236
Chris Lattner1877ec92006-03-13 21:52:10 +0000237 // If we have a vector register, we want to emit code into the entry and exit
238 // blocks to save and restore the VRSAVE register. We do this here (instead
239 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
240 //
241 // 1. This (trivially) reduces the load on the register allocator, by not
242 // having to represent the live range of the VRSAVE register.
243 // 2. This (more significantly) allows us to create a temporary virtual
244 // register to hold the saved VRSAVE value, allowing this temporary to be
245 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner4bb18952006-03-16 18:25:23 +0000246
247 // Create two vregs - one to hold the VRSAVE register that is live-in to the
248 // function and one for the value after having bits or'd into it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000249 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
250 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Chris Lattner4bb18952006-03-16 18:25:23 +0000251
Evan Chengc0f64ff2006-11-27 23:37:22 +0000252 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4bb18952006-03-16 18:25:23 +0000253 MachineBasicBlock &EntryBB = *Fn.begin();
Dale Johannesen536a2f12009-02-13 02:27:39 +0000254 DebugLoc dl = DebugLoc::getUnknownLoc();
Chris Lattner4bb18952006-03-16 18:25:23 +0000255 // Emit the following code into the entry block:
256 // InVRSAVE = MFVRSAVE
257 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
258 // MTVRSAVE UpdatedVRSAVE
259 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Dale Johannesen536a2f12009-02-13 02:27:39 +0000260 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
261 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
Chris Lattner69244302008-01-07 01:56:04 +0000262 UpdatedVRSAVE).addReg(InVRSAVE);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000263 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Chris Lattner4bb18952006-03-16 18:25:23 +0000264
265 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner4bb18952006-03-16 18:25:23 +0000266 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000267 if (!BB->empty() && BB->back().getDesc().isReturn()) {
Chris Lattner4bb18952006-03-16 18:25:23 +0000268 IP = BB->end(); --IP;
269
270 // Skip over all terminator instructions, which are part of the return
271 // sequence.
272 MachineBasicBlock::iterator I2 = IP;
Chris Lattner749c6f62008-01-07 07:27:27 +0000273 while (I2 != BB->begin() && (--I2)->getDesc().isTerminator())
Chris Lattner4bb18952006-03-16 18:25:23 +0000274 IP = I2;
275
276 // Emit: MTVRSAVE InVRSave
Dale Johannesen536a2f12009-02-13 02:27:39 +0000277 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Chris Lattner4bb18952006-03-16 18:25:23 +0000278 }
Chris Lattner1877ec92006-03-13 21:52:10 +0000279 }
Chris Lattnerbd937b92005-10-06 18:45:51 +0000280}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000281
Chris Lattner4bb18952006-03-16 18:25:23 +0000282
Chris Lattner4416f1a2005-08-19 22:38:53 +0000283/// getGlobalBaseReg - Output the instructions required to put the
284/// base address to use for accessing globals into a register.
285///
Evan Cheng9ade2182006-08-26 05:34:46 +0000286SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000287 if (!GlobalBaseReg) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000288 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000289 // Insert the set of GlobalBaseReg into the first MBB of the function
290 MachineBasicBlock &FirstMBB = BB->getParent()->front();
291 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Dale Johannesen536a2f12009-02-13 02:27:39 +0000292 DebugLoc dl = DebugLoc::getUnknownLoc();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000293
Chris Lattnerd1043422006-11-14 18:43:11 +0000294 if (PPCLowering.getPointerTy() == MVT::i32) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000295 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::GPRCRegisterClass);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000296 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR), PPC::LR);
297 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000298 } else {
Chris Lattner84bc5422007-12-31 04:13:23 +0000299 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::G8RCRegisterClass);
Dale Johannesen536a2f12009-02-13 02:27:39 +0000300 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MovePCtoLR8), PPC::LR8);
301 BuildMI(FirstMBB, MBBI, dl, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000302 }
Chris Lattner4416f1a2005-08-19 22:38:53 +0000303 }
Gabor Greif93c53e52008-08-31 15:37:04 +0000304 return CurDAG->getRegister(GlobalBaseReg,
305 PPCLowering.getPointerTy()).getNode();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000306}
307
308/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
309/// or 64-bit immediate, and if the value can be accurately represented as a
310/// sign extension from a 16-bit value. If so, this returns true and the
311/// immediate.
312static bool isIntS16Immediate(SDNode *N, short &Imm) {
313 if (N->getOpcode() != ISD::Constant)
314 return false;
315
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000316 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000317 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000318 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000319 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000320 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000321}
322
Dan Gohman475871a2008-07-27 21:46:04 +0000323static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000324 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000325}
326
327
Chris Lattnerc08f9022006-06-27 00:04:13 +0000328/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
329/// operand. If so Imm will receive the 32-bit value.
330static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
331 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000332 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Nate Begeman0f3257a2005-08-18 05:00:13 +0000333 return true;
334 }
335 return false;
336}
337
Chris Lattnerc08f9022006-06-27 00:04:13 +0000338/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
339/// operand. If so Imm will receive the 64-bit value.
340static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Chris Lattner71176242006-09-20 04:33:27 +0000341 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000342 Imm = cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000343 return true;
344 }
345 return false;
346}
347
348// isInt32Immediate - This method tests to see if a constant operand.
349// If so Imm will receive the 32 bit value.
Dan Gohman475871a2008-07-27 21:46:04 +0000350static bool isInt32Immediate(SDValue N, unsigned &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000351 return isInt32Immediate(N.getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000352}
353
354
355// isOpcWithIntImmediate - This method tests to see if the node is a specific
356// opcode and that it has a immediate integer right operand.
357// If so Imm will receive the 32 bit value.
358static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000359 return N->getOpcode() == Opc
360 && isInt32Immediate(N->getOperand(1).getNode(), Imm);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000361}
362
Nate Begemanf42f1332006-09-22 05:01:56 +0000363bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000364 if (isShiftedMask_32(Val)) {
365 // look for the first non-zero bit
366 MB = CountLeadingZeros_32(Val);
367 // look for the first zero bit after the run of ones
368 ME = CountLeadingZeros_32((Val - 1) ^ Val);
369 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000370 } else {
371 Val = ~Val; // invert mask
372 if (isShiftedMask_32(Val)) {
373 // effectively look for the first zero bit
374 ME = CountLeadingZeros_32(Val) - 1;
375 // effectively look for the first one bit after the run of zeros
376 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
377 return true;
378 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000379 }
380 // no run present
381 return false;
382}
383
Nate Begemanf42f1332006-09-22 05:01:56 +0000384bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
385 bool IsShiftMask, unsigned &SH,
386 unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000387 // Don't even go down this path for i64, since different logic will be
388 // necessary for rldicl/rldicr/rldimi.
389 if (N->getValueType(0) != MVT::i32)
390 return false;
391
Nate Begemancffc32b2005-08-18 07:30:46 +0000392 unsigned Shift = 32;
393 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
394 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000395 if (N->getNumOperands() != 2 ||
Gabor Greifba36cb52008-08-28 21:40:38 +0000396 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000397 return false;
398
399 if (Opcode == ISD::SHL) {
400 // apply shift left to mask if it comes first
401 if (IsShiftMask) Mask = Mask << Shift;
402 // determine which bits are made indeterminant by shift
403 Indeterminant = ~(0xFFFFFFFFu << Shift);
Chris Lattner651dea72005-10-15 21:40:12 +0000404 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000405 // apply shift right to mask if it comes first
406 if (IsShiftMask) Mask = Mask >> Shift;
407 // determine which bits are made indeterminant by shift
408 Indeterminant = ~(0xFFFFFFFFu >> Shift);
409 // adjust for the left rotate
410 Shift = 32 - Shift;
Nate Begemanf42f1332006-09-22 05:01:56 +0000411 } else if (Opcode == ISD::ROTL) {
412 Indeterminant = 0;
Nate Begemancffc32b2005-08-18 07:30:46 +0000413 } else {
414 return false;
415 }
416
417 // if the mask doesn't intersect any Indeterminant bits
418 if (Mask && !(Mask & Indeterminant)) {
Chris Lattner0949ed52006-05-12 16:29:37 +0000419 SH = Shift & 31;
Nate Begemancffc32b2005-08-18 07:30:46 +0000420 // make sure the mask is still a mask (wrap arounds may not be)
421 return isRunOfOnes(Mask, MB, ME);
422 }
423 return false;
424}
425
Nate Begeman02b88a42005-08-19 00:38:14 +0000426/// SelectBitfieldInsert - turn an or of two masked values into
427/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000428SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000429 SDValue Op0 = N->getOperand(0);
430 SDValue Op1 = N->getOperand(1);
Dale Johannesened2eee62009-02-06 01:31:28 +0000431 DebugLoc dl = N->getDebugLoc();
Nate Begeman02b88a42005-08-19 00:38:14 +0000432
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000433 APInt LKZ, LKO, RKZ, RKO;
434 CurDAG->ComputeMaskedBits(Op0, APInt::getAllOnesValue(32), LKZ, LKO);
435 CurDAG->ComputeMaskedBits(Op1, APInt::getAllOnesValue(32), RKZ, RKO);
Nate Begeman02b88a42005-08-19 00:38:14 +0000436
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000437 unsigned TargetMask = LKZ.getZExtValue();
438 unsigned InsertMask = RKZ.getZExtValue();
Nate Begeman4667f2c2006-05-08 17:38:32 +0000439
440 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
441 unsigned Op0Opc = Op0.getOpcode();
442 unsigned Op1Opc = Op1.getOpcode();
443 unsigned Value, SH = 0;
444 TargetMask = ~TargetMask;
445 InsertMask = ~InsertMask;
Nate Begeman77f361f2006-05-07 00:23:38 +0000446
Nate Begeman4667f2c2006-05-08 17:38:32 +0000447 // If the LHS has a foldable shift and the RHS does not, then swap it to the
448 // RHS so that we can fold the shift into the insert.
Nate Begeman77f361f2006-05-07 00:23:38 +0000449 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
450 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
451 Op0.getOperand(0).getOpcode() == ISD::SRL) {
452 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
453 Op1.getOperand(0).getOpcode() != ISD::SRL) {
454 std::swap(Op0, Op1);
455 std::swap(Op0Opc, Op1Opc);
Nate Begeman4667f2c2006-05-08 17:38:32 +0000456 std::swap(TargetMask, InsertMask);
Nate Begeman77f361f2006-05-07 00:23:38 +0000457 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000458 }
Nate Begeman4667f2c2006-05-08 17:38:32 +0000459 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
460 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
461 Op1.getOperand(0).getOpcode() != ISD::SRL) {
462 std::swap(Op0, Op1);
463 std::swap(Op0Opc, Op1Opc);
464 std::swap(TargetMask, InsertMask);
465 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000466 }
Nate Begeman77f361f2006-05-07 00:23:38 +0000467
468 unsigned MB, ME;
Chris Lattner0949ed52006-05-12 16:29:37 +0000469 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000470 SDValue Tmp1, Tmp2, Tmp3;
Nate Begeman4667f2c2006-05-08 17:38:32 +0000471 bool DisjointMask = (TargetMask ^ InsertMask) == 0xFFFFFFFF;
Nate Begeman77f361f2006-05-07 00:23:38 +0000472
473 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000474 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000475 Op1 = Op1.getOperand(0);
476 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
477 }
478 if (Op1Opc == ISD::AND) {
479 unsigned SHOpc = Op1.getOperand(0).getOpcode();
480 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000481 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000482 Op1 = Op1.getOperand(0).getOperand(0);
483 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
484 } else {
485 Op1 = Op1.getOperand(0);
486 }
487 }
488
489 Tmp3 = (Op0Opc == ISD::AND && DisjointMask) ? Op0.getOperand(0) : Op0;
Chris Lattner0949ed52006-05-12 16:29:37 +0000490 SH &= 31;
Dan Gohman475871a2008-07-27 21:46:04 +0000491 SDValue Ops[] = { Tmp3, Op1, getI32Imm(SH), getI32Imm(MB),
Evan Cheng0b828e02006-08-27 08:14:06 +0000492 getI32Imm(ME) };
Dale Johannesened2eee62009-02-06 01:31:28 +0000493 return CurDAG->getTargetNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman02b88a42005-08-19 00:38:14 +0000494 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000495 }
496 return 0;
497}
498
Chris Lattner2fbb4572005-08-21 18:50:37 +0000499/// SelectCC - Select a comparison of the specified values with the specified
500/// condition code, returning the CR# of the expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000501SDValue PPCDAGToDAGISel::SelectCC(SDValue LHS, SDValue RHS,
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000502 ISD::CondCode CC, DebugLoc dl) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000503 // Always select the LHS.
Chris Lattnerc08f9022006-06-27 00:04:13 +0000504 unsigned Opc;
505
506 if (LHS.getValueType() == MVT::i32) {
Chris Lattner529c2332006-06-27 00:10:13 +0000507 unsigned Imm;
Chris Lattner3836dbd2006-09-20 04:25:47 +0000508 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
509 if (isInt32Immediate(RHS, Imm)) {
510 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
511 if (isUInt16(Imm))
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000512 return SDValue(CurDAG->getTargetNode(PPC::CMPLWI, dl, MVT::i32, LHS,
Chris Lattner3836dbd2006-09-20 04:25:47 +0000513 getI32Imm(Imm & 0xFFFF)), 0);
514 // If this is a 16-bit signed immediate, fold it.
Chris Lattneraa43e9f2007-04-02 05:59:42 +0000515 if (isInt16((int)Imm))
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000516 return SDValue(CurDAG->getTargetNode(PPC::CMPWI, dl, MVT::i32, LHS,
Chris Lattner3836dbd2006-09-20 04:25:47 +0000517 getI32Imm(Imm & 0xFFFF)), 0);
518
519 // For non-equality comparisons, the default code would materialize the
520 // constant, then compare against it, like this:
521 // lis r2, 4660
522 // ori r2, r2, 22136
523 // cmpw cr0, r3, r2
524 // Since we are just comparing for equality, we can emit this instead:
525 // xoris r0,r3,0x1234
526 // cmplwi cr0,r0,0x5678
527 // beq cr0,L6
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000528 SDValue Xor(CurDAG->getTargetNode(PPC::XORIS, dl, MVT::i32, LHS,
Chris Lattner3836dbd2006-09-20 04:25:47 +0000529 getI32Imm(Imm >> 16)), 0);
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000530 return SDValue(CurDAG->getTargetNode(PPC::CMPLWI, dl, MVT::i32, Xor,
Chris Lattner3836dbd2006-09-20 04:25:47 +0000531 getI32Imm(Imm & 0xFFFF)), 0);
532 }
533 Opc = PPC::CMPLW;
534 } else if (ISD::isUnsignedIntSetCC(CC)) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000535 if (isInt32Immediate(RHS, Imm) && isUInt16(Imm))
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000536 return SDValue(CurDAG->getTargetNode(PPC::CMPLWI, dl, MVT::i32, LHS,
Chris Lattnerc08f9022006-06-27 00:04:13 +0000537 getI32Imm(Imm & 0xFFFF)), 0);
538 Opc = PPC::CMPLW;
539 } else {
540 short SImm;
541 if (isIntS16Immediate(RHS, SImm))
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000542 return SDValue(CurDAG->getTargetNode(PPC::CMPWI, dl, MVT::i32, LHS,
Chris Lattnerc08f9022006-06-27 00:04:13 +0000543 getI32Imm((int)SImm & 0xFFFF)),
544 0);
545 Opc = PPC::CMPW;
546 }
547 } else if (LHS.getValueType() == MVT::i64) {
548 uint64_t Imm;
Chris Lattner71176242006-09-20 04:33:27 +0000549 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000550 if (isInt64Immediate(RHS.getNode(), Imm)) {
Chris Lattner71176242006-09-20 04:33:27 +0000551 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
552 if (isUInt16(Imm))
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000553 return SDValue(CurDAG->getTargetNode(PPC::CMPLDI, dl, MVT::i64, LHS,
Chris Lattner71176242006-09-20 04:33:27 +0000554 getI32Imm(Imm & 0xFFFF)), 0);
555 // If this is a 16-bit signed immediate, fold it.
556 if (isInt16(Imm))
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000557 return SDValue(CurDAG->getTargetNode(PPC::CMPDI, dl, MVT::i64, LHS,
Chris Lattner71176242006-09-20 04:33:27 +0000558 getI32Imm(Imm & 0xFFFF)), 0);
559
560 // For non-equality comparisons, the default code would materialize the
561 // constant, then compare against it, like this:
562 // lis r2, 4660
563 // ori r2, r2, 22136
564 // cmpd cr0, r3, r2
565 // Since we are just comparing for equality, we can emit this instead:
566 // xoris r0,r3,0x1234
567 // cmpldi cr0,r0,0x5678
568 // beq cr0,L6
569 if (isUInt32(Imm)) {
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000570 SDValue Xor(CurDAG->getTargetNode(PPC::XORIS8, dl, MVT::i64, LHS,
Chris Lattner71176242006-09-20 04:33:27 +0000571 getI64Imm(Imm >> 16)), 0);
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000572 return SDValue(CurDAG->getTargetNode(PPC::CMPLDI, dl, MVT::i64, Xor,
Chris Lattner71176242006-09-20 04:33:27 +0000573 getI64Imm(Imm & 0xFFFF)), 0);
574 }
575 }
576 Opc = PPC::CMPLD;
577 } else if (ISD::isUnsignedIntSetCC(CC)) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000578 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt16(Imm))
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000579 return SDValue(CurDAG->getTargetNode(PPC::CMPLDI, dl, MVT::i64, LHS,
Chris Lattnerc08f9022006-06-27 00:04:13 +0000580 getI64Imm(Imm & 0xFFFF)), 0);
581 Opc = PPC::CMPLD;
582 } else {
583 short SImm;
584 if (isIntS16Immediate(RHS, SImm))
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000585 return SDValue(CurDAG->getTargetNode(PPC::CMPDI, dl, MVT::i64, LHS,
Chris Lattner71176242006-09-20 04:33:27 +0000586 getI64Imm(SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000587 0);
588 Opc = PPC::CMPD;
589 }
Chris Lattner919c0322005-10-01 01:35:02 +0000590 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000591 Opc = PPC::FCMPUS;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000592 } else {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000593 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
594 Opc = PPC::FCMPUD;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000595 }
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000596 return SDValue(CurDAG->getTargetNode(Opc, dl, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000597}
598
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000599static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000600 switch (CC) {
Chris Lattner5d634ce2006-05-25 16:54:16 +0000601 case ISD::SETUEQ:
Dale Johannesen53e4e442008-11-07 22:54:33 +0000602 case ISD::SETONE:
603 case ISD::SETOLE:
604 case ISD::SETOGE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000605 llvm_unreachable("Should be lowered by legalize!");
606 default: llvm_unreachable("Unknown condition!");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000607 case ISD::SETOEQ:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000608 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattner5d634ce2006-05-25 16:54:16 +0000609 case ISD::SETUNE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000610 case ISD::SETNE: return PPC::PRED_NE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000611 case ISD::SETOLT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000612 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000613 case ISD::SETULE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000614 case ISD::SETLE: return PPC::PRED_LE;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000615 case ISD::SETOGT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000616 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000617 case ISD::SETUGE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000618 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000619 case ISD::SETO: return PPC::PRED_NU;
620 case ISD::SETUO: return PPC::PRED_UN;
Dale Johannesen53e4e442008-11-07 22:54:33 +0000621 // These two are invalid for floating point. Assume we have int.
622 case ISD::SETULT: return PPC::PRED_LT;
623 case ISD::SETUGT: return PPC::PRED_GT;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000624 }
Chris Lattner2fbb4572005-08-21 18:50:37 +0000625}
626
Chris Lattner64906a02005-08-25 20:08:18 +0000627/// getCRIdxForSetCC - Return the index of the condition register field
628/// associated with the SetCC condition, and whether or not the field is
629/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000630///
631/// If this returns with Other != -1, then the returned comparison is an or of
632/// two simpler comparisons. In this case, Invert is guaranteed to be false.
633static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
634 Invert = false;
635 Other = -1;
Chris Lattner64906a02005-08-25 20:08:18 +0000636 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000637 default: llvm_unreachable("Unknown condition!");
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000638 case ISD::SETOLT:
639 case ISD::SETLT: return 0; // Bit #0 = SETOLT
640 case ISD::SETOGT:
641 case ISD::SETGT: return 1; // Bit #1 = SETOGT
642 case ISD::SETOEQ:
643 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
644 case ISD::SETUO: return 3; // Bit #3 = SETUO
Chris Lattner64906a02005-08-25 20:08:18 +0000645 case ISD::SETUGE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000646 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Chris Lattner64906a02005-08-25 20:08:18 +0000647 case ISD::SETULE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000648 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000649 case ISD::SETUNE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000650 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
651 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
Dale Johannesen53e4e442008-11-07 22:54:33 +0000652 case ISD::SETUEQ:
653 case ISD::SETOGE:
654 case ISD::SETOLE:
655 case ISD::SETONE:
Torok Edwinc23197a2009-07-14 16:55:14 +0000656 llvm_unreachable("Invalid branch code: should be expanded by legalize");
Dale Johannesen53e4e442008-11-07 22:54:33 +0000657 // These are invalid for floating point. Assume integer.
658 case ISD::SETULT: return 0;
659 case ISD::SETUGT: return 1;
Chris Lattner64906a02005-08-25 20:08:18 +0000660 }
661 return 0;
662}
Chris Lattner9944b762005-08-21 22:31:09 +0000663
Dan Gohman475871a2008-07-27 21:46:04 +0000664SDNode *PPCDAGToDAGISel::SelectSETCC(SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000665 SDNode *N = Op.getNode();
Dale Johannesena05dca42009-02-04 23:02:30 +0000666 DebugLoc dl = N->getDebugLoc();
Chris Lattner222adac2005-10-06 19:03:35 +0000667 unsigned Imm;
668 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000669 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner222adac2005-10-06 19:03:35 +0000670 // We can codegen setcc op, imm very efficiently compared to a brcond.
671 // Check for those cases here.
672 // setcc op, 0
673 if (Imm == 0) {
Dan Gohman475871a2008-07-27 21:46:04 +0000674 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000675 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000676 default: break;
Evan Cheng0b828e02006-08-27 08:14:06 +0000677 case ISD::SETEQ: {
Dale Johannesena05dca42009-02-04 23:02:30 +0000678 Op = SDValue(CurDAG->getTargetNode(PPC::CNTLZW, dl, MVT::i32, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000679 SDValue Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
Evan Cheng0b828e02006-08-27 08:14:06 +0000680 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
681 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000682 case ISD::SETNE: {
Dan Gohman475871a2008-07-27 21:46:04 +0000683 SDValue AD =
Dale Johannesena05dca42009-02-04 23:02:30 +0000684 SDValue(CurDAG->getTargetNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000685 Op, getI32Imm(~0U)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000686 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000687 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000688 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000689 case ISD::SETLT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000690 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Evan Cheng0b828e02006-08-27 08:14:06 +0000691 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
692 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000693 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000694 SDValue T =
Dale Johannesena05dca42009-02-04 23:02:30 +0000695 SDValue(CurDAG->getTargetNode(PPC::NEG, dl, MVT::i32, Op), 0);
696 T = SDValue(CurDAG->getTargetNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000697 SDValue Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Evan Cheng0b828e02006-08-27 08:14:06 +0000698 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000699 }
700 }
Chris Lattner222adac2005-10-06 19:03:35 +0000701 } else if (Imm == ~0U) { // setcc op, -1
Dan Gohman475871a2008-07-27 21:46:04 +0000702 SDValue Op = N->getOperand(0);
Chris Lattner222adac2005-10-06 19:03:35 +0000703 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000704 default: break;
705 case ISD::SETEQ:
Dale Johannesena05dca42009-02-04 23:02:30 +0000706 Op = SDValue(CurDAG->getTargetNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000707 Op, getI32Imm(1)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000708 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dale Johannesena05dca42009-02-04 23:02:30 +0000709 SDValue(CurDAG->getTargetNode(PPC::LI, dl,
710 MVT::i32,
711 getI32Imm(0)), 0),
712 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000713 case ISD::SETNE: {
Dale Johannesena05dca42009-02-04 23:02:30 +0000714 Op = SDValue(CurDAG->getTargetNode(PPC::NOR, dl, MVT::i32, Op, Op), 0);
715 SDNode *AD = CurDAG->getTargetNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000716 Op, getI32Imm(~0U));
Dan Gohman475871a2008-07-27 21:46:04 +0000717 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDValue(AD, 0),
718 Op, SDValue(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000719 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000720 case ISD::SETLT: {
Dale Johannesena05dca42009-02-04 23:02:30 +0000721 SDValue AD = SDValue(CurDAG->getTargetNode(PPC::ADDI, dl, MVT::i32, Op,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000722 getI32Imm(1)), 0);
Dale Johannesena05dca42009-02-04 23:02:30 +0000723 SDValue AN = SDValue(CurDAG->getTargetNode(PPC::AND, dl, MVT::i32, AD,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000724 Op), 0);
Dan Gohman475871a2008-07-27 21:46:04 +0000725 SDValue Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Evan Cheng0b828e02006-08-27 08:14:06 +0000726 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000727 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000728 case ISD::SETGT: {
Dan Gohman475871a2008-07-27 21:46:04 +0000729 SDValue Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
Dale Johannesena05dca42009-02-04 23:02:30 +0000730 Op = SDValue(CurDAG->getTargetNode(PPC::RLWINM, dl, MVT::i32, Ops, 4),
731 0);
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000732 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000733 getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000734 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000735 }
Chris Lattner222adac2005-10-06 19:03:35 +0000736 }
737 }
738
739 bool Inv;
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000740 int OtherCondIdx;
741 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000742 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000743 SDValue IntCR;
Chris Lattner222adac2005-10-06 19:03:35 +0000744
745 // Force the ccreg into CR7.
Dan Gohman475871a2008-07-27 21:46:04 +0000746 SDValue CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
Chris Lattner222adac2005-10-06 19:03:35 +0000747
Dan Gohman475871a2008-07-27 21:46:04 +0000748 SDValue InFlag(0, 0); // Null incoming flag value.
Dale Johannesena05dca42009-02-04 23:02:30 +0000749 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, CR7Reg, CCReg,
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000750 InFlag).getValue(1);
Chris Lattner222adac2005-10-06 19:03:35 +0000751
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000752 if (PPCSubTarget.isGigaProcessor() && OtherCondIdx == -1)
Dale Johannesena05dca42009-02-04 23:02:30 +0000753 IntCR = SDValue(CurDAG->getTargetNode(PPC::MFOCRF, dl, MVT::i32, CR7Reg,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000754 CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000755 else
Dale Johannesena05dca42009-02-04 23:02:30 +0000756 IntCR = SDValue(CurDAG->getTargetNode(PPC::MFCR, dl, MVT::i32, CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000757
Dan Gohman475871a2008-07-27 21:46:04 +0000758 SDValue Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
Evan Cheng0b828e02006-08-27 08:14:06 +0000759 getI32Imm(31), getI32Imm(31) };
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000760 if (OtherCondIdx == -1 && !Inv)
Evan Cheng0b828e02006-08-27 08:14:06 +0000761 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000762
763 // Get the specified bit.
Dan Gohman475871a2008-07-27 21:46:04 +0000764 SDValue Tmp =
Dale Johannesena05dca42009-02-04 23:02:30 +0000765 SDValue(CurDAG->getTargetNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000766 if (Inv) {
767 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Evan Cheng95514ba2006-08-26 08:00:10 +0000768 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000769 }
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000770
771 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
772 // We already got the bit for the first part of the comparison (e.g. SETULE).
773
774 // Get the other bit of the comparison.
775 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
Dan Gohman475871a2008-07-27 21:46:04 +0000776 SDValue OtherCond =
Dale Johannesena05dca42009-02-04 23:02:30 +0000777 SDValue(CurDAG->getTargetNode(PPC::RLWINM, dl, MVT::i32, Ops, 4), 0);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000778
779 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Chris Lattner222adac2005-10-06 19:03:35 +0000780}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000781
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000782
Chris Lattnera5a91b12005-08-17 19:33:03 +0000783// Select - Convert the specified operand from a target-independent to a
784// target-specific node if it hasn't already been changed.
Dan Gohman475871a2008-07-27 21:46:04 +0000785SDNode *PPCDAGToDAGISel::Select(SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000786 SDNode *N = Op.getNode();
Dale Johannesened2eee62009-02-06 01:31:28 +0000787 DebugLoc dl = Op.getDebugLoc();
Dan Gohmane8be6c62008-07-17 19:10:17 +0000788 if (N->isMachineOpcode())
Evan Cheng64a752f2006-08-11 09:08:15 +0000789 return NULL; // Already selected.
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000790
Chris Lattnera5a91b12005-08-17 19:33:03 +0000791 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000792 default: break;
Jim Laskey78f97f32006-12-12 13:23:43 +0000793
794 case ISD::Constant: {
795 if (N->getValueType(0) == MVT::i64) {
796 // Get 64 bit value.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000797 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
Jim Laskey78f97f32006-12-12 13:23:43 +0000798 // Assume no remaining bits.
799 unsigned Remainder = 0;
800 // Assume no shift required.
801 unsigned Shift = 0;
802
803 // If it can't be represented as a 32 bit value.
804 if (!isInt32(Imm)) {
805 Shift = CountTrailingZeros_64(Imm);
806 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
807
808 // If the shifted value fits 32 bits.
809 if (isInt32(ImmSh)) {
810 // Go with the shifted value.
811 Imm = ImmSh;
812 } else {
813 // Still stuck with a 64 bit value.
814 Remainder = Imm;
815 Shift = 32;
816 Imm >>= 32;
817 }
818 }
819
820 // Intermediate operand.
821 SDNode *Result;
822
823 // Handle first 32 bits.
824 unsigned Lo = Imm & 0xFFFF;
825 unsigned Hi = (Imm >> 16) & 0xFFFF;
826
827 // Simple value.
828 if (isInt16(Imm)) {
829 // Just the Lo bits.
Dale Johannesened2eee62009-02-06 01:31:28 +0000830 Result = CurDAG->getTargetNode(PPC::LI8, dl, MVT::i64, getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000831 } else if (Lo) {
832 // Handle the Hi bits.
833 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
Dale Johannesened2eee62009-02-06 01:31:28 +0000834 Result = CurDAG->getTargetNode(OpC, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000835 // And Lo bits.
Dale Johannesened2eee62009-02-06 01:31:28 +0000836 Result = CurDAG->getTargetNode(PPC::ORI8, dl, MVT::i64,
Dan Gohman475871a2008-07-27 21:46:04 +0000837 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000838 } else {
839 // Just the Hi bits.
Dale Johannesened2eee62009-02-06 01:31:28 +0000840 Result = CurDAG->getTargetNode(PPC::LIS8, dl, MVT::i64, getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000841 }
842
843 // If no shift, we're done.
844 if (!Shift) return Result;
845
846 // Shift for next step if the upper 32-bits were not zero.
847 if (Imm) {
Dale Johannesened2eee62009-02-06 01:31:28 +0000848 Result = CurDAG->getTargetNode(PPC::RLDICR, dl, MVT::i64,
Dan Gohman475871a2008-07-27 21:46:04 +0000849 SDValue(Result, 0),
Jim Laskey78f97f32006-12-12 13:23:43 +0000850 getI32Imm(Shift), getI32Imm(63 - Shift));
851 }
852
853 // Add in the last bits as required.
854 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
Dale Johannesened2eee62009-02-06 01:31:28 +0000855 Result = CurDAG->getTargetNode(PPC::ORIS8, dl, MVT::i64,
Dan Gohman475871a2008-07-27 21:46:04 +0000856 SDValue(Result, 0), getI32Imm(Hi));
Jim Laskey78f97f32006-12-12 13:23:43 +0000857 }
858 if ((Lo = Remainder & 0xFFFF)) {
Dale Johannesened2eee62009-02-06 01:31:28 +0000859 Result = CurDAG->getTargetNode(PPC::ORI8, dl, MVT::i64,
Dan Gohman475871a2008-07-27 21:46:04 +0000860 SDValue(Result, 0), getI32Imm(Lo));
Jim Laskey78f97f32006-12-12 13:23:43 +0000861 }
862
863 return Result;
864 }
865 break;
866 }
867
Evan Cheng34167212006-02-09 00:37:58 +0000868 case ISD::SETCC:
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000869 return SelectSETCC(Op);
Evan Cheng34167212006-02-09 00:37:58 +0000870 case PPCISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +0000871 return getGlobalBaseReg();
Chris Lattner860e8862005-11-17 07:30:41 +0000872
Chris Lattnere28e40a2005-08-25 00:45:43 +0000873 case ISD::FrameIndex: {
874 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Dan Gohman475871a2008-07-27 21:46:04 +0000875 SDValue TFI = CurDAG->getTargetFrameIndex(FI, Op.getValueType());
Chris Lattnerc08f9022006-06-27 00:04:13 +0000876 unsigned Opc = Op.getValueType() == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000877 if (N->hasOneUse())
878 return CurDAG->SelectNodeTo(N, Opc, Op.getValueType(), TFI,
Evan Cheng95514ba2006-08-26 08:00:10 +0000879 getSmallIPtrImm(0));
Dale Johannesened2eee62009-02-06 01:31:28 +0000880 return CurDAG->getTargetNode(Opc, dl, Op.getValueType(), TFI,
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000881 getSmallIPtrImm(0));
Chris Lattnere28e40a2005-08-25 00:45:43 +0000882 }
Chris Lattner6d92cad2006-03-26 10:06:40 +0000883
884 case PPCISD::MFCR: {
Dan Gohman475871a2008-07-27 21:46:04 +0000885 SDValue InFlag = N->getOperand(1);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000886 // Use MFOCRF if supported.
Evan Cheng152b7e12007-10-23 06:42:42 +0000887 if (PPCSubTarget.isGigaProcessor())
Dale Johannesened2eee62009-02-06 01:31:28 +0000888 return CurDAG->getTargetNode(PPC::MFOCRF, dl, MVT::i32,
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000889 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000890 else
Dale Johannesened2eee62009-02-06 01:31:28 +0000891 return CurDAG->getTargetNode(PPC::MFCR, dl, MVT::i32, InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000892 }
893
Chris Lattner88add102005-09-28 22:50:24 +0000894 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +0000895 // FIXME: since this depends on the setting of the carry flag from the srawi
896 // we should really be making notes about that for the scheduler.
897 // FIXME: It sure would be nice if we could cheaply recognize the
898 // srl/add/sra pattern the dag combiner will generate for this as
899 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +0000900 unsigned Imm;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000901 if (isInt32Immediate(N->getOperand(1), Imm)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000902 SDValue N0 = N->getOperand(0);
Chris Lattner8784a232005-08-25 17:50:06 +0000903 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000904 SDNode *Op =
Dale Johannesened2eee62009-02-06 01:31:28 +0000905 CurDAG->getTargetNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
Evan Cheng34167212006-02-09 00:37:58 +0000906 N0, getI32Imm(Log2_32(Imm)));
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000907 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +0000908 SDValue(Op, 0), SDValue(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +0000909 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000910 SDNode *Op =
Dale Johannesened2eee62009-02-06 01:31:28 +0000911 CurDAG->getTargetNode(PPC::SRAWI, dl, MVT::i32, MVT::Flag,
Evan Cheng34167212006-02-09 00:37:58 +0000912 N0, getI32Imm(Log2_32(-Imm)));
Dan Gohman475871a2008-07-27 21:46:04 +0000913 SDValue PT =
Dale Johannesened2eee62009-02-06 01:31:28 +0000914 SDValue(CurDAG->getTargetNode(PPC::ADDZE, dl, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +0000915 SDValue(Op, 0), SDValue(Op, 1)),
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000916 0);
Evan Cheng95514ba2006-08-26 08:00:10 +0000917 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +0000918 }
919 }
Chris Lattner047b9522005-08-25 22:04:30 +0000920
Chris Lattner237733e2005-09-29 23:33:31 +0000921 // Other cases are autogenerated.
922 break;
Chris Lattner047b9522005-08-25 22:04:30 +0000923 }
Chris Lattner4eab7142006-11-10 02:08:47 +0000924
925 case ISD::LOAD: {
926 // Handle preincrement loads.
927 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000928 MVT LoadedVT = LD->getMemoryVT();
Chris Lattner4eab7142006-11-10 02:08:47 +0000929
930 // Normal loads are handled by code generated from the .td file.
931 if (LD->getAddressingMode() != ISD::PRE_INC)
932 break;
933
Dan Gohman475871a2008-07-27 21:46:04 +0000934 SDValue Offset = LD->getOffset();
Chris Lattner5b3bbc72006-11-11 04:53:30 +0000935 if (isa<ConstantSDNode>(Offset) ||
936 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000937
938 unsigned Opcode;
939 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
940 if (LD->getValueType(0) != MVT::i64) {
941 // Handle PPC32 integer and normal FP loads.
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +0000942 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000943 switch (LoadedVT.getSimpleVT()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000944 default: llvm_unreachable("Invalid PPC load type!");
Chris Lattner0851b4f2006-11-15 19:55:13 +0000945 case MVT::f64: Opcode = PPC::LFDU; break;
946 case MVT::f32: Opcode = PPC::LFSU; break;
947 case MVT::i32: Opcode = PPC::LWZU; break;
948 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
949 case MVT::i1:
950 case MVT::i8: Opcode = PPC::LBZU; break;
951 }
952 } else {
953 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +0000954 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000955 switch (LoadedVT.getSimpleVT()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000956 default: llvm_unreachable("Invalid PPC load type!");
Chris Lattner0851b4f2006-11-15 19:55:13 +0000957 case MVT::i64: Opcode = PPC::LDU; break;
958 case MVT::i32: Opcode = PPC::LWZU8; break;
959 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
960 case MVT::i1:
961 case MVT::i8: Opcode = PPC::LBZU8; break;
962 }
963 }
964
Dan Gohman475871a2008-07-27 21:46:04 +0000965 SDValue Chain = LD->getChain();
966 SDValue Base = LD->getBasePtr();
Dan Gohman475871a2008-07-27 21:46:04 +0000967 SDValue Ops[] = { Offset, Base, Chain };
Chris Lattner4eab7142006-11-10 02:08:47 +0000968 // FIXME: PPC64
Dale Johannesened2eee62009-02-06 01:31:28 +0000969 return CurDAG->getTargetNode(Opcode, dl, LD->getValueType(0),
Dan Gohmane8be6c62008-07-17 19:10:17 +0000970 PPCLowering.getPointerTy(),
Chris Lattner4eab7142006-11-10 02:08:47 +0000971 MVT::Other, Ops, 3);
972 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000973 llvm_unreachable("R+R preindex loads not supported yet!");
Chris Lattner4eab7142006-11-10 02:08:47 +0000974 }
975 }
976
Nate Begemancffc32b2005-08-18 07:30:46 +0000977 case ISD::AND: {
Nate Begemanf42f1332006-09-22 05:01:56 +0000978 unsigned Imm, Imm2, SH, MB, ME;
979
Nate Begemancffc32b2005-08-18 07:30:46 +0000980 // If this is an and of a value rotated between 0 and 31 bits and then and'd
981 // with a mask, emit rlwinm
Chris Lattnerc08f9022006-06-27 00:04:13 +0000982 if (isInt32Immediate(N->getOperand(1), Imm) &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000983 isRotateAndMask(N->getOperand(0).getNode(), Imm, false, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000984 SDValue Val = N->getOperand(0).getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000985 SDValue Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
Evan Cheng0b828e02006-08-27 08:14:06 +0000986 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemancffc32b2005-08-18 07:30:46 +0000987 }
Nate Begemanf42f1332006-09-22 05:01:56 +0000988 // If this is just a masked value where the input is not handled above, and
989 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
990 if (isInt32Immediate(N->getOperand(1), Imm) &&
991 isRunOfOnes(Imm, MB, ME) &&
992 N->getOperand(0).getOpcode() != ISD::ROTL) {
Dan Gohman475871a2008-07-27 21:46:04 +0000993 SDValue Val = N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000994 SDValue Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
Nate Begemanf42f1332006-09-22 05:01:56 +0000995 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
996 }
997 // AND X, 0 -> 0, not "rlwinm 32".
998 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
Dan Gohman475871a2008-07-27 21:46:04 +0000999 ReplaceUses(SDValue(N, 0), N->getOperand(1));
Nate Begemanf42f1332006-09-22 05:01:56 +00001000 return NULL;
1001 }
Nate Begeman50fb3c42005-12-24 01:00:15 +00001002 // ISD::OR doesn't get all the bitfield insertion fun.
1003 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Chris Lattnerc08f9022006-06-27 00:04:13 +00001004 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman50fb3c42005-12-24 01:00:15 +00001005 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001006 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +00001007 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +00001008 Imm = ~(Imm^Imm2);
1009 if (isRunOfOnes(Imm, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001010 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001011 N->getOperand(0).getOperand(1),
1012 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
Dale Johannesened2eee62009-02-06 01:31:28 +00001013 return CurDAG->getTargetNode(PPC::RLWIMI, dl, MVT::i32, Ops, 5);
Nate Begeman50fb3c42005-12-24 01:00:15 +00001014 }
1015 }
Chris Lattner237733e2005-09-29 23:33:31 +00001016
1017 // Other cases are autogenerated.
1018 break;
Nate Begemancffc32b2005-08-18 07:30:46 +00001019 }
Nate Begeman02b88a42005-08-19 00:38:14 +00001020 case ISD::OR:
Chris Lattnercccef1c2006-06-27 21:08:52 +00001021 if (N->getValueType(0) == MVT::i32)
Chris Lattnerccbe2ec2006-08-15 23:48:22 +00001022 if (SDNode *I = SelectBitfieldInsert(N))
1023 return I;
Chris Lattnerd3d2cf52005-09-29 00:59:32 +00001024
Chris Lattner237733e2005-09-29 23:33:31 +00001025 // Other cases are autogenerated.
1026 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001027 case ISD::SHL: {
1028 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001029 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001030 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001031 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001032 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
1033 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001034 }
Nate Begeman2d5aff72005-10-19 18:42:01 +00001035
1036 // Other cases are autogenerated.
1037 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001038 }
1039 case ISD::SRL: {
1040 unsigned Imm, SH, MB, ME;
Gabor Greifba36cb52008-08-28 21:40:38 +00001041 if (isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001042 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001043 SDValue Ops[] = { N->getOperand(0).getOperand(0),
Evan Cheng0b828e02006-08-27 08:14:06 +00001044 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
1045 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001046 }
Nate Begeman2d5aff72005-10-19 18:42:01 +00001047
1048 // Other cases are autogenerated.
1049 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001050 }
Chris Lattner13794f52005-08-26 18:46:49 +00001051 case ISD::SELECT_CC: {
1052 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1053
Chris Lattnerc08f9022006-06-27 00:04:13 +00001054 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Chris Lattner13794f52005-08-26 18:46:49 +00001055 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1056 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1057 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1058 if (N1C->isNullValue() && N3C->isNullValue() &&
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001059 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001060 // FIXME: Implement this optzn for PPC64.
1061 N->getValueType(0) == MVT::i32) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001062 SDNode *Tmp =
Dale Johannesened2eee62009-02-06 01:31:28 +00001063 CurDAG->getTargetNode(PPC::ADDIC, dl, MVT::i32, MVT::Flag,
Evan Cheng6da2f322006-08-26 01:07:58 +00001064 N->getOperand(0), getI32Imm(~0U));
Chris Lattnerccbe2ec2006-08-15 23:48:22 +00001065 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
Dan Gohman475871a2008-07-27 21:46:04 +00001066 SDValue(Tmp, 0), N->getOperand(0),
1067 SDValue(Tmp, 1));
Chris Lattner13794f52005-08-26 18:46:49 +00001068 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001069
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001070 SDValue CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC, dl);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00001071 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001072
Chris Lattner919c0322005-10-01 01:35:02 +00001073 unsigned SelectCCOp;
Chris Lattnerc08f9022006-06-27 00:04:13 +00001074 if (N->getValueType(0) == MVT::i32)
1075 SelectCCOp = PPC::SELECT_CC_I4;
1076 else if (N->getValueType(0) == MVT::i64)
1077 SelectCCOp = PPC::SELECT_CC_I8;
Chris Lattner919c0322005-10-01 01:35:02 +00001078 else if (N->getValueType(0) == MVT::f32)
1079 SelectCCOp = PPC::SELECT_CC_F4;
Chris Lattner710ff322006-04-08 22:45:08 +00001080 else if (N->getValueType(0) == MVT::f64)
Chris Lattner919c0322005-10-01 01:35:02 +00001081 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner710ff322006-04-08 22:45:08 +00001082 else
1083 SelectCCOp = PPC::SELECT_CC_VRRC;
1084
Dan Gohman475871a2008-07-27 21:46:04 +00001085 SDValue Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
Evan Cheng0b828e02006-08-27 08:14:06 +00001086 getI32Imm(BROpc) };
1087 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattner13794f52005-08-26 18:46:49 +00001088 }
Chris Lattner18258c62006-11-17 22:37:34 +00001089 case PPCISD::COND_BRANCH: {
Dan Gohmancbb7ab22008-11-05 17:16:24 +00001090 // Op #0 is the Chain.
Chris Lattner18258c62006-11-17 22:37:34 +00001091 // Op #1 is the PPC::PRED_* number.
1092 // Op #2 is the CR#
1093 // Op #3 is the Dest MBB
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001094 // Op #4 is the Flag.
Evan Cheng2bda17c2007-06-29 01:25:06 +00001095 // Prevent PPC::PRED_* from being selected into LI.
Dan Gohman475871a2008-07-27 21:46:04 +00001096 SDValue Pred =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001097 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getZExtValue());
Dan Gohman475871a2008-07-27 21:46:04 +00001098 SDValue Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Chris Lattner18258c62006-11-17 22:37:34 +00001099 N->getOperand(0), N->getOperand(4) };
1100 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
1101 }
Nate Begeman81e80972006-03-17 01:40:33 +00001102 case ISD::BR_CC: {
Chris Lattner2fbb4572005-08-21 18:50:37 +00001103 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001104 SDValue CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC, dl);
Dan Gohman475871a2008-07-27 21:46:04 +00001105 SDValue Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Cheng0b828e02006-08-27 08:14:06 +00001106 N->getOperand(4), N->getOperand(0) };
Chris Lattner289c2d52006-11-17 22:14:47 +00001107 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001108 }
Nate Begeman37efe672006-04-22 18:53:45 +00001109 case ISD::BRIND: {
Chris Lattnercf006312006-06-10 01:15:02 +00001110 // FIXME: Should custom lower this.
Dan Gohman475871a2008-07-27 21:46:04 +00001111 SDValue Chain = N->getOperand(0);
1112 SDValue Target = N->getOperand(1);
Chris Lattner6b76b962006-06-27 20:46:17 +00001113 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
Dale Johannesened2eee62009-02-06 01:31:28 +00001114 Chain = SDValue(CurDAG->getTargetNode(Opc, dl, MVT::Other, Target,
Nate Begeman37efe672006-04-22 18:53:45 +00001115 Chain), 0);
Evan Cheng95514ba2006-08-26 08:00:10 +00001116 return CurDAG->SelectNodeTo(N, PPC::BCTR, MVT::Other, Chain);
Nate Begeman37efe672006-04-22 18:53:45 +00001117 }
Evan Chengee5c2b82009-01-16 22:57:32 +00001118 case ISD::DECLARE: {
1119 SDValue Chain = N->getOperand(0);
1120 SDValue N1 = N->getOperand(1);
1121 SDValue N2 = N->getOperand(2);
1122 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(N1);
Chris Lattnerf902d242009-02-12 17:37:15 +00001123
1124 // FIXME: We need to handle this for VLAs.
1125 if (!FINode) {
1126 ReplaceUses(Op.getValue(0), Chain);
1127 return NULL;
1128 }
1129
Evan Cheng5fc742d2009-01-19 18:31:51 +00001130 if (N2.getOpcode() == ISD::ADD) {
1131 if (N2.getOperand(0).getOpcode() == ISD::ADD &&
1132 N2.getOperand(0).getOperand(0).getOpcode() == PPCISD::GlobalBaseReg &&
1133 N2.getOperand(0).getOperand(1).getOpcode() == PPCISD::Hi &&
1134 N2.getOperand(1).getOpcode() == PPCISD::Lo)
1135 N2 = N2.getOperand(0).getOperand(1).getOperand(0);
1136 else if (N2.getOperand(0).getOpcode() == ISD::ADD &&
Evan Chengc1a168a2009-01-19 18:57:29 +00001137 N2.getOperand(0).getOperand(0).getOpcode() == PPCISD::GlobalBaseReg &&
1138 N2.getOperand(0).getOperand(1).getOpcode() == PPCISD::Lo &&
Evan Cheng5fc742d2009-01-19 18:31:51 +00001139 N2.getOperand(1).getOpcode() == PPCISD::Hi)
1140 N2 = N2.getOperand(0).getOperand(1).getOperand(0);
1141 else if (N2.getOperand(0).getOpcode() == PPCISD::Hi &&
1142 N2.getOperand(1).getOpcode() == PPCISD::Lo)
1143 N2 = N2.getOperand(0).getOperand(0);
1144 }
Chris Lattnerf902d242009-02-12 17:37:15 +00001145
1146 // If we don't have a global address here, the debug info is mangled, just
1147 // drop it.
1148 if (!isa<GlobalAddressSDNode>(N2)) {
1149 ReplaceUses(Op.getValue(0), Chain);
1150 return NULL;
1151 }
Evan Chengee5c2b82009-01-16 22:57:32 +00001152 int FI = cast<FrameIndexSDNode>(N1)->getIndex();
1153 GlobalValue *GV = cast<GlobalAddressSDNode>(N2)->getGlobal();
1154 SDValue Tmp1 = CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());
1155 SDValue Tmp2 = CurDAG->getTargetGlobalAddress(GV, TLI.getPointerTy());
1156 return CurDAG->SelectNodeTo(N, TargetInstrInfo::DECLARE,
1157 MVT::Other, Tmp1, Tmp2, Chain);
1158 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001159 }
Chris Lattner25dae722005-09-03 00:53:47 +00001160
Evan Cheng9ade2182006-08-26 05:34:46 +00001161 return SelectCode(Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001162}
1163
1164
Chris Lattnercf006312006-06-10 01:15:02 +00001165
Nate Begeman1d9d7422005-10-18 00:28:58 +00001166/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001167/// PowerPC-specific DAG, ready for instruction scheduling.
1168///
Evan Chengc4c62572006-03-13 23:20:37 +00001169FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman1d9d7422005-10-18 00:28:58 +00001170 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001171}
1172