blob: 1dea2eec4b95550ff653c75bb91db9dbc94528ed [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 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;
Evan Cheng152b7e12007-10-23 06:42:42 +000045 const PPCSubtarget &PPCSubTarget;
Chris Lattner4416f1a2005-08-19 22:38:53 +000046 unsigned GlobalBaseReg;
Chris Lattnera5a91b12005-08-17 19:33:03 +000047 public:
Chris Lattner4bb18952006-03-16 18:25:23 +000048 PPCDAGToDAGISel(PPCTargetMachine &tm)
49 : SelectionDAGISel(PPCLowering), TM(tm),
Evan Cheng152b7e12007-10-23 06:42:42 +000050 PPCLowering(*TM.getTargetLowering()),
51 PPCSubTarget(*TM.getSubtargetImpl()) {}
Chris Lattnera5a91b12005-08-17 19:33:03 +000052
Chris Lattner4416f1a2005-08-19 22:38:53 +000053 virtual bool runOnFunction(Function &Fn) {
54 // Make sure we re-emit a set of the global base reg if necessary
55 GlobalBaseReg = 0;
Chris Lattner4bb18952006-03-16 18:25:23 +000056 SelectionDAGISel::runOnFunction(Fn);
57
58 InsertVRSaveCode(Fn);
59 return true;
Chris Lattner4416f1a2005-08-19 22:38:53 +000060 }
61
Chris Lattnera5a91b12005-08-17 19:33:03 +000062 /// getI32Imm - Return a target constant with the specified value, of type
63 /// i32.
64 inline SDOperand getI32Imm(unsigned Imm) {
65 return CurDAG->getTargetConstant(Imm, MVT::i32);
66 }
Chris Lattner4416f1a2005-08-19 22:38:53 +000067
Chris Lattnerc08f9022006-06-27 00:04:13 +000068 /// getI64Imm - Return a target constant with the specified value, of type
69 /// i64.
70 inline SDOperand getI64Imm(uint64_t Imm) {
71 return CurDAG->getTargetConstant(Imm, MVT::i64);
72 }
73
74 /// getSmallIPtrImm - Return a target constant of pointer type.
75 inline SDOperand getSmallIPtrImm(unsigned Imm) {
76 return CurDAG->getTargetConstant(Imm, PPCLowering.getPointerTy());
77 }
78
Nate Begemanf42f1332006-09-22 05:01:56 +000079 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
80 /// with any number of 0s on either side. The 1s are allowed to wrap from
81 /// LSB to MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.
82 /// 0x0F0F0000 is not, since all 1s are not contiguous.
83 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
84
85
86 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
87 /// rotate and mask opcode and mask operation.
88 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool IsShiftMask,
89 unsigned &SH, unsigned &MB, unsigned &ME);
Chris Lattnerc08f9022006-06-27 00:04:13 +000090
Chris Lattner4416f1a2005-08-19 22:38:53 +000091 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
92 /// base register. Return the virtual register that holds this value.
Evan Cheng9ade2182006-08-26 05:34:46 +000093 SDNode *getGlobalBaseReg();
Chris Lattnera5a91b12005-08-17 19:33:03 +000094
95 // Select - Convert the specified operand from a target-independent to a
96 // target-specific node if it hasn't already been changed.
Evan Cheng9ade2182006-08-26 05:34:46 +000097 SDNode *Select(SDOperand Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +000098
Nate Begeman02b88a42005-08-19 00:38:14 +000099 SDNode *SelectBitfieldInsert(SDNode *N);
100
Chris Lattner2fbb4572005-08-21 18:50:37 +0000101 /// SelectCC - Select a comparison of the specified values with the
102 /// specified condition code, returning the CR# of the expression.
103 SDOperand SelectCC(SDOperand LHS, SDOperand RHS, ISD::CondCode CC);
104
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000105 /// SelectAddrImm - Returns true if the address N can be represented by
106 /// a base register plus a signed 16-bit displacement [r+imm].
Evan Cheng0d538262006-11-08 20:34:28 +0000107 bool SelectAddrImm(SDOperand Op, SDOperand N, SDOperand &Disp,
108 SDOperand &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000109 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
110 }
Chris Lattner74531e42006-11-16 00:41:37 +0000111
112 /// SelectAddrImmOffs - Return true if the operand is valid for a preinc
113 /// immediate field. Because preinc imms have already been validated, just
114 /// accept it.
115 bool SelectAddrImmOffs(SDOperand Op, SDOperand N, SDOperand &Out) const {
116 Out = N;
117 return true;
118 }
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000119
120 /// SelectAddrIdx - Given the specified addressed, check to see if it can be
121 /// represented as an indexed [r+r] operation. Returns false if it can
122 /// be represented by [r+imm], which are preferred.
Evan Cheng0d538262006-11-08 20:34:28 +0000123 bool SelectAddrIdx(SDOperand Op, SDOperand N, SDOperand &Base,
124 SDOperand &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000125 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
126 }
Nate Begemanf43a3ca2005-11-30 08:22:07 +0000127
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000128 /// SelectAddrIdxOnly - Given the specified addressed, force it to be
129 /// represented as an indexed [r+r] operation.
Evan Cheng0d538262006-11-08 20:34:28 +0000130 bool SelectAddrIdxOnly(SDOperand Op, SDOperand N, SDOperand &Base,
131 SDOperand &Index) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000132 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
133 }
Chris Lattner9944b762005-08-21 22:31:09 +0000134
Chris Lattnere5ba5802006-03-22 05:26:03 +0000135 /// SelectAddrImmShift - Returns true if the address N can be represented by
136 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitable
137 /// for use by STD and friends.
Evan Cheng0d538262006-11-08 20:34:28 +0000138 bool SelectAddrImmShift(SDOperand Op, SDOperand N, SDOperand &Disp,
139 SDOperand &Base) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000140 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
141 }
142
Chris Lattnere5d88612006-02-24 02:13:12 +0000143 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
144 /// inline asm expressions.
145 virtual bool SelectInlineAsmMemoryOperand(const SDOperand &Op,
146 char ConstraintCode,
147 std::vector<SDOperand> &OutOps,
148 SelectionDAG &DAG) {
149 SDOperand Op0, Op1;
150 switch (ConstraintCode) {
151 default: return true;
152 case 'm': // memory
Evan Cheng0d538262006-11-08 20:34:28 +0000153 if (!SelectAddrIdx(Op, Op, Op0, Op1))
154 SelectAddrImm(Op, Op, Op0, Op1);
Chris Lattnere5d88612006-02-24 02:13:12 +0000155 break;
156 case 'o': // offsetable
Evan Cheng0d538262006-11-08 20:34:28 +0000157 if (!SelectAddrImm(Op, Op, Op0, Op1)) {
Evan Cheng6da2f322006-08-26 01:07:58 +0000158 Op0 = Op;
159 AddToISelQueue(Op0); // r+0.
Chris Lattnerc08f9022006-06-27 00:04:13 +0000160 Op1 = getSmallIPtrImm(0);
Chris Lattnere5d88612006-02-24 02:13:12 +0000161 }
162 break;
163 case 'v': // not offsetable
Evan Cheng0d538262006-11-08 20:34:28 +0000164 SelectAddrIdxOnly(Op, Op, Op0, Op1);
Chris Lattnere5d88612006-02-24 02:13:12 +0000165 break;
166 }
167
168 OutOps.push_back(Op0);
169 OutOps.push_back(Op1);
170 return false;
171 }
172
Chris Lattner047b9522005-08-25 22:04:30 +0000173 SDOperand BuildSDIVSequence(SDNode *N);
174 SDOperand BuildUDIVSequence(SDNode *N);
175
Evan Chengdb8d56b2008-06-30 20:45:06 +0000176 /// InstructionSelect - This callback is invoked by
Chris Lattnera5a91b12005-08-17 19:33:03 +0000177 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Evan Chengdb8d56b2008-06-30 20:45:06 +0000178 virtual void InstructionSelect(SelectionDAG &DAG);
Chris Lattnerbd937b92005-10-06 18:45:51 +0000179
Chris Lattner4bb18952006-03-16 18:25:23 +0000180 void InsertVRSaveCode(Function &Fn);
181
Chris Lattnera5a91b12005-08-17 19:33:03 +0000182 virtual const char *getPassName() const {
183 return "PowerPC DAG->DAG Pattern Instruction Selection";
184 }
Chris Lattnerc6644182006-03-07 06:32:48 +0000185
Chris Lattnerc04ba7a2006-05-16 23:54:25 +0000186 /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
187 /// this target when scheduling the DAG.
Chris Lattnerb0d21ef2006-03-08 04:25:59 +0000188 virtual HazardRecognizer *CreateTargetHazardRecognizer() {
Chris Lattnerc6644182006-03-07 06:32:48 +0000189 // Should use subtarget info to pick the right hazard recognizer. For
190 // now, always return a PPC970 recognizer.
Chris Lattner88d211f2006-03-12 09:13:49 +0000191 const TargetInstrInfo *II = PPCLowering.getTargetMachine().getInstrInfo();
192 assert(II && "No InstrInfo?");
193 return new PPCHazardRecognizer970(*II);
Chris Lattnerc6644182006-03-07 06:32:48 +0000194 }
Chris Lattneraf165382005-09-13 22:03:06 +0000195
196// Include the pieces autogenerated from the target description.
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000197#include "PPCGenDAGISel.inc"
Chris Lattnerbd937b92005-10-06 18:45:51 +0000198
199private:
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000200 SDNode *SelectSETCC(SDOperand Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +0000201 };
202}
203
Evan Chengdb8d56b2008-06-30 20:45:06 +0000204/// InstructionSelect - This callback is invoked by
Chris Lattnerbd937b92005-10-06 18:45:51 +0000205/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Evan Chengdb8d56b2008-06-30 20:45:06 +0000206void PPCDAGToDAGISel::InstructionSelect(SelectionDAG &DAG) {
Chris Lattnerbd937b92005-10-06 18:45:51 +0000207 DEBUG(BB->dump());
Evan Cheng33e9ad92006-07-27 06:40:15 +0000208
Chris Lattnerbd937b92005-10-06 18:45:51 +0000209 // Select target instructions for the DAG.
Evan Chengba2f0a92006-02-05 06:46:41 +0000210 DAG.setRoot(SelectRoot(DAG.getRoot()));
Chris Lattnerbd937b92005-10-06 18:45:51 +0000211 DAG.RemoveDeadNodes();
Chris Lattner4bb18952006-03-16 18:25:23 +0000212}
213
214/// InsertVRSaveCode - Once the entire function has been instruction selected,
215/// all virtual registers are created and all machine instructions are built,
216/// check to see if we need to save/restore VRSAVE. If so, do it.
217void PPCDAGToDAGISel::InsertVRSaveCode(Function &F) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000218 // Check to see if this function uses vector registers, which means we have to
219 // save and restore the VRSAVE register and update it with the regs we use.
220 //
221 // In this case, there will be virtual registers of vector type type created
222 // by the scheduler. Detect them now.
Chris Lattner4bb18952006-03-16 18:25:23 +0000223 MachineFunction &Fn = MachineFunction::get(&F);
Chris Lattner1877ec92006-03-13 21:52:10 +0000224 bool HasVectorVReg = false;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000225 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000226 e = RegInfo->getLastVirtReg()+1; i != e; ++i)
227 if (RegInfo->getRegClass(i) == &PPC::VRRCRegClass) {
Chris Lattner1877ec92006-03-13 21:52:10 +0000228 HasVectorVReg = true;
229 break;
230 }
Chris Lattner4bb18952006-03-16 18:25:23 +0000231 if (!HasVectorVReg) return; // nothing to do.
232
Chris Lattner1877ec92006-03-13 21:52:10 +0000233 // If we have a vector register, we want to emit code into the entry and exit
234 // blocks to save and restore the VRSAVE register. We do this here (instead
235 // of marking all vector instructions as clobbering VRSAVE) for two reasons:
236 //
237 // 1. This (trivially) reduces the load on the register allocator, by not
238 // having to represent the live range of the VRSAVE register.
239 // 2. This (more significantly) allows us to create a temporary virtual
240 // register to hold the saved VRSAVE value, allowing this temporary to be
241 // register allocated, instead of forcing it to be spilled to the stack.
Chris Lattner4bb18952006-03-16 18:25:23 +0000242
243 // Create two vregs - one to hold the VRSAVE register that is live-in to the
244 // function and one for the value after having bits or'd into it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000245 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
246 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
Chris Lattner4bb18952006-03-16 18:25:23 +0000247
Evan Chengc0f64ff2006-11-27 23:37:22 +0000248 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4bb18952006-03-16 18:25:23 +0000249 MachineBasicBlock &EntryBB = *Fn.begin();
250 // Emit the following code into the entry block:
251 // InVRSAVE = MFVRSAVE
252 // UpdatedVRSAVE = UPDATE_VRSAVE InVRSAVE
253 // MTVRSAVE UpdatedVRSAVE
254 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
Evan Chengc0f64ff2006-11-27 23:37:22 +0000255 BuildMI(EntryBB, IP, TII.get(PPC::MFVRSAVE), InVRSAVE);
Chris Lattner69244302008-01-07 01:56:04 +0000256 BuildMI(EntryBB, IP, TII.get(PPC::UPDATE_VRSAVE),
257 UpdatedVRSAVE).addReg(InVRSAVE);
Evan Chengc0f64ff2006-11-27 23:37:22 +0000258 BuildMI(EntryBB, IP, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
Chris Lattner4bb18952006-03-16 18:25:23 +0000259
260 // Find all return blocks, outputting a restore in each epilog.
Chris Lattner4bb18952006-03-16 18:25:23 +0000261 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000262 if (!BB->empty() && BB->back().getDesc().isReturn()) {
Chris Lattner4bb18952006-03-16 18:25:23 +0000263 IP = BB->end(); --IP;
264
265 // Skip over all terminator instructions, which are part of the return
266 // sequence.
267 MachineBasicBlock::iterator I2 = IP;
Chris Lattner749c6f62008-01-07 07:27:27 +0000268 while (I2 != BB->begin() && (--I2)->getDesc().isTerminator())
Chris Lattner4bb18952006-03-16 18:25:23 +0000269 IP = I2;
270
271 // Emit: MTVRSAVE InVRSave
Evan Chengc0f64ff2006-11-27 23:37:22 +0000272 BuildMI(*BB, IP, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
Chris Lattner4bb18952006-03-16 18:25:23 +0000273 }
Chris Lattner1877ec92006-03-13 21:52:10 +0000274 }
Chris Lattnerbd937b92005-10-06 18:45:51 +0000275}
Chris Lattner6cd40d52005-09-03 01:17:22 +0000276
Chris Lattner4bb18952006-03-16 18:25:23 +0000277
Chris Lattner4416f1a2005-08-19 22:38:53 +0000278/// getGlobalBaseReg - Output the instructions required to put the
279/// base address to use for accessing globals into a register.
280///
Evan Cheng9ade2182006-08-26 05:34:46 +0000281SDNode *PPCDAGToDAGISel::getGlobalBaseReg() {
Chris Lattner4416f1a2005-08-19 22:38:53 +0000282 if (!GlobalBaseReg) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000283 const TargetInstrInfo &TII = *TM.getInstrInfo();
Chris Lattner4416f1a2005-08-19 22:38:53 +0000284 // Insert the set of GlobalBaseReg into the first MBB of the function
285 MachineBasicBlock &FirstMBB = BB->getParent()->front();
286 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000287
Chris Lattnerd1043422006-11-14 18:43:11 +0000288 if (PPCLowering.getPointerTy() == MVT::i32) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000289 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::GPRCRegisterClass);
Evan Chengc0f64ff2006-11-27 23:37:22 +0000290 BuildMI(FirstMBB, MBBI, TII.get(PPC::MovePCtoLR), PPC::LR);
291 BuildMI(FirstMBB, MBBI, TII.get(PPC::MFLR), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000292 } else {
Chris Lattner84bc5422007-12-31 04:13:23 +0000293 GlobalBaseReg = RegInfo->createVirtualRegister(PPC::G8RCRegisterClass);
Evan Chengc0f64ff2006-11-27 23:37:22 +0000294 BuildMI(FirstMBB, MBBI, TII.get(PPC::MovePCtoLR8), PPC::LR8);
295 BuildMI(FirstMBB, MBBI, TII.get(PPC::MFLR8), GlobalBaseReg);
Chris Lattnerd1043422006-11-14 18:43:11 +0000296 }
Chris Lattner4416f1a2005-08-19 22:38:53 +0000297 }
Evan Cheng9ade2182006-08-26 05:34:46 +0000298 return CurDAG->getRegister(GlobalBaseReg, PPCLowering.getPointerTy()).Val;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000299}
300
301/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
302/// or 64-bit immediate, and if the value can be accurately represented as a
303/// sign extension from a 16-bit value. If so, this returns true and the
304/// immediate.
305static bool isIntS16Immediate(SDNode *N, short &Imm) {
306 if (N->getOpcode() != ISD::Constant)
307 return false;
308
309 Imm = (short)cast<ConstantSDNode>(N)->getValue();
310 if (N->getValueType(0) == MVT::i32)
311 return Imm == (int32_t)cast<ConstantSDNode>(N)->getValue();
312 else
313 return Imm == (int64_t)cast<ConstantSDNode>(N)->getValue();
314}
315
316static bool isIntS16Immediate(SDOperand Op, short &Imm) {
317 return isIntS16Immediate(Op.Val, Imm);
Chris Lattner4416f1a2005-08-19 22:38:53 +0000318}
319
320
Chris Lattnerc08f9022006-06-27 00:04:13 +0000321/// isInt32Immediate - This method tests to see if the node is a 32-bit constant
322/// operand. If so Imm will receive the 32-bit value.
323static bool isInt32Immediate(SDNode *N, unsigned &Imm) {
324 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i32) {
Nate Begeman0f3257a2005-08-18 05:00:13 +0000325 Imm = cast<ConstantSDNode>(N)->getValue();
326 return true;
327 }
328 return false;
329}
330
Chris Lattnerc08f9022006-06-27 00:04:13 +0000331/// isInt64Immediate - This method tests to see if the node is a 64-bit constant
332/// operand. If so Imm will receive the 64-bit value.
333static bool isInt64Immediate(SDNode *N, uint64_t &Imm) {
Chris Lattner71176242006-09-20 04:33:27 +0000334 if (N->getOpcode() == ISD::Constant && N->getValueType(0) == MVT::i64) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000335 Imm = cast<ConstantSDNode>(N)->getValue();
336 return true;
337 }
338 return false;
339}
340
341// isInt32Immediate - This method tests to see if a constant operand.
342// If so Imm will receive the 32 bit value.
343static bool isInt32Immediate(SDOperand N, unsigned &Imm) {
344 return isInt32Immediate(N.Val, Imm);
345}
346
347
348// isOpcWithIntImmediate - This method tests to see if the node is a specific
349// opcode and that it has a immediate integer right operand.
350// If so Imm will receive the 32 bit value.
351static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
352 return N->getOpcode() == Opc && isInt32Immediate(N->getOperand(1).Val, Imm);
353}
354
Nate Begemanf42f1332006-09-22 05:01:56 +0000355bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000356 if (isShiftedMask_32(Val)) {
357 // look for the first non-zero bit
358 MB = CountLeadingZeros_32(Val);
359 // look for the first zero bit after the run of ones
360 ME = CountLeadingZeros_32((Val - 1) ^ Val);
361 return true;
Chris Lattner2fe76e52005-08-25 04:47:18 +0000362 } else {
363 Val = ~Val; // invert mask
364 if (isShiftedMask_32(Val)) {
365 // effectively look for the first zero bit
366 ME = CountLeadingZeros_32(Val) - 1;
367 // effectively look for the first one bit after the run of zeros
368 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
369 return true;
370 }
Nate Begemancffc32b2005-08-18 07:30:46 +0000371 }
372 // no run present
373 return false;
374}
375
Nate Begemanf42f1332006-09-22 05:01:56 +0000376bool PPCDAGToDAGISel::isRotateAndMask(SDNode *N, unsigned Mask,
377 bool IsShiftMask, unsigned &SH,
378 unsigned &MB, unsigned &ME) {
Nate Begemanda32c9e2005-10-19 00:05:37 +0000379 // Don't even go down this path for i64, since different logic will be
380 // necessary for rldicl/rldicr/rldimi.
381 if (N->getValueType(0) != MVT::i32)
382 return false;
383
Nate Begemancffc32b2005-08-18 07:30:46 +0000384 unsigned Shift = 32;
385 unsigned Indeterminant = ~0; // bit mask marking indeterminant results
386 unsigned Opcode = N->getOpcode();
Chris Lattner15055732005-08-30 00:59:16 +0000387 if (N->getNumOperands() != 2 ||
Chris Lattnerc08f9022006-06-27 00:04:13 +0000388 !isInt32Immediate(N->getOperand(1).Val, Shift) || (Shift > 31))
Nate Begemancffc32b2005-08-18 07:30:46 +0000389 return false;
390
391 if (Opcode == ISD::SHL) {
392 // apply shift left to mask if it comes first
393 if (IsShiftMask) Mask = Mask << Shift;
394 // determine which bits are made indeterminant by shift
395 Indeterminant = ~(0xFFFFFFFFu << Shift);
Chris Lattner651dea72005-10-15 21:40:12 +0000396 } else if (Opcode == ISD::SRL) {
Nate Begemancffc32b2005-08-18 07:30:46 +0000397 // apply shift right to mask if it comes first
398 if (IsShiftMask) Mask = Mask >> Shift;
399 // determine which bits are made indeterminant by shift
400 Indeterminant = ~(0xFFFFFFFFu >> Shift);
401 // adjust for the left rotate
402 Shift = 32 - Shift;
Nate Begemanf42f1332006-09-22 05:01:56 +0000403 } else if (Opcode == ISD::ROTL) {
404 Indeterminant = 0;
Nate Begemancffc32b2005-08-18 07:30:46 +0000405 } else {
406 return false;
407 }
408
409 // if the mask doesn't intersect any Indeterminant bits
410 if (Mask && !(Mask & Indeterminant)) {
Chris Lattner0949ed52006-05-12 16:29:37 +0000411 SH = Shift & 31;
Nate Begemancffc32b2005-08-18 07:30:46 +0000412 // make sure the mask is still a mask (wrap arounds may not be)
413 return isRunOfOnes(Mask, MB, ME);
414 }
415 return false;
416}
417
Nate Begeman02b88a42005-08-19 00:38:14 +0000418/// SelectBitfieldInsert - turn an or of two masked values into
419/// the rotate left word immediate then mask insert (rlwimi) instruction.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000420SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
Nate Begeman02b88a42005-08-19 00:38:14 +0000421 SDOperand Op0 = N->getOperand(0);
422 SDOperand Op1 = N->getOperand(1);
423
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000424 APInt LKZ, LKO, RKZ, RKO;
425 CurDAG->ComputeMaskedBits(Op0, APInt::getAllOnesValue(32), LKZ, LKO);
426 CurDAG->ComputeMaskedBits(Op1, APInt::getAllOnesValue(32), RKZ, RKO);
Nate Begeman02b88a42005-08-19 00:38:14 +0000427
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000428 unsigned TargetMask = LKZ.getZExtValue();
429 unsigned InsertMask = RKZ.getZExtValue();
Nate Begeman4667f2c2006-05-08 17:38:32 +0000430
431 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
432 unsigned Op0Opc = Op0.getOpcode();
433 unsigned Op1Opc = Op1.getOpcode();
434 unsigned Value, SH = 0;
435 TargetMask = ~TargetMask;
436 InsertMask = ~InsertMask;
Nate Begeman77f361f2006-05-07 00:23:38 +0000437
Nate Begeman4667f2c2006-05-08 17:38:32 +0000438 // If the LHS has a foldable shift and the RHS does not, then swap it to the
439 // RHS so that we can fold the shift into the insert.
Nate Begeman77f361f2006-05-07 00:23:38 +0000440 if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
441 if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
442 Op0.getOperand(0).getOpcode() == ISD::SRL) {
443 if (Op1.getOperand(0).getOpcode() != ISD::SHL &&
444 Op1.getOperand(0).getOpcode() != ISD::SRL) {
445 std::swap(Op0, Op1);
446 std::swap(Op0Opc, Op1Opc);
Nate Begeman4667f2c2006-05-08 17:38:32 +0000447 std::swap(TargetMask, InsertMask);
Nate Begeman77f361f2006-05-07 00:23:38 +0000448 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000449 }
Nate Begeman4667f2c2006-05-08 17:38:32 +0000450 } else if (Op0Opc == ISD::SHL || Op0Opc == ISD::SRL) {
451 if (Op1Opc == ISD::AND && Op1.getOperand(0).getOpcode() != ISD::SHL &&
452 Op1.getOperand(0).getOpcode() != ISD::SRL) {
453 std::swap(Op0, Op1);
454 std::swap(Op0Opc, Op1Opc);
455 std::swap(TargetMask, InsertMask);
456 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000457 }
Nate Begeman77f361f2006-05-07 00:23:38 +0000458
459 unsigned MB, ME;
Chris Lattner0949ed52006-05-12 16:29:37 +0000460 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000461 SDOperand Tmp1, Tmp2, Tmp3;
Nate Begeman4667f2c2006-05-08 17:38:32 +0000462 bool DisjointMask = (TargetMask ^ InsertMask) == 0xFFFFFFFF;
Nate Begeman77f361f2006-05-07 00:23:38 +0000463
464 if ((Op1Opc == ISD::SHL || Op1Opc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000465 isInt32Immediate(Op1.getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000466 Op1 = Op1.getOperand(0);
467 SH = (Op1Opc == ISD::SHL) ? Value : 32 - Value;
468 }
469 if (Op1Opc == ISD::AND) {
470 unsigned SHOpc = Op1.getOperand(0).getOpcode();
471 if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) &&
Chris Lattnerc08f9022006-06-27 00:04:13 +0000472 isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
Nate Begeman77f361f2006-05-07 00:23:38 +0000473 Op1 = Op1.getOperand(0).getOperand(0);
474 SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
475 } else {
476 Op1 = Op1.getOperand(0);
477 }
478 }
479
480 Tmp3 = (Op0Opc == ISD::AND && DisjointMask) ? Op0.getOperand(0) : Op0;
Evan Cheng6da2f322006-08-26 01:07:58 +0000481 AddToISelQueue(Tmp3);
482 AddToISelQueue(Op1);
Chris Lattner0949ed52006-05-12 16:29:37 +0000483 SH &= 31;
Evan Cheng0b828e02006-08-27 08:14:06 +0000484 SDOperand Ops[] = { Tmp3, Op1, getI32Imm(SH), getI32Imm(MB),
485 getI32Imm(ME) };
486 return CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32, Ops, 5);
Nate Begeman02b88a42005-08-19 00:38:14 +0000487 }
Nate Begeman02b88a42005-08-19 00:38:14 +0000488 }
489 return 0;
490}
491
Chris Lattner2fbb4572005-08-21 18:50:37 +0000492/// SelectCC - Select a comparison of the specified values with the specified
493/// condition code, returning the CR# of the expression.
Nate Begeman1d9d7422005-10-18 00:28:58 +0000494SDOperand PPCDAGToDAGISel::SelectCC(SDOperand LHS, SDOperand RHS,
495 ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000496 // Always select the LHS.
Evan Cheng6da2f322006-08-26 01:07:58 +0000497 AddToISelQueue(LHS);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000498 unsigned Opc;
499
500 if (LHS.getValueType() == MVT::i32) {
Chris Lattner529c2332006-06-27 00:10:13 +0000501 unsigned Imm;
Chris Lattner3836dbd2006-09-20 04:25:47 +0000502 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
503 if (isInt32Immediate(RHS, Imm)) {
504 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
505 if (isUInt16(Imm))
506 return SDOperand(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, LHS,
507 getI32Imm(Imm & 0xFFFF)), 0);
508 // If this is a 16-bit signed immediate, fold it.
Chris Lattneraa43e9f2007-04-02 05:59:42 +0000509 if (isInt16((int)Imm))
Chris Lattner3836dbd2006-09-20 04:25:47 +0000510 return SDOperand(CurDAG->getTargetNode(PPC::CMPWI, MVT::i32, LHS,
511 getI32Imm(Imm & 0xFFFF)), 0);
512
513 // For non-equality comparisons, the default code would materialize the
514 // constant, then compare against it, like this:
515 // lis r2, 4660
516 // ori r2, r2, 22136
517 // cmpw cr0, r3, r2
518 // Since we are just comparing for equality, we can emit this instead:
519 // xoris r0,r3,0x1234
520 // cmplwi cr0,r0,0x5678
521 // beq cr0,L6
522 SDOperand Xor(CurDAG->getTargetNode(PPC::XORIS, MVT::i32, LHS,
523 getI32Imm(Imm >> 16)), 0);
524 return SDOperand(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, Xor,
525 getI32Imm(Imm & 0xFFFF)), 0);
526 }
527 Opc = PPC::CMPLW;
528 } else if (ISD::isUnsignedIntSetCC(CC)) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000529 if (isInt32Immediate(RHS, Imm) && isUInt16(Imm))
530 return SDOperand(CurDAG->getTargetNode(PPC::CMPLWI, MVT::i32, LHS,
531 getI32Imm(Imm & 0xFFFF)), 0);
532 Opc = PPC::CMPLW;
533 } else {
534 short SImm;
535 if (isIntS16Immediate(RHS, SImm))
536 return SDOperand(CurDAG->getTargetNode(PPC::CMPWI, MVT::i32, LHS,
537 getI32Imm((int)SImm & 0xFFFF)),
538 0);
539 Opc = PPC::CMPW;
540 }
541 } else if (LHS.getValueType() == MVT::i64) {
542 uint64_t Imm;
Chris Lattner71176242006-09-20 04:33:27 +0000543 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
544 if (isInt64Immediate(RHS.Val, Imm)) {
545 // SETEQ/SETNE comparison with 16-bit immediate, fold it.
546 if (isUInt16(Imm))
547 return SDOperand(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, LHS,
548 getI32Imm(Imm & 0xFFFF)), 0);
549 // If this is a 16-bit signed immediate, fold it.
550 if (isInt16(Imm))
551 return SDOperand(CurDAG->getTargetNode(PPC::CMPDI, MVT::i64, LHS,
552 getI32Imm(Imm & 0xFFFF)), 0);
553
554 // For non-equality comparisons, the default code would materialize the
555 // constant, then compare against it, like this:
556 // lis r2, 4660
557 // ori r2, r2, 22136
558 // cmpd cr0, r3, r2
559 // Since we are just comparing for equality, we can emit this instead:
560 // xoris r0,r3,0x1234
561 // cmpldi cr0,r0,0x5678
562 // beq cr0,L6
563 if (isUInt32(Imm)) {
564 SDOperand Xor(CurDAG->getTargetNode(PPC::XORIS8, MVT::i64, LHS,
565 getI64Imm(Imm >> 16)), 0);
566 return SDOperand(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, Xor,
567 getI64Imm(Imm & 0xFFFF)), 0);
568 }
569 }
570 Opc = PPC::CMPLD;
571 } else if (ISD::isUnsignedIntSetCC(CC)) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000572 if (isInt64Immediate(RHS.Val, Imm) && isUInt16(Imm))
573 return SDOperand(CurDAG->getTargetNode(PPC::CMPLDI, MVT::i64, LHS,
574 getI64Imm(Imm & 0xFFFF)), 0);
575 Opc = PPC::CMPLD;
576 } else {
577 short SImm;
578 if (isIntS16Immediate(RHS, SImm))
579 return SDOperand(CurDAG->getTargetNode(PPC::CMPDI, MVT::i64, LHS,
Chris Lattner71176242006-09-20 04:33:27 +0000580 getI64Imm(SImm & 0xFFFF)),
Chris Lattnerc08f9022006-06-27 00:04:13 +0000581 0);
582 Opc = PPC::CMPD;
583 }
Chris Lattner919c0322005-10-01 01:35:02 +0000584 } else if (LHS.getValueType() == MVT::f32) {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000585 Opc = PPC::FCMPUS;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000586 } else {
Chris Lattnerc08f9022006-06-27 00:04:13 +0000587 assert(LHS.getValueType() == MVT::f64 && "Unknown vt!");
588 Opc = PPC::FCMPUD;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000589 }
Evan Cheng6da2f322006-08-26 01:07:58 +0000590 AddToISelQueue(RHS);
Chris Lattnerc08f9022006-06-27 00:04:13 +0000591 return SDOperand(CurDAG->getTargetNode(Opc, MVT::i32, LHS, RHS), 0);
Chris Lattner2fbb4572005-08-21 18:50:37 +0000592}
593
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000594static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC) {
Chris Lattner2fbb4572005-08-21 18:50:37 +0000595 switch (CC) {
596 default: assert(0 && "Unknown condition!"); abort();
Chris Lattnered048c02005-10-28 20:49:47 +0000597 case ISD::SETOEQ: // FIXME: This is incorrect see PR642.
Chris Lattner5d634ce2006-05-25 16:54:16 +0000598 case ISD::SETUEQ:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000599 case ISD::SETEQ: return PPC::PRED_EQ;
Chris Lattnered048c02005-10-28 20:49:47 +0000600 case ISD::SETONE: // FIXME: This is incorrect see PR642.
Chris Lattner5d634ce2006-05-25 16:54:16 +0000601 case ISD::SETUNE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000602 case ISD::SETNE: return PPC::PRED_NE;
Chris Lattnered048c02005-10-28 20:49:47 +0000603 case ISD::SETOLT: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000604 case ISD::SETULT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000605 case ISD::SETLT: return PPC::PRED_LT;
Chris Lattnered048c02005-10-28 20:49:47 +0000606 case ISD::SETOLE: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000607 case ISD::SETULE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000608 case ISD::SETLE: return PPC::PRED_LE;
Chris Lattnered048c02005-10-28 20:49:47 +0000609 case ISD::SETOGT: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000610 case ISD::SETUGT:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000611 case ISD::SETGT: return PPC::PRED_GT;
Chris Lattnered048c02005-10-28 20:49:47 +0000612 case ISD::SETOGE: // FIXME: This is incorrect see PR642.
Chris Lattner2fbb4572005-08-21 18:50:37 +0000613 case ISD::SETUGE:
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000614 case ISD::SETGE: return PPC::PRED_GE;
Chris Lattner6df25072005-10-28 20:32:44 +0000615
Chris Lattnerdf4ed632006-11-17 22:10:59 +0000616 case ISD::SETO: return PPC::PRED_NU;
617 case ISD::SETUO: return PPC::PRED_UN;
Chris Lattner2fbb4572005-08-21 18:50:37 +0000618 }
Chris Lattner2fbb4572005-08-21 18:50:37 +0000619}
620
Chris Lattner64906a02005-08-25 20:08:18 +0000621/// getCRIdxForSetCC - Return the index of the condition register field
622/// associated with the SetCC condition, and whether or not the field is
623/// treated as inverted. That is, lt = 0; ge = 0 inverted.
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000624///
625/// If this returns with Other != -1, then the returned comparison is an or of
626/// two simpler comparisons. In this case, Invert is guaranteed to be false.
627static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) {
628 Invert = false;
629 Other = -1;
Chris Lattner64906a02005-08-25 20:08:18 +0000630 switch (CC) {
631 default: assert(0 && "Unknown condition!"); abort();
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000632 case ISD::SETOLT:
633 case ISD::SETLT: return 0; // Bit #0 = SETOLT
634 case ISD::SETOGT:
635 case ISD::SETGT: return 1; // Bit #1 = SETOGT
636 case ISD::SETOEQ:
637 case ISD::SETEQ: return 2; // Bit #2 = SETOEQ
638 case ISD::SETUO: return 3; // Bit #3 = SETUO
Chris Lattner64906a02005-08-25 20:08:18 +0000639 case ISD::SETUGE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000640 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
Chris Lattner64906a02005-08-25 20:08:18 +0000641 case ISD::SETULE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000642 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
Chris Lattner8e2a04e2006-05-25 18:06:16 +0000643 case ISD::SETUNE:
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000644 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
645 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
646 case ISD::SETULT: Other = 0; return 3; // SETOLT | SETUO
647 case ISD::SETUGT: Other = 1; return 3; // SETOGT | SETUO
648 case ISD::SETUEQ: Other = 2; return 3; // SETOEQ | SETUO
649 case ISD::SETOGE: Other = 1; return 2; // SETOGT | SETOEQ
650 case ISD::SETOLE: Other = 0; return 2; // SETOLT | SETOEQ
651 case ISD::SETONE: Other = 0; return 1; // SETOLT | SETOGT
Chris Lattner64906a02005-08-25 20:08:18 +0000652 }
653 return 0;
654}
Chris Lattner9944b762005-08-21 22:31:09 +0000655
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000656SDNode *PPCDAGToDAGISel::SelectSETCC(SDOperand Op) {
Chris Lattner222adac2005-10-06 19:03:35 +0000657 SDNode *N = Op.Val;
658 unsigned Imm;
659 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000660 if (isInt32Immediate(N->getOperand(1), Imm)) {
Chris Lattner222adac2005-10-06 19:03:35 +0000661 // We can codegen setcc op, imm very efficiently compared to a brcond.
662 // Check for those cases here.
663 // setcc op, 0
664 if (Imm == 0) {
Evan Cheng6da2f322006-08-26 01:07:58 +0000665 SDOperand Op = N->getOperand(0);
666 AddToISelQueue(Op);
Chris Lattner222adac2005-10-06 19:03:35 +0000667 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000668 default: break;
Evan Cheng0b828e02006-08-27 08:14:06 +0000669 case ISD::SETEQ: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000670 Op = SDOperand(CurDAG->getTargetNode(PPC::CNTLZW, MVT::i32, Op), 0);
Evan Cheng0b828e02006-08-27 08:14:06 +0000671 SDOperand Ops[] = { Op, getI32Imm(27), getI32Imm(5), getI32Imm(31) };
672 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
673 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000674 case ISD::SETNE: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000675 SDOperand AD =
676 SDOperand(CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
677 Op, getI32Imm(~0U)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000678 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000679 AD.getValue(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000680 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000681 case ISD::SETLT: {
682 SDOperand Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
683 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
684 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000685 case ISD::SETGT: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000686 SDOperand T =
687 SDOperand(CurDAG->getTargetNode(PPC::NEG, MVT::i32, Op), 0);
688 T = SDOperand(CurDAG->getTargetNode(PPC::ANDC, MVT::i32, T, Op), 0);
Evan Cheng0b828e02006-08-27 08:14:06 +0000689 SDOperand Ops[] = { T, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
690 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000691 }
692 }
Chris Lattner222adac2005-10-06 19:03:35 +0000693 } else if (Imm == ~0U) { // setcc op, -1
Evan Cheng6da2f322006-08-26 01:07:58 +0000694 SDOperand Op = N->getOperand(0);
695 AddToISelQueue(Op);
Chris Lattner222adac2005-10-06 19:03:35 +0000696 switch (CC) {
Chris Lattnerdabb8292005-10-21 21:17:10 +0000697 default: break;
698 case ISD::SETEQ:
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000699 Op = SDOperand(CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
700 Op, getI32Imm(1)), 0);
Chris Lattner71d3d502005-11-30 22:53:06 +0000701 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000702 SDOperand(CurDAG->getTargetNode(PPC::LI, MVT::i32,
703 getI32Imm(0)), 0),
Evan Cheng95514ba2006-08-26 08:00:10 +0000704 Op.getValue(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000705 case ISD::SETNE: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000706 Op = SDOperand(CurDAG->getTargetNode(PPC::NOR, MVT::i32, Op, Op), 0);
707 SDNode *AD = CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
708 Op, getI32Imm(~0U));
Chris Lattnerc04ba7a2006-05-16 23:54:25 +0000709 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, SDOperand(AD, 0),
Evan Cheng95514ba2006-08-26 08:00:10 +0000710 Op, SDOperand(AD, 1));
Chris Lattner222adac2005-10-06 19:03:35 +0000711 }
Chris Lattnerdabb8292005-10-21 21:17:10 +0000712 case ISD::SETLT: {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000713 SDOperand AD = SDOperand(CurDAG->getTargetNode(PPC::ADDI, MVT::i32, Op,
714 getI32Imm(1)), 0);
715 SDOperand AN = SDOperand(CurDAG->getTargetNode(PPC::AND, MVT::i32, AD,
716 Op), 0);
Evan Cheng0b828e02006-08-27 08:14:06 +0000717 SDOperand Ops[] = { AN, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
718 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerdabb8292005-10-21 21:17:10 +0000719 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000720 case ISD::SETGT: {
721 SDOperand Ops[] = { Op, getI32Imm(1), getI32Imm(31), getI32Imm(31) };
722 Op = SDOperand(CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, Ops, 4), 0);
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000723 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op,
Evan Cheng95514ba2006-08-26 08:00:10 +0000724 getI32Imm(1));
Chris Lattnerdabb8292005-10-21 21:17:10 +0000725 }
Evan Cheng0b828e02006-08-27 08:14:06 +0000726 }
Chris Lattner222adac2005-10-06 19:03:35 +0000727 }
728 }
729
730 bool Inv;
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000731 int OtherCondIdx;
732 unsigned Idx = getCRIdxForSetCC(CC, Inv, OtherCondIdx);
Chris Lattner222adac2005-10-06 19:03:35 +0000733 SDOperand CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
734 SDOperand IntCR;
735
736 // Force the ccreg into CR7.
737 SDOperand CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
738
Chris Lattner85961d52005-12-06 20:56:18 +0000739 SDOperand InFlag(0, 0); // Null incoming flag value.
Chris Lattnerdb1cb2b2005-12-01 03:50:19 +0000740 CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), CR7Reg, CCReg,
741 InFlag).getValue(1);
Chris Lattner222adac2005-10-06 19:03:35 +0000742
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000743 if (PPCSubTarget.isGigaProcessor() && OtherCondIdx == -1)
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000744 IntCR = SDOperand(CurDAG->getTargetNode(PPC::MFOCRF, MVT::i32, CR7Reg,
745 CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000746 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000747 IntCR = SDOperand(CurDAG->getTargetNode(PPC::MFCR, MVT::i32, CCReg), 0);
Chris Lattner222adac2005-10-06 19:03:35 +0000748
Evan Cheng0b828e02006-08-27 08:14:06 +0000749 SDOperand Ops[] = { IntCR, getI32Imm((32-(3-Idx)) & 31),
750 getI32Imm(31), getI32Imm(31) };
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000751 if (OtherCondIdx == -1 && !Inv)
Evan Cheng0b828e02006-08-27 08:14:06 +0000752 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000753
754 // Get the specified bit.
755 SDOperand Tmp =
756 SDOperand(CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, Ops, 4), 0);
757 if (Inv) {
758 assert(OtherCondIdx == -1 && "Can't have split plus negation");
Evan Cheng95514ba2006-08-26 08:00:10 +0000759 return CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
Chris Lattner222adac2005-10-06 19:03:35 +0000760 }
Chris Lattnerfe39edd2008-01-08 06:46:30 +0000761
762 // Otherwise, we have to turn an operation like SETONE -> SETOLT | SETOGT.
763 // We already got the bit for the first part of the comparison (e.g. SETULE).
764
765 // Get the other bit of the comparison.
766 Ops[1] = getI32Imm((32-(3-OtherCondIdx)) & 31);
767 SDOperand OtherCond =
768 SDOperand(CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, Ops, 4), 0);
769
770 return CurDAG->SelectNodeTo(N, PPC::OR, MVT::i32, Tmp, OtherCond);
Chris Lattner222adac2005-10-06 19:03:35 +0000771}
Chris Lattner2b63e4c2005-10-06 18:56:10 +0000772
Chris Lattner6a16f6a2005-10-06 19:07:45 +0000773
Chris Lattnera5a91b12005-08-17 19:33:03 +0000774// Select - Convert the specified operand from a target-independent to a
775// target-specific node if it hasn't already been changed.
Evan Cheng9ade2182006-08-26 05:34:46 +0000776SDNode *PPCDAGToDAGISel::Select(SDOperand Op) {
Chris Lattnera5a91b12005-08-17 19:33:03 +0000777 SDNode *N = Op.Val;
Chris Lattner0bbea952005-08-26 20:25:03 +0000778 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng9ade2182006-08-26 05:34:46 +0000779 N->getOpcode() < PPCISD::FIRST_NUMBER)
Evan Cheng64a752f2006-08-11 09:08:15 +0000780 return NULL; // Already selected.
Chris Lattnerd3d2cf52005-09-29 00:59:32 +0000781
Chris Lattnera5a91b12005-08-17 19:33:03 +0000782 switch (N->getOpcode()) {
Chris Lattner19c09072005-09-07 23:45:15 +0000783 default: break;
Jim Laskey78f97f32006-12-12 13:23:43 +0000784
785 case ISD::Constant: {
786 if (N->getValueType(0) == MVT::i64) {
787 // Get 64 bit value.
788 int64_t Imm = cast<ConstantSDNode>(N)->getValue();
789 // Assume no remaining bits.
790 unsigned Remainder = 0;
791 // Assume no shift required.
792 unsigned Shift = 0;
793
794 // If it can't be represented as a 32 bit value.
795 if (!isInt32(Imm)) {
796 Shift = CountTrailingZeros_64(Imm);
797 int64_t ImmSh = static_cast<uint64_t>(Imm) >> Shift;
798
799 // If the shifted value fits 32 bits.
800 if (isInt32(ImmSh)) {
801 // Go with the shifted value.
802 Imm = ImmSh;
803 } else {
804 // Still stuck with a 64 bit value.
805 Remainder = Imm;
806 Shift = 32;
807 Imm >>= 32;
808 }
809 }
810
811 // Intermediate operand.
812 SDNode *Result;
813
814 // Handle first 32 bits.
815 unsigned Lo = Imm & 0xFFFF;
816 unsigned Hi = (Imm >> 16) & 0xFFFF;
817
818 // Simple value.
819 if (isInt16(Imm)) {
820 // Just the Lo bits.
821 Result = CurDAG->getTargetNode(PPC::LI8, MVT::i64, getI32Imm(Lo));
822 } else if (Lo) {
823 // Handle the Hi bits.
824 unsigned OpC = Hi ? PPC::LIS8 : PPC::LI8;
825 Result = CurDAG->getTargetNode(OpC, MVT::i64, getI32Imm(Hi));
826 // And Lo bits.
827 Result = CurDAG->getTargetNode(PPC::ORI8, MVT::i64,
828 SDOperand(Result, 0), getI32Imm(Lo));
829 } else {
830 // Just the Hi bits.
831 Result = CurDAG->getTargetNode(PPC::LIS8, MVT::i64, getI32Imm(Hi));
832 }
833
834 // If no shift, we're done.
835 if (!Shift) return Result;
836
837 // Shift for next step if the upper 32-bits were not zero.
838 if (Imm) {
839 Result = CurDAG->getTargetNode(PPC::RLDICR, MVT::i64,
840 SDOperand(Result, 0),
841 getI32Imm(Shift), getI32Imm(63 - Shift));
842 }
843
844 // Add in the last bits as required.
845 if ((Hi = (Remainder >> 16) & 0xFFFF)) {
846 Result = CurDAG->getTargetNode(PPC::ORIS8, MVT::i64,
847 SDOperand(Result, 0), getI32Imm(Hi));
848 }
849 if ((Lo = Remainder & 0xFFFF)) {
850 Result = CurDAG->getTargetNode(PPC::ORI8, MVT::i64,
851 SDOperand(Result, 0), getI32Imm(Lo));
852 }
853
854 return Result;
855 }
856 break;
857 }
858
Evan Cheng34167212006-02-09 00:37:58 +0000859 case ISD::SETCC:
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000860 return SelectSETCC(Op);
Evan Cheng34167212006-02-09 00:37:58 +0000861 case PPCISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +0000862 return getGlobalBaseReg();
Chris Lattner860e8862005-11-17 07:30:41 +0000863
Chris Lattnere28e40a2005-08-25 00:45:43 +0000864 case ISD::FrameIndex: {
865 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerc08f9022006-06-27 00:04:13 +0000866 SDOperand TFI = CurDAG->getTargetFrameIndex(FI, Op.getValueType());
867 unsigned Opc = Op.getValueType() == MVT::i32 ? PPC::ADDI : PPC::ADDI8;
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000868 if (N->hasOneUse())
869 return CurDAG->SelectNodeTo(N, Opc, Op.getValueType(), TFI,
Evan Cheng95514ba2006-08-26 08:00:10 +0000870 getSmallIPtrImm(0));
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000871 return CurDAG->getTargetNode(Opc, Op.getValueType(), TFI,
872 getSmallIPtrImm(0));
Chris Lattnere28e40a2005-08-25 00:45:43 +0000873 }
Chris Lattner6d92cad2006-03-26 10:06:40 +0000874
875 case PPCISD::MFCR: {
Evan Cheng6da2f322006-08-26 01:07:58 +0000876 SDOperand InFlag = N->getOperand(1);
877 AddToISelQueue(InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000878 // Use MFOCRF if supported.
Evan Cheng152b7e12007-10-23 06:42:42 +0000879 if (PPCSubTarget.isGigaProcessor())
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000880 return CurDAG->getTargetNode(PPC::MFOCRF, MVT::i32,
881 N->getOperand(0), InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000882 else
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000883 return CurDAG->getTargetNode(PPC::MFCR, MVT::i32, InFlag);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000884 }
885
Chris Lattner88add102005-09-28 22:50:24 +0000886 case ISD::SDIV: {
Nate Begeman405e3ec2005-10-21 00:02:42 +0000887 // FIXME: since this depends on the setting of the carry flag from the srawi
888 // we should really be making notes about that for the scheduler.
889 // FIXME: It sure would be nice if we could cheaply recognize the
890 // srl/add/sra pattern the dag combiner will generate for this as
891 // sra/addze rather than having to handle sdiv ourselves. oh well.
Chris Lattner8784a232005-08-25 17:50:06 +0000892 unsigned Imm;
Chris Lattnerc08f9022006-06-27 00:04:13 +0000893 if (isInt32Immediate(N->getOperand(1), Imm)) {
Evan Cheng6da2f322006-08-26 01:07:58 +0000894 SDOperand N0 = N->getOperand(0);
895 AddToISelQueue(N0);
Chris Lattner8784a232005-08-25 17:50:06 +0000896 if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000897 SDNode *Op =
Chris Lattner8784a232005-08-25 17:50:06 +0000898 CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
Evan Cheng34167212006-02-09 00:37:58 +0000899 N0, getI32Imm(Log2_32(Imm)));
Chris Lattnerccbe2ec2006-08-15 23:48:22 +0000900 return CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32,
Evan Cheng95514ba2006-08-26 08:00:10 +0000901 SDOperand(Op, 0), SDOperand(Op, 1));
Chris Lattner8784a232005-08-25 17:50:06 +0000902 } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000903 SDNode *Op =
Chris Lattner2501d5e2005-08-30 17:13:58 +0000904 CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
Evan Cheng34167212006-02-09 00:37:58 +0000905 N0, getI32Imm(Log2_32(-Imm)));
Chris Lattner8784a232005-08-25 17:50:06 +0000906 SDOperand PT =
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000907 SDOperand(CurDAG->getTargetNode(PPC::ADDZE, MVT::i32,
908 SDOperand(Op, 0), SDOperand(Op, 1)),
909 0);
Evan Cheng95514ba2006-08-26 08:00:10 +0000910 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
Chris Lattner8784a232005-08-25 17:50:06 +0000911 }
912 }
Chris Lattner047b9522005-08-25 22:04:30 +0000913
Chris Lattner237733e2005-09-29 23:33:31 +0000914 // Other cases are autogenerated.
915 break;
Chris Lattner047b9522005-08-25 22:04:30 +0000916 }
Chris Lattner4eab7142006-11-10 02:08:47 +0000917
918 case ISD::LOAD: {
919 // Handle preincrement loads.
920 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000921 MVT LoadedVT = LD->getMemoryVT();
Chris Lattner4eab7142006-11-10 02:08:47 +0000922
923 // Normal loads are handled by code generated from the .td file.
924 if (LD->getAddressingMode() != ISD::PRE_INC)
925 break;
926
Chris Lattner4eab7142006-11-10 02:08:47 +0000927 SDOperand Offset = LD->getOffset();
Chris Lattner5b3bbc72006-11-11 04:53:30 +0000928 if (isa<ConstantSDNode>(Offset) ||
929 Offset.getOpcode() == ISD::TargetGlobalAddress) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000930
931 unsigned Opcode;
932 bool isSExt = LD->getExtensionType() == ISD::SEXTLOAD;
933 if (LD->getValueType(0) != MVT::i64) {
934 // Handle PPC32 integer and normal FP loads.
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +0000935 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000936 switch (LoadedVT.getSimpleVT()) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000937 default: assert(0 && "Invalid PPC load type!");
938 case MVT::f64: Opcode = PPC::LFDU; break;
939 case MVT::f32: Opcode = PPC::LFSU; break;
940 case MVT::i32: Opcode = PPC::LWZU; break;
941 case MVT::i16: Opcode = isSExt ? PPC::LHAU : PPC::LHZU; break;
942 case MVT::i1:
943 case MVT::i8: Opcode = PPC::LBZU; break;
944 }
945 } else {
946 assert(LD->getValueType(0) == MVT::i64 && "Unknown load result type!");
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +0000947 assert((!isSExt || LoadedVT == MVT::i16) && "Invalid sext update load");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000948 switch (LoadedVT.getSimpleVT()) {
Chris Lattner0851b4f2006-11-15 19:55:13 +0000949 default: assert(0 && "Invalid PPC load type!");
950 case MVT::i64: Opcode = PPC::LDU; break;
951 case MVT::i32: Opcode = PPC::LWZU8; break;
952 case MVT::i16: Opcode = isSExt ? PPC::LHAU8 : PPC::LHZU8; break;
953 case MVT::i1:
954 case MVT::i8: Opcode = PPC::LBZU8; break;
955 }
956 }
957
Chris Lattner4eab7142006-11-10 02:08:47 +0000958 SDOperand Chain = LD->getChain();
959 SDOperand Base = LD->getBasePtr();
960 AddToISelQueue(Chain);
961 AddToISelQueue(Base);
962 AddToISelQueue(Offset);
963 SDOperand Ops[] = { Offset, Base, Chain };
964 // FIXME: PPC64
965 return CurDAG->getTargetNode(Opcode, MVT::i32, MVT::i32,
966 MVT::Other, Ops, 3);
967 } else {
968 assert(0 && "R+R preindex loads not supported yet!");
969 }
970 }
971
Nate Begemancffc32b2005-08-18 07:30:46 +0000972 case ISD::AND: {
Nate Begemanf42f1332006-09-22 05:01:56 +0000973 unsigned Imm, Imm2, SH, MB, ME;
974
Nate Begemancffc32b2005-08-18 07:30:46 +0000975 // If this is an and of a value rotated between 0 and 31 bits and then and'd
976 // with a mask, emit rlwinm
Chris Lattnerc08f9022006-06-27 00:04:13 +0000977 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begemanf42f1332006-09-22 05:01:56 +0000978 isRotateAndMask(N->getOperand(0).Val, Imm, false, SH, MB, ME)) {
979 SDOperand Val = N->getOperand(0).getOperand(0);
980 AddToISelQueue(Val);
Evan Cheng0b828e02006-08-27 08:14:06 +0000981 SDOperand Ops[] = { Val, getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
982 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begemancffc32b2005-08-18 07:30:46 +0000983 }
Nate Begemanf42f1332006-09-22 05:01:56 +0000984 // If this is just a masked value where the input is not handled above, and
985 // is not a rotate-left (handled by a pattern in the .td file), emit rlwinm
986 if (isInt32Immediate(N->getOperand(1), Imm) &&
987 isRunOfOnes(Imm, MB, ME) &&
988 N->getOperand(0).getOpcode() != ISD::ROTL) {
989 SDOperand Val = N->getOperand(0);
990 AddToISelQueue(Val);
991 SDOperand Ops[] = { Val, getI32Imm(0), getI32Imm(MB), getI32Imm(ME) };
992 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
993 }
994 // AND X, 0 -> 0, not "rlwinm 32".
995 if (isInt32Immediate(N->getOperand(1), Imm) && (Imm == 0)) {
996 AddToISelQueue(N->getOperand(1));
997 ReplaceUses(SDOperand(N, 0), N->getOperand(1));
998 return NULL;
999 }
Nate Begeman50fb3c42005-12-24 01:00:15 +00001000 // ISD::OR doesn't get all the bitfield insertion fun.
1001 // (and (or x, c1), c2) where isRunOfOnes(~(c1^c2)) is a bitfield insert
Chris Lattnerc08f9022006-06-27 00:04:13 +00001002 if (isInt32Immediate(N->getOperand(1), Imm) &&
Nate Begeman50fb3c42005-12-24 01:00:15 +00001003 N->getOperand(0).getOpcode() == ISD::OR &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001004 isInt32Immediate(N->getOperand(0).getOperand(1), Imm2)) {
Chris Lattnerc9a5ef52006-01-05 18:32:49 +00001005 unsigned MB, ME;
Nate Begeman50fb3c42005-12-24 01:00:15 +00001006 Imm = ~(Imm^Imm2);
1007 if (isRunOfOnes(Imm, MB, ME)) {
Evan Cheng6da2f322006-08-26 01:07:58 +00001008 AddToISelQueue(N->getOperand(0).getOperand(0));
1009 AddToISelQueue(N->getOperand(0).getOperand(1));
Evan Cheng0b828e02006-08-27 08:14:06 +00001010 SDOperand Ops[] = { N->getOperand(0).getOperand(0),
1011 N->getOperand(0).getOperand(1),
1012 getI32Imm(0), getI32Imm(MB),getI32Imm(ME) };
1013 return CurDAG->getTargetNode(PPC::RLWIMI, 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;
1029 if (isOpcWithIntImmediate(N->getOperand(0).Val, ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001030 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Evan Cheng6da2f322006-08-26 01:07:58 +00001031 AddToISelQueue(N->getOperand(0).getOperand(0));
Evan Cheng0b828e02006-08-27 08:14:06 +00001032 SDOperand Ops[] = { N->getOperand(0).getOperand(0),
1033 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
1034 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001035 }
Nate Begeman2d5aff72005-10-19 18:42:01 +00001036
1037 // Other cases are autogenerated.
1038 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001039 }
1040 case ISD::SRL: {
1041 unsigned Imm, SH, MB, ME;
1042 if (isOpcWithIntImmediate(N->getOperand(0).Val, ISD::AND, Imm) &&
Nate Begeman2d5aff72005-10-19 18:42:01 +00001043 isRotateAndMask(N, Imm, true, SH, MB, ME)) {
Evan Cheng6da2f322006-08-26 01:07:58 +00001044 AddToISelQueue(N->getOperand(0).getOperand(0));
Evan Cheng0b828e02006-08-27 08:14:06 +00001045 SDOperand Ops[] = { N->getOperand(0).getOperand(0),
1046 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME) };
1047 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops, 4);
Nate Begeman8d948322005-10-19 01:12:32 +00001048 }
Nate Begeman2d5aff72005-10-19 18:42:01 +00001049
1050 // Other cases are autogenerated.
1051 break;
Nate Begemanc15ed442005-08-18 23:38:00 +00001052 }
Chris Lattner13794f52005-08-26 18:46:49 +00001053 case ISD::SELECT_CC: {
1054 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1055
Chris Lattnerc08f9022006-06-27 00:04:13 +00001056 // Handle the setcc cases here. select_cc lhs, 0, 1, 0, cc
Chris Lattner13794f52005-08-26 18:46:49 +00001057 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1058 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1059 if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1060 if (N1C->isNullValue() && N3C->isNullValue() &&
Chris Lattnerc08f9022006-06-27 00:04:13 +00001061 N2C->getValue() == 1ULL && CC == ISD::SETNE &&
1062 // FIXME: Implement this optzn for PPC64.
1063 N->getValueType(0) == MVT::i32) {
Evan Cheng6da2f322006-08-26 01:07:58 +00001064 AddToISelQueue(N->getOperand(0));
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001065 SDNode *Tmp =
Chris Lattner13794f52005-08-26 18:46:49 +00001066 CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
Evan Cheng6da2f322006-08-26 01:07:58 +00001067 N->getOperand(0), getI32Imm(~0U));
Chris Lattnerccbe2ec2006-08-15 23:48:22 +00001068 return CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32,
Evan Cheng6da2f322006-08-26 01:07:58 +00001069 SDOperand(Tmp, 0), N->getOperand(0),
Evan Cheng95514ba2006-08-26 08:00:10 +00001070 SDOperand(Tmp, 1));
Chris Lattner13794f52005-08-26 18:46:49 +00001071 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001072
Chris Lattner50ff55c2005-09-01 19:20:44 +00001073 SDOperand CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00001074 unsigned BROpc = getPredicateForSetCC(CC);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00001075
Chris Lattner919c0322005-10-01 01:35:02 +00001076 unsigned SelectCCOp;
Chris Lattnerc08f9022006-06-27 00:04:13 +00001077 if (N->getValueType(0) == MVT::i32)
1078 SelectCCOp = PPC::SELECT_CC_I4;
1079 else if (N->getValueType(0) == MVT::i64)
1080 SelectCCOp = PPC::SELECT_CC_I8;
Chris Lattner919c0322005-10-01 01:35:02 +00001081 else if (N->getValueType(0) == MVT::f32)
1082 SelectCCOp = PPC::SELECT_CC_F4;
Chris Lattner710ff322006-04-08 22:45:08 +00001083 else if (N->getValueType(0) == MVT::f64)
Chris Lattner919c0322005-10-01 01:35:02 +00001084 SelectCCOp = PPC::SELECT_CC_F8;
Chris Lattner710ff322006-04-08 22:45:08 +00001085 else
1086 SelectCCOp = PPC::SELECT_CC_VRRC;
1087
Evan Cheng6da2f322006-08-26 01:07:58 +00001088 AddToISelQueue(N->getOperand(2));
1089 AddToISelQueue(N->getOperand(3));
Evan Cheng0b828e02006-08-27 08:14:06 +00001090 SDOperand Ops[] = { CCReg, N->getOperand(2), N->getOperand(3),
1091 getI32Imm(BROpc) };
1092 return CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), Ops, 4);
Chris Lattner13794f52005-08-26 18:46:49 +00001093 }
Chris Lattner18258c62006-11-17 22:37:34 +00001094 case PPCISD::COND_BRANCH: {
1095 AddToISelQueue(N->getOperand(0)); // Op #0 is the Chain.
1096 // Op #1 is the PPC::PRED_* number.
1097 // Op #2 is the CR#
1098 // Op #3 is the Dest MBB
1099 AddToISelQueue(N->getOperand(4)); // Op #4 is the Flag.
Evan Cheng2bda17c2007-06-29 01:25:06 +00001100 // Prevent PPC::PRED_* from being selected into LI.
1101 SDOperand Pred =
1102 getI32Imm(cast<ConstantSDNode>(N->getOperand(1))->getValue());
1103 SDOperand Ops[] = { Pred, N->getOperand(2), N->getOperand(3),
Chris Lattner18258c62006-11-17 22:37:34 +00001104 N->getOperand(0), N->getOperand(4) };
1105 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 5);
1106 }
Nate Begeman81e80972006-03-17 01:40:33 +00001107 case ISD::BR_CC: {
Evan Cheng6da2f322006-08-26 01:07:58 +00001108 AddToISelQueue(N->getOperand(0));
Chris Lattner2fbb4572005-08-21 18:50:37 +00001109 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
1110 SDOperand CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC);
Chris Lattner18258c62006-11-17 22:37:34 +00001111 SDOperand Ops[] = { getI32Imm(getPredicateForSetCC(CC)), CondCode,
Evan Cheng0b828e02006-08-27 08:14:06 +00001112 N->getOperand(4), N->getOperand(0) };
Chris Lattner289c2d52006-11-17 22:14:47 +00001113 return CurDAG->SelectNodeTo(N, PPC::BCC, MVT::Other, Ops, 4);
Chris Lattner2fbb4572005-08-21 18:50:37 +00001114 }
Nate Begeman37efe672006-04-22 18:53:45 +00001115 case ISD::BRIND: {
Chris Lattnercf006312006-06-10 01:15:02 +00001116 // FIXME: Should custom lower this.
Evan Cheng6da2f322006-08-26 01:07:58 +00001117 SDOperand Chain = N->getOperand(0);
1118 SDOperand Target = N->getOperand(1);
1119 AddToISelQueue(Chain);
1120 AddToISelQueue(Target);
Chris Lattner6b76b962006-06-27 20:46:17 +00001121 unsigned Opc = Target.getValueType() == MVT::i32 ? PPC::MTCTR : PPC::MTCTR8;
1122 Chain = SDOperand(CurDAG->getTargetNode(Opc, MVT::Other, Target,
Nate Begeman37efe672006-04-22 18:53:45 +00001123 Chain), 0);
Evan Cheng95514ba2006-08-26 08:00:10 +00001124 return CurDAG->SelectNodeTo(N, PPC::BCTR, MVT::Other, Chain);
Nate Begeman37efe672006-04-22 18:53:45 +00001125 }
Chris Lattnera5a91b12005-08-17 19:33:03 +00001126 }
Chris Lattner25dae722005-09-03 00:53:47 +00001127
Evan Cheng9ade2182006-08-26 05:34:46 +00001128 return SelectCode(Op);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001129}
1130
1131
Chris Lattnercf006312006-06-10 01:15:02 +00001132
Nate Begeman1d9d7422005-10-18 00:28:58 +00001133/// createPPCISelDag - This pass converts a legalized DAG into a
Chris Lattnera5a91b12005-08-17 19:33:03 +00001134/// PowerPC-specific DAG, ready for instruction scheduling.
1135///
Evan Chengc4c62572006-03-13 23:20:37 +00001136FunctionPass *llvm::createPPCISelDag(PPCTargetMachine &TM) {
Nate Begeman1d9d7422005-10-18 00:28:58 +00001137 return new PPCDAGToDAGISel(TM);
Chris Lattnera5a91b12005-08-17 19:33:03 +00001138}
1139