blob: b78f071ef65bb2cd485c8d1f3a814071d13510fa [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- PPCInstrInfo.cpp - PowerPC Instruction Information ----------------===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukmanf2ccb772004-08-17 04:55:41 +00003// 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.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukmanf2ccb772004-08-17 04:55:41 +00008//===----------------------------------------------------------------------===//
9//
10// This file contains the PowerPC implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner16e71f22005-10-14 23:59:06 +000014#include "PPCInstrInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "MCTargetDesc/PPCPredicates.h"
Evan Cheng59ee62d2011-07-11 03:57:24 +000016#include "PPC.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000017#include "PPCHazardRecognizers.h"
Owen Andersonf6372aa2008-01-01 21:11:32 +000018#include "PPCInstrBuilder.h"
Bill Wendling7194aaf2008-03-03 22:19:16 +000019#include "PPCMachineFunctionInfo.h"
Chris Lattnerb1d26f62006-06-17 00:01:04 +000020#include "PPCTargetMachine.h"
Hal Finkel5ee67e82013-04-08 16:24:03 +000021#include "llvm/ADT/Statistic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/ADT/STLExtras.h"
Jakob Stoklund Olesen7a79fcb2010-07-16 18:22:00 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
Hal Finkel5ee67e82013-04-08 16:24:03 +000024#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukmanf2ccb772004-08-17 04:55:41 +000025#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen7a79fcb2010-07-16 18:22:00 +000026#include "llvm/CodeGen/MachineMemOperand.h"
Jakob Stoklund Olesen24329662010-02-26 21:09:24 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
Hal Finkel4d989ac2012-04-01 19:22:40 +000028#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng59ee62d2011-07-11 03:57:24 +000029#include "llvm/MC/MCAsmInfo.h"
Bill Wendling880d0f62008-03-04 23:13:51 +000030#include "llvm/Support/CommandLine.h"
Torok Edwindac237e2009-07-08 20:53:28 +000031#include "llvm/Support/ErrorHandling.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000032#include "llvm/Support/TargetRegistry.h"
Torok Edwindac237e2009-07-08 20:53:28 +000033#include "llvm/Support/raw_ostream.h"
Misha Brukmanf2ccb772004-08-17 04:55:41 +000034
Hal Finkel860c08c2013-04-18 22:15:08 +000035#define GET_INSTRMAP_INFO
Evan Cheng4db3cff2011-07-01 17:57:27 +000036#define GET_INSTRINFO_CTOR
Evan Cheng22fee2d2011-06-28 20:07:07 +000037#include "PPCGenInstrInfo.inc"
38
Dan Gohman82bcd232010-04-15 17:20:57 +000039using namespace llvm;
Bill Wendling880d0f62008-03-04 23:13:51 +000040
Hal Finkel09fdc7b2012-06-08 15:38:25 +000041static cl::
Hal Finkel7255d2a2012-06-08 19:19:53 +000042opt<bool> DisableCTRLoopAnal("disable-ppc-ctrloop-analysis", cl::Hidden,
43 cl::desc("Disable analysis for CTR loops"));
Hal Finkel09fdc7b2012-06-08 15:38:25 +000044
Chris Lattnerb1d26f62006-06-17 00:01:04 +000045PPCInstrInfo::PPCInstrInfo(PPCTargetMachine &tm)
Evan Cheng4db3cff2011-07-01 17:57:27 +000046 : PPCGenInstrInfo(PPC::ADJCALLSTACKDOWN, PPC::ADJCALLSTACKUP),
Evan Chengd5b03f22011-06-28 21:14:33 +000047 TM(tm), RI(*TM.getSubtargetImpl(), *this) {}
Chris Lattnerb1d26f62006-06-17 00:01:04 +000048
Andrew Trick2da8bc82010-12-24 05:03:26 +000049/// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
50/// this target when scheduling the DAG.
51ScheduleHazardRecognizer *PPCInstrInfo::CreateTargetHazardRecognizer(
52 const TargetMachine *TM,
53 const ScheduleDAG *DAG) const {
Hal Finkelc6d08f12011-10-17 04:03:49 +000054 unsigned Directive = TM->getSubtarget<PPCSubtarget>().getDarwinDirective();
Hal Finkel621b77a2012-08-28 16:12:39 +000055 if (Directive == PPC::DIR_440 || Directive == PPC::DIR_A2 ||
56 Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) {
Hal Finkel768c65f2011-11-22 16:21:04 +000057 const InstrItineraryData *II = TM->getInstrItineraryData();
Hal Finkel5b00cea2012-03-31 14:45:15 +000058 return new PPCScoreboardHazardRecognizer(II, DAG);
Hal Finkelc6d08f12011-10-17 04:03:49 +000059 }
Hal Finkel64c34e22011-12-02 04:58:02 +000060
Jakob Stoklund Olesena9fa4fd2012-11-28 02:35:17 +000061 return TargetInstrInfo::CreateTargetHazardRecognizer(TM, DAG);
Andrew Trick2da8bc82010-12-24 05:03:26 +000062}
63
Hal Finkel64c34e22011-12-02 04:58:02 +000064/// CreateTargetPostRAHazardRecognizer - Return the postRA hazard recognizer
65/// to use for this target when scheduling the DAG.
66ScheduleHazardRecognizer *PPCInstrInfo::CreateTargetPostRAHazardRecognizer(
67 const InstrItineraryData *II,
68 const ScheduleDAG *DAG) const {
69 unsigned Directive = TM.getSubtarget<PPCSubtarget>().getDarwinDirective();
70
71 // Most subtargets use a PPC970 recognizer.
Hal Finkel621b77a2012-08-28 16:12:39 +000072 if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2 &&
73 Directive != PPC::DIR_E500mc && Directive != PPC::DIR_E5500) {
Hal Finkel64c34e22011-12-02 04:58:02 +000074 const TargetInstrInfo *TII = TM.getInstrInfo();
75 assert(TII && "No InstrInfo?");
76
77 return new PPCHazardRecognizer970(*TII);
78 }
79
Hal Finkel4d989ac2012-04-01 19:22:40 +000080 return new PPCScoreboardHazardRecognizer(II, DAG);
Hal Finkel64c34e22011-12-02 04:58:02 +000081}
Jakob Stoklund Olesen71642882012-06-19 21:14:34 +000082
83// Detect 32 -> 64-bit extensions where we may reuse the low sub-register.
84bool PPCInstrInfo::isCoalescableExtInstr(const MachineInstr &MI,
85 unsigned &SrcReg, unsigned &DstReg,
86 unsigned &SubIdx) const {
87 switch (MI.getOpcode()) {
88 default: return false;
89 case PPC::EXTSW:
90 case PPC::EXTSW_32_64:
91 SrcReg = MI.getOperand(1).getReg();
92 DstReg = MI.getOperand(0).getReg();
93 SubIdx = PPC::sub_32;
94 return true;
95 }
96}
97
Andrew Trick6e8f4c42010-12-24 04:28:06 +000098unsigned PPCInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
Chris Lattner9c09c9e2006-03-16 22:24:02 +000099 int &FrameIndex) const {
Hal Finkelf25f93b2013-03-27 21:21:15 +0000100 // Note: This list must be kept consistent with LoadRegFromStackSlot.
Chris Lattner40839602006-02-02 20:12:32 +0000101 switch (MI->getOpcode()) {
102 default: break;
103 case PPC::LD:
104 case PPC::LWZ:
105 case PPC::LFS:
106 case PPC::LFD:
Hal Finkelf25f93b2013-03-27 21:21:15 +0000107 case PPC::RESTORE_CR:
108 case PPC::LVX:
109 case PPC::RESTORE_VRSAVE:
110 // Check for the operands added by addFrameReference (the immediate is the
111 // offset which defaults to 0).
Dan Gohmand735b802008-10-03 15:45:36 +0000112 if (MI->getOperand(1).isImm() && !MI->getOperand(1).getImm() &&
113 MI->getOperand(2).isFI()) {
Chris Lattner8aa797a2007-12-30 23:10:15 +0000114 FrameIndex = MI->getOperand(2).getIndex();
Chris Lattner40839602006-02-02 20:12:32 +0000115 return MI->getOperand(0).getReg();
116 }
117 break;
118 }
119 return 0;
Chris Lattner65242872006-02-02 20:16:12 +0000120}
Chris Lattner40839602006-02-02 20:12:32 +0000121
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000122unsigned PPCInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
Chris Lattner65242872006-02-02 20:16:12 +0000123 int &FrameIndex) const {
Hal Finkelf25f93b2013-03-27 21:21:15 +0000124 // Note: This list must be kept consistent with StoreRegToStackSlot.
Chris Lattner65242872006-02-02 20:16:12 +0000125 switch (MI->getOpcode()) {
126 default: break;
Nate Begeman3b478b32006-02-02 21:07:50 +0000127 case PPC::STD:
Chris Lattner65242872006-02-02 20:16:12 +0000128 case PPC::STW:
129 case PPC::STFS:
130 case PPC::STFD:
Hal Finkelf25f93b2013-03-27 21:21:15 +0000131 case PPC::SPILL_CR:
132 case PPC::STVX:
133 case PPC::SPILL_VRSAVE:
134 // Check for the operands added by addFrameReference (the immediate is the
135 // offset which defaults to 0).
Dan Gohmand735b802008-10-03 15:45:36 +0000136 if (MI->getOperand(1).isImm() && !MI->getOperand(1).getImm() &&
137 MI->getOperand(2).isFI()) {
Chris Lattner8aa797a2007-12-30 23:10:15 +0000138 FrameIndex = MI->getOperand(2).getIndex();
Chris Lattner65242872006-02-02 20:16:12 +0000139 return MI->getOperand(0).getReg();
140 }
141 break;
142 }
143 return 0;
144}
Chris Lattner40839602006-02-02 20:12:32 +0000145
Chris Lattner043870d2005-09-09 18:17:41 +0000146// commuteInstruction - We can commute rlwimi instructions, but only if the
147// rotate amt is zero. We also have to munge the immediates a bit.
Evan Cheng58dcb0e2008-06-16 07:33:11 +0000148MachineInstr *
149PPCInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000150 MachineFunction &MF = *MI->getParent()->getParent();
151
Chris Lattner043870d2005-09-09 18:17:41 +0000152 // Normal instructions can be commuted the obvious way.
Hal Finkel171a8ad2013-04-12 02:18:09 +0000153 if (MI->getOpcode() != PPC::RLWIMI &&
154 MI->getOpcode() != PPC::RLWIMIo)
Jakob Stoklund Olesena9fa4fd2012-11-28 02:35:17 +0000155 return TargetInstrInfo::commuteInstruction(MI, NewMI);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000156
Chris Lattner043870d2005-09-09 18:17:41 +0000157 // Cannot commute if it has a non-zero rotate count.
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000158 if (MI->getOperand(3).getImm() != 0)
Chris Lattner043870d2005-09-09 18:17:41 +0000159 return 0;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000160
Chris Lattner043870d2005-09-09 18:17:41 +0000161 // If we have a zero rotate count, we have:
162 // M = mask(MB,ME)
163 // Op0 = (Op1 & ~M) | (Op2 & M)
164 // Change this to:
165 // M = mask((ME+1)&31, (MB-1)&31)
166 // Op0 = (Op2 & ~M) | (Op1 & M)
167
168 // Swap op1/op2
Evan Chenga4d16a12008-02-13 02:46:49 +0000169 unsigned Reg0 = MI->getOperand(0).getReg();
Chris Lattner043870d2005-09-09 18:17:41 +0000170 unsigned Reg1 = MI->getOperand(1).getReg();
171 unsigned Reg2 = MI->getOperand(2).getReg();
Evan Cheng6ce7dc22006-11-15 20:58:11 +0000172 bool Reg1IsKill = MI->getOperand(1).isKill();
173 bool Reg2IsKill = MI->getOperand(2).isKill();
Evan Cheng58dcb0e2008-06-16 07:33:11 +0000174 bool ChangeReg0 = false;
Evan Chenga4d16a12008-02-13 02:46:49 +0000175 // If machine instrs are no longer in two-address forms, update
176 // destination register as well.
177 if (Reg0 == Reg1) {
178 // Must be two address instruction!
Evan Chenge837dea2011-06-28 19:10:37 +0000179 assert(MI->getDesc().getOperandConstraint(0, MCOI::TIED_TO) &&
Evan Chenga4d16a12008-02-13 02:46:49 +0000180 "Expecting a two-address instruction!");
Evan Chenga4d16a12008-02-13 02:46:49 +0000181 Reg2IsKill = false;
Evan Cheng58dcb0e2008-06-16 07:33:11 +0000182 ChangeReg0 = true;
Evan Chenga4d16a12008-02-13 02:46:49 +0000183 }
Evan Cheng58dcb0e2008-06-16 07:33:11 +0000184
185 // Masks.
186 unsigned MB = MI->getOperand(4).getImm();
187 unsigned ME = MI->getOperand(5).getImm();
188
189 if (NewMI) {
190 // Create a new instruction.
191 unsigned Reg0 = ChangeReg0 ? Reg2 : MI->getOperand(0).getReg();
192 bool Reg0IsDead = MI->getOperand(0).isDead();
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000193 return BuildMI(MF, MI->getDebugLoc(), MI->getDesc())
Bill Wendling587daed2009-05-13 21:33:08 +0000194 .addReg(Reg0, RegState::Define | getDeadRegState(Reg0IsDead))
195 .addReg(Reg2, getKillRegState(Reg2IsKill))
196 .addReg(Reg1, getKillRegState(Reg1IsKill))
Evan Cheng58dcb0e2008-06-16 07:33:11 +0000197 .addImm((ME+1) & 31)
198 .addImm((MB-1) & 31);
199 }
200
201 if (ChangeReg0)
202 MI->getOperand(0).setReg(Reg2);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000203 MI->getOperand(2).setReg(Reg1);
204 MI->getOperand(1).setReg(Reg2);
Chris Lattnerf7382302007-12-30 21:56:09 +0000205 MI->getOperand(2).setIsKill(Reg1IsKill);
206 MI->getOperand(1).setIsKill(Reg2IsKill);
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000207
Chris Lattner043870d2005-09-09 18:17:41 +0000208 // Swap the mask around.
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000209 MI->getOperand(4).setImm((ME+1) & 31);
210 MI->getOperand(5).setImm((MB-1) & 31);
Chris Lattner043870d2005-09-09 18:17:41 +0000211 return MI;
212}
Chris Lattnerbbf1c722006-03-05 23:49:55 +0000213
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000214void PPCInstrInfo::insertNoop(MachineBasicBlock &MBB,
Chris Lattnerbbf1c722006-03-05 23:49:55 +0000215 MachineBasicBlock::iterator MI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000216 DebugLoc DL;
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000217 BuildMI(MBB, MI, DL, get(PPC::NOP));
Chris Lattnerbbf1c722006-03-05 23:49:55 +0000218}
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000219
220
221// Branch analysis.
Hal Finkel99f823f2012-06-08 15:38:21 +0000222// Note: If the condition register is set to CTR or CTR8 then this is a
223// BDNZ (imm == 1) or BDZ (imm == 0) branch.
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000224bool PPCInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
225 MachineBasicBlock *&FBB,
Evan Chengdc54d312009-02-09 07:14:22 +0000226 SmallVectorImpl<MachineOperand> &Cond,
227 bool AllowModify) const {
Hal Finkel99f823f2012-06-08 15:38:21 +0000228 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
229
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000230 // If the block has no terminators, it just falls into the block after it.
231 MachineBasicBlock::iterator I = MBB.end();
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000232 if (I == MBB.begin())
233 return false;
234 --I;
235 while (I->isDebugValue()) {
236 if (I == MBB.begin())
237 return false;
238 --I;
239 }
240 if (!isUnpredicatedTerminator(I))
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000241 return false;
242
243 // Get the last instruction in the block.
244 MachineInstr *LastInst = I;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000245
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000246 // If there is only one terminator instruction, process it.
Evan Chengbfd2ec42007-06-08 21:59:56 +0000247 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000248 if (LastInst->getOpcode() == PPC::B) {
Evan Cheng82ae9332009-05-08 23:09:25 +0000249 if (!LastInst->getOperand(0).isMBB())
250 return true;
Chris Lattner8aa797a2007-12-30 23:10:15 +0000251 TBB = LastInst->getOperand(0).getMBB();
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000252 return false;
Chris Lattner289c2d52006-11-17 22:14:47 +0000253 } else if (LastInst->getOpcode() == PPC::BCC) {
Evan Cheng82ae9332009-05-08 23:09:25 +0000254 if (!LastInst->getOperand(2).isMBB())
255 return true;
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000256 // Block ends with fall-through condbranch.
Chris Lattner8aa797a2007-12-30 23:10:15 +0000257 TBB = LastInst->getOperand(2).getMBB();
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000258 Cond.push_back(LastInst->getOperand(0));
259 Cond.push_back(LastInst->getOperand(1));
Chris Lattner7c4fe252006-10-21 06:03:11 +0000260 return false;
Hal Finkel99f823f2012-06-08 15:38:21 +0000261 } else if (LastInst->getOpcode() == PPC::BDNZ8 ||
262 LastInst->getOpcode() == PPC::BDNZ) {
263 if (!LastInst->getOperand(0).isMBB())
264 return true;
Hal Finkel7255d2a2012-06-08 19:19:53 +0000265 if (DisableCTRLoopAnal)
Hal Finkel09fdc7b2012-06-08 15:38:25 +0000266 return true;
Hal Finkel99f823f2012-06-08 15:38:21 +0000267 TBB = LastInst->getOperand(0).getMBB();
268 Cond.push_back(MachineOperand::CreateImm(1));
269 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
270 true));
271 return false;
272 } else if (LastInst->getOpcode() == PPC::BDZ8 ||
273 LastInst->getOpcode() == PPC::BDZ) {
274 if (!LastInst->getOperand(0).isMBB())
275 return true;
Hal Finkel7255d2a2012-06-08 19:19:53 +0000276 if (DisableCTRLoopAnal)
Hal Finkel09fdc7b2012-06-08 15:38:25 +0000277 return true;
Hal Finkel99f823f2012-06-08 15:38:21 +0000278 TBB = LastInst->getOperand(0).getMBB();
279 Cond.push_back(MachineOperand::CreateImm(0));
280 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
281 true));
282 return false;
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000283 }
Hal Finkel99f823f2012-06-08 15:38:21 +0000284
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000285 // Otherwise, don't know what this is.
286 return true;
287 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000288
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000289 // Get the instruction before it if it's a terminator.
290 MachineInstr *SecondLastInst = I;
291
292 // If there are three terminators, we don't know what sort of block this is.
293 if (SecondLastInst && I != MBB.begin() &&
Evan Chengbfd2ec42007-06-08 21:59:56 +0000294 isUnpredicatedTerminator(--I))
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000295 return true;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000296
Chris Lattner289c2d52006-11-17 22:14:47 +0000297 // If the block ends with PPC::B and PPC:BCC, handle it.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000298 if (SecondLastInst->getOpcode() == PPC::BCC &&
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000299 LastInst->getOpcode() == PPC::B) {
Evan Cheng82ae9332009-05-08 23:09:25 +0000300 if (!SecondLastInst->getOperand(2).isMBB() ||
301 !LastInst->getOperand(0).isMBB())
302 return true;
Chris Lattner8aa797a2007-12-30 23:10:15 +0000303 TBB = SecondLastInst->getOperand(2).getMBB();
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000304 Cond.push_back(SecondLastInst->getOperand(0));
305 Cond.push_back(SecondLastInst->getOperand(1));
Chris Lattner8aa797a2007-12-30 23:10:15 +0000306 FBB = LastInst->getOperand(0).getMBB();
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000307 return false;
Hal Finkel99f823f2012-06-08 15:38:21 +0000308 } else if ((SecondLastInst->getOpcode() == PPC::BDNZ8 ||
309 SecondLastInst->getOpcode() == PPC::BDNZ) &&
310 LastInst->getOpcode() == PPC::B) {
311 if (!SecondLastInst->getOperand(0).isMBB() ||
312 !LastInst->getOperand(0).isMBB())
313 return true;
Hal Finkel7255d2a2012-06-08 19:19:53 +0000314 if (DisableCTRLoopAnal)
Hal Finkel09fdc7b2012-06-08 15:38:25 +0000315 return true;
Hal Finkel99f823f2012-06-08 15:38:21 +0000316 TBB = SecondLastInst->getOperand(0).getMBB();
317 Cond.push_back(MachineOperand::CreateImm(1));
318 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
319 true));
320 FBB = LastInst->getOperand(0).getMBB();
321 return false;
322 } else if ((SecondLastInst->getOpcode() == PPC::BDZ8 ||
323 SecondLastInst->getOpcode() == PPC::BDZ) &&
324 LastInst->getOpcode() == PPC::B) {
325 if (!SecondLastInst->getOperand(0).isMBB() ||
326 !LastInst->getOperand(0).isMBB())
327 return true;
Hal Finkel7255d2a2012-06-08 19:19:53 +0000328 if (DisableCTRLoopAnal)
Hal Finkel09fdc7b2012-06-08 15:38:25 +0000329 return true;
Hal Finkel99f823f2012-06-08 15:38:21 +0000330 TBB = SecondLastInst->getOperand(0).getMBB();
331 Cond.push_back(MachineOperand::CreateImm(0));
332 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
333 true));
334 FBB = LastInst->getOperand(0).getMBB();
335 return false;
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000336 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000337
Dale Johannesen13e8b512007-06-13 17:59:52 +0000338 // If the block ends with two PPC:Bs, handle it. The second one is not
339 // executed, so remove it.
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000340 if (SecondLastInst->getOpcode() == PPC::B &&
Dale Johannesen13e8b512007-06-13 17:59:52 +0000341 LastInst->getOpcode() == PPC::B) {
Evan Cheng82ae9332009-05-08 23:09:25 +0000342 if (!SecondLastInst->getOperand(0).isMBB())
343 return true;
Chris Lattner8aa797a2007-12-30 23:10:15 +0000344 TBB = SecondLastInst->getOperand(0).getMBB();
Dale Johannesen13e8b512007-06-13 17:59:52 +0000345 I = LastInst;
Evan Chengdc54d312009-02-09 07:14:22 +0000346 if (AllowModify)
347 I->eraseFromParent();
Dale Johannesen13e8b512007-06-13 17:59:52 +0000348 return false;
349 }
350
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000351 // Otherwise, can't handle this.
352 return true;
353}
354
Evan Chengb5cdaa22007-05-18 00:05:48 +0000355unsigned PPCInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000356 MachineBasicBlock::iterator I = MBB.end();
Evan Chengb5cdaa22007-05-18 00:05:48 +0000357 if (I == MBB.begin()) return 0;
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000358 --I;
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000359 while (I->isDebugValue()) {
360 if (I == MBB.begin())
361 return 0;
362 --I;
363 }
Hal Finkel99f823f2012-06-08 15:38:21 +0000364 if (I->getOpcode() != PPC::B && I->getOpcode() != PPC::BCC &&
365 I->getOpcode() != PPC::BDNZ8 && I->getOpcode() != PPC::BDNZ &&
366 I->getOpcode() != PPC::BDZ8 && I->getOpcode() != PPC::BDZ)
Evan Chengb5cdaa22007-05-18 00:05:48 +0000367 return 0;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000368
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000369 // Remove the branch.
370 I->eraseFromParent();
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000371
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000372 I = MBB.end();
373
Evan Chengb5cdaa22007-05-18 00:05:48 +0000374 if (I == MBB.begin()) return 1;
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000375 --I;
Hal Finkel99f823f2012-06-08 15:38:21 +0000376 if (I->getOpcode() != PPC::BCC &&
377 I->getOpcode() != PPC::BDNZ8 && I->getOpcode() != PPC::BDNZ &&
378 I->getOpcode() != PPC::BDZ8 && I->getOpcode() != PPC::BDZ)
Evan Chengb5cdaa22007-05-18 00:05:48 +0000379 return 1;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000380
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000381 // Remove the branch.
382 I->eraseFromParent();
Evan Chengb5cdaa22007-05-18 00:05:48 +0000383 return 2;
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000384}
385
Evan Chengb5cdaa22007-05-18 00:05:48 +0000386unsigned
387PPCInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
388 MachineBasicBlock *FBB,
Stuart Hastings3bf91252010-06-17 22:43:56 +0000389 const SmallVectorImpl<MachineOperand> &Cond,
390 DebugLoc DL) const {
Chris Lattner2dc77232006-10-17 18:06:55 +0000391 // Shouldn't be a fall through.
392 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000393 assert((Cond.size() == 2 || Cond.size() == 0) &&
Chris Lattner54108062006-10-21 05:36:13 +0000394 "PPC branch conditions have two components!");
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000395
Hal Finkel99f823f2012-06-08 15:38:21 +0000396 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
397
Chris Lattner54108062006-10-21 05:36:13 +0000398 // One-way branch.
Chris Lattner2dc77232006-10-17 18:06:55 +0000399 if (FBB == 0) {
Chris Lattner54108062006-10-21 05:36:13 +0000400 if (Cond.empty()) // Unconditional branch
Stuart Hastings3bf91252010-06-17 22:43:56 +0000401 BuildMI(&MBB, DL, get(PPC::B)).addMBB(TBB);
Hal Finkel99f823f2012-06-08 15:38:21 +0000402 else if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
403 BuildMI(&MBB, DL, get(Cond[0].getImm() ?
404 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
405 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB);
Chris Lattner54108062006-10-21 05:36:13 +0000406 else // Conditional branch
Stuart Hastings3bf91252010-06-17 22:43:56 +0000407 BuildMI(&MBB, DL, get(PPC::BCC))
Chris Lattner18258c62006-11-17 22:37:34 +0000408 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg()).addMBB(TBB);
Evan Chengb5cdaa22007-05-18 00:05:48 +0000409 return 1;
Chris Lattner2dc77232006-10-17 18:06:55 +0000410 }
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000411
Chris Lattner879d09c2006-10-21 05:42:09 +0000412 // Two-way Conditional Branch.
Hal Finkel99f823f2012-06-08 15:38:21 +0000413 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
414 BuildMI(&MBB, DL, get(Cond[0].getImm() ?
415 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
416 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB);
417 else
418 BuildMI(&MBB, DL, get(PPC::BCC))
419 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg()).addMBB(TBB);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000420 BuildMI(&MBB, DL, get(PPC::B)).addMBB(FBB);
Evan Chengb5cdaa22007-05-18 00:05:48 +0000421 return 2;
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000422}
423
Hal Finkelff56d1a2013-04-05 23:29:01 +0000424// Select analysis.
425bool PPCInstrInfo::canInsertSelect(const MachineBasicBlock &MBB,
426 const SmallVectorImpl<MachineOperand> &Cond,
427 unsigned TrueReg, unsigned FalseReg,
428 int &CondCycles, int &TrueCycles, int &FalseCycles) const {
429 if (!TM.getSubtargetImpl()->hasISEL())
430 return false;
431
432 if (Cond.size() != 2)
433 return false;
434
435 // If this is really a bdnz-like condition, then it cannot be turned into a
436 // select.
437 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
438 return false;
439
440 // Check register classes.
441 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
442 const TargetRegisterClass *RC =
443 RI.getCommonSubClass(MRI.getRegClass(TrueReg), MRI.getRegClass(FalseReg));
444 if (!RC)
445 return false;
446
447 // isel is for regular integer GPRs only.
448 if (!PPC::GPRCRegClass.hasSubClassEq(RC) &&
449 !PPC::G8RCRegClass.hasSubClassEq(RC))
450 return false;
451
452 // FIXME: These numbers are for the A2, how well they work for other cores is
453 // an open question. On the A2, the isel instruction has a 2-cycle latency
454 // but single-cycle throughput. These numbers are used in combination with
455 // the MispredictPenalty setting from the active SchedMachineModel.
456 CondCycles = 1;
457 TrueCycles = 1;
458 FalseCycles = 1;
459
460 return true;
461}
462
463void PPCInstrInfo::insertSelect(MachineBasicBlock &MBB,
464 MachineBasicBlock::iterator MI, DebugLoc dl,
465 unsigned DestReg,
466 const SmallVectorImpl<MachineOperand> &Cond,
467 unsigned TrueReg, unsigned FalseReg) const {
468 assert(Cond.size() == 2 &&
469 "PPC branch conditions have two components!");
470
471 assert(TM.getSubtargetImpl()->hasISEL() &&
472 "Cannot insert select on target without ISEL support");
473
474 // Get the register classes.
475 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
476 const TargetRegisterClass *RC =
477 RI.getCommonSubClass(MRI.getRegClass(TrueReg), MRI.getRegClass(FalseReg));
478 assert(RC && "TrueReg and FalseReg must have overlapping register classes");
479 assert((PPC::GPRCRegClass.hasSubClassEq(RC) ||
480 PPC::G8RCRegClass.hasSubClassEq(RC)) &&
481 "isel is for regular integer GPRs only");
482
483 unsigned OpCode =
484 PPC::GPRCRegClass.hasSubClassEq(RC) ? PPC::ISEL : PPC::ISEL8;
485 unsigned SelectPred = Cond[0].getImm();
486
487 unsigned SubIdx;
488 bool SwapOps;
489 switch (SelectPred) {
490 default: llvm_unreachable("invalid predicate for isel");
491 case PPC::PRED_EQ: SubIdx = PPC::sub_eq; SwapOps = false; break;
492 case PPC::PRED_NE: SubIdx = PPC::sub_eq; SwapOps = true; break;
493 case PPC::PRED_LT: SubIdx = PPC::sub_lt; SwapOps = false; break;
494 case PPC::PRED_GE: SubIdx = PPC::sub_lt; SwapOps = true; break;
495 case PPC::PRED_GT: SubIdx = PPC::sub_gt; SwapOps = false; break;
496 case PPC::PRED_LE: SubIdx = PPC::sub_gt; SwapOps = true; break;
497 case PPC::PRED_UN: SubIdx = PPC::sub_un; SwapOps = false; break;
498 case PPC::PRED_NU: SubIdx = PPC::sub_un; SwapOps = true; break;
499 }
500
501 unsigned FirstReg = SwapOps ? FalseReg : TrueReg,
502 SecondReg = SwapOps ? TrueReg : FalseReg;
503
504 // The first input register of isel cannot be r0. If it is a member
505 // of a register class that can be r0, then copy it first (the
506 // register allocator should eliminate the copy).
507 if (MRI.getRegClass(FirstReg)->contains(PPC::R0) ||
508 MRI.getRegClass(FirstReg)->contains(PPC::X0)) {
509 const TargetRegisterClass *FirstRC =
510 MRI.getRegClass(FirstReg)->contains(PPC::X0) ?
511 &PPC::G8RC_NOX0RegClass : &PPC::GPRC_NOR0RegClass;
512 unsigned OldFirstReg = FirstReg;
513 FirstReg = MRI.createVirtualRegister(FirstRC);
514 BuildMI(MBB, MI, dl, get(TargetOpcode::COPY), FirstReg)
515 .addReg(OldFirstReg);
516 }
517
518 BuildMI(MBB, MI, dl, get(OpCode), DestReg)
519 .addReg(FirstReg).addReg(SecondReg)
520 .addReg(Cond[1].getReg(), 0, SubIdx);
521}
522
Jakob Stoklund Olesen27689b02010-07-11 07:31:00 +0000523void PPCInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
524 MachineBasicBlock::iterator I, DebugLoc DL,
525 unsigned DestReg, unsigned SrcReg,
526 bool KillSrc) const {
527 unsigned Opc;
528 if (PPC::GPRCRegClass.contains(DestReg, SrcReg))
529 Opc = PPC::OR;
530 else if (PPC::G8RCRegClass.contains(DestReg, SrcReg))
531 Opc = PPC::OR8;
532 else if (PPC::F4RCRegClass.contains(DestReg, SrcReg))
533 Opc = PPC::FMR;
534 else if (PPC::CRRCRegClass.contains(DestReg, SrcReg))
535 Opc = PPC::MCRF;
536 else if (PPC::VRRCRegClass.contains(DestReg, SrcReg))
537 Opc = PPC::VOR;
538 else if (PPC::CRBITRCRegClass.contains(DestReg, SrcReg))
539 Opc = PPC::CROR;
540 else
541 llvm_unreachable("Impossible reg-to-reg copy");
Owen Andersond10fd972007-12-31 06:32:00 +0000542
Evan Chenge837dea2011-06-28 19:10:37 +0000543 const MCInstrDesc &MCID = get(Opc);
544 if (MCID.getNumOperands() == 3)
545 BuildMI(MBB, I, DL, MCID, DestReg)
Jakob Stoklund Olesen27689b02010-07-11 07:31:00 +0000546 .addReg(SrcReg).addReg(SrcReg, getKillRegState(KillSrc));
547 else
Evan Chenge837dea2011-06-28 19:10:37 +0000548 BuildMI(MBB, I, DL, MCID, DestReg).addReg(SrcReg, getKillRegState(KillSrc));
Owen Andersond10fd972007-12-31 06:32:00 +0000549}
550
Hal Finkel3fd00182011-12-05 17:55:17 +0000551// This function returns true if a CR spill is necessary and false otherwise.
Bill Wendling4a66e9a2008-03-10 22:49:16 +0000552bool
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000553PPCInstrInfo::StoreRegToStackSlot(MachineFunction &MF,
554 unsigned SrcReg, bool isKill,
Bill Wendling4a66e9a2008-03-10 22:49:16 +0000555 int FrameIdx,
556 const TargetRegisterClass *RC,
Hal Finkel32497292013-03-17 04:43:44 +0000557 SmallVectorImpl<MachineInstr*> &NewMIs,
Hal Finkel3f2c0472013-03-23 22:06:03 +0000558 bool &NonRI, bool &SpillsVRS) const{
Hal Finkelf25f93b2013-03-27 21:21:15 +0000559 // Note: If additional store instructions are added here,
560 // update isStoreToStackSlot.
561
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000562 DebugLoc DL;
Craig Topperc9099502012-04-20 06:31:50 +0000563 if (PPC::GPRCRegClass.hasSubClassEq(RC)) {
Hal Finkel7257fda2013-03-23 17:14:27 +0000564 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STW))
565 .addReg(SrcReg,
566 getKillRegState(isKill)),
567 FrameIdx));
Craig Topperc9099502012-04-20 06:31:50 +0000568 } else if (PPC::G8RCRegClass.hasSubClassEq(RC)) {
Hal Finkel7257fda2013-03-23 17:14:27 +0000569 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STD))
570 .addReg(SrcReg,
571 getKillRegState(isKill)),
572 FrameIdx));
Craig Topperc9099502012-04-20 06:31:50 +0000573 } else if (PPC::F8RCRegClass.hasSubClassEq(RC)) {
Dale Johannesen21b55412009-02-12 23:08:38 +0000574 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STFD))
Bill Wendling587daed2009-05-13 21:33:08 +0000575 .addReg(SrcReg,
576 getKillRegState(isKill)),
577 FrameIdx));
Craig Topperc9099502012-04-20 06:31:50 +0000578 } else if (PPC::F4RCRegClass.hasSubClassEq(RC)) {
Dale Johannesen21b55412009-02-12 23:08:38 +0000579 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STFS))
Bill Wendling587daed2009-05-13 21:33:08 +0000580 .addReg(SrcReg,
581 getKillRegState(isKill)),
582 FrameIdx));
Craig Topperc9099502012-04-20 06:31:50 +0000583 } else if (PPC::CRRCRegClass.hasSubClassEq(RC)) {
Hal Finkel7285e8d2013-03-12 14:12:16 +0000584 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_CR))
585 .addReg(SrcReg,
586 getKillRegState(isKill)),
587 FrameIdx));
588 return true;
Craig Topperc9099502012-04-20 06:31:50 +0000589 } else if (PPC::CRBITRCRegClass.hasSubClassEq(RC)) {
Nicolas Geoffray0404cd92008-03-10 14:12:10 +0000590 // FIXME: We use CRi here because there is no mtcrf on a bit. Since the
591 // backend currently only uses CR1EQ as an individual bit, this should
592 // not cause any bug. If we need other uses of CR bits, the following
593 // code may be invalid.
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000594 unsigned Reg = 0;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000595 if (SrcReg == PPC::CR0LT || SrcReg == PPC::CR0GT ||
596 SrcReg == PPC::CR0EQ || SrcReg == PPC::CR0UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000597 Reg = PPC::CR0;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000598 else if (SrcReg == PPC::CR1LT || SrcReg == PPC::CR1GT ||
599 SrcReg == PPC::CR1EQ || SrcReg == PPC::CR1UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000600 Reg = PPC::CR1;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000601 else if (SrcReg == PPC::CR2LT || SrcReg == PPC::CR2GT ||
602 SrcReg == PPC::CR2EQ || SrcReg == PPC::CR2UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000603 Reg = PPC::CR2;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000604 else if (SrcReg == PPC::CR3LT || SrcReg == PPC::CR3GT ||
605 SrcReg == PPC::CR3EQ || SrcReg == PPC::CR3UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000606 Reg = PPC::CR3;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000607 else if (SrcReg == PPC::CR4LT || SrcReg == PPC::CR4GT ||
608 SrcReg == PPC::CR4EQ || SrcReg == PPC::CR4UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000609 Reg = PPC::CR4;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000610 else if (SrcReg == PPC::CR5LT || SrcReg == PPC::CR5GT ||
611 SrcReg == PPC::CR5EQ || SrcReg == PPC::CR5UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000612 Reg = PPC::CR5;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000613 else if (SrcReg == PPC::CR6LT || SrcReg == PPC::CR6GT ||
614 SrcReg == PPC::CR6EQ || SrcReg == PPC::CR6UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000615 Reg = PPC::CR6;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000616 else if (SrcReg == PPC::CR7LT || SrcReg == PPC::CR7GT ||
617 SrcReg == PPC::CR7EQ || SrcReg == PPC::CR7UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000618 Reg = PPC::CR7;
619
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000620 return StoreRegToStackSlot(MF, Reg, isKill, FrameIdx,
Hal Finkel3f2c0472013-03-23 22:06:03 +0000621 &PPC::CRRCRegClass, NewMIs, NonRI, SpillsVRS);
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000622
Craig Topperc9099502012-04-20 06:31:50 +0000623 } else if (PPC::VRRCRegClass.hasSubClassEq(RC)) {
Hal Finkel32497292013-03-17 04:43:44 +0000624 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STVX))
625 .addReg(SrcReg,
626 getKillRegState(isKill)),
627 FrameIdx));
628 NonRI = true;
Hal Finkel10f7f2a2013-03-21 19:03:21 +0000629 } else if (PPC::VRSAVERCRegClass.hasSubClassEq(RC)) {
Hal Finkelb7e11e42013-03-27 00:02:20 +0000630 assert(TM.getSubtargetImpl()->isDarwin() &&
631 "VRSAVE only needs spill/restore on Darwin");
Hal Finkel10f7f2a2013-03-21 19:03:21 +0000632 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_VRSAVE))
633 .addReg(SrcReg,
634 getKillRegState(isKill)),
635 FrameIdx));
Hal Finkel3f2c0472013-03-23 22:06:03 +0000636 SpillsVRS = true;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000637 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000638 llvm_unreachable("Unknown regclass!");
Owen Andersonf6372aa2008-01-01 21:11:32 +0000639 }
Bill Wendling7194aaf2008-03-03 22:19:16 +0000640
641 return false;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000642}
643
644void
645PPCInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
Bill Wendling7194aaf2008-03-03 22:19:16 +0000646 MachineBasicBlock::iterator MI,
647 unsigned SrcReg, bool isKill, int FrameIdx,
Evan Cheng746ad692010-05-06 19:06:44 +0000648 const TargetRegisterClass *RC,
649 const TargetRegisterInfo *TRI) const {
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000650 MachineFunction &MF = *MBB.getParent();
Owen Andersonf6372aa2008-01-01 21:11:32 +0000651 SmallVector<MachineInstr*, 4> NewMIs;
Bill Wendling7194aaf2008-03-03 22:19:16 +0000652
Hal Finkel0cfb42a2013-03-15 05:06:04 +0000653 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
654 FuncInfo->setHasSpills();
655
Hal Finkel3f2c0472013-03-23 22:06:03 +0000656 bool NonRI = false, SpillsVRS = false;
657 if (StoreRegToStackSlot(MF, SrcReg, isKill, FrameIdx, RC, NewMIs,
658 NonRI, SpillsVRS))
Bill Wendling7194aaf2008-03-03 22:19:16 +0000659 FuncInfo->setSpillsCR();
Bill Wendling7194aaf2008-03-03 22:19:16 +0000660
Hal Finkel3f2c0472013-03-23 22:06:03 +0000661 if (SpillsVRS)
662 FuncInfo->setSpillsVRSAVE();
663
Hal Finkel32497292013-03-17 04:43:44 +0000664 if (NonRI)
665 FuncInfo->setHasNonRISpills();
666
Owen Andersonf6372aa2008-01-01 21:11:32 +0000667 for (unsigned i = 0, e = NewMIs.size(); i != e; ++i)
668 MBB.insert(MI, NewMIs[i]);
Jakob Stoklund Olesen7a79fcb2010-07-16 18:22:00 +0000669
670 const MachineFrameInfo &MFI = *MF.getFrameInfo();
671 MachineMemOperand *MMO =
Jay Foad978e0df2011-11-15 07:34:52 +0000672 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
Chris Lattner59db5492010-09-21 04:39:43 +0000673 MachineMemOperand::MOStore,
Jakob Stoklund Olesen7a79fcb2010-07-16 18:22:00 +0000674 MFI.getObjectSize(FrameIdx),
675 MFI.getObjectAlignment(FrameIdx));
676 NewMIs.back()->addMemOperand(MF, MMO);
Owen Andersonf6372aa2008-01-01 21:11:32 +0000677}
678
Hal Finkeld21e9302011-12-06 20:55:36 +0000679bool
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000680PPCInstrInfo::LoadRegFromStackSlot(MachineFunction &MF, DebugLoc DL,
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000681 unsigned DestReg, int FrameIdx,
Bill Wendling4a66e9a2008-03-10 22:49:16 +0000682 const TargetRegisterClass *RC,
Hal Finkel32497292013-03-17 04:43:44 +0000683 SmallVectorImpl<MachineInstr*> &NewMIs,
Hal Finkel3f2c0472013-03-23 22:06:03 +0000684 bool &NonRI, bool &SpillsVRS) const{
Hal Finkelf25f93b2013-03-27 21:21:15 +0000685 // Note: If additional load instructions are added here,
686 // update isLoadFromStackSlot.
687
Craig Topperc9099502012-04-20 06:31:50 +0000688 if (PPC::GPRCRegClass.hasSubClassEq(RC)) {
Hal Finkelfc805862013-03-27 19:10:40 +0000689 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LWZ),
690 DestReg), FrameIdx));
Craig Topperc9099502012-04-20 06:31:50 +0000691 } else if (PPC::G8RCRegClass.hasSubClassEq(RC)) {
Hal Finkelfc805862013-03-27 19:10:40 +0000692 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LD), DestReg),
693 FrameIdx));
Craig Topperc9099502012-04-20 06:31:50 +0000694 } else if (PPC::F8RCRegClass.hasSubClassEq(RC)) {
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000695 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LFD), DestReg),
Owen Andersonf6372aa2008-01-01 21:11:32 +0000696 FrameIdx));
Craig Topperc9099502012-04-20 06:31:50 +0000697 } else if (PPC::F4RCRegClass.hasSubClassEq(RC)) {
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000698 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LFS), DestReg),
Owen Andersonf6372aa2008-01-01 21:11:32 +0000699 FrameIdx));
Craig Topperc9099502012-04-20 06:31:50 +0000700 } else if (PPC::CRRCRegClass.hasSubClassEq(RC)) {
Hal Finkel7285e8d2013-03-12 14:12:16 +0000701 NewMIs.push_back(addFrameReference(BuildMI(MF, DL,
702 get(PPC::RESTORE_CR), DestReg),
703 FrameIdx));
704 return true;
Craig Topperc9099502012-04-20 06:31:50 +0000705 } else if (PPC::CRBITRCRegClass.hasSubClassEq(RC)) {
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000706
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000707 unsigned Reg = 0;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000708 if (DestReg == PPC::CR0LT || DestReg == PPC::CR0GT ||
709 DestReg == PPC::CR0EQ || DestReg == PPC::CR0UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000710 Reg = PPC::CR0;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000711 else if (DestReg == PPC::CR1LT || DestReg == PPC::CR1GT ||
712 DestReg == PPC::CR1EQ || DestReg == PPC::CR1UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000713 Reg = PPC::CR1;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000714 else if (DestReg == PPC::CR2LT || DestReg == PPC::CR2GT ||
715 DestReg == PPC::CR2EQ || DestReg == PPC::CR2UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000716 Reg = PPC::CR2;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000717 else if (DestReg == PPC::CR3LT || DestReg == PPC::CR3GT ||
718 DestReg == PPC::CR3EQ || DestReg == PPC::CR3UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000719 Reg = PPC::CR3;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000720 else if (DestReg == PPC::CR4LT || DestReg == PPC::CR4GT ||
721 DestReg == PPC::CR4EQ || DestReg == PPC::CR4UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000722 Reg = PPC::CR4;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000723 else if (DestReg == PPC::CR5LT || DestReg == PPC::CR5GT ||
724 DestReg == PPC::CR5EQ || DestReg == PPC::CR5UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000725 Reg = PPC::CR5;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000726 else if (DestReg == PPC::CR6LT || DestReg == PPC::CR6GT ||
727 DestReg == PPC::CR6EQ || DestReg == PPC::CR6UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000728 Reg = PPC::CR6;
Tilmann Scheller6a3a1ba2009-07-03 06:47:55 +0000729 else if (DestReg == PPC::CR7LT || DestReg == PPC::CR7GT ||
730 DestReg == PPC::CR7EQ || DestReg == PPC::CR7UN)
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000731 Reg = PPC::CR7;
732
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000733 return LoadRegFromStackSlot(MF, DL, Reg, FrameIdx,
Hal Finkel3f2c0472013-03-23 22:06:03 +0000734 &PPC::CRRCRegClass, NewMIs, NonRI, SpillsVRS);
Nicolas Geoffray9348c692008-03-10 17:46:45 +0000735
Craig Topperc9099502012-04-20 06:31:50 +0000736 } else if (PPC::VRRCRegClass.hasSubClassEq(RC)) {
Hal Finkel32497292013-03-17 04:43:44 +0000737 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LVX), DestReg),
738 FrameIdx));
739 NonRI = true;
Hal Finkel10f7f2a2013-03-21 19:03:21 +0000740 } else if (PPC::VRSAVERCRegClass.hasSubClassEq(RC)) {
Hal Finkelb7e11e42013-03-27 00:02:20 +0000741 assert(TM.getSubtargetImpl()->isDarwin() &&
742 "VRSAVE only needs spill/restore on Darwin");
Hal Finkel10f7f2a2013-03-21 19:03:21 +0000743 NewMIs.push_back(addFrameReference(BuildMI(MF, DL,
744 get(PPC::RESTORE_VRSAVE),
745 DestReg),
746 FrameIdx));
Hal Finkel3f2c0472013-03-23 22:06:03 +0000747 SpillsVRS = true;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000748 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000749 llvm_unreachable("Unknown regclass!");
Owen Andersonf6372aa2008-01-01 21:11:32 +0000750 }
Hal Finkeld21e9302011-12-06 20:55:36 +0000751
752 return false;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000753}
754
755void
756PPCInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
Bill Wendling7194aaf2008-03-03 22:19:16 +0000757 MachineBasicBlock::iterator MI,
758 unsigned DestReg, int FrameIdx,
Evan Cheng746ad692010-05-06 19:06:44 +0000759 const TargetRegisterClass *RC,
760 const TargetRegisterInfo *TRI) const {
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000761 MachineFunction &MF = *MBB.getParent();
Owen Andersonf6372aa2008-01-01 21:11:32 +0000762 SmallVector<MachineInstr*, 4> NewMIs;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000763 DebugLoc DL;
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000764 if (MI != MBB.end()) DL = MI->getDebugLoc();
Hal Finkel32497292013-03-17 04:43:44 +0000765
766 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
767 FuncInfo->setHasSpills();
768
Hal Finkel3f2c0472013-03-23 22:06:03 +0000769 bool NonRI = false, SpillsVRS = false;
770 if (LoadRegFromStackSlot(MF, DL, DestReg, FrameIdx, RC, NewMIs,
771 NonRI, SpillsVRS))
Hal Finkeld21e9302011-12-06 20:55:36 +0000772 FuncInfo->setSpillsCR();
Hal Finkel32497292013-03-17 04:43:44 +0000773
Hal Finkel3f2c0472013-03-23 22:06:03 +0000774 if (SpillsVRS)
775 FuncInfo->setSpillsVRSAVE();
776
Hal Finkel32497292013-03-17 04:43:44 +0000777 if (NonRI)
778 FuncInfo->setHasNonRISpills();
779
Owen Andersonf6372aa2008-01-01 21:11:32 +0000780 for (unsigned i = 0, e = NewMIs.size(); i != e; ++i)
781 MBB.insert(MI, NewMIs[i]);
Jakob Stoklund Olesen7a79fcb2010-07-16 18:22:00 +0000782
783 const MachineFrameInfo &MFI = *MF.getFrameInfo();
784 MachineMemOperand *MMO =
Jay Foad978e0df2011-11-15 07:34:52 +0000785 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
Chris Lattner59db5492010-09-21 04:39:43 +0000786 MachineMemOperand::MOLoad,
Jakob Stoklund Olesen7a79fcb2010-07-16 18:22:00 +0000787 MFI.getObjectSize(FrameIdx),
788 MFI.getObjectAlignment(FrameIdx));
789 NewMIs.back()->addMemOperand(MF, MMO);
Owen Andersonf6372aa2008-01-01 21:11:32 +0000790}
791
Evan Cheng09652172010-04-26 07:39:36 +0000792MachineInstr*
793PPCInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF,
Evan Cheng8601a3d2010-04-29 01:13:30 +0000794 int FrameIx, uint64_t Offset,
Evan Cheng09652172010-04-26 07:39:36 +0000795 const MDNode *MDPtr,
796 DebugLoc DL) const {
797 MachineInstrBuilder MIB = BuildMI(MF, DL, get(PPC::DBG_VALUE));
798 addFrameReference(MIB, FrameIx, 0, false).addImm(Offset).addMetadata(MDPtr);
799 return &*MIB;
800}
801
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000802bool PPCInstrInfo::
Owen Anderson44eb65c2008-08-14 22:49:33 +0000803ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
Chris Lattner7c4fe252006-10-21 06:03:11 +0000804 assert(Cond.size() == 2 && "Invalid PPC branch opcode!");
Hal Finkel99f823f2012-06-08 15:38:21 +0000805 if (Cond[1].getReg() == PPC::CTR8 || Cond[1].getReg() == PPC::CTR)
806 Cond[0].setImm(Cond[0].getImm() == 0 ? 1 : 0);
807 else
808 // Leave the CR# the same, but invert the condition.
809 Cond[0].setImm(PPC::InvertPredicate((PPC::Predicate)Cond[0].getImm()));
Chris Lattner7c4fe252006-10-21 06:03:11 +0000810 return false;
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000811}
Nicolas Geoffray52e724a2008-04-16 20:10:13 +0000812
Hal Finkel839b9092013-04-06 19:30:30 +0000813bool PPCInstrInfo::FoldImmediate(MachineInstr *UseMI, MachineInstr *DefMI,
814 unsigned Reg, MachineRegisterInfo *MRI) const {
815 // For some instructions, it is legal to fold ZERO into the RA register field.
816 // A zero immediate should always be loaded with a single li.
817 unsigned DefOpc = DefMI->getOpcode();
818 if (DefOpc != PPC::LI && DefOpc != PPC::LI8)
819 return false;
820 if (!DefMI->getOperand(1).isImm())
821 return false;
822 if (DefMI->getOperand(1).getImm() != 0)
823 return false;
824
825 // Note that we cannot here invert the arguments of an isel in order to fold
826 // a ZERO into what is presented as the second argument. All we have here
827 // is the condition bit, and that might come from a CR-logical bit operation.
828
829 const MCInstrDesc &UseMCID = UseMI->getDesc();
830
831 // Only fold into real machine instructions.
832 if (UseMCID.isPseudo())
833 return false;
834
835 unsigned UseIdx;
836 for (UseIdx = 0; UseIdx < UseMI->getNumOperands(); ++UseIdx)
837 if (UseMI->getOperand(UseIdx).isReg() &&
838 UseMI->getOperand(UseIdx).getReg() == Reg)
839 break;
840
841 assert(UseIdx < UseMI->getNumOperands() && "Cannot find Reg in UseMI");
842 assert(UseIdx < UseMCID.getNumOperands() && "No operand description for Reg");
843
844 const MCOperandInfo *UseInfo = &UseMCID.OpInfo[UseIdx];
845
846 // We can fold the zero if this register requires a GPRC_NOR0/G8RC_NOX0
847 // register (which might also be specified as a pointer class kind).
848 if (UseInfo->isLookupPtrRegClass()) {
849 if (UseInfo->RegClass /* Kind */ != 1)
850 return false;
851 } else {
852 if (UseInfo->RegClass != PPC::GPRC_NOR0RegClassID &&
853 UseInfo->RegClass != PPC::G8RC_NOX0RegClassID)
854 return false;
855 }
856
857 // Make sure this is not tied to an output register (or otherwise
858 // constrained). This is true for ST?UX registers, for example, which
859 // are tied to their output registers.
860 if (UseInfo->Constraints != 0)
861 return false;
862
863 unsigned ZeroReg;
864 if (UseInfo->isLookupPtrRegClass()) {
865 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
866 ZeroReg = isPPC64 ? PPC::ZERO8 : PPC::ZERO;
867 } else {
868 ZeroReg = UseInfo->RegClass == PPC::G8RC_NOX0RegClassID ?
869 PPC::ZERO8 : PPC::ZERO;
870 }
871
872 bool DeleteDef = MRI->hasOneNonDBGUse(Reg);
873 UseMI->getOperand(UseIdx).setReg(ZeroReg);
874
875 if (DeleteDef)
876 DefMI->eraseFromParent();
877
878 return true;
879}
880
Hal Finkelda47e172013-04-10 18:30:16 +0000881static bool MBBDefinesCTR(MachineBasicBlock &MBB) {
882 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end();
883 I != IE; ++I)
884 if (I->definesRegister(PPC::CTR) || I->definesRegister(PPC::CTR8))
885 return true;
886 return false;
887}
888
889// We should make sure that, if we're going to predicate both sides of a
890// condition (a diamond), that both sides don't define the counter register. We
891// can predicate counter-decrement-based branches, but while that predicates
892// the branching, it does not predicate the counter decrement. If we tried to
893// merge the triangle into one predicated block, we'd decrement the counter
894// twice.
895bool PPCInstrInfo::isProfitableToIfCvt(MachineBasicBlock &TMBB,
896 unsigned NumT, unsigned ExtraT,
897 MachineBasicBlock &FMBB,
898 unsigned NumF, unsigned ExtraF,
899 const BranchProbability &Probability) const {
900 return !(MBBDefinesCTR(TMBB) && MBBDefinesCTR(FMBB));
901}
902
903
Hal Finkel7eb0d812013-04-09 22:58:37 +0000904bool PPCInstrInfo::isPredicated(const MachineInstr *MI) const {
Hal Finkel4b040292013-04-11 01:23:34 +0000905 // The predicated branches are identified by their type, not really by the
906 // explicit presence of a predicate. Furthermore, some of them can be
907 // predicated more than once. Because if conversion won't try to predicate
908 // any instruction which already claims to be predicated (by returning true
909 // here), always return false. In doing so, we let isPredicable() be the
910 // final word on whether not the instruction can be (further) predicated.
911
912 return false;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000913}
914
915bool PPCInstrInfo::isUnpredicatedTerminator(const MachineInstr *MI) const {
916 if (!MI->isTerminator())
917 return false;
918
919 // Conditional branch is a special case.
920 if (MI->isBranch() && !MI->isBarrier())
921 return true;
922
923 return !isPredicated(MI);
924}
925
926bool PPCInstrInfo::PredicateInstruction(
927 MachineInstr *MI,
928 const SmallVectorImpl<MachineOperand> &Pred) const {
929 unsigned OpC = MI->getOpcode();
930 if (OpC == PPC::BLR) {
931 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR) {
932 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
933 MI->setDesc(get(Pred[0].getImm() ?
934 (isPPC64 ? PPC::BDNZLR8 : PPC::BDNZLR) :
935 (isPPC64 ? PPC::BDZLR8 : PPC::BDZLR)));
936 } else {
937 MI->setDesc(get(PPC::BCLR));
938 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
939 .addImm(Pred[0].getImm())
940 .addReg(Pred[1].getReg());
941 }
942
943 return true;
944 } else if (OpC == PPC::B) {
945 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR) {
946 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
947 MI->setDesc(get(Pred[0].getImm() ?
948 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
949 (isPPC64 ? PPC::BDZ8 : PPC::BDZ)));
950 } else {
951 MachineBasicBlock *MBB = MI->getOperand(0).getMBB();
952 MI->RemoveOperand(0);
953
954 MI->setDesc(get(PPC::BCC));
955 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
956 .addImm(Pred[0].getImm())
957 .addReg(Pred[1].getReg())
958 .addMBB(MBB);
959 }
960
961 return true;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000962 } else if (OpC == PPC::BCTR || OpC == PPC::BCTR8 ||
963 OpC == PPC::BCTRL || OpC == PPC::BCTRL8) {
964 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR)
965 llvm_unreachable("Cannot predicate bctr[l] on the ctr register");
966
967 bool setLR = OpC == PPC::BCTRL || OpC == PPC::BCTRL8;
968 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
969 MI->setDesc(get(isPPC64 ? (setLR ? PPC::BCCTRL8 : PPC::BCCTR8) :
970 (setLR ? PPC::BCCTRL : PPC::BCCTR)));
971 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
972 .addImm(Pred[0].getImm())
973 .addReg(Pred[1].getReg());
974 return true;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000975 }
976
977 return false;
978}
979
980bool PPCInstrInfo::SubsumesPredicate(
981 const SmallVectorImpl<MachineOperand> &Pred1,
982 const SmallVectorImpl<MachineOperand> &Pred2) const {
983 assert(Pred1.size() == 2 && "Invalid PPC first predicate");
984 assert(Pred2.size() == 2 && "Invalid PPC second predicate");
985
986 if (Pred1[1].getReg() == PPC::CTR8 || Pred1[1].getReg() == PPC::CTR)
987 return false;
988 if (Pred2[1].getReg() == PPC::CTR8 || Pred2[1].getReg() == PPC::CTR)
989 return false;
990
991 PPC::Predicate P1 = (PPC::Predicate) Pred1[0].getImm();
992 PPC::Predicate P2 = (PPC::Predicate) Pred2[0].getImm();
993
994 if (P1 == P2)
995 return true;
996
997 // Does P1 subsume P2, e.g. GE subsumes GT.
998 if (P1 == PPC::PRED_LE &&
999 (P2 == PPC::PRED_LT || P2 == PPC::PRED_EQ))
1000 return true;
1001 if (P1 == PPC::PRED_GE &&
1002 (P2 == PPC::PRED_GT || P2 == PPC::PRED_EQ))
1003 return true;
1004
1005 return false;
1006}
1007
1008bool PPCInstrInfo::DefinesPredicate(MachineInstr *MI,
1009 std::vector<MachineOperand> &Pred) const {
1010 // Note: At the present time, the contents of Pred from this function is
1011 // unused by IfConversion. This implementation follows ARM by pushing the
1012 // CR-defining operand. Because the 'DZ' and 'DNZ' count as types of
1013 // predicate, instructions defining CTR or CTR8 are also included as
1014 // predicate-defining instructions.
1015
1016 const TargetRegisterClass *RCs[] =
1017 { &PPC::CRRCRegClass, &PPC::CRBITRCRegClass,
1018 &PPC::CTRRCRegClass, &PPC::CTRRC8RegClass };
1019
1020 bool Found = false;
1021 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1022 const MachineOperand &MO = MI->getOperand(i);
Hal Finkel4e317282013-04-10 07:17:47 +00001023 for (unsigned c = 0; c < array_lengthof(RCs) && !Found; ++c) {
Hal Finkel7eb0d812013-04-09 22:58:37 +00001024 const TargetRegisterClass *RC = RCs[c];
Hal Finkel4e317282013-04-10 07:17:47 +00001025 if (MO.isReg()) {
1026 if (MO.isDef() && RC->contains(MO.getReg())) {
Hal Finkel7eb0d812013-04-09 22:58:37 +00001027 Pred.push_back(MO);
1028 Found = true;
1029 }
Hal Finkel4e317282013-04-10 07:17:47 +00001030 } else if (MO.isRegMask()) {
1031 for (TargetRegisterClass::iterator I = RC->begin(),
1032 IE = RC->end(); I != IE; ++I)
1033 if (MO.clobbersPhysReg(*I)) {
1034 Pred.push_back(MO);
1035 Found = true;
1036 }
Hal Finkel7eb0d812013-04-09 22:58:37 +00001037 }
1038 }
1039 }
1040
1041 return Found;
1042}
1043
1044bool PPCInstrInfo::isPredicable(MachineInstr *MI) const {
1045 unsigned OpC = MI->getOpcode();
1046 switch (OpC) {
1047 default:
1048 return false;
1049 case PPC::B:
1050 case PPC::BLR:
Hal Finkel90dd7fd2013-04-10 06:42:34 +00001051 case PPC::BCTR:
1052 case PPC::BCTR8:
1053 case PPC::BCTRL:
1054 case PPC::BCTRL8:
Hal Finkel7eb0d812013-04-09 22:58:37 +00001055 return true;
1056 }
1057}
1058
Hal Finkel860c08c2013-04-18 22:15:08 +00001059bool PPCInstrInfo::analyzeCompare(const MachineInstr *MI,
1060 unsigned &SrcReg, unsigned &SrcReg2,
1061 int &Mask, int &Value) const {
1062 unsigned Opc = MI->getOpcode();
1063
1064 switch (Opc) {
1065 default: return false;
1066 case PPC::CMPWI:
1067 case PPC::CMPLWI:
1068 case PPC::CMPDI:
1069 case PPC::CMPLDI:
1070 SrcReg = MI->getOperand(1).getReg();
1071 SrcReg2 = 0;
1072 Value = MI->getOperand(2).getImm();
1073 Mask = 0xFFFF;
1074 return true;
1075 case PPC::CMPW:
1076 case PPC::CMPLW:
1077 case PPC::CMPD:
1078 case PPC::CMPLD:
1079 case PPC::FCMPUS:
1080 case PPC::FCMPUD:
1081 SrcReg = MI->getOperand(1).getReg();
1082 SrcReg2 = MI->getOperand(2).getReg();
1083 return true;
1084 }
1085}
1086
1087bool PPCInstrInfo::optimizeCompareInstr(MachineInstr *CmpInstr,
1088 unsigned SrcReg, unsigned SrcReg2,
1089 int Mask, int Value,
1090 const MachineRegisterInfo *MRI) const {
1091 int OpC = CmpInstr->getOpcode();
1092 unsigned CRReg = CmpInstr->getOperand(0).getReg();
1093 bool isFP = OpC == PPC::FCMPUS || OpC == PPC::FCMPUD;
1094 unsigned CRRecReg = isFP ? PPC::CR1 : PPC::CR0;
1095
1096 // The record forms set the condition register based on a signed comparison
1097 // with zero (so says the ISA manual). This is not as straightforward as it
1098 // seems, however, because this is always a 64-bit comparison on PPC64, even
1099 // for instructions that are 32-bit in nature (like slw for example).
1100 // So, on PPC32, for unsigned comparisons, we can use the record forms only
1101 // for equality checks (as those don't depend on the sign). On PPC64,
1102 // we are restricted to equality for unsigned 64-bit comparisons and for
1103 // signed 32-bit comparisons the applicability is more restricted.
1104 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
1105 bool is32BitSignedCompare = OpC == PPC::CMPWI || OpC == PPC::CMPW;
1106 bool is32BitUnsignedCompare = OpC == PPC::CMPLWI || OpC == PPC::CMPLW;
1107 bool is64BitUnsignedCompare = OpC == PPC::CMPLDI || OpC == PPC::CMPLD;
1108
1109 // Get the unique definition of SrcReg.
1110 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
1111 if (!MI) return false;
1112 int MIOpC = MI->getOpcode();
1113
1114 bool equalityOnly = false;
1115 bool noSub = false;
1116 if (isPPC64) {
1117 if (is32BitSignedCompare) {
1118 // We can perform this optimization only if MI is sign-extending.
1119 if (MIOpC == PPC::SRAW || MIOpC == PPC::SRAWo ||
1120 MIOpC == PPC::SRAWI || MIOpC == PPC::SRAWIo ||
1121 MIOpC == PPC::EXTSB || MIOpC == PPC::EXTSBo ||
1122 MIOpC == PPC::EXTSH || MIOpC == PPC::EXTSHo ||
1123 MIOpC == PPC::EXTSW || MIOpC == PPC::EXTSWo) {
1124 noSub = true;
1125 } else
1126 return false;
1127 } else if (is32BitUnsignedCompare) {
1128 // We can perform this optimization, equality only, if MI is
1129 // zero-extending.
1130 if (MIOpC == PPC::CNTLZW || MIOpC == PPC::CNTLZWo ||
1131 MIOpC == PPC::SLW || MIOpC == PPC::SLWo ||
1132 MIOpC == PPC::SRW || MIOpC == PPC::SRWo) {
1133 noSub = true;
1134 equalityOnly = true;
1135 } else
1136 return false;
1137 } else if (!isFP)
1138 equalityOnly = is64BitUnsignedCompare;
1139 } else if (!isFP)
1140 equalityOnly = is32BitUnsignedCompare;
1141
1142 if (equalityOnly) {
1143 // We need to check the uses of the condition register in order to reject
1144 // non-equality comparisons.
1145 for (MachineRegisterInfo::use_iterator I = MRI->use_begin(CRReg),
1146 IE = MRI->use_end(); I != IE; ++I) {
1147 MachineInstr *UseMI = &*I;
1148 if (UseMI->getOpcode() == PPC::BCC) {
1149 unsigned Pred = UseMI->getOperand(0).getImm();
1150 if (Pred == PPC::PRED_EQ || Pred == PPC::PRED_NE)
1151 continue;
1152
1153 return false;
1154 } else if (UseMI->getOpcode() == PPC::ISEL ||
1155 UseMI->getOpcode() == PPC::ISEL8) {
1156 unsigned SubIdx = UseMI->getOperand(3).getSubReg();
1157 if (SubIdx == PPC::sub_eq)
1158 continue;
1159
1160 return false;
1161 } else
1162 return false;
1163 }
1164 }
1165
1166 // Get ready to iterate backward from CmpInstr.
1167 MachineBasicBlock::iterator I = CmpInstr, E = MI,
1168 B = CmpInstr->getParent()->begin();
1169
1170 // Scan forward to find the first use of the compare.
1171 for (MachineBasicBlock::iterator EL = CmpInstr->getParent()->end();
1172 I != EL; ++I) {
1173 bool FoundUse = false;
1174 for (MachineRegisterInfo::use_iterator J = MRI->use_begin(CRReg),
1175 JE = MRI->use_end(); J != JE; ++J)
1176 if (&*J == &*I) {
1177 FoundUse = true;
1178 break;
1179 }
1180
1181 if (FoundUse)
1182 break;
1183 }
1184
1185 // Early exit if we're at the beginning of the BB.
1186 if (I == B) return false;
1187
1188 // There are two possible candidates which can be changed to set CR[01].
1189 // One is MI, the other is a SUB instruction.
1190 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
1191 MachineInstr *Sub = NULL;
1192 if (SrcReg2 != 0)
1193 // MI is not a candidate for CMPrr.
1194 MI = NULL;
1195 // FIXME: Conservatively refuse to convert an instruction which isn't in the
1196 // same BB as the comparison. This is to allow the check below to avoid calls
1197 // (and other explicit clobbers); instead we should really check for these
1198 // more explicitly (in at least a few predecessors).
1199 else if (MI->getParent() != CmpInstr->getParent() || Value != 0) {
1200 // PPC does not have a record-form SUBri.
1201 return false;
1202 }
1203
1204 // Search for Sub.
1205 const TargetRegisterInfo *TRI = &getRegisterInfo();
1206 --I;
1207 for (; I != E && !noSub; --I) {
1208 const MachineInstr &Instr = *I;
1209 unsigned IOpC = Instr.getOpcode();
1210
1211 if (&*I != CmpInstr && (
1212 Instr.modifiesRegister(CRRecReg, TRI) ||
1213 Instr.readsRegister(CRRecReg, TRI)))
1214 // This instruction modifies or uses the record condition register after
1215 // the one we want to change. While we could do this transformation, it
1216 // would likely not be profitable. This transformation removes one
1217 // instruction, and so even forcing RA to generate one move probably
1218 // makes it unprofitable.
1219 return false;
1220
1221 // Check whether CmpInstr can be made redundant by the current instruction.
1222 if ((OpC == PPC::CMPW || OpC == PPC::CMPLW ||
1223 OpC == PPC::CMPD || OpC == PPC::CMPLD) &&
1224 (IOpC == PPC::SUBF || IOpC == PPC::SUBF8) &&
1225 ((Instr.getOperand(1).getReg() == SrcReg &&
1226 Instr.getOperand(2).getReg() == SrcReg2) ||
1227 (Instr.getOperand(1).getReg() == SrcReg2 &&
1228 Instr.getOperand(2).getReg() == SrcReg))) {
1229 Sub = &*I;
1230 break;
1231 }
1232
1233 if (isFP && (IOpC == PPC::FSUB || IOpC == PPC::FSUBS) &&
1234 ((Instr.getOperand(1).getReg() == SrcReg &&
1235 Instr.getOperand(2).getReg() == SrcReg2) ||
1236 (Instr.getOperand(1).getReg() == SrcReg2 &&
1237 Instr.getOperand(2).getReg() == SrcReg))) {
1238 Sub = &*I;
1239 break;
1240 }
1241
1242 if (I == B)
1243 // The 'and' is below the comparison instruction.
1244 return false;
1245 }
1246
1247 // Return false if no candidates exist.
1248 if (!MI && !Sub)
1249 return false;
1250
1251 // The single candidate is called MI.
1252 if (!MI) MI = Sub;
1253
1254 int NewOpC = -1;
1255 MIOpC = MI->getOpcode();
1256 if (MIOpC == PPC::ANDIo || MIOpC == PPC::ANDIo8)
1257 NewOpC = MIOpC;
1258 else {
1259 NewOpC = PPC::getRecordFormOpcode(MIOpC);
1260 if (NewOpC == -1 && PPC::getNonRecordFormOpcode(MIOpC) != -1)
1261 NewOpC = MIOpC;
1262 }
1263
1264 // FIXME: On the non-embedded POWER architectures, only some of the record
1265 // forms are fast, and we should use only the fast ones.
1266
1267 // The defining instruction has a record form (or is already a record
1268 // form). It is possible, however, that we'll need to reverse the condition
1269 // code of the users.
1270 if (NewOpC == -1)
1271 return false;
1272
1273 SmallVector<std::pair<MachineOperand*, PPC::Predicate>, 4>
1274 OperandsToUpdate;
1275 SmallVector<std::pair<MachineOperand*, MachineOperand*>, 4>
1276 OperandsToSwap;
1277
1278 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based on CMP
1279 // needs to be updated to be based on SUB. Push the condition code
1280 // operands to OperandsToUpdate. If it is safe to remove CmpInstr, the
1281 // condition code of these operands will be modified.
1282 bool ShouldSwap = false;
1283 if (Sub) {
1284 ShouldSwap = SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
1285 Sub->getOperand(2).getReg() == SrcReg;
1286
1287 // The operands to subf are the opposite of sub, so only in the fixed-point
1288 // case, invert the order.
1289 if (!isFP)
1290 ShouldSwap = !ShouldSwap;
1291 }
1292
1293 if (ShouldSwap)
1294 for (MachineRegisterInfo::use_iterator I = MRI->use_begin(CRReg),
1295 IE = MRI->use_end(); I != IE; ++I) {
1296 MachineInstr *UseMI = &*I;
1297 if (UseMI->getOpcode() == PPC::BCC) {
1298 PPC::Predicate Pred = (PPC::Predicate) UseMI->getOperand(0).getImm();
1299 if (ShouldSwap)
1300 OperandsToUpdate.push_back(std::make_pair(&((*I).getOperand(0)),
1301 PPC::InvertPredicate(Pred)));
1302 } else if (UseMI->getOpcode() == PPC::ISEL ||
1303 UseMI->getOpcode() == PPC::ISEL8) {
1304 if (ShouldSwap)
1305 OperandsToSwap.push_back(std::make_pair(&((*I).getOperand(1)),
1306 &((*I).getOperand(2))));
1307 } else // We need to abort on a user we don't understand.
1308 return false;
1309 }
1310
1311 // Create a new virtual register to hold the value of the CR set by the
1312 // record-form instruction. If the instruction was not previously in
1313 // record form, then set the kill flag on the CR.
1314 CmpInstr->eraseFromParent();
1315
1316 MachineBasicBlock::iterator MII = MI;
1317 BuildMI(*MI->getParent(), llvm::next(MII), MI->getDebugLoc(),
1318 get(TargetOpcode::COPY), CRReg)
1319 .addReg(CRRecReg, MIOpC != NewOpC ? RegState::Kill : 0);
1320
1321 if (MIOpC != NewOpC) {
1322 // We need to be careful here: we're replacing one instruction with
1323 // another, and we need to make sure that we get all of the right
1324 // implicit uses and defs. On the other hand, the caller may be holding
1325 // an iterator to this instruction, and so we can't delete it (this is
1326 // specifically the case if this is the instruction directly after the
1327 // compare).
1328
1329 const MCInstrDesc &NewDesc = get(NewOpC);
1330 MI->setDesc(NewDesc);
1331
1332 if (NewDesc.ImplicitDefs)
1333 for (const uint16_t *ImpDefs = NewDesc.getImplicitDefs();
1334 *ImpDefs; ++ImpDefs)
1335 if (!MI->definesRegister(*ImpDefs))
1336 MI->addOperand(*MI->getParent()->getParent(),
1337 MachineOperand::CreateReg(*ImpDefs, true, true));
1338 if (NewDesc.ImplicitUses)
1339 for (const uint16_t *ImpUses = NewDesc.getImplicitUses();
1340 *ImpUses; ++ImpUses)
1341 if (!MI->readsRegister(*ImpUses))
1342 MI->addOperand(*MI->getParent()->getParent(),
1343 MachineOperand::CreateReg(*ImpUses, false, true));
1344 }
1345
1346 // Modify the condition code of operands in OperandsToUpdate.
1347 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
1348 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
1349 for (unsigned i = 0, e = OperandsToUpdate.size(); i < e; i++)
1350 OperandsToUpdate[i].first->setImm(OperandsToUpdate[i].second);
1351
1352 for (unsigned i = 0, e = OperandsToSwap.size(); i < e; i++)
1353 std::swap(*OperandsToSwap[i].first, *OperandsToSwap[i].second);
1354
1355 return true;
1356}
1357
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001358/// GetInstSize - Return the number of bytes of code the specified
1359/// instruction may be. This returns the maximum number of bytes.
1360///
1361unsigned PPCInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
1362 switch (MI->getOpcode()) {
1363 case PPC::INLINEASM: { // Inline Asm: Variable size.
1364 const MachineFunction *MF = MI->getParent()->getParent();
1365 const char *AsmStr = MI->getOperand(0).getSymbolName();
Chris Lattneraf76e592009-08-22 20:48:53 +00001366 return getInlineAsmLength(AsmStr, *MF->getTarget().getMCAsmInfo());
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001367 }
Bill Wendling7431bea2010-07-16 22:20:36 +00001368 case PPC::PROLOG_LABEL:
Dan Gohman44066042008-07-01 00:05:16 +00001369 case PPC::EH_LABEL:
1370 case PPC::GC_LABEL:
Dale Johannesen375be772010-04-07 19:51:44 +00001371 case PPC::DBG_VALUE:
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001372 return 0;
Ulrich Weigand86765fb2013-03-22 15:24:13 +00001373 case PPC::BL8_NOP:
1374 case PPC::BLA8_NOP:
Hal Finkel5b00cea2012-03-31 14:45:15 +00001375 return 8;
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001376 default:
1377 return 4; // PowerPC instructions are all 4 bytes
1378 }
1379}
Hal Finkel5ee67e82013-04-08 16:24:03 +00001380
1381#undef DEBUG_TYPE
1382#define DEBUG_TYPE "ppc-early-ret"
1383STATISTIC(NumBCLR, "Number of early conditional returns");
1384STATISTIC(NumBLR, "Number of early returns");
1385
1386namespace llvm {
1387 void initializePPCEarlyReturnPass(PassRegistry&);
1388}
1389
1390namespace {
1391 // PPCEarlyReturn pass - For simple functions without epilogue code, move
1392 // returns up, and create conditional returns, to avoid unnecessary
1393 // branch-to-blr sequences.
1394 struct PPCEarlyReturn : public MachineFunctionPass {
1395 static char ID;
1396 PPCEarlyReturn() : MachineFunctionPass(ID) {
1397 initializePPCEarlyReturnPass(*PassRegistry::getPassRegistry());
1398 }
1399
1400 const PPCTargetMachine *TM;
1401 const PPCInstrInfo *TII;
1402
1403protected:
Hal Finkel13049ae2013-04-09 18:25:18 +00001404 bool processBlock(MachineBasicBlock &ReturnMBB) {
Hal Finkel5ee67e82013-04-08 16:24:03 +00001405 bool Changed = false;
1406
Hal Finkel13049ae2013-04-09 18:25:18 +00001407 MachineBasicBlock::iterator I = ReturnMBB.begin();
1408 I = ReturnMBB.SkipPHIsAndLabels(I);
Hal Finkel5ee67e82013-04-08 16:24:03 +00001409
1410 // The block must be essentially empty except for the blr.
Hal Finkel13049ae2013-04-09 18:25:18 +00001411 if (I == ReturnMBB.end() || I->getOpcode() != PPC::BLR ||
1412 I != ReturnMBB.getLastNonDebugInstr())
Hal Finkel5ee67e82013-04-08 16:24:03 +00001413 return Changed;
1414
1415 SmallVector<MachineBasicBlock*, 8> PredToRemove;
Hal Finkel13049ae2013-04-09 18:25:18 +00001416 for (MachineBasicBlock::pred_iterator PI = ReturnMBB.pred_begin(),
1417 PIE = ReturnMBB.pred_end(); PI != PIE; ++PI) {
Hal Finkel5ee67e82013-04-08 16:24:03 +00001418 bool OtherReference = false, BlockChanged = false;
Hal Finkel13049ae2013-04-09 18:25:18 +00001419 for (MachineBasicBlock::iterator J = (*PI)->getLastNonDebugInstr();;) {
Hal Finkel5ee67e82013-04-08 16:24:03 +00001420 if (J->getOpcode() == PPC::B) {
Hal Finkel13049ae2013-04-09 18:25:18 +00001421 if (J->getOperand(0).getMBB() == &ReturnMBB) {
Hal Finkel5ee67e82013-04-08 16:24:03 +00001422 // This is an unconditional branch to the return. Replace the
1423 // branch with a blr.
1424 BuildMI(**PI, J, J->getDebugLoc(), TII->get(PPC::BLR));
Hal Finkel13049ae2013-04-09 18:25:18 +00001425 MachineBasicBlock::iterator K = J--;
Hal Finkel5ee67e82013-04-08 16:24:03 +00001426 K->eraseFromParent();
1427 BlockChanged = true;
1428 ++NumBLR;
1429 continue;
1430 }
1431 } else if (J->getOpcode() == PPC::BCC) {
Hal Finkel13049ae2013-04-09 18:25:18 +00001432 if (J->getOperand(2).getMBB() == &ReturnMBB) {
Hal Finkel5ee67e82013-04-08 16:24:03 +00001433 // This is a conditional branch to the return. Replace the branch
1434 // with a bclr.
1435 BuildMI(**PI, J, J->getDebugLoc(), TII->get(PPC::BCLR))
1436 .addImm(J->getOperand(0).getImm())
1437 .addReg(J->getOperand(1).getReg());
Hal Finkel13049ae2013-04-09 18:25:18 +00001438 MachineBasicBlock::iterator K = J--;
Hal Finkel5ee67e82013-04-08 16:24:03 +00001439 K->eraseFromParent();
1440 BlockChanged = true;
1441 ++NumBCLR;
1442 continue;
1443 }
1444 } else if (J->isBranch()) {
1445 if (J->isIndirectBranch()) {
Hal Finkel13049ae2013-04-09 18:25:18 +00001446 if (ReturnMBB.hasAddressTaken())
Hal Finkel5ee67e82013-04-08 16:24:03 +00001447 OtherReference = true;
1448 } else
1449 for (unsigned i = 0; i < J->getNumOperands(); ++i)
1450 if (J->getOperand(i).isMBB() &&
Hal Finkel13049ae2013-04-09 18:25:18 +00001451 J->getOperand(i).getMBB() == &ReturnMBB)
Hal Finkel5ee67e82013-04-08 16:24:03 +00001452 OtherReference = true;
Hal Finkel13049ae2013-04-09 18:25:18 +00001453 } else if (!J->isTerminator() && !J->isDebugValue())
1454 break;
Hal Finkel5ee67e82013-04-08 16:24:03 +00001455
Hal Finkel13049ae2013-04-09 18:25:18 +00001456 if (J == (*PI)->begin())
1457 break;
1458
1459 --J;
Hal Finkel5ee67e82013-04-08 16:24:03 +00001460 }
1461
Hal Finkel13049ae2013-04-09 18:25:18 +00001462 if ((*PI)->canFallThrough() && (*PI)->isLayoutSuccessor(&ReturnMBB))
Hal Finkel5ee67e82013-04-08 16:24:03 +00001463 OtherReference = true;
1464
1465 // Predecessors are stored in a vector and can't be removed here.
1466 if (!OtherReference && BlockChanged) {
1467 PredToRemove.push_back(*PI);
1468 }
1469
1470 if (BlockChanged)
1471 Changed = true;
1472 }
1473
1474 for (unsigned i = 0, ie = PredToRemove.size(); i != ie; ++i)
Hal Finkel13049ae2013-04-09 18:25:18 +00001475 PredToRemove[i]->removeSuccessor(&ReturnMBB);
Hal Finkel5ee67e82013-04-08 16:24:03 +00001476
Hal Finkel13049ae2013-04-09 18:25:18 +00001477 if (Changed && !ReturnMBB.hasAddressTaken()) {
Hal Finkel5ee67e82013-04-08 16:24:03 +00001478 // We now might be able to merge this blr-only block into its
1479 // by-layout predecessor.
Hal Finkel13049ae2013-04-09 18:25:18 +00001480 if (ReturnMBB.pred_size() == 1 &&
1481 (*ReturnMBB.pred_begin())->isLayoutSuccessor(&ReturnMBB)) {
Hal Finkel5ee67e82013-04-08 16:24:03 +00001482 // Move the blr into the preceding block.
Hal Finkel13049ae2013-04-09 18:25:18 +00001483 MachineBasicBlock &PrevMBB = **ReturnMBB.pred_begin();
1484 PrevMBB.splice(PrevMBB.end(), &ReturnMBB, I);
1485 PrevMBB.removeSuccessor(&ReturnMBB);
Hal Finkel5ee67e82013-04-08 16:24:03 +00001486 }
1487
Hal Finkel13049ae2013-04-09 18:25:18 +00001488 if (ReturnMBB.pred_empty())
1489 ReturnMBB.eraseFromParent();
Hal Finkel5ee67e82013-04-08 16:24:03 +00001490 }
1491
1492 return Changed;
1493 }
1494
1495public:
1496 virtual bool runOnMachineFunction(MachineFunction &MF) {
1497 TM = static_cast<const PPCTargetMachine *>(&MF.getTarget());
1498 TII = TM->getInstrInfo();
1499
1500 bool Changed = false;
1501
Hal Finkel13049ae2013-04-09 18:25:18 +00001502 // If the function does not have at least two blocks, then there is
Hal Finkel5ee67e82013-04-08 16:24:03 +00001503 // nothing to do.
1504 if (MF.size() < 2)
1505 return Changed;
1506
1507 for (MachineFunction::iterator I = MF.begin(); I != MF.end();) {
1508 MachineBasicBlock &B = *I++;
1509 if (processBlock(B))
1510 Changed = true;
1511 }
1512
1513 return Changed;
1514 }
1515
1516 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
1517 MachineFunctionPass::getAnalysisUsage(AU);
1518 }
1519 };
1520}
1521
1522INITIALIZE_PASS(PPCEarlyReturn, DEBUG_TYPE,
1523 "PowerPC Early-Return Creation", false, false)
1524
1525char PPCEarlyReturn::ID = 0;
1526FunctionPass*
1527llvm::createPPCEarlyReturnPass() { return new PPCEarlyReturn(); }
1528