blob: 7a4b29fefbc52f89896df627048a0c97e8f50680 [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//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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"
23#include "llvm/CodeGen/SSARegMap.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 Lattner4416f1a2005-08-19 22:38:53 +000028#include "llvm/GlobalValue.h"
Chris Lattner420736d2006-03-25 06:47:10 +000029#include "llvm/Intrinsics.h"
Chris Lattnera5a91b12005-08-17 19:33:03 +000030#include "llvm/Support/Debug.h"
31#include "llvm/Support/MathExtras.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000032#include "llvm/Support/Compiler.h"
Evan Cheng2ef88a02006-08-07 22:28:20 +000033#include <queue>
Evan Chengba2f0a92006-02-05 06:46:41 +000034#include <set>
Chris Lattnera5a91b12005-08-17 19:33:03 +000035using namespace llvm;
36
37namespace {
Chris Lattnera5a91b12005-08-17 19:33:03 +000038 //===--------------------------------------------------------------------===//
Nate Begeman1d9d7422005-10-18 00:28:58 +000039 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
Chris Lattnera5a91b12005-08-17 19:33:03 +000040 /// instructions for SelectionDAG operations.
41 ///
Chris Lattner2a41a982006-06-28 22:00:36 +000042 class VISIBILITY_HIDDEN PPCDAGToDAGISel : public SelectionDAGISel {
Chris Lattner4bb18952006-03-16 18:25:23 +000043 PPCTargetMachine &TM;
Nate Begeman21e463b2005-10-16 05:39:50 +000044 PPCTargetLowering PPCLowering;
Chris Lattner4416f1a2005-08-19 22:38:53 +000045 unsigned GlobalBaseReg;
Chris Lattnera5a91b12005-08-17 19:33:03 +000046 public:
Chris Lattner4bb18952006-03-16 18:25:23 +000047 PPCDAGToDAGISel(PPCTargetMachine &tm)
48 : SelectionDAGISel(PPCLowering), TM(tm),
49 PPCLowering(*TM.getTargetLowering()) {}
Chris Lattnera5a91b12005-08-17 19:33:03 +000050
Chris Lattner4416f1a2005-08-19 22:38:53 +000051 virtual bool runOnFunction(Function &Fn) {
52 // Make sure we re-emit a set of the global base reg if necessary
53 GlobalBaseReg = 0;
Chris Lattner4bb18952006-03-16 18:25:23 +000054 SelectionDAGISel::runOnFunction(Fn);
55
56 InsertVRSaveCode(Fn);
57 return true;
Chris Lattner4416f1a2005-08-19 22:38:53 +000058 }
59
Chris Lattnera5a91b12005-08-17 19:33:03 +000060 /// getI32Imm - Return a target constant with the specified value, of type
61 /// i32.
62 inline SDOperand getI32Imm(unsigned Imm) {
63 return CurDAG->getTargetConstant(Imm, MVT::i32);
64 }
Chris Lattner4416f1a2005-08-19 22:38:53 +000065
Chris Lattnerc08f9022006-06-27 00:04:13 +000066 /// getI64Imm - Return a target constant with the specified value, of type
67 /// i64.
68 inline SDOperand getI64Imm(uint64_t Imm) {
69 return CurDAG->getTargetConstant(Imm, MVT::i64);
70 }
71
72 /// getSmallIPtrImm - Return a target constant of pointer type.
73 inline SDOperand getSmallIPtrImm(unsigned Imm) {
74 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
75 }
76
Nate Begemanf42f1332006-09-22 05:01:56 +000077 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
78 /// with any number of 0s on either side. The 1s are allowed to wrap from
79 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
80 /// 0x0F0F0000 is not, since all 1s are not contiguous.
81 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
82
83
84 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
85 /// rotate and mask opcode and mask operation.
86 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool IsShiftMask,
87 unsigned &SH, unsigned &MB, unsigned &ME);
Chris Lattnerc08f9022006-06-27 00:04:13 +000088
Chris Lattner4416f1a2005-08-19 22:38:53 +000089 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
90 /// base register. Return the virtual register that holds this value.
Evan Cheng9ade2182006-08-26 05:34:46 +000091 SDNode *getGlobalBaseReg();
Chris Lattnera5a91b12005-08-17 19:33:03 +000092
93 // Select - Convert the specified operand from a target-independent to a
94 // target-specific node if it hasn't already been changed.
Evan Cheng9ade2182006-08-26 05:34:46 +000095 SDNode *Select(SDOperand Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +000096
Nate Begeman02b88a42005-08-19 00:38:14 +000097 SDNode *SelectBitfieldInsert(SDNode *N);
98
Chris Lattner2fbb4572005-08-21 18:50:37 +000099 /// SelectCC - Select a comparison of the specified values with the
100 /// specified condition code, returning the CR# of the expression.
101 SDOperand SelectCC(SDOperand LHS, SDOperand RHS, ISD::CondCode CC);
102
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000103 /// SelectAddrImm - Returns true if the address N can be represented by
104 /// a base register plus a signed 16-bit displacement [r+imm].
Evan Cheng0d538262006-11-08 20:34:28 +0000105 bool SelectAddrImm(SDOperand Op, SDOperand N, SDOperand &Disp,
106 SDOperand &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000107 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
108 }
Chris Lattner74531e42006-11-16 00:41:37 +0000109
110 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
111 /// immediate field. Because preinc imms have already been validated, just
112 /// accept it.
113 bool SelectAddrImmOffs(SDOperand Op, SDOperand N, SDOperand &Out) const {
114 Out = N;
115 return true;
116 }
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000117
118 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
119 /// represented as an indexed [r+r] operation. Returns false if it can
120 /// be represented by [r+imm], which are preferred.
Evan Cheng0d538262006-11-08 20:34:28 +0000121 bool SelectAddrIdx(SDOperand Op, SDOperand N, SDOperand &Base,
122 SDOperand &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000123 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
124 }
Nate Begemanf43a3ca2005-11-30 08:22:07 +0000125
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000126 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
127 /// represented as an indexed [r+r] operation.
Evan Cheng0d538262006-11-08 20:34:28 +0000128 bool SelectAddrIdxOnly(SDOperand Op, SDOperand N, SDOperand &Base,
129 SDOperand &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000130 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
131 }
Chris Lattner9944b762005-08-21 22:31:09 +0000132
Chris Lattnere5ba5802006-03-22 05:26:03 +0000133 /// SelectAddrImmShift - Returns true if the address N can be represented by
134 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
135 /// for use by STD and friends.
Evan Cheng0d538262006-11-08 20:34:28 +0000136 bool SelectAddrImmShift(SDOperand Op, SDOperand N, SDOperand &Disp,
137 SDOperand &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000138 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
139 }
140
Chris Lattnere5d88612006-02-24 02:13:12 +0000141 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
142 /// inline asm expressions.
143 virtual bool SelectInlineAsmMemoryOperand(const SDOperand &Op,
144 char ConstraintCode,
145 std::vector<SDOperand> &OutOps,
146 SelectionDAG &DAG) {
147 SDOperand Op0, Op1;
148 switch (ConstraintCode) {
149 default: return true;
150 case 'm': // memory
Evan Cheng0d538262006-11-08 20:34:28 +0000151 if (!SelectAddrIdx(Op, Op, Op0, Op1))
152 SelectAddrImm(Op, Op, Op0, Op1);
Chris Lattnere5d88612006-02-24 02:13:12 +0000153 break;
154 case 'o': // offsetable
Evan Cheng0d538262006-11-08 20:34:28 +0000155 if (!SelectAddrImm(Op, Op, Op0, Op1)) {
Evan Cheng6da2f322006-08-26 01:07:58 +0000156 Op0 = Op;
157 AddToISelQueue(Op0); // r+0.
Chris Lattnerc08f9022006-06-27 00:04:13 +0000158 Op1 = getSmallIPtrImm(0);
Chris Lattnere5d88612006-02-24 02:13:12 +0000159 }
160 break;
161 case 'v': // not offsetable
Evan Cheng0d538262006-11-08 20:34:28 +0000162 SelectAddrIdxOnly(Op, Op, Op0, Op1);
Chris Lattnere5d88612006-02-24 02:13:12 +0000163 break;
164 }
165
166 OutOps.push_back(Op0);
167 OutOps.push_back(Op1);
168 return false;
169 }
170
Chris Lattner047b9522005-08-25 22:04:30 +0000171 SDOperand BuildSDIVSequence(SDNode *N);
172 SDOperand BuildUDIVSequence(SDNode *N);
173
Chris Lattnera5a91b12005-08-17 19:33:03 +0000174 /// InstructionSelectBasicBlock - This callback is invoked by
175 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Chris Lattnerbd937b92005-10-06 18:45:51 +0000176 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
177
Chris Lattner4bb18952006-03-16 18:25:23 +0000178 void InsertVRSaveCode(Function &Fn);
179
Chris Lattnera5a91b12005-08-17 19:33:03 +0000180 virtual const char *getPassName() const {
181 return "PowerPC DAG->DAG Pattern Instruction Selection";
182 }
Chris Lattnerc6644182006-03-07 06:32:48 +0000183
Chris Lattnerc04ba7a2006-05-16 23:54:25 +0000184 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
185 /// this target when scheduling the DAG.
Chris Lattnerb0d21ef2006-03-08 04:25:59 +0000186 virtual HazardRecognizer *CreateTargetHazardRecognizer() {
Chris Lattnerc6644182006-03-07 06:32:48 +0000187 // Should use subtarget info to pick the right hazard recognizer. For
188 // now, always return a PPC970 recognizer.
Chris Lattner88d211f2006-03-12 09:13:49 +0000189 const TargetInstrInfo *II = PPCLowering.getTargetMachine().getInstrInfo();
190 assert(II && "No InstrInfo?");
191 return new PPCHazardRecognizer970(*II);
Chris Lattnerc6644182006-03-07 06:32:48 +0000192 }
Chris Lattneraf165382005-09-13 22:03:06 +0000193
194// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000195#include "PPCGenDAGISel.inc"
Chris Lattnerbd937b92005-10-06 18:45:51 +0000196
197private:
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000198 SDNode *SelectSETCC(SDOperand Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000199 };
200}
201
Chris Lattnerbd937b92005-10-06 18:45:51 +0000202/// InstructionSelectBasicBlock - This callback is invoked by
203/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000204void PPCDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
Chris Lattnerbd937b92005-10-06 18:45:51 +0000205 DEBUG(BB->dump());
Evan Cheng33e9ad92006-07-27 06:40:15 +0000206
Chris Lattnerbd937b92005-10-06 18:45:51 +0000207 // Select target instructions for the DAG.
Evan Chengba2f0a92006-02-05 06:46:41 +0000208 DAG.setRoot(SelectRoot(DAG.getRoot()));
Chris Lattnerbd937b92005-10-06 18:45:51 +0000209 DAG.RemoveDeadNodes();
210
Chris Lattner1877ec92006-03-13 21:52:10 +0000211 // Emit machine code to BB.
Chris Lattnerbd937b92005-10-06 18:45:51 +0000212 ScheduleAndEmitDAG(DAG);
Chris Lattner4bb18952006-03-16 18:25:23 +0000213}
214
215/// InsertVRSaveCode - Once the entire function has been instruction selected,
216/// all virtual registers are created and all machine instructions are built,
217/// check to see if we need to save/restore VRSAVE. If so, do it.
218void PPCDAGToDAGISel::InsertVRSaveCode(Function &F) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000219 // Check to see if this function uses vector registers, which means we have to
220 // save and restore the VRSAVE register and update it with the regs we use.
221 //
222 // In this case, there will be virtual registers of vector type type created
223 // by the scheduler. Detect them now.
Chris Lattner4bb18952006-03-16 18:25:23 +0000224 MachineFunction &Fn = MachineFunction::get(&F);
225 SSARegMap *RegMap = Fn.getSSARegMap();
Chris Lattner1877ec92006-03-13 21:52:10 +0000226 bool HasVectorVReg = false;
227 for (unsigned i = MRegisterInfo::FirstVirtualRegister,
Chris Lattnera08610c2006-03-14 17:56:49 +0000228 e = RegMap->getLastVirtReg()+1; i != e; ++i)
Chris Lattner1877ec92006-03-13 21:52:10 +0000229 if (RegMap->getRegClass(i) == &PPC::VRRCRegClass) {
230 HasVectorVReg = true;
231 break;
232 }
Chris Lattner4bb18952006-03-16 18:25:23 +0000233 if (!HasVectorVReg) return; // nothing to do.
234
Chris Lattner1877ec92006-03-13 21:52:10 +0000235 // If we have a vector register, we want to emit code into the entry and exit
236 // blocks to save and restore the VRSAVE register. We do this here (instead
237 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
238 //
239 // 1. This (trivially) reduces the load on the register allocator, by not
240 // having to represent the live range of the VRSAVE register.
241 // 2. This (more significantly) allows us to create a temporary virtual
242 // register to hold the saved VRSAVE value, allowing this temporary to be
243 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner4bb18952006-03-16 18:25:23 +0000244
245 // Create two vregs - one to hold the VRSAVE register that is live-in to the
246 // function and one for the value after having bits or'd into it.
247 unsigned InVRSAVE = RegMap->createVirtualRegister(&PPC::GPRCRegClass);
248 unsigned UpdatedVRSAVE = RegMap->createVirtualRegister(&PPC::GPRCRegClass);
249
Evan Chengc0f64ff2006-11-27 23:37:22 +0000250 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4bb18952006-03-16 18:25:23 +0000251 MachineBasicBlock &EntryBB = *Fn.begin();
252 // Emit the following code into the entry block:
253 // InVRSAVE = MFVRSAVE
254 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
255 // MTVRSAVE UpdatedVRSAVE
256 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Evan Chengc0f64ff2006-11-27 23:37:22 +0000257 BuildMI(EntryBB, IP, TII.get(PPC::MFVRSAVE), InVRSAVE);
258 BuildMI(EntryBB, IP, TII.get(PPC::UPDATE_VRSAVE), UpdatedVRSAVE).addReg(InVRSAVE);
259 BuildMI(EntryBB, IP, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Chris Lattner4bb18952006-03-16 18:25:23 +0000260
261 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner4bb18952006-03-16 18:25:23 +0000262 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
263 if (!BB->empty() && TII.isReturn(BB->back().getOpcode())) {
264 IP = BB->end(); --IP;
265
266 // Skip over all terminator instructions, which are part of the return
267 // sequence.
268 MachineBasicBlock::iterator I2 = IP;
269 while (I2 != BB->begin() && TII.isTerminatorInstr((--I2)->getOpcode()))
270 IP = I2;
271
272 // Emit: MTVRSAVE InVRSave
Evan Chengc0f64ff2006-11-27 23:37:22 +0000273 BuildMI(*BB, IP, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Chris Lattner4bb18952006-03-16 18:25:23 +0000274 }
Chris Lattner1877ec92006-03-13 21:52:10 +0000275 }
Chris Lattnerbd937b92005-10-06 18:45:51 +0000276}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000277
Chris Lattner4bb18952006-03-16 18:25:23 +0000278
Chris Lattner4416f1a2005-08-19 22:38:53 +0000279/// getGlobalBaseReg - Output the instructions required to put the
280/// base address to use for accessing globals into a register.
281///
Evan Cheng9ade2182006-08-26 05:34:46 +0000282SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000283 if (!GlobalBaseReg) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000284 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000285 // Insert the set of GlobalBaseReg into the first MBB of the function
286 MachineBasicBlock &FirstMBB = BB->getParent()->front();
287 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
288 SSARegMap *RegMap = BB->getParent()->getSSARegMap();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000289
Chris Lattnerd1043422006-11-14 18:43:11 +0000290 if (PPCLowering.getPointerTy() == MVT::i32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000291 GlobalBaseReg = RegMap->createVirtualRegister(PPC::GPRCRegisterClass);
Evan Chengc0f64ff2006-11-27 23:37:22 +0000292 BuildMI(FirstMBB, MBBI, TII.get(PPC::MovePCtoLR), PPC::LR);
293 BuildMI(FirstMBB, MBBI, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000294 } else {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000295 GlobalBaseReg = RegMap->createVirtualRegister(PPC::G8RCRegisterClass);
Evan Chengc0f64ff2006-11-27 23:37:22 +0000296 BuildMI(FirstMBB, MBBI, TII.get(PPC::MovePCtoLR8), PPC::LR8);
297 BuildMI(FirstMBB, MBBI, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000298 }
Chris Lattner4416f1a2005-08-19 22:38:53 +0000299 }
Evan Cheng9ade2182006-08-26 05:34:46 +0000300 return CurDAG->getRegister(GlobalBaseReg, PPCLowering.getPointerTy()).Val;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000301}
302
303/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
304/// or 64-bit immediate, and if the value can be accurately represented as a
305/// sign extension from a 16-bit value. If so, this returns true and the
306/// immediate.
307static bool isIntS16Immediate(SDNode *N, short &Imm) {
308 if (N->getOpcode() != ISD::Constant)
309 return false;
310
311 Imm = (short)cast<ConstantSDNode>(N)->getValue();
312 if (N->getValueType(0) == MVT::i32)
313 return Imm == (int32_t)cast<ConstantSDNode>(N)->getValue();
314 else
315 return Imm == (int64_t)cast<ConstantSDNode>(N)->getValue();
316}
317
318static bool isIntS16Immediate(SDOperand Op, short &Imm) {
319 return isIntS16Immediate(Op.Val, Imm);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000320}
321
322
Chris Lattnerc08f9022006-06-27 00:04:13 +0000323/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
324/// operand. If so Imm will receive the 32-bit value.
325static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
326 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Nate Begeman0f3257a2005-08-18 05:00:13 +0000327 Imm = cast<ConstantSDNode>(N)->getValue();
328 return true;
329 }
330 return false;
331}
332
Chris Lattnerc08f9022006-06-27 00:04:13 +0000333/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
334/// operand. If so Imm will receive the 64-bit value.
335static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Chris Lattner71176242006-09-20 04:33:27 +0000336 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000337 Imm = cast<ConstantSDNode>(N)->getValue();
338 return true;
339 }
340 return false;
341}
342
343// isInt32Immediate - This method tests to see if a constant operand.
344// If so Imm will receive the 32 bit value.
345static bool isInt32Immediate(SDOperand N, unsigned &Imm) {
346 return isInt32Immediate(N.Val, Imm);
347}
348
349
350// isOpcWithIntImmediate - This method tests to see if the node is a specific
351// opcode and that it has a immediate integer right operand.
352// If so Imm will receive the 32 bit value.
353static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
354 return N->getOpcode() == Opc && isInt32Immediate(N->getOperand(1).Val, Imm);
355}
356
Nate Begemanf42f1332006-09-22 05:01:56 +0000357bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000358 if (isShiftedMask_32(Val)) {
359 // look for the first non-zero bit
360 MB = CountLeadingZeros_32(Val);
361 // look for the first zero bit after the run of ones
362 ME = CountLeadingZeros_32((Val - 1) ^ Val);
363 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000364 } else {
365 Val = ~Val; // invert mask
366 if (isShiftedMask_32(Val)) {
367 // effectively look for the first zero bit
368 ME = CountLeadingZeros_32(Val) - 1;
369 // effectively look for the first one bit after the run of zeros
370 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
371 return true;
372 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000373 }
374 // no run present
375 return false;
376}
377
Nate Begemanf42f1332006-09-22 05:01:56 +0000378bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
379 bool IsShiftMask, unsigned &SH,
380 unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000381 // Don't even go down this path for i64, since different logic will be
382 // necessary for rldicl/rldicr/rldimi.
383 if (N->getValueType(0) != MVT::i32)
384 return false;
385
Nate Begemancffc32b2005-08-18 07:30:46 +0000386 unsigned Shift = 32;
387 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
388 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000389 if (N->getNumOperands() != 2 ||
Chris Lattnerc08f9022006-06-27 00:04:13 +0000390 !isInt32Immediate(N->getOperand(1).Val, Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000391 return false;
392
393 if (Opcode == ISD::SHL) {
394 // apply shift left to mask if it comes first
395 if (IsShiftMask) Mask = Mask << Shift;
396 // determine which bits are made indeterminant by shift
397 Indeterminant = ~(0xFFFFFFFFu << Shift);
Chris Lattner651dea72005-10-15 21:40:12 +0000398 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000399 // apply shift right to mask if it comes first
400 if (IsShiftMask) Mask = Mask >> Shift;
401 // determine which bits are made indeterminant by shift
402 Indeterminant = ~(0xFFFFFFFFu >> Shift);
403 // adjust for the left rotate
404 Shift = 32 - Shift;
Nate Begemanf42f1332006-09-22 05:01:56 +0000405 } else if (Opcode == ISD::ROTL) {
406 Indeterminant = 0;
Nate Begemancffc32b2005-08-18 07:30:46 +0000407 } else {
408 return false;
409 }
410
411 // if the mask doesn't intersect any Indeterminant bits
412 if (Mask && !(Mask & Indeterminant)) {
Chris Lattner0949ed52006-05-12 16:29:37 +0000413 SH = Shift & 31;
Nate Begemancffc32b2005-08-18 07:30:46 +0000414 // make sure the mask is still a mask (wrap arounds may not be)
415 return isRunOfOnes(Mask, MB, ME);
416 }
417 return false;
418}
419
Nate Begeman02b88a42005-08-19 00:38:14 +0000420/// SelectBitfieldInsert - turn an or of two masked values into
421/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000422SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Nate Begeman02b88a42005-08-19 00:38:14 +0000423 SDOperand Op0 = N->getOperand(0);
424 SDOperand Op1 = N->getOperand(1);
425
Nate Begeman77f361f2006-05-07 00:23:38 +0000426 uint64_t LKZ, LKO, RKZ, RKO;
Nate Begeman4667f2c2006-05-08 17:38:32 +0000427 TLI.ComputeMaskedBits(Op0, 0xFFFFFFFFULL, LKZ, LKO);
428 TLI.ComputeMaskedBits(Op1, 0xFFFFFFFFULL, RKZ, RKO);
Nate Begeman02b88a42005-08-19 00:38:14 +0000429
Nate Begeman4667f2c2006-05-08 17:38:32 +0000430 unsigned TargetMask = LKZ;
431 unsigned InsertMask = RKZ;
432
433 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
434 unsigned Op0Opc = Op0.getOpcode();
435 unsigned Op1Opc = Op1.getOpcode();
436 unsigned Value, SH = 0;
437 TargetMask = ~TargetMask;
438 InsertMask = ~InsertMask;
Nate Begeman77f361f2006-05-07 00:23:38 +0000439
Nate Begeman4667f2c2006-05-08 17:38:32 +0000440 // If the LHS has a foldable shift and the RHS does not, then swap it to the
441 // RHS so that we can fold the shift into the insert.
Nate Begeman77f361f2006-05-07 00:23:38 +0000442 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
443 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
444 Op0.getOperand(0).getOpcode() == ISD::SRL) {
445 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
446 Op1.getOperand(0).getOpcode() != ISD::SRL) {
447 std::swap(Op0, Op1);
448 std::swap(Op0Opc, Op1Opc);
Nate Begeman4667f2c2006-05-08 17:38:32 +0000449 std::swap(TargetMask, InsertMask);
Nate Begeman77f361f2006-05-07 00:23:38 +0000450 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000451 }
Nate Begeman4667f2c2006-05-08 17:38:32 +0000452 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
453 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
454 Op1.getOperand(0).getOpcode() != ISD::SRL) {
455 std::swap(Op0, Op1);
456 std::swap(Op0Opc, Op1Opc);
457 std::swap(TargetMask, InsertMask);
458 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000459 }
Nate Begeman77f361f2006-05-07 00:23:38 +0000460
461 unsigned MB, ME;
Chris Lattner0949ed52006-05-12 16:29:37 +0000462 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000463 SDOperand Tmp1, Tmp2, Tmp3;
Nate Begeman4667f2c2006-05-08 17:38:32 +0000464 bool DisjointMask = (TargetMask ^ InsertMask) == 0xFFFFFFFF;
Nate Begeman77f361f2006-05-07 00:23:38 +0000465
466 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000467 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000468 Op1 = Op1.getOperand(0);
469 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
470 }
471 if (Op1Opc == ISD::AND) {
472 unsigned SHOpc = Op1.getOperand(0).getOpcode();
473 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000474 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000475 Op1 = Op1.getOperand(0).getOperand(0);
476 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
477 } else {
478 Op1 = Op1.getOperand(0);
479 }
480 }
481
482 Tmp3 = (Op0Opc == ISD::AND && DisjointMask) ? Op0.getOperand(0) : Op0;
Evan Cheng6da2f322006-08-26 01:07:58 +0000483 AddToISelQueue(Tmp3);
484 AddToISelQueue(Op1);
Chris Lattner0949ed52006-05-12 16:29:37 +0000485 SH &= 31;
Evan Cheng0b828e02006-08-27 08:14:06 +0000486 SDOperand Ops[] = { Tmp3, Op1, getI32Imm(SH), getI32Imm(MB),
487 getI32Imm(ME) };
488 return CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32, Ops, 5);
Nate Begeman02b88a42005-08-19 00:38:14 +0000489 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000490 }
491 return 0;
492}
493
Chris Lattner2fbb4572005-08-21 18:50:37 +0000494/// SelectCC - Select a comparison of the specified values with the specified
495/// condition code, returning the CR# of the expression.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000496SDOperand PPCDAGToDAGISel::SelectCC(SDOperand LHS, SDOperand RHS,
497 ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000498 // Always select the LHS.
Evan Cheng6da2f322006-08-26 01:07:58 +0000499 AddToISelQueue(LHS);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000500 unsigned Opc;
501
502 if (LHS.getValueType() == MVT::i32) {
Chris Lattner529c2332006-06-27 00:10:13 +0000503 unsigned Imm;
Chris Lattner3836dbd2006-09-20 04:25:47 +0000504 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
505 if (isInt32Immediate(RHS, Imm)) {
506 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
507 if (isUInt16(Imm))
508 return SDOperand(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, LHS,
509 getI32Imm(Imm & 0xFFFF)), 0);
510 // If this is a 16-bit signed immediate, fold it.
Chris Lattneraa43e9f2007-04-02 05:59:42 +0000511 if (isInt16((int)Imm))
Chris Lattner3836dbd2006-09-20 04:25:47 +0000512 return SDOperand(CurDAG->getTargetNode(PPC::CMPWI, MVT::i32, LHS,
513 getI32Imm(Imm & 0xFFFF)), 0);
514
515 // For non-equality comparisons, the default code would materialize the
516 // constant, then compare against it, like this:
517 // lis r2, 4660
518 // ori r2, r2, 22136
519 // cmpw cr0, r3, r2
520 // Since we are just comparing for equality, we can emit this instead:
521 // xoris r0,r3,0x1234
522 // cmplwi cr0,r0,0x5678
523 // beq cr0,L6
524 SDOperand Xor(CurDAG->getTargetNode(PPC::XORIS, MVT::i32, LHS,
525 getI32Imm(Imm >> 16)), 0);
526 return SDOperand(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, Xor,
527 getI32Imm(Imm & 0xFFFF)), 0);
528 }
529 Opc = PPC::CMPLW;
530 } else if (ISD::isUnsignedIntSetCC(CC)) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000531 if (isInt32Immediate(RHS, Imm) && isUInt16(Imm))
532 return SDOperand(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, LHS,
533 getI32Imm(Imm & 0xFFFF)), 0);
534 Opc = PPC::CMPLW;
535 } else {
536 short SImm;
537 if (isIntS16Immediate(RHS, SImm))
538 return SDOperand(CurDAG->getTargetNode(PPC::CMPWI, MVT::i32, LHS,
539 getI32Imm((int)SImm & 0xFFFF)),
540 0);
541 Opc = PPC::CMPW;
542 }
543 } else if (LHS.getValueType() == MVT::i64) {
544 uint64_t Imm;
Chris Lattner71176242006-09-20 04:33:27 +0000545 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
546 if (isInt64Immediate(RHS.Val, Imm)) {
547 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
548 if (isUInt16(Imm))
549 return SDOperand(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, LHS,
550 getI32Imm(Imm & 0xFFFF)), 0);
551 // If this is a 16-bit signed immediate, fold it.
552 if (isInt16(Imm))
553 return SDOperand(CurDAG->getTargetNode(PPC::CMPDI, MVT::i64, LHS,
554 getI32Imm(Imm & 0xFFFF)), 0);
555
556 // For non-equality comparisons, the default code would materialize the
557 // constant, then compare against it, like this:
558 // lis r2, 4660
559 // ori r2, r2, 22136
560 // cmpd cr0, r3, r2
561 // Since we are just comparing for equality, we can emit this instead:
562 // xoris r0,r3,0x1234
563 // cmpldi cr0,r0,0x5678
564 // beq cr0,L6
565 if (isUInt32(Imm)) {
566 SDOperand Xor(CurDAG->getTargetNode(PPC::XORIS8, MVT::i64, LHS,
567 getI64Imm(Imm >> 16)), 0);
568 return SDOperand(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, Xor,
569 getI64Imm(Imm & 0xFFFF)), 0);
570 }
571 }
572 Opc = PPC::CMPLD;
573 } else if (ISD::isUnsignedIntSetCC(CC)) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000574 if (isInt64Immediate(RHS.Val, Imm) && isUInt16(Imm))
575 return SDOperand(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, LHS,
576 getI64Imm(Imm & 0xFFFF)), 0);
577 Opc = PPC::CMPLD;
578 } else {
579 short SImm;
580 if (isIntS16Immediate(RHS, SImm))
581 return SDOperand(CurDAG->getTargetNode(PPC::CMPDI, MVT::i64, LHS,
Chris Lattner71176242006-09-20 04:33:27 +0000582 getI64Imm(SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000583 0);
584 Opc = PPC::CMPD;
585 }
Chris Lattner919c0322005-10-01 01:35:02 +0000586 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000587 Opc = PPC::FCMPUS;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000588 } else {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000589 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
590 Opc = PPC::FCMPUD;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000591 }
Evan Cheng6da2f322006-08-26 01:07:58 +0000592 AddToISelQueue(RHS);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000593 return SDOperand(CurDAG->getTargetNode(Opc, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000594}
595
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000596static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000597 switch (CC) {
598 default: assert(0 && "Unknown condition!"); abort();
Chris Lattnered048c02005-10-28 20:49:47 +0000599 case ISD::SETOEQ: // FIXME: This is incorrect see PR642.
Chris Lattner5d634ce2006-05-25 16:54:16 +0000600 case ISD::SETUEQ:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000601 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattnered048c02005-10-28 20:49:47 +0000602 case ISD::SETONE: // FIXME: This is incorrect see PR642.
Chris Lattner5d634ce2006-05-25 16:54:16 +0000603 case ISD::SETUNE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000604 case ISD::SETNE: return PPC::PRED_NE;
Chris Lattnered048c02005-10-28 20:49:47 +0000605 case ISD::SETOLT: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000606 case ISD::SETULT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000607 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattnered048c02005-10-28 20:49:47 +0000608 case ISD::SETOLE: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000609 case ISD::SETULE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000610 case ISD::SETLE: return PPC::PRED_LE;
Chris Lattnered048c02005-10-28 20:49:47 +0000611 case ISD::SETOGT: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000612 case ISD::SETUGT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000613 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattnered048c02005-10-28 20:49:47 +0000614 case ISD::SETOGE: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000615 case ISD::SETUGE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000616 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattner6df25072005-10-28 20:32:44 +0000617
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000618 case ISD::SETO: return PPC::PRED_NU;
619 case ISD::SETUO: return PPC::PRED_UN;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000620 }
Chris Lattner2fbb4572005-08-21 18:50:37 +0000621}
622
Chris Lattner64906a02005-08-25 20:08:18 +0000623/// getCRIdxForSetCC - Return the index of the condition register field
624/// associated with the SetCC condition, and whether or not the field is
625/// treated as inverted. That is, lt = 0; ge = 0 inverted.
626static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool& Inv) {
627 switch (CC) {
628 default: assert(0 && "Unknown condition!"); abort();
Chris Lattnered048c02005-10-28 20:49:47 +0000629 case ISD::SETOLT: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000630 case ISD::SETULT:
631 case ISD::SETLT: Inv = false; return 0;
Chris Lattnered048c02005-10-28 20:49:47 +0000632 case ISD::SETOGE: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000633 case ISD::SETUGE:
634 case ISD::SETGE: Inv = true; return 0;
Chris Lattnered048c02005-10-28 20:49:47 +0000635 case ISD::SETOGT: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000636 case ISD::SETUGT:
637 case ISD::SETGT: Inv = false; return 1;
Chris Lattnered048c02005-10-28 20:49:47 +0000638 case ISD::SETOLE: // FIXME: This is incorrect see PR642.
Chris Lattner64906a02005-08-25 20:08:18 +0000639 case ISD::SETULE:
640 case ISD::SETLE: Inv = true; return 1;
Chris Lattnered048c02005-10-28 20:49:47 +0000641 case ISD::SETOEQ: // FIXME: This is incorrect see PR642.
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000642 case ISD::SETUEQ:
Chris Lattner64906a02005-08-25 20:08:18 +0000643 case ISD::SETEQ: Inv = false; return 2;
Chris Lattnered048c02005-10-28 20:49:47 +0000644 case ISD::SETONE: // FIXME: This is incorrect see PR642.
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000645 case ISD::SETUNE:
Chris Lattner64906a02005-08-25 20:08:18 +0000646 case ISD::SETNE: Inv = true; return 2;
Chris Lattner6df25072005-10-28 20:32:44 +0000647 case ISD::SETO: Inv = true; return 3;
648 case ISD::SETUO: Inv = false; return 3;
Chris Lattner64906a02005-08-25 20:08:18 +0000649 }
650 return 0;
651}
Chris Lattner9944b762005-08-21 22:31:09 +0000652
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000653SDNode *PPCDAGToDAGISel::SelectSETCC(SDOperand Op) {
Chris Lattner222adac2005-10-06 19:03:35 +0000654 SDNode *N = Op.Val;
655 unsigned Imm;
656 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000657 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner222adac2005-10-06 19:03:35 +0000658 // We can codegen setcc op, imm very efficiently compared to a brcond.
659 // Check for those cases here.
660 // setcc op, 0
661 if (Imm == 0) {
Evan Cheng6da2f322006-08-26 01:07:58 +0000662 SDOperand Op = N->getOperand(0);
663 AddToISelQueue(Op);
Chris Lattner222adac2005-10-06 19:03:35 +0000664 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000665 default: break;
Evan Cheng0b828e02006-08-27 08:14:06 +0000666 case ISD::SETEQ: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000667 Op = SDOperand(CurDAG->getTargetNode(PPC::CNTLZW, MVT::i32, Op), 0);
Evan Cheng0b828e02006-08-27 08:14:06 +0000668 SDOperand Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
669 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
670 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000671 case ISD::SETNE: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000672 SDOperand AD =
673 SDOperand(CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
674 Op, getI32Imm(~0U)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000675 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000676 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000677 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000678 case ISD::SETLT: {
679 SDOperand Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
680 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
681 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000682 case ISD::SETGT: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000683 SDOperand T =
684 SDOperand(CurDAG->getTargetNode(PPC::NEG, MVT::i32, Op), 0);
685 T = SDOperand(CurDAG->getTargetNode(PPC::ANDC, MVT::i32, T, Op), 0);
Evan Cheng0b828e02006-08-27 08:14:06 +0000686 SDOperand Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
687 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000688 }
689 }
Chris Lattner222adac2005-10-06 19:03:35 +0000690 } else if (Imm == ~0U) { // setcc op, -1
Evan Cheng6da2f322006-08-26 01:07:58 +0000691 SDOperand Op = N->getOperand(0);
692 AddToISelQueue(Op);
Chris Lattner222adac2005-10-06 19:03:35 +0000693 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000694 default: break;
695 case ISD::SETEQ:
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000696 Op = SDOperand(CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
697 Op, getI32Imm(1)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000698 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000699 SDOperand(CurDAG->getTargetNode(PPC::LI, MVT::i32,
700 getI32Imm(0)), 0),
Evan Cheng95514ba2006-08-26 08:00:10 +0000701 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000702 case ISD::SETNE: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000703 Op = SDOperand(CurDAG->getTargetNode(PPC::NOR, MVT::i32, Op, Op), 0);
704 SDNode *AD = CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
705 Op, getI32Imm(~0U));
Chris Lattnerc04ba7a2006-05-16 23:54:25 +0000706 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDOperand(AD, 0),
Evan Cheng95514ba2006-08-26 08:00:10 +0000707 Op, SDOperand(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000708 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000709 case ISD::SETLT: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000710 SDOperand AD = SDOperand(CurDAG->getTargetNode(PPC::ADDI, MVT::i32, Op,
711 getI32Imm(1)), 0);
712 SDOperand AN = SDOperand(CurDAG->getTargetNode(PPC::AND, MVT::i32, AD,
713 Op), 0);
Evan Cheng0b828e02006-08-27 08:14:06 +0000714 SDOperand Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
715 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000716 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000717 case ISD::SETGT: {
718 SDOperand Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
719 Op = SDOperand(CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, Ops, 4), 0);
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000720 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000721 getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000722 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000723 }
Chris Lattner222adac2005-10-06 19:03:35 +0000724 }
725 }
726
727 bool Inv;
728 unsigned Idx = getCRIdxForSetCC(CC, Inv);
729 SDOperand CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
730 SDOperand IntCR;
731
732 // Force the ccreg into CR7.
733 SDOperand CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
734
Chris Lattner85961d52005-12-06 20:56:18 +0000735 SDOperand InFlag(0, 0); // Null incoming flag value.
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000736 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), CR7Reg, CCReg,
737 InFlag).getValue(1);
Chris Lattner222adac2005-10-06 19:03:35 +0000738
739 if (TLI.getTargetMachine().getSubtarget<PPCSubtarget>().isGigaProcessor())
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000740 IntCR = SDOperand(CurDAG->getTargetNode(PPC::MFOCRF, MVT::i32, CR7Reg,
741 CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000742 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000743 IntCR = SDOperand(CurDAG->getTargetNode(PPC::MFCR, MVT::i32, CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000744
Evan Cheng0b828e02006-08-27 08:14:06 +0000745 SDOperand Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
746 getI32Imm(31), getI32Imm(31) };
Chris Lattner222adac2005-10-06 19:03:35 +0000747 if (!Inv) {
Evan Cheng0b828e02006-08-27 08:14:06 +0000748 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattner222adac2005-10-06 19:03:35 +0000749 } else {
750 SDOperand Tmp =
Evan Cheng0b828e02006-08-27 08:14:06 +0000751 SDOperand(CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, Ops, 4), 0);
Evan Cheng95514ba2006-08-26 08:00:10 +0000752 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000753 }
Chris Lattner222adac2005-10-06 19:03:35 +0000754}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000755
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000756
Chris Lattnera5a91b12005-08-17 19:33:03 +0000757// Select - Convert the specified operand from a target-independent to a
758// target-specific node if it hasn't already been changed.
Evan Cheng9ade2182006-08-26 05:34:46 +0000759SDNode *PPCDAGToDAGISel::Select(SDOperand Op) {
Chris Lattnera5a91b12005-08-17 19:33:03 +0000760 SDNode *N = Op.Val;
Chris Lattner0bbea952005-08-26 20:25:03 +0000761 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng9ade2182006-08-26 05:34:46 +0000762 N->getOpcode() < PPCISD::FIRST_NUMBER)
Evan Cheng64a752f2006-08-11 09:08:15 +0000763 return NULL; // Already selected.
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000764
Chris Lattnera5a91b12005-08-17 19:33:03 +0000765 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000766 default: break;
Jim Laskey78f97f32006-12-12 13:23:43 +0000767
768 case ISD::Constant: {
769 if (N->getValueType(0) == MVT::i64) {
770 // Get 64 bit value.
771 int64_t Imm = cast<ConstantSDNode>(N)->getValue();
772 // Assume no remaining bits.
773 unsigned Remainder = 0;
774 // Assume no shift required.
775 unsigned Shift = 0;
776
777 // If it can't be represented as a 32 bit value.
778 if (!isInt32(Imm)) {
779 Shift = CountTrailingZeros_64(Imm);
780 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
781
782 // If the shifted value fits 32 bits.
783 if (isInt32(ImmSh)) {
784 // Go with the shifted value.
785 Imm = ImmSh;
786 } else {
787 // Still stuck with a 64 bit value.
788 Remainder = Imm;
789 Shift = 32;
790 Imm >>= 32;
791 }
792 }
793
794 // Intermediate operand.
795 SDNode *Result;
796
797 // Handle first 32 bits.
798 unsigned Lo = Imm & 0xFFFF;
799 unsigned Hi = (Imm >> 16) & 0xFFFF;
800
801 // Simple value.
802 if (isInt16(Imm)) {
803 // Just the Lo bits.
804 Result = CurDAG->getTargetNode(PPC::LI8, MVT::i64, getI32Imm(Lo));
805 } else if (Lo) {
806 // Handle the Hi bits.
807 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
808 Result = CurDAG->getTargetNode(OpC, MVT::i64, getI32Imm(Hi));
809 // And Lo bits.
810 Result = CurDAG->getTargetNode(PPC::ORI8, MVT::i64,
811 SDOperand(Result, 0), getI32Imm(Lo));
812 } else {
813 // Just the Hi bits.
814 Result = CurDAG->getTargetNode(PPC::LIS8, MVT::i64, getI32Imm(Hi));
815 }
816
817 // If no shift, we're done.
818 if (!Shift) return Result;
819
820 // Shift for next step if the upper 32-bits were not zero.
821 if (Imm) {
822 Result = CurDAG->getTargetNode(PPC::RLDICR, MVT::i64,
823 SDOperand(Result, 0),
824 getI32Imm(Shift), getI32Imm(63 - Shift));
825 }
826
827 // Add in the last bits as required.
828 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
829 Result = CurDAG->getTargetNode(PPC::ORIS8, MVT::i64,
830 SDOperand(Result, 0), getI32Imm(Hi));
831 }
832 if ((Lo = Remainder & 0xFFFF)) {
833 Result = CurDAG->getTargetNode(PPC::ORI8, MVT::i64,
834 SDOperand(Result, 0), getI32Imm(Lo));
835 }
836
837 return Result;
838 }
839 break;
840 }
841
Evan Cheng34167212006-02-09 00:37:58 +0000842 case ISD::SETCC:
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000843 return SelectSETCC(Op);
Evan Cheng34167212006-02-09 00:37:58 +0000844 case PPCISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +0000845 return getGlobalBaseReg();
Chris Lattner860e8862005-11-17 07:30:41 +0000846
Chris Lattnere28e40a2005-08-25 00:45:43 +0000847 case ISD::FrameIndex: {
848 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000849 SDOperand TFI = CurDAG->getTargetFrameIndex(FI, Op.getValueType());
850 unsigned Opc = Op.getValueType() == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000851 if (N->hasOneUse())
852 return CurDAG->SelectNodeTo(N, Opc, Op.getValueType(), TFI,
Evan Cheng95514ba2006-08-26 08:00:10 +0000853 getSmallIPtrImm(0));
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000854 return CurDAG->getTargetNode(Opc, Op.getValueType(), TFI,
855 getSmallIPtrImm(0));
Chris Lattnere28e40a2005-08-25 00:45:43 +0000856 }
Chris Lattner6d92cad2006-03-26 10:06:40 +0000857
858 case PPCISD::MFCR: {
Evan Cheng6da2f322006-08-26 01:07:58 +0000859 SDOperand InFlag = N->getOperand(1);
860 AddToISelQueue(InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000861 // Use MFOCRF if supported.
862 if (TLI.getTargetMachine().getSubtarget<PPCSubtarget>().isGigaProcessor())
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000863 return CurDAG->getTargetNode(PPC::MFOCRF, MVT::i32,
864 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000865 else
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000866 return CurDAG->getTargetNode(PPC::MFCR, MVT::i32, InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000867 }
868
Chris Lattner88add102005-09-28 22:50:24 +0000869 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +0000870 // FIXME: since this depends on the setting of the carry flag from the srawi
871 // we should really be making notes about that for the scheduler.
872 // FIXME: It sure would be nice if we could cheaply recognize the
873 // srl/add/sra pattern the dag combiner will generate for this as
874 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +0000875 unsigned Imm;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000876 if (isInt32Immediate(N->getOperand(1), Imm)) {
Evan Cheng6da2f322006-08-26 01:07:58 +0000877 SDOperand N0 = N->getOperand(0);
878 AddToISelQueue(N0);
Chris Lattner8784a232005-08-25 17:50:06 +0000879 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000880 SDNode *Op =
Chris Lattner8784a232005-08-25 17:50:06 +0000881 CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
Evan Cheng34167212006-02-09 00:37:58 +0000882 N0, getI32Imm(Log2_32(Imm)));
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000883 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Evan Cheng95514ba2006-08-26 08:00:10 +0000884 SDOperand(Op, 0), SDOperand(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +0000885 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000886 SDNode *Op =
Chris Lattner2501d5e2005-08-30 17:13:58 +0000887 CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
Evan Cheng34167212006-02-09 00:37:58 +0000888 N0, getI32Imm(Log2_32(-Imm)));
Chris Lattner8784a232005-08-25 17:50:06 +0000889 SDOperand PT =
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000890 SDOperand(CurDAG->getTargetNode(PPC::ADDZE, MVT::i32,
891 SDOperand(Op, 0), SDOperand(Op, 1)),
892 0);
Evan Cheng95514ba2006-08-26 08:00:10 +0000893 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +0000894 }
895 }
Chris Lattner047b9522005-08-25 22:04:30 +0000896
Chris Lattner237733e2005-09-29 23:33:31 +0000897 // Other cases are autogenerated.
898 break;
Chris Lattner047b9522005-08-25 22:04:30 +0000899 }
Chris Lattner4eab7142006-11-10 02:08:47 +0000900
901 case ISD::LOAD: {
902 // Handle preincrement loads.
903 LoadSDNode *LD = cast<LoadSDNode>(Op);
904 MVT::ValueType LoadedVT = LD->getLoadedVT();
905
906 // Normal loads are handled by code generated from the .td file.
907 if (LD->getAddressingMode() != ISD::PRE_INC)
908 break;
909
Chris Lattner4eab7142006-11-10 02:08:47 +0000910 SDOperand Offset = LD->getOffset();
Chris Lattner5b3bbc72006-11-11 04:53:30 +0000911 if (isa<ConstantSDNode>(Offset) ||
912 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000913
914 unsigned Opcode;
915 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
916 if (LD->getValueType(0) != MVT::i64) {
917 // Handle PPC32 integer and normal FP loads.
918 assert(!isSExt || LoadedVT == MVT::i16 && "Invalid sext update load");
919 switch (LoadedVT) {
920 default: assert(0 && "Invalid PPC load type!");
921 case MVT::f64: Opcode = PPC::LFDU; break;
922 case MVT::f32: Opcode = PPC::LFSU; break;
923 case MVT::i32: Opcode = PPC::LWZU; break;
924 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
925 case MVT::i1:
926 case MVT::i8: Opcode = PPC::LBZU; break;
927 }
928 } else {
929 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
930 assert(!isSExt || LoadedVT == MVT::i16 && "Invalid sext update load");
931 switch (LoadedVT) {
932 default: assert(0 && "Invalid PPC load type!");
933 case MVT::i64: Opcode = PPC::LDU; break;
934 case MVT::i32: Opcode = PPC::LWZU8; break;
935 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
936 case MVT::i1:
937 case MVT::i8: Opcode = PPC::LBZU8; break;
938 }
939 }
940
Chris Lattner4eab7142006-11-10 02:08:47 +0000941 SDOperand Chain = LD->getChain();
942 SDOperand Base = LD->getBasePtr();
943 AddToISelQueue(Chain);
944 AddToISelQueue(Base);
945 AddToISelQueue(Offset);
946 SDOperand Ops[] = { Offset, Base, Chain };
947 // FIXME: PPC64
948 return CurDAG->getTargetNode(Opcode, MVT::i32, MVT::i32,
949 MVT::Other, Ops, 3);
950 } else {
951 assert(0 && "R+R preindex loads not supported yet!");
952 }
953 }
954
Nate Begemancffc32b2005-08-18 07:30:46 +0000955 case ISD::AND: {
Nate Begemanf42f1332006-09-22 05:01:56 +0000956 unsigned Imm, Imm2, SH, MB, ME;
957
Nate Begemancffc32b2005-08-18 07:30:46 +0000958 // If this is an and of a value rotated between 0 and 31 bits and then and'd
959 // with a mask, emit rlwinm
Chris Lattnerc08f9022006-06-27 00:04:13 +0000960 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begemanf42f1332006-09-22 05:01:56 +0000961 isRotateAndMask(N->getOperand(0).Val, Imm, false, SH, MB, ME)) {
962 SDOperand Val = N->getOperand(0).getOperand(0);
963 AddToISelQueue(Val);
Evan Cheng0b828e02006-08-27 08:14:06 +0000964 SDOperand Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
965 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemancffc32b2005-08-18 07:30:46 +0000966 }
Nate Begemanf42f1332006-09-22 05:01:56 +0000967 // If this is just a masked value where the input is not handled above, and
968 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
969 if (isInt32Immediate(N->getOperand(1), Imm) &&
970 isRunOfOnes(Imm, MB, ME) &&
971 N->getOperand(0).getOpcode() != ISD::ROTL) {
972 SDOperand Val = N->getOperand(0);
973 AddToISelQueue(Val);
974 SDOperand Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
975 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
976 }
977 // AND X, 0 -> 0, not "rlwinm 32".
978 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
979 AddToISelQueue(N->getOperand(1));
980 ReplaceUses(SDOperand(N, 0), N->getOperand(1));
981 return NULL;
982 }
Nate Begeman50fb3c42005-12-24 01:00:15 +0000983 // ISD::OR doesn't get all the bitfield insertion fun.
984 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Chris Lattnerc08f9022006-06-27 00:04:13 +0000985 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman50fb3c42005-12-24 01:00:15 +0000986 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000987 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +0000988 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +0000989 Imm = ~(Imm^Imm2);
990 if (isRunOfOnes(Imm, MB, ME)) {
Evan Cheng6da2f322006-08-26 01:07:58 +0000991 AddToISelQueue(N->getOperand(0).getOperand(0));
992 AddToISelQueue(N->getOperand(0).getOperand(1));
Evan Cheng0b828e02006-08-27 08:14:06 +0000993 SDOperand Ops[] = { N->getOperand(0).getOperand(0),
994 N->getOperand(0).getOperand(1),
995 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
996 return CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32, Ops, 5);
Nate Begeman50fb3c42005-12-24 01:00:15 +0000997 }
998 }
Chris Lattner237733e2005-09-29 23:33:31 +0000999
1000 // Other cases are autogenerated.
1001 break;
Nate Begemancffc32b2005-08-18 07:30:46 +00001002 }
Nate Begeman02b88a42005-08-19 00:38:14 +00001003 case ISD::OR:
Chris Lattnercccef1c2006-06-27 21:08:52 +00001004 if (N->getValueType(0) == MVT::i32)
Chris Lattnerccbe2ec2006-08-15 23:48:22 +00001005 if (SDNode *I = SelectBitfieldInsert(N))
1006 return I;
Chris Lattnerd3d2cf52005-09-29 00:59:32 +00001007
Chris Lattner237733e2005-09-29 23:33:31 +00001008 // Other cases are autogenerated.
1009 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001010 case ISD::SHL: {
1011 unsigned Imm, SH, MB, ME;
1012 if (isOpcWithIntImmediate(N->getOperand(0).Val, ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001013 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Evan Cheng6da2f322006-08-26 01:07:58 +00001014 AddToISelQueue(N->getOperand(0).getOperand(0));
Evan Cheng0b828e02006-08-27 08:14:06 +00001015 SDOperand Ops[] = { N->getOperand(0).getOperand(0),
1016 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
1017 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001018 }
Nate Begeman2d5aff72005-10-19 18:42:01 +00001019
1020 // Other cases are autogenerated.
1021 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001022 }
1023 case ISD::SRL: {
1024 unsigned Imm, SH, MB, ME;
1025 if (isOpcWithIntImmediate(N->getOperand(0).Val, ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001026 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Evan Cheng6da2f322006-08-26 01:07:58 +00001027 AddToISelQueue(N->getOperand(0).getOperand(0));
Evan Cheng0b828e02006-08-27 08:14:06 +00001028 SDOperand Ops[] = { N->getOperand(0).getOperand(0),
1029 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
1030 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001031 }
Nate Begeman2d5aff72005-10-19 18:42:01 +00001032
1033 // Other cases are autogenerated.
1034 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001035 }
Chris Lattner13794f52005-08-26 18:46:49 +00001036 case ISD::SELECT_CC: {
1037 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1038
Chris Lattnerc08f9022006-06-27 00:04:13 +00001039 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Chris Lattner13794f52005-08-26 18:46:49 +00001040 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1041 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1042 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1043 if (N1C->isNullValue() && N3C->isNullValue() &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001044 N2C->getValue() == 1ULL && CC == ISD::SETNE &&
1045 // FIXME: Implement this optzn for PPC64.
1046 N->getValueType(0) == MVT::i32) {
Evan Cheng6da2f322006-08-26 01:07:58 +00001047 AddToISelQueue(N->getOperand(0));
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001048 SDNode *Tmp =
Chris Lattner13794f52005-08-26 18:46:49 +00001049 CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
Evan Cheng6da2f322006-08-26 01:07:58 +00001050 N->getOperand(0), getI32Imm(~0U));
Chris Lattnerccbe2ec2006-08-15 23:48:22 +00001051 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
Evan Cheng6da2f322006-08-26 01:07:58 +00001052 SDOperand(Tmp, 0), N->getOperand(0),
Evan Cheng95514ba2006-08-26 08:00:10 +00001053 SDOperand(Tmp, 1));
Chris Lattner13794f52005-08-26 18:46:49 +00001054 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001055
Chris Lattner50ff55c2005-09-01 19:20:44 +00001056 SDOperand CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00001057 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001058
Chris Lattner919c0322005-10-01 01:35:02 +00001059 unsigned SelectCCOp;
Chris Lattnerc08f9022006-06-27 00:04:13 +00001060 if (N->getValueType(0) == MVT::i32)
1061 SelectCCOp = PPC::SELECT_CC_I4;
1062 else if (N->getValueType(0) == MVT::i64)
1063 SelectCCOp = PPC::SELECT_CC_I8;
Chris Lattner919c0322005-10-01 01:35:02 +00001064 else if (N->getValueType(0) == MVT::f32)
1065 SelectCCOp = PPC::SELECT_CC_F4;
Chris Lattner710ff322006-04-08 22:45:08 +00001066 else if (N->getValueType(0) == MVT::f64)
Chris Lattner919c0322005-10-01 01:35:02 +00001067 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner710ff322006-04-08 22:45:08 +00001068 else
1069 SelectCCOp = PPC::SELECT_CC_VRRC;
1070
Evan Cheng6da2f322006-08-26 01:07:58 +00001071 AddToISelQueue(N->getOperand(2));
1072 AddToISelQueue(N->getOperand(3));
Evan Cheng0b828e02006-08-27 08:14:06 +00001073 SDOperand Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
1074 getI32Imm(BROpc) };
1075 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattner13794f52005-08-26 18:46:49 +00001076 }
Chris Lattner18258c62006-11-17 22:37:34 +00001077 case PPCISD::COND_BRANCH: {
1078 AddToISelQueue(N->getOperand(0)); // Op #0 is the Chain.
1079 // Op #1 is the PPC::PRED_* number.
1080 // Op #2 is the CR#
1081 // Op #3 is the Dest MBB
1082 AddToISelQueue(N->getOperand(4)); // Op #4 is the Flag.
1083 SDOperand Ops[] = { N->getOperand(1), N->getOperand(2), N->getOperand(3),
1084 N->getOperand(0), N->getOperand(4) };
1085 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
1086 }
Nate Begeman81e80972006-03-17 01:40:33 +00001087 case ISD::BR_CC: {
Evan Cheng6da2f322006-08-26 01:07:58 +00001088 AddToISelQueue(N->getOperand(0));
Chris Lattner2fbb4572005-08-21 18:50:37 +00001089 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
1090 SDOperand CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC);
Chris Lattner18258c62006-11-17 22:37:34 +00001091 SDOperand Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Cheng0b828e02006-08-27 08:14:06 +00001092 N->getOperand(4), N->getOperand(0) };
Chris Lattner289c2d52006-11-17 22:14:47 +00001093 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001094 }
Nate Begeman37efe672006-04-22 18:53:45 +00001095 case ISD::BRIND: {
Chris Lattnercf006312006-06-10 01:15:02 +00001096 // FIXME: Should custom lower this.
Evan Cheng6da2f322006-08-26 01:07:58 +00001097 SDOperand Chain = N->getOperand(0);
1098 SDOperand Target = N->getOperand(1);
1099 AddToISelQueue(Chain);
1100 AddToISelQueue(Target);
Chris Lattner6b76b962006-06-27 20:46:17 +00001101 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
1102 Chain = SDOperand(CurDAG->getTargetNode(Opc, MVT::Other, Target,
Nate Begeman37efe672006-04-22 18:53:45 +00001103 Chain), 0);
Evan Cheng95514ba2006-08-26 08:00:10 +00001104 return CurDAG->SelectNodeTo(N, PPC::BCTR, MVT::Other, Chain);
Nate Begeman37efe672006-04-22 18:53:45 +00001105 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001106 }
Chris Lattner25dae722005-09-03 00:53:47 +00001107
Evan Cheng9ade2182006-08-26 05:34:46 +00001108 return SelectCode(Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001109}
1110
1111
Chris Lattnercf006312006-06-10 01:15:02 +00001112
Nate Begeman1d9d7422005-10-18 00:28:58 +00001113/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001114/// PowerPC-specific DAG, ready for instruction scheduling.
1115///
Evan Chengc4c62572006-03-13 23:20:37 +00001116FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman1d9d7422005-10-18 00:28:58 +00001117 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001118}
1119