blob: 0f7990179168771ca7a336903cf24916759d3d1d [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- PPCInstrInfo.cpp - PowerPC Instruction Information ----------------===//
Misha Brukmanb4402432005-04-21 23:30:14 +00002//
Misha Brukman116f9272004-08-17 04:55:41 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb4402432005-04-21 23:30:14 +00007//
Misha Brukman116f9272004-08-17 04:55:41 +00008//===----------------------------------------------------------------------===//
9//
10// This file contains the PowerPC implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner6f3b9542005-10-14 23:59:06 +000014#include "PPCInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "MCTargetDesc/PPCPredicates.h"
Evan Chengc5e6d2f2011-07-11 03:57:24 +000016#include "PPC.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "PPCHazardRecognizers.h"
Owen Andersoneee14602008-01-01 21:11:32 +000018#include "PPCInstrBuilder.h"
Bill Wendling632ea652008-03-03 22:19:16 +000019#include "PPCMachineFunctionInfo.h"
Chris Lattner49cadab2006-06-17 00:01:04 +000020#include "PPCTargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/STLExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000022#include "llvm/ADT/Statistic.h"
Hal Finkel174e5902014-03-25 23:29:21 +000023#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
Hal Finkelb5aa7e52013-04-08 16:24:03 +000025#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman116f9272004-08-17 04:55:41 +000026#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +000027#include "llvm/CodeGen/MachineMemOperand.h"
Jakob Stoklund Olesenddbf7a82010-02-26 21:09:24 +000028#include "llvm/CodeGen/MachineRegisterInfo.h"
Hal Finkel9f9f8922012-04-01 19:22:40 +000029#include "llvm/CodeGen/PseudoSourceValue.h"
Hal Finkel174e5902014-03-25 23:29:21 +000030#include "llvm/CodeGen/SlotIndexes.h"
Evan Chengc5e6d2f2011-07-11 03:57:24 +000031#include "llvm/MC/MCAsmInfo.h"
Bill Wendling1af20ad2008-03-04 23:13:51 +000032#include "llvm/Support/CommandLine.h"
Hal Finkel174e5902014-03-25 23:29:21 +000033#include "llvm/Support/Debug.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000035#include "llvm/Support/TargetRegistry.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000036#include "llvm/Support/raw_ostream.h"
Misha Brukman116f9272004-08-17 04:55:41 +000037
Hal Finkel82656cb2013-04-18 22:15:08 +000038#define GET_INSTRMAP_INFO
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000039#define GET_INSTRINFO_CTOR_DTOR
Evan Cheng1e210d02011-06-28 20:07:07 +000040#include "PPCGenInstrInfo.inc"
41
Dan Gohman20857192010-04-15 17:20:57 +000042using namespace llvm;
Bill Wendling1af20ad2008-03-04 23:13:51 +000043
Hal Finkel821e0012012-06-08 15:38:25 +000044static cl::
Hal Finkelc6b5deb2012-06-08 19:19:53 +000045opt<bool> DisableCTRLoopAnal("disable-ppc-ctrloop-analysis", cl::Hidden,
46 cl::desc("Disable analysis for CTR loops"));
Hal Finkel821e0012012-06-08 15:38:25 +000047
Hal Finkele6322392013-04-19 22:08:38 +000048static cl::opt<bool> DisableCmpOpt("disable-ppc-cmp-opt",
Hal Finkelb12da6b2013-04-18 22:54:25 +000049cl::desc("Disable compare instruction optimization"), cl::Hidden);
50
Hal Finkel174e5902014-03-25 23:29:21 +000051static cl::opt<bool> DisableVSXFMAMutate("disable-ppc-vsx-fma-mutation",
52cl::desc("Disable VSX FMA instruction mutation"), cl::Hidden);
53
Hal Finkel9dcb3582014-03-27 22:46:28 +000054static cl::opt<bool> VSXSelfCopyCrash("crash-on-ppc-vsx-self-copy",
55cl::desc("Causes the backend to crash instead of generating a nop VSX copy"),
56cl::Hidden);
57
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000058// Pin the vtable to this file.
59void PPCInstrInfo::anchor() {}
60
Chris Lattner49cadab2006-06-17 00:01:04 +000061PPCInstrInfo::PPCInstrInfo(PPCTargetMachine &tm)
Evan Cheng703a0fb2011-07-01 17:57:27 +000062 : PPCGenInstrInfo(PPC::ADJCALLSTACKDOWN, PPC::ADJCALLSTACKUP),
Bill Wendling5e7656b2013-06-07 07:55:53 +000063 TM(tm), RI(*TM.getSubtargetImpl()) {}
Chris Lattner49cadab2006-06-17 00:01:04 +000064
Andrew Trick10ffc2b2010-12-24 05:03:26 +000065/// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
66/// this target when scheduling the DAG.
67ScheduleHazardRecognizer *PPCInstrInfo::CreateTargetHazardRecognizer(
68 const TargetMachine *TM,
69 const ScheduleDAG *DAG) const {
Hal Finkel6fa56972011-10-17 04:03:49 +000070 unsigned Directive = TM->getSubtarget<PPCSubtarget>().getDarwinDirective();
Hal Finkel742b5352012-08-28 16:12:39 +000071 if (Directive == PPC::DIR_440 || Directive == PPC::DIR_A2 ||
72 Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) {
Hal Finkel6f0ae782011-11-22 16:21:04 +000073 const InstrItineraryData *II = TM->getInstrItineraryData();
Hal Finkel563cc052013-12-02 23:52:46 +000074 return new ScoreboardHazardRecognizer(II, DAG);
Hal Finkel6fa56972011-10-17 04:03:49 +000075 }
Hal Finkel58ca3602011-12-02 04:58:02 +000076
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +000077 return TargetInstrInfo::CreateTargetHazardRecognizer(TM, DAG);
Andrew Trick10ffc2b2010-12-24 05:03:26 +000078}
79
Hal Finkel58ca3602011-12-02 04:58:02 +000080/// CreateTargetPostRAHazardRecognizer - Return the postRA hazard recognizer
81/// to use for this target when scheduling the DAG.
82ScheduleHazardRecognizer *PPCInstrInfo::CreateTargetPostRAHazardRecognizer(
83 const InstrItineraryData *II,
84 const ScheduleDAG *DAG) const {
85 unsigned Directive = TM.getSubtarget<PPCSubtarget>().getDarwinDirective();
86
Hal Finkelceb1f122013-12-12 00:19:11 +000087 if (Directive == PPC::DIR_PWR7)
88 return new PPCDispatchGroupSBHazardRecognizer(II, DAG);
89
Hal Finkel58ca3602011-12-02 04:58:02 +000090 // Most subtargets use a PPC970 recognizer.
Hal Finkel742b5352012-08-28 16:12:39 +000091 if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2 &&
92 Directive != PPC::DIR_E500mc && Directive != PPC::DIR_E5500) {
Benjamin Kramerf0ec1992013-06-07 11:23:35 +000093 assert(TM.getInstrInfo() && "No InstrInfo?");
Hal Finkel58ca3602011-12-02 04:58:02 +000094
Bill Wendling5e7656b2013-06-07 07:55:53 +000095 return new PPCHazardRecognizer970(TM);
Hal Finkel58ca3602011-12-02 04:58:02 +000096 }
97
Hal Finkel563cc052013-12-02 23:52:46 +000098 return new ScoreboardHazardRecognizer(II, DAG);
Hal Finkel58ca3602011-12-02 04:58:02 +000099}
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000100
Hal Finkelceb1f122013-12-12 00:19:11 +0000101
102int PPCInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
103 const MachineInstr *DefMI, unsigned DefIdx,
104 const MachineInstr *UseMI,
105 unsigned UseIdx) const {
106 int Latency = PPCGenInstrInfo::getOperandLatency(ItinData, DefMI, DefIdx,
107 UseMI, UseIdx);
108
109 const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
110 unsigned Reg = DefMO.getReg();
111
112 const TargetRegisterInfo *TRI = &getRegisterInfo();
113 bool IsRegCR;
114 if (TRI->isVirtualRegister(Reg)) {
115 const MachineRegisterInfo *MRI =
116 &DefMI->getParent()->getParent()->getRegInfo();
117 IsRegCR = MRI->getRegClass(Reg)->hasSuperClassEq(&PPC::CRRCRegClass) ||
118 MRI->getRegClass(Reg)->hasSuperClassEq(&PPC::CRBITRCRegClass);
119 } else {
120 IsRegCR = PPC::CRRCRegClass.contains(Reg) ||
121 PPC::CRBITRCRegClass.contains(Reg);
122 }
123
124 if (UseMI->isBranch() && IsRegCR) {
125 if (Latency < 0)
126 Latency = getInstrLatency(ItinData, DefMI);
127
128 // On some cores, there is an additional delay between writing to a condition
129 // register, and using it from a branch.
130 unsigned Directive = TM.getSubtarget<PPCSubtarget>().getDarwinDirective();
131 switch (Directive) {
132 default: break;
133 case PPC::DIR_7400:
134 case PPC::DIR_750:
135 case PPC::DIR_970:
136 case PPC::DIR_E5500:
137 case PPC::DIR_PWR4:
138 case PPC::DIR_PWR5:
139 case PPC::DIR_PWR5X:
140 case PPC::DIR_PWR6:
141 case PPC::DIR_PWR6X:
142 case PPC::DIR_PWR7:
143 Latency += 2;
144 break;
145 }
146 }
147
148 return Latency;
149}
150
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000151// Detect 32 -> 64-bit extensions where we may reuse the low sub-register.
152bool PPCInstrInfo::isCoalescableExtInstr(const MachineInstr &MI,
153 unsigned &SrcReg, unsigned &DstReg,
154 unsigned &SubIdx) const {
155 switch (MI.getOpcode()) {
156 default: return false;
157 case PPC::EXTSW:
158 case PPC::EXTSW_32_64:
159 SrcReg = MI.getOperand(1).getReg();
160 DstReg = MI.getOperand(0).getReg();
161 SubIdx = PPC::sub_32;
162 return true;
163 }
164}
165
Andrew Trickc416ba62010-12-24 04:28:06 +0000166unsigned PPCInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
Chris Lattner91400bd2006-03-16 22:24:02 +0000167 int &FrameIndex) const {
Hal Finkel37714b82013-03-27 21:21:15 +0000168 // Note: This list must be kept consistent with LoadRegFromStackSlot.
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000169 switch (MI->getOpcode()) {
170 default: break;
171 case PPC::LD:
172 case PPC::LWZ:
173 case PPC::LFS:
174 case PPC::LFD:
Hal Finkel37714b82013-03-27 21:21:15 +0000175 case PPC::RESTORE_CR:
Hal Finkel940ab932014-02-28 00:27:01 +0000176 case PPC::RESTORE_CRBIT:
Hal Finkel37714b82013-03-27 21:21:15 +0000177 case PPC::LVX:
Hal Finkel27774d92014-03-13 07:58:58 +0000178 case PPC::LXVD2X:
Hal Finkel37714b82013-03-27 21:21:15 +0000179 case PPC::RESTORE_VRSAVE:
180 // Check for the operands added by addFrameReference (the immediate is the
181 // offset which defaults to 0).
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000182 if (MI->getOperand(1).isImm() && !MI->getOperand(1).getImm() &&
183 MI->getOperand(2).isFI()) {
Chris Lattnera5bb3702007-12-30 23:10:15 +0000184 FrameIndex = MI->getOperand(2).getIndex();
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000185 return MI->getOperand(0).getReg();
186 }
187 break;
188 }
189 return 0;
Chris Lattnerc327d712006-02-02 20:16:12 +0000190}
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000191
Andrew Trickc416ba62010-12-24 04:28:06 +0000192unsigned PPCInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
Chris Lattnerc327d712006-02-02 20:16:12 +0000193 int &FrameIndex) const {
Hal Finkel37714b82013-03-27 21:21:15 +0000194 // Note: This list must be kept consistent with StoreRegToStackSlot.
Chris Lattnerc327d712006-02-02 20:16:12 +0000195 switch (MI->getOpcode()) {
196 default: break;
Nate Begeman4efb3282006-02-02 21:07:50 +0000197 case PPC::STD:
Chris Lattnerc327d712006-02-02 20:16:12 +0000198 case PPC::STW:
199 case PPC::STFS:
200 case PPC::STFD:
Hal Finkel37714b82013-03-27 21:21:15 +0000201 case PPC::SPILL_CR:
Hal Finkel940ab932014-02-28 00:27:01 +0000202 case PPC::SPILL_CRBIT:
Hal Finkel37714b82013-03-27 21:21:15 +0000203 case PPC::STVX:
Hal Finkel27774d92014-03-13 07:58:58 +0000204 case PPC::STXVD2X:
Hal Finkel37714b82013-03-27 21:21:15 +0000205 case PPC::SPILL_VRSAVE:
206 // Check for the operands added by addFrameReference (the immediate is the
207 // offset which defaults to 0).
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000208 if (MI->getOperand(1).isImm() && !MI->getOperand(1).getImm() &&
209 MI->getOperand(2).isFI()) {
Chris Lattnera5bb3702007-12-30 23:10:15 +0000210 FrameIndex = MI->getOperand(2).getIndex();
Chris Lattnerc327d712006-02-02 20:16:12 +0000211 return MI->getOperand(0).getReg();
212 }
213 break;
214 }
215 return 0;
216}
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000217
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000218// commuteInstruction - We can commute rlwimi instructions, but only if the
219// rotate amt is zero. We also have to munge the immediates a bit.
Evan Cheng03553bb2008-06-16 07:33:11 +0000220MachineInstr *
221PPCInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
Dan Gohman3b460302008-07-07 23:14:23 +0000222 MachineFunction &MF = *MI->getParent()->getParent();
223
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000224 // Normal instructions can be commuted the obvious way.
Hal Finkel654d43b2013-04-12 02:18:09 +0000225 if (MI->getOpcode() != PPC::RLWIMI &&
Hal Finkel940ab932014-02-28 00:27:01 +0000226 MI->getOpcode() != PPC::RLWIMIo &&
227 MI->getOpcode() != PPC::RLWIMI8 &&
228 MI->getOpcode() != PPC::RLWIMI8o)
Jakob Stoklund Olesen9de596e2012-11-28 02:35:17 +0000229 return TargetInstrInfo::commuteInstruction(MI, NewMI);
Andrew Trickc416ba62010-12-24 04:28:06 +0000230
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000231 // Cannot commute if it has a non-zero rotate count.
Chris Lattner5c463782007-12-30 20:49:49 +0000232 if (MI->getOperand(3).getImm() != 0)
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000233 return 0;
Andrew Trickc416ba62010-12-24 04:28:06 +0000234
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000235 // If we have a zero rotate count, we have:
236 // M = mask(MB,ME)
237 // Op0 = (Op1 & ~M) | (Op2 & M)
238 // Change this to:
239 // M = mask((ME+1)&31, (MB-1)&31)
240 // Op0 = (Op2 & ~M) | (Op1 & M)
241
242 // Swap op1/op2
Evan Cheng244183e2008-02-13 02:46:49 +0000243 unsigned Reg0 = MI->getOperand(0).getReg();
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000244 unsigned Reg1 = MI->getOperand(1).getReg();
245 unsigned Reg2 = MI->getOperand(2).getReg();
Andrew Tricke3398282013-12-17 04:50:45 +0000246 unsigned SubReg1 = MI->getOperand(1).getSubReg();
247 unsigned SubReg2 = MI->getOperand(2).getSubReg();
Evan Chengdc2c8742006-11-15 20:58:11 +0000248 bool Reg1IsKill = MI->getOperand(1).isKill();
249 bool Reg2IsKill = MI->getOperand(2).isKill();
Evan Cheng03553bb2008-06-16 07:33:11 +0000250 bool ChangeReg0 = false;
Evan Cheng244183e2008-02-13 02:46:49 +0000251 // If machine instrs are no longer in two-address forms, update
252 // destination register as well.
253 if (Reg0 == Reg1) {
254 // Must be two address instruction!
Evan Cheng6cc775f2011-06-28 19:10:37 +0000255 assert(MI->getDesc().getOperandConstraint(0, MCOI::TIED_TO) &&
Evan Cheng244183e2008-02-13 02:46:49 +0000256 "Expecting a two-address instruction!");
Andrew Tricke3398282013-12-17 04:50:45 +0000257 assert(MI->getOperand(0).getSubReg() == SubReg1 && "Tied subreg mismatch");
Evan Cheng244183e2008-02-13 02:46:49 +0000258 Reg2IsKill = false;
Evan Cheng03553bb2008-06-16 07:33:11 +0000259 ChangeReg0 = true;
Evan Cheng244183e2008-02-13 02:46:49 +0000260 }
Evan Cheng03553bb2008-06-16 07:33:11 +0000261
262 // Masks.
263 unsigned MB = MI->getOperand(4).getImm();
264 unsigned ME = MI->getOperand(5).getImm();
265
266 if (NewMI) {
267 // Create a new instruction.
268 unsigned Reg0 = ChangeReg0 ? Reg2 : MI->getOperand(0).getReg();
269 bool Reg0IsDead = MI->getOperand(0).isDead();
Bill Wendlingf6d609a2009-02-12 00:02:55 +0000270 return BuildMI(MF, MI->getDebugLoc(), MI->getDesc())
Bill Wendlingf7b83c72009-05-13 21:33:08 +0000271 .addReg(Reg0, RegState::Define | getDeadRegState(Reg0IsDead))
272 .addReg(Reg2, getKillRegState(Reg2IsKill))
273 .addReg(Reg1, getKillRegState(Reg1IsKill))
Evan Cheng03553bb2008-06-16 07:33:11 +0000274 .addImm((ME+1) & 31)
275 .addImm((MB-1) & 31);
276 }
277
Andrew Tricke3398282013-12-17 04:50:45 +0000278 if (ChangeReg0) {
Evan Cheng03553bb2008-06-16 07:33:11 +0000279 MI->getOperand(0).setReg(Reg2);
Andrew Tricke3398282013-12-17 04:50:45 +0000280 MI->getOperand(0).setSubReg(SubReg2);
281 }
Chris Lattner10d63412006-05-04 17:52:23 +0000282 MI->getOperand(2).setReg(Reg1);
283 MI->getOperand(1).setReg(Reg2);
Andrew Tricke3398282013-12-17 04:50:45 +0000284 MI->getOperand(2).setSubReg(SubReg1);
285 MI->getOperand(1).setSubReg(SubReg2);
Chris Lattner60055892007-12-30 21:56:09 +0000286 MI->getOperand(2).setIsKill(Reg1IsKill);
287 MI->getOperand(1).setIsKill(Reg2IsKill);
Andrew Trickc416ba62010-12-24 04:28:06 +0000288
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000289 // Swap the mask around.
Chris Lattner5c463782007-12-30 20:49:49 +0000290 MI->getOperand(4).setImm((ME+1) & 31);
291 MI->getOperand(5).setImm((MB-1) & 31);
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000292 return MI;
293}
Chris Lattnerea79d9fd732006-03-05 23:49:55 +0000294
Hal Finkel6c32ff32014-03-25 19:26:43 +0000295bool PPCInstrInfo::findCommutedOpIndices(MachineInstr *MI, unsigned &SrcOpIdx1,
296 unsigned &SrcOpIdx2) const {
297 // For VSX A-Type FMA instructions, it is the first two operands that can be
298 // commuted, however, because the non-encoded tied input operand is listed
299 // first, the operands to swap are actually the second and third.
300
301 int AltOpc = PPC::getAltVSXFMAOpcode(MI->getOpcode());
302 if (AltOpc == -1)
303 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
304
305 SrcOpIdx1 = 2;
306 SrcOpIdx2 = 3;
307 return true;
308}
309
Andrew Trickc416ba62010-12-24 04:28:06 +0000310void PPCInstrInfo::insertNoop(MachineBasicBlock &MBB,
Chris Lattnerea79d9fd732006-03-05 23:49:55 +0000311 MachineBasicBlock::iterator MI) const {
Hal Finkelceb1f122013-12-12 00:19:11 +0000312 // This function is used for scheduling, and the nop wanted here is the type
313 // that terminates dispatch groups on the POWER cores.
314 unsigned Directive = TM.getSubtarget<PPCSubtarget>().getDarwinDirective();
315 unsigned Opcode;
316 switch (Directive) {
317 default: Opcode = PPC::NOP; break;
318 case PPC::DIR_PWR6: Opcode = PPC::NOP_GT_PWR6; break;
319 case PPC::DIR_PWR7: Opcode = PPC::NOP_GT_PWR7; break;
320 }
Chris Lattnera47294ed2006-10-13 21:21:17 +0000321
Hal Finkelceb1f122013-12-12 00:19:11 +0000322 DebugLoc DL;
323 BuildMI(MBB, MI, DL, get(Opcode));
324}
Chris Lattnera47294ed2006-10-13 21:21:17 +0000325
326// Branch analysis.
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000327// Note: If the condition register is set to CTR or CTR8 then this is a
328// BDNZ (imm == 1) or BDZ (imm == 0) branch.
Chris Lattnera47294ed2006-10-13 21:21:17 +0000329bool PPCInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
330 MachineBasicBlock *&FBB,
Evan Cheng64dfcac2009-02-09 07:14:22 +0000331 SmallVectorImpl<MachineOperand> &Cond,
332 bool AllowModify) const {
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000333 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
334
Chris Lattnera47294ed2006-10-13 21:21:17 +0000335 // If the block has no terminators, it just falls into the block after it.
336 MachineBasicBlock::iterator I = MBB.end();
Dale Johannesen4244d122010-04-02 01:38:09 +0000337 if (I == MBB.begin())
338 return false;
339 --I;
340 while (I->isDebugValue()) {
341 if (I == MBB.begin())
342 return false;
343 --I;
344 }
345 if (!isUnpredicatedTerminator(I))
Chris Lattnera47294ed2006-10-13 21:21:17 +0000346 return false;
347
348 // Get the last instruction in the block.
349 MachineInstr *LastInst = I;
Andrew Trickc416ba62010-12-24 04:28:06 +0000350
Chris Lattnera47294ed2006-10-13 21:21:17 +0000351 // If there is only one terminator instruction, process it.
Evan Cheng5514bbe2007-06-08 21:59:56 +0000352 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
Chris Lattnera47294ed2006-10-13 21:21:17 +0000353 if (LastInst->getOpcode() == PPC::B) {
Evan Cheng8f43afd2009-05-08 23:09:25 +0000354 if (!LastInst->getOperand(0).isMBB())
355 return true;
Chris Lattnera5bb3702007-12-30 23:10:15 +0000356 TBB = LastInst->getOperand(0).getMBB();
Chris Lattnera47294ed2006-10-13 21:21:17 +0000357 return false;
Chris Lattnere0263792006-11-17 22:14:47 +0000358 } else if (LastInst->getOpcode() == PPC::BCC) {
Evan Cheng8f43afd2009-05-08 23:09:25 +0000359 if (!LastInst->getOperand(2).isMBB())
360 return true;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000361 // Block ends with fall-through condbranch.
Chris Lattnera5bb3702007-12-30 23:10:15 +0000362 TBB = LastInst->getOperand(2).getMBB();
Chris Lattnera47294ed2006-10-13 21:21:17 +0000363 Cond.push_back(LastInst->getOperand(0));
364 Cond.push_back(LastInst->getOperand(1));
Chris Lattner23f22de2006-10-21 06:03:11 +0000365 return false;
Hal Finkel940ab932014-02-28 00:27:01 +0000366 } else if (LastInst->getOpcode() == PPC::BC) {
367 if (!LastInst->getOperand(1).isMBB())
368 return true;
369 // Block ends with fall-through condbranch.
370 TBB = LastInst->getOperand(1).getMBB();
371 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
372 Cond.push_back(LastInst->getOperand(0));
373 return false;
374 } else if (LastInst->getOpcode() == PPC::BCn) {
375 if (!LastInst->getOperand(1).isMBB())
376 return true;
377 // Block ends with fall-through condbranch.
378 TBB = LastInst->getOperand(1).getMBB();
379 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_UNSET));
380 Cond.push_back(LastInst->getOperand(0));
381 return false;
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000382 } else if (LastInst->getOpcode() == PPC::BDNZ8 ||
383 LastInst->getOpcode() == PPC::BDNZ) {
384 if (!LastInst->getOperand(0).isMBB())
385 return true;
Hal Finkelc6b5deb2012-06-08 19:19:53 +0000386 if (DisableCTRLoopAnal)
Hal Finkel821e0012012-06-08 15:38:25 +0000387 return true;
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000388 TBB = LastInst->getOperand(0).getMBB();
389 Cond.push_back(MachineOperand::CreateImm(1));
390 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
391 true));
392 return false;
393 } else if (LastInst->getOpcode() == PPC::BDZ8 ||
394 LastInst->getOpcode() == PPC::BDZ) {
395 if (!LastInst->getOperand(0).isMBB())
396 return true;
Hal Finkelc6b5deb2012-06-08 19:19:53 +0000397 if (DisableCTRLoopAnal)
Hal Finkel821e0012012-06-08 15:38:25 +0000398 return true;
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000399 TBB = LastInst->getOperand(0).getMBB();
400 Cond.push_back(MachineOperand::CreateImm(0));
401 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
402 true));
403 return false;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000404 }
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000405
Chris Lattnera47294ed2006-10-13 21:21:17 +0000406 // Otherwise, don't know what this is.
407 return true;
408 }
Andrew Trickc416ba62010-12-24 04:28:06 +0000409
Chris Lattnera47294ed2006-10-13 21:21:17 +0000410 // Get the instruction before it if it's a terminator.
411 MachineInstr *SecondLastInst = I;
412
413 // If there are three terminators, we don't know what sort of block this is.
414 if (SecondLastInst && I != MBB.begin() &&
Evan Cheng5514bbe2007-06-08 21:59:56 +0000415 isUnpredicatedTerminator(--I))
Chris Lattnera47294ed2006-10-13 21:21:17 +0000416 return true;
Andrew Trickc416ba62010-12-24 04:28:06 +0000417
Chris Lattnere0263792006-11-17 22:14:47 +0000418 // If the block ends with PPC::B and PPC:BCC, handle it.
Andrew Trickc416ba62010-12-24 04:28:06 +0000419 if (SecondLastInst->getOpcode() == PPC::BCC &&
Chris Lattnera47294ed2006-10-13 21:21:17 +0000420 LastInst->getOpcode() == PPC::B) {
Evan Cheng8f43afd2009-05-08 23:09:25 +0000421 if (!SecondLastInst->getOperand(2).isMBB() ||
422 !LastInst->getOperand(0).isMBB())
423 return true;
Chris Lattnera5bb3702007-12-30 23:10:15 +0000424 TBB = SecondLastInst->getOperand(2).getMBB();
Chris Lattnera47294ed2006-10-13 21:21:17 +0000425 Cond.push_back(SecondLastInst->getOperand(0));
426 Cond.push_back(SecondLastInst->getOperand(1));
Chris Lattnera5bb3702007-12-30 23:10:15 +0000427 FBB = LastInst->getOperand(0).getMBB();
Chris Lattnera47294ed2006-10-13 21:21:17 +0000428 return false;
Hal Finkel940ab932014-02-28 00:27:01 +0000429 } else if (SecondLastInst->getOpcode() == PPC::BC &&
430 LastInst->getOpcode() == PPC::B) {
431 if (!SecondLastInst->getOperand(1).isMBB() ||
432 !LastInst->getOperand(0).isMBB())
433 return true;
434 TBB = SecondLastInst->getOperand(1).getMBB();
435 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
436 Cond.push_back(SecondLastInst->getOperand(0));
437 FBB = LastInst->getOperand(0).getMBB();
438 return false;
439 } else if (SecondLastInst->getOpcode() == PPC::BCn &&
440 LastInst->getOpcode() == PPC::B) {
441 if (!SecondLastInst->getOperand(1).isMBB() ||
442 !LastInst->getOperand(0).isMBB())
443 return true;
444 TBB = SecondLastInst->getOperand(1).getMBB();
445 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_UNSET));
446 Cond.push_back(SecondLastInst->getOperand(0));
447 FBB = LastInst->getOperand(0).getMBB();
448 return false;
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000449 } else if ((SecondLastInst->getOpcode() == PPC::BDNZ8 ||
450 SecondLastInst->getOpcode() == PPC::BDNZ) &&
451 LastInst->getOpcode() == PPC::B) {
452 if (!SecondLastInst->getOperand(0).isMBB() ||
453 !LastInst->getOperand(0).isMBB())
454 return true;
Hal Finkelc6b5deb2012-06-08 19:19:53 +0000455 if (DisableCTRLoopAnal)
Hal Finkel821e0012012-06-08 15:38:25 +0000456 return true;
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000457 TBB = SecondLastInst->getOperand(0).getMBB();
458 Cond.push_back(MachineOperand::CreateImm(1));
459 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
460 true));
461 FBB = LastInst->getOperand(0).getMBB();
462 return false;
463 } else if ((SecondLastInst->getOpcode() == PPC::BDZ8 ||
464 SecondLastInst->getOpcode() == PPC::BDZ) &&
465 LastInst->getOpcode() == PPC::B) {
466 if (!SecondLastInst->getOperand(0).isMBB() ||
467 !LastInst->getOperand(0).isMBB())
468 return true;
Hal Finkelc6b5deb2012-06-08 19:19:53 +0000469 if (DisableCTRLoopAnal)
Hal Finkel821e0012012-06-08 15:38:25 +0000470 return true;
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000471 TBB = SecondLastInst->getOperand(0).getMBB();
472 Cond.push_back(MachineOperand::CreateImm(0));
473 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
474 true));
475 FBB = LastInst->getOperand(0).getMBB();
476 return false;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000477 }
Andrew Trickc416ba62010-12-24 04:28:06 +0000478
Dale Johannesenc6855462007-06-13 17:59:52 +0000479 // If the block ends with two PPC:Bs, handle it. The second one is not
480 // executed, so remove it.
Andrew Trickc416ba62010-12-24 04:28:06 +0000481 if (SecondLastInst->getOpcode() == PPC::B &&
Dale Johannesenc6855462007-06-13 17:59:52 +0000482 LastInst->getOpcode() == PPC::B) {
Evan Cheng8f43afd2009-05-08 23:09:25 +0000483 if (!SecondLastInst->getOperand(0).isMBB())
484 return true;
Chris Lattnera5bb3702007-12-30 23:10:15 +0000485 TBB = SecondLastInst->getOperand(0).getMBB();
Dale Johannesenc6855462007-06-13 17:59:52 +0000486 I = LastInst;
Evan Cheng64dfcac2009-02-09 07:14:22 +0000487 if (AllowModify)
488 I->eraseFromParent();
Dale Johannesenc6855462007-06-13 17:59:52 +0000489 return false;
490 }
491
Chris Lattnera47294ed2006-10-13 21:21:17 +0000492 // Otherwise, can't handle this.
493 return true;
494}
495
Evan Cheng99be49d2007-05-18 00:05:48 +0000496unsigned PPCInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
Chris Lattnera47294ed2006-10-13 21:21:17 +0000497 MachineBasicBlock::iterator I = MBB.end();
Evan Cheng99be49d2007-05-18 00:05:48 +0000498 if (I == MBB.begin()) return 0;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000499 --I;
Dale Johannesen4244d122010-04-02 01:38:09 +0000500 while (I->isDebugValue()) {
501 if (I == MBB.begin())
502 return 0;
503 --I;
504 }
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000505 if (I->getOpcode() != PPC::B && I->getOpcode() != PPC::BCC &&
Hal Finkel940ab932014-02-28 00:27:01 +0000506 I->getOpcode() != PPC::BC && I->getOpcode() != PPC::BCn &&
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000507 I->getOpcode() != PPC::BDNZ8 && I->getOpcode() != PPC::BDNZ &&
508 I->getOpcode() != PPC::BDZ8 && I->getOpcode() != PPC::BDZ)
Evan Cheng99be49d2007-05-18 00:05:48 +0000509 return 0;
Andrew Trickc416ba62010-12-24 04:28:06 +0000510
Chris Lattnera47294ed2006-10-13 21:21:17 +0000511 // Remove the branch.
512 I->eraseFromParent();
Andrew Trickc416ba62010-12-24 04:28:06 +0000513
Chris Lattnera47294ed2006-10-13 21:21:17 +0000514 I = MBB.end();
515
Evan Cheng99be49d2007-05-18 00:05:48 +0000516 if (I == MBB.begin()) return 1;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000517 --I;
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000518 if (I->getOpcode() != PPC::BCC &&
Hal Finkel940ab932014-02-28 00:27:01 +0000519 I->getOpcode() != PPC::BC && I->getOpcode() != PPC::BCn &&
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000520 I->getOpcode() != PPC::BDNZ8 && I->getOpcode() != PPC::BDNZ &&
521 I->getOpcode() != PPC::BDZ8 && I->getOpcode() != PPC::BDZ)
Evan Cheng99be49d2007-05-18 00:05:48 +0000522 return 1;
Andrew Trickc416ba62010-12-24 04:28:06 +0000523
Chris Lattnera47294ed2006-10-13 21:21:17 +0000524 // Remove the branch.
525 I->eraseFromParent();
Evan Cheng99be49d2007-05-18 00:05:48 +0000526 return 2;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000527}
528
Evan Cheng99be49d2007-05-18 00:05:48 +0000529unsigned
530PPCInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
531 MachineBasicBlock *FBB,
Stuart Hastings0125b642010-06-17 22:43:56 +0000532 const SmallVectorImpl<MachineOperand> &Cond,
533 DebugLoc DL) const {
Chris Lattnera61f0102006-10-17 18:06:55 +0000534 // Shouldn't be a fall through.
535 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
Andrew Trickc416ba62010-12-24 04:28:06 +0000536 assert((Cond.size() == 2 || Cond.size() == 0) &&
Chris Lattner94e04442006-10-21 05:36:13 +0000537 "PPC branch conditions have two components!");
Andrew Trickc416ba62010-12-24 04:28:06 +0000538
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000539 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
540
Chris Lattner94e04442006-10-21 05:36:13 +0000541 // One-way branch.
Chris Lattnera61f0102006-10-17 18:06:55 +0000542 if (FBB == 0) {
Chris Lattner94e04442006-10-21 05:36:13 +0000543 if (Cond.empty()) // Unconditional branch
Stuart Hastings0125b642010-06-17 22:43:56 +0000544 BuildMI(&MBB, DL, get(PPC::B)).addMBB(TBB);
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000545 else if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
546 BuildMI(&MBB, DL, get(Cond[0].getImm() ?
547 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
548 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB);
Hal Finkel940ab932014-02-28 00:27:01 +0000549 else if (Cond[0].getImm() == PPC::PRED_BIT_SET)
550 BuildMI(&MBB, DL, get(PPC::BC)).addOperand(Cond[1]).addMBB(TBB);
551 else if (Cond[0].getImm() == PPC::PRED_BIT_UNSET)
552 BuildMI(&MBB, DL, get(PPC::BCn)).addOperand(Cond[1]).addMBB(TBB);
Chris Lattner94e04442006-10-21 05:36:13 +0000553 else // Conditional branch
Stuart Hastings0125b642010-06-17 22:43:56 +0000554 BuildMI(&MBB, DL, get(PPC::BCC))
Hal Finkel940ab932014-02-28 00:27:01 +0000555 .addImm(Cond[0].getImm()).addOperand(Cond[1]).addMBB(TBB);
Evan Cheng99be49d2007-05-18 00:05:48 +0000556 return 1;
Chris Lattnera61f0102006-10-17 18:06:55 +0000557 }
Andrew Trickc416ba62010-12-24 04:28:06 +0000558
Chris Lattnerd8816602006-10-21 05:42:09 +0000559 // Two-way Conditional Branch.
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000560 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
561 BuildMI(&MBB, DL, get(Cond[0].getImm() ?
562 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
563 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB);
Hal Finkel940ab932014-02-28 00:27:01 +0000564 else if (Cond[0].getImm() == PPC::PRED_BIT_SET)
565 BuildMI(&MBB, DL, get(PPC::BC)).addOperand(Cond[1]).addMBB(TBB);
566 else if (Cond[0].getImm() == PPC::PRED_BIT_UNSET)
567 BuildMI(&MBB, DL, get(PPC::BCn)).addOperand(Cond[1]).addMBB(TBB);
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000568 else
569 BuildMI(&MBB, DL, get(PPC::BCC))
Hal Finkel940ab932014-02-28 00:27:01 +0000570 .addImm(Cond[0].getImm()).addOperand(Cond[1]).addMBB(TBB);
Stuart Hastings0125b642010-06-17 22:43:56 +0000571 BuildMI(&MBB, DL, get(PPC::B)).addMBB(FBB);
Evan Cheng99be49d2007-05-18 00:05:48 +0000572 return 2;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000573}
574
Hal Finkeled6a2852013-04-05 23:29:01 +0000575// Select analysis.
576bool PPCInstrInfo::canInsertSelect(const MachineBasicBlock &MBB,
577 const SmallVectorImpl<MachineOperand> &Cond,
578 unsigned TrueReg, unsigned FalseReg,
579 int &CondCycles, int &TrueCycles, int &FalseCycles) const {
580 if (!TM.getSubtargetImpl()->hasISEL())
581 return false;
582
583 if (Cond.size() != 2)
584 return false;
585
586 // If this is really a bdnz-like condition, then it cannot be turned into a
587 // select.
588 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
589 return false;
590
591 // Check register classes.
592 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
593 const TargetRegisterClass *RC =
594 RI.getCommonSubClass(MRI.getRegClass(TrueReg), MRI.getRegClass(FalseReg));
595 if (!RC)
596 return false;
597
598 // isel is for regular integer GPRs only.
599 if (!PPC::GPRCRegClass.hasSubClassEq(RC) &&
Hal Finkel8e8618a2013-07-15 20:22:58 +0000600 !PPC::GPRC_NOR0RegClass.hasSubClassEq(RC) &&
601 !PPC::G8RCRegClass.hasSubClassEq(RC) &&
602 !PPC::G8RC_NOX0RegClass.hasSubClassEq(RC))
Hal Finkeled6a2852013-04-05 23:29:01 +0000603 return false;
604
605 // FIXME: These numbers are for the A2, how well they work for other cores is
606 // an open question. On the A2, the isel instruction has a 2-cycle latency
607 // but single-cycle throughput. These numbers are used in combination with
608 // the MispredictPenalty setting from the active SchedMachineModel.
609 CondCycles = 1;
610 TrueCycles = 1;
611 FalseCycles = 1;
612
613 return true;
614}
615
616void PPCInstrInfo::insertSelect(MachineBasicBlock &MBB,
617 MachineBasicBlock::iterator MI, DebugLoc dl,
618 unsigned DestReg,
619 const SmallVectorImpl<MachineOperand> &Cond,
620 unsigned TrueReg, unsigned FalseReg) const {
621 assert(Cond.size() == 2 &&
622 "PPC branch conditions have two components!");
623
624 assert(TM.getSubtargetImpl()->hasISEL() &&
625 "Cannot insert select on target without ISEL support");
626
627 // Get the register classes.
628 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
629 const TargetRegisterClass *RC =
630 RI.getCommonSubClass(MRI.getRegClass(TrueReg), MRI.getRegClass(FalseReg));
631 assert(RC && "TrueReg and FalseReg must have overlapping register classes");
Hal Finkel8e8618a2013-07-15 20:22:58 +0000632
633 bool Is64Bit = PPC::G8RCRegClass.hasSubClassEq(RC) ||
634 PPC::G8RC_NOX0RegClass.hasSubClassEq(RC);
635 assert((Is64Bit ||
636 PPC::GPRCRegClass.hasSubClassEq(RC) ||
637 PPC::GPRC_NOR0RegClass.hasSubClassEq(RC)) &&
Hal Finkeled6a2852013-04-05 23:29:01 +0000638 "isel is for regular integer GPRs only");
639
Hal Finkel8e8618a2013-07-15 20:22:58 +0000640 unsigned OpCode = Is64Bit ? PPC::ISEL8 : PPC::ISEL;
Hal Finkeled6a2852013-04-05 23:29:01 +0000641 unsigned SelectPred = Cond[0].getImm();
642
643 unsigned SubIdx;
644 bool SwapOps;
645 switch (SelectPred) {
646 default: llvm_unreachable("invalid predicate for isel");
647 case PPC::PRED_EQ: SubIdx = PPC::sub_eq; SwapOps = false; break;
648 case PPC::PRED_NE: SubIdx = PPC::sub_eq; SwapOps = true; break;
649 case PPC::PRED_LT: SubIdx = PPC::sub_lt; SwapOps = false; break;
650 case PPC::PRED_GE: SubIdx = PPC::sub_lt; SwapOps = true; break;
651 case PPC::PRED_GT: SubIdx = PPC::sub_gt; SwapOps = false; break;
652 case PPC::PRED_LE: SubIdx = PPC::sub_gt; SwapOps = true; break;
653 case PPC::PRED_UN: SubIdx = PPC::sub_un; SwapOps = false; break;
654 case PPC::PRED_NU: SubIdx = PPC::sub_un; SwapOps = true; break;
Hal Finkel940ab932014-02-28 00:27:01 +0000655 case PPC::PRED_BIT_SET: SubIdx = 0; SwapOps = false; break;
656 case PPC::PRED_BIT_UNSET: SubIdx = 0; SwapOps = true; break;
Hal Finkeled6a2852013-04-05 23:29:01 +0000657 }
658
659 unsigned FirstReg = SwapOps ? FalseReg : TrueReg,
660 SecondReg = SwapOps ? TrueReg : FalseReg;
661
662 // The first input register of isel cannot be r0. If it is a member
663 // of a register class that can be r0, then copy it first (the
664 // register allocator should eliminate the copy).
665 if (MRI.getRegClass(FirstReg)->contains(PPC::R0) ||
666 MRI.getRegClass(FirstReg)->contains(PPC::X0)) {
667 const TargetRegisterClass *FirstRC =
668 MRI.getRegClass(FirstReg)->contains(PPC::X0) ?
669 &PPC::G8RC_NOX0RegClass : &PPC::GPRC_NOR0RegClass;
670 unsigned OldFirstReg = FirstReg;
671 FirstReg = MRI.createVirtualRegister(FirstRC);
672 BuildMI(MBB, MI, dl, get(TargetOpcode::COPY), FirstReg)
673 .addReg(OldFirstReg);
674 }
675
676 BuildMI(MBB, MI, dl, get(OpCode), DestReg)
677 .addReg(FirstReg).addReg(SecondReg)
678 .addReg(Cond[1].getReg(), 0, SubIdx);
679}
680
Jakob Stoklund Olesen0d611972010-07-11 07:31:00 +0000681void PPCInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
682 MachineBasicBlock::iterator I, DebugLoc DL,
683 unsigned DestReg, unsigned SrcReg,
684 bool KillSrc) const {
Hal Finkel27774d92014-03-13 07:58:58 +0000685 // We can end up with self copies and similar things as a result of VSX copy
Hal Finkel9dcb3582014-03-27 22:46:28 +0000686 // legalization. Promote them here.
Hal Finkel27774d92014-03-13 07:58:58 +0000687 const TargetRegisterInfo *TRI = &getRegisterInfo();
688 if (PPC::F8RCRegClass.contains(DestReg) &&
689 PPC::VSLRCRegClass.contains(SrcReg)) {
690 unsigned SuperReg =
691 TRI->getMatchingSuperReg(DestReg, PPC::sub_64, &PPC::VSRCRegClass);
692
Hal Finkel9dcb3582014-03-27 22:46:28 +0000693 if (VSXSelfCopyCrash && SrcReg == SuperReg)
694 llvm_unreachable("nop VSX copy");
Hal Finkel27774d92014-03-13 07:58:58 +0000695
696 DestReg = SuperReg;
697 } else if (PPC::VRRCRegClass.contains(DestReg) &&
698 PPC::VSHRCRegClass.contains(SrcReg)) {
699 unsigned SuperReg =
700 TRI->getMatchingSuperReg(DestReg, PPC::sub_128, &PPC::VSRCRegClass);
701
Hal Finkel9dcb3582014-03-27 22:46:28 +0000702 if (VSXSelfCopyCrash && SrcReg == SuperReg)
703 llvm_unreachable("nop VSX copy");
Hal Finkel27774d92014-03-13 07:58:58 +0000704
705 DestReg = SuperReg;
706 } else if (PPC::F8RCRegClass.contains(SrcReg) &&
707 PPC::VSLRCRegClass.contains(DestReg)) {
708 unsigned SuperReg =
709 TRI->getMatchingSuperReg(SrcReg, PPC::sub_64, &PPC::VSRCRegClass);
710
Hal Finkel9dcb3582014-03-27 22:46:28 +0000711 if (VSXSelfCopyCrash && DestReg == SuperReg)
712 llvm_unreachable("nop VSX copy");
Hal Finkel27774d92014-03-13 07:58:58 +0000713
714 SrcReg = SuperReg;
715 } else if (PPC::VRRCRegClass.contains(SrcReg) &&
716 PPC::VSHRCRegClass.contains(DestReg)) {
717 unsigned SuperReg =
718 TRI->getMatchingSuperReg(SrcReg, PPC::sub_128, &PPC::VSRCRegClass);
719
Hal Finkel9dcb3582014-03-27 22:46:28 +0000720 if (VSXSelfCopyCrash && DestReg == SuperReg)
721 llvm_unreachable("nop VSX copy");
Hal Finkel27774d92014-03-13 07:58:58 +0000722
723 SrcReg = SuperReg;
724 }
725
Jakob Stoklund Olesen0d611972010-07-11 07:31:00 +0000726 unsigned Opc;
727 if (PPC::GPRCRegClass.contains(DestReg, SrcReg))
728 Opc = PPC::OR;
729 else if (PPC::G8RCRegClass.contains(DestReg, SrcReg))
730 Opc = PPC::OR8;
731 else if (PPC::F4RCRegClass.contains(DestReg, SrcReg))
732 Opc = PPC::FMR;
733 else if (PPC::CRRCRegClass.contains(DestReg, SrcReg))
734 Opc = PPC::MCRF;
735 else if (PPC::VRRCRegClass.contains(DestReg, SrcReg))
736 Opc = PPC::VOR;
Hal Finkel27774d92014-03-13 07:58:58 +0000737 else if (PPC::VSRCRegClass.contains(DestReg, SrcReg))
Hal Finkelbbad2332014-03-24 09:36:36 +0000738 // There are two different ways this can be done:
Hal Finkel27774d92014-03-13 07:58:58 +0000739 // 1. xxlor : This has lower latency (on the P7), 2 cycles, but can only
740 // issue in VSU pipeline 0.
741 // 2. xmovdp/xmovsp: This has higher latency (on the P7), 6 cycles, but
742 // can go to either pipeline.
Hal Finkelbbad2332014-03-24 09:36:36 +0000743 // We'll always use xxlor here, because in practically all cases where
744 // copies are generated, they are close enough to some use that the
745 // lower-latency form is preferable.
Hal Finkel27774d92014-03-13 07:58:58 +0000746 Opc = PPC::XXLOR;
Jakob Stoklund Olesen0d611972010-07-11 07:31:00 +0000747 else if (PPC::CRBITRCRegClass.contains(DestReg, SrcReg))
748 Opc = PPC::CROR;
749 else
750 llvm_unreachable("Impossible reg-to-reg copy");
Owen Anderson7a73ae92007-12-31 06:32:00 +0000751
Evan Cheng6cc775f2011-06-28 19:10:37 +0000752 const MCInstrDesc &MCID = get(Opc);
753 if (MCID.getNumOperands() == 3)
754 BuildMI(MBB, I, DL, MCID, DestReg)
Jakob Stoklund Olesen0d611972010-07-11 07:31:00 +0000755 .addReg(SrcReg).addReg(SrcReg, getKillRegState(KillSrc));
756 else
Evan Cheng6cc775f2011-06-28 19:10:37 +0000757 BuildMI(MBB, I, DL, MCID, DestReg).addReg(SrcReg, getKillRegState(KillSrc));
Owen Anderson7a73ae92007-12-31 06:32:00 +0000758}
759
Hal Finkel8f6834d2011-12-05 17:55:17 +0000760// This function returns true if a CR spill is necessary and false otherwise.
Bill Wendlingc6c48fc2008-03-10 22:49:16 +0000761bool
Dan Gohman3b460302008-07-07 23:14:23 +0000762PPCInstrInfo::StoreRegToStackSlot(MachineFunction &MF,
763 unsigned SrcReg, bool isKill,
Bill Wendlingc6c48fc2008-03-10 22:49:16 +0000764 int FrameIdx,
765 const TargetRegisterClass *RC,
Hal Finkelfcc51d42013-03-17 04:43:44 +0000766 SmallVectorImpl<MachineInstr*> &NewMIs,
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000767 bool &NonRI, bool &SpillsVRS) const{
Hal Finkel37714b82013-03-27 21:21:15 +0000768 // Note: If additional store instructions are added here,
769 // update isStoreToStackSlot.
770
Chris Lattner6f306d72010-04-02 20:16:16 +0000771 DebugLoc DL;
Hal Finkel4e703bc2014-01-28 05:32:58 +0000772 if (PPC::GPRCRegClass.hasSubClassEq(RC) ||
773 PPC::GPRC_NOR0RegClass.hasSubClassEq(RC)) {
Hal Finkel794e05b2013-03-23 17:14:27 +0000774 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STW))
775 .addReg(SrcReg,
776 getKillRegState(isKill)),
777 FrameIdx));
Hal Finkel4e703bc2014-01-28 05:32:58 +0000778 } else if (PPC::G8RCRegClass.hasSubClassEq(RC) ||
779 PPC::G8RC_NOX0RegClass.hasSubClassEq(RC)) {
Hal Finkel794e05b2013-03-23 17:14:27 +0000780 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STD))
781 .addReg(SrcReg,
782 getKillRegState(isKill)),
783 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +0000784 } else if (PPC::F8RCRegClass.hasSubClassEq(RC)) {
Dale Johannesen6b8c76a2009-02-12 23:08:38 +0000785 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STFD))
Bill Wendlingf7b83c72009-05-13 21:33:08 +0000786 .addReg(SrcReg,
787 getKillRegState(isKill)),
788 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +0000789 } else if (PPC::F4RCRegClass.hasSubClassEq(RC)) {
Dale Johannesen6b8c76a2009-02-12 23:08:38 +0000790 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STFS))
Bill Wendlingf7b83c72009-05-13 21:33:08 +0000791 .addReg(SrcReg,
792 getKillRegState(isKill)),
793 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +0000794 } else if (PPC::CRRCRegClass.hasSubClassEq(RC)) {
Hal Finkele154c8f2013-03-12 14:12:16 +0000795 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_CR))
796 .addReg(SrcReg,
797 getKillRegState(isKill)),
798 FrameIdx));
799 return true;
Craig Topperabadc662012-04-20 06:31:50 +0000800 } else if (PPC::CRBITRCRegClass.hasSubClassEq(RC)) {
Hal Finkel940ab932014-02-28 00:27:01 +0000801 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_CRBIT))
802 .addReg(SrcReg,
803 getKillRegState(isKill)),
804 FrameIdx));
805 return true;
Craig Topperabadc662012-04-20 06:31:50 +0000806 } else if (PPC::VRRCRegClass.hasSubClassEq(RC)) {
Hal Finkelfcc51d42013-03-17 04:43:44 +0000807 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STVX))
808 .addReg(SrcReg,
809 getKillRegState(isKill)),
810 FrameIdx));
811 NonRI = true;
Hal Finkel27774d92014-03-13 07:58:58 +0000812 } else if (PPC::VSRCRegClass.hasSubClassEq(RC)) {
813 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STXVD2X))
814 .addReg(SrcReg,
815 getKillRegState(isKill)),
816 FrameIdx));
817 NonRI = true;
Hal Finkela1431df2013-03-21 19:03:21 +0000818 } else if (PPC::VRSAVERCRegClass.hasSubClassEq(RC)) {
Hal Finkela7b06302013-03-27 00:02:20 +0000819 assert(TM.getSubtargetImpl()->isDarwin() &&
820 "VRSAVE only needs spill/restore on Darwin");
Hal Finkela1431df2013-03-21 19:03:21 +0000821 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_VRSAVE))
822 .addReg(SrcReg,
823 getKillRegState(isKill)),
824 FrameIdx));
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000825 SpillsVRS = true;
Owen Andersoneee14602008-01-01 21:11:32 +0000826 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000827 llvm_unreachable("Unknown regclass!");
Owen Andersoneee14602008-01-01 21:11:32 +0000828 }
Bill Wendling632ea652008-03-03 22:19:16 +0000829
830 return false;
Owen Andersoneee14602008-01-01 21:11:32 +0000831}
832
833void
834PPCInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
Bill Wendling632ea652008-03-03 22:19:16 +0000835 MachineBasicBlock::iterator MI,
836 unsigned SrcReg, bool isKill, int FrameIdx,
Evan Chengefb126a2010-05-06 19:06:44 +0000837 const TargetRegisterClass *RC,
838 const TargetRegisterInfo *TRI) const {
Dan Gohman3b460302008-07-07 23:14:23 +0000839 MachineFunction &MF = *MBB.getParent();
Owen Andersoneee14602008-01-01 21:11:32 +0000840 SmallVector<MachineInstr*, 4> NewMIs;
Bill Wendling632ea652008-03-03 22:19:16 +0000841
Hal Finkelbb420f12013-03-15 05:06:04 +0000842 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
843 FuncInfo->setHasSpills();
844
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000845 bool NonRI = false, SpillsVRS = false;
846 if (StoreRegToStackSlot(MF, SrcReg, isKill, FrameIdx, RC, NewMIs,
847 NonRI, SpillsVRS))
Bill Wendling632ea652008-03-03 22:19:16 +0000848 FuncInfo->setSpillsCR();
Bill Wendling632ea652008-03-03 22:19:16 +0000849
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000850 if (SpillsVRS)
851 FuncInfo->setSpillsVRSAVE();
852
Hal Finkelfcc51d42013-03-17 04:43:44 +0000853 if (NonRI)
854 FuncInfo->setHasNonRISpills();
855
Owen Andersoneee14602008-01-01 21:11:32 +0000856 for (unsigned i = 0, e = NewMIs.size(); i != e; ++i)
857 MBB.insert(MI, NewMIs[i]);
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +0000858
859 const MachineFrameInfo &MFI = *MF.getFrameInfo();
860 MachineMemOperand *MMO =
Jay Foad465101b2011-11-15 07:34:52 +0000861 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
Chris Lattnere3d864b2010-09-21 04:39:43 +0000862 MachineMemOperand::MOStore,
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +0000863 MFI.getObjectSize(FrameIdx),
864 MFI.getObjectAlignment(FrameIdx));
865 NewMIs.back()->addMemOperand(MF, MMO);
Owen Andersoneee14602008-01-01 21:11:32 +0000866}
867
Hal Finkelbde7f8f2011-12-06 20:55:36 +0000868bool
Bill Wendlingf6d609a2009-02-12 00:02:55 +0000869PPCInstrInfo::LoadRegFromStackSlot(MachineFunction &MF, DebugLoc DL,
Dan Gohman3b460302008-07-07 23:14:23 +0000870 unsigned DestReg, int FrameIdx,
Bill Wendlingc6c48fc2008-03-10 22:49:16 +0000871 const TargetRegisterClass *RC,
Hal Finkelfcc51d42013-03-17 04:43:44 +0000872 SmallVectorImpl<MachineInstr*> &NewMIs,
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000873 bool &NonRI, bool &SpillsVRS) const{
Hal Finkel37714b82013-03-27 21:21:15 +0000874 // Note: If additional load instructions are added here,
875 // update isLoadFromStackSlot.
876
Hal Finkel4e703bc2014-01-28 05:32:58 +0000877 if (PPC::GPRCRegClass.hasSubClassEq(RC) ||
878 PPC::GPRC_NOR0RegClass.hasSubClassEq(RC)) {
Hal Finkel5791f512013-03-27 19:10:40 +0000879 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LWZ),
880 DestReg), FrameIdx));
Hal Finkel4e703bc2014-01-28 05:32:58 +0000881 } else if (PPC::G8RCRegClass.hasSubClassEq(RC) ||
882 PPC::G8RC_NOX0RegClass.hasSubClassEq(RC)) {
Hal Finkel5791f512013-03-27 19:10:40 +0000883 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LD), DestReg),
884 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +0000885 } else if (PPC::F8RCRegClass.hasSubClassEq(RC)) {
Bill Wendlingf6d609a2009-02-12 00:02:55 +0000886 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LFD), DestReg),
Owen Andersoneee14602008-01-01 21:11:32 +0000887 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +0000888 } else if (PPC::F4RCRegClass.hasSubClassEq(RC)) {
Bill Wendlingf6d609a2009-02-12 00:02:55 +0000889 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LFS), DestReg),
Owen Andersoneee14602008-01-01 21:11:32 +0000890 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +0000891 } else if (PPC::CRRCRegClass.hasSubClassEq(RC)) {
Hal Finkele154c8f2013-03-12 14:12:16 +0000892 NewMIs.push_back(addFrameReference(BuildMI(MF, DL,
893 get(PPC::RESTORE_CR), DestReg),
894 FrameIdx));
895 return true;
Craig Topperabadc662012-04-20 06:31:50 +0000896 } else if (PPC::CRBITRCRegClass.hasSubClassEq(RC)) {
Hal Finkel940ab932014-02-28 00:27:01 +0000897 NewMIs.push_back(addFrameReference(BuildMI(MF, DL,
898 get(PPC::RESTORE_CRBIT), DestReg),
899 FrameIdx));
900 return true;
Craig Topperabadc662012-04-20 06:31:50 +0000901 } else if (PPC::VRRCRegClass.hasSubClassEq(RC)) {
Hal Finkelfcc51d42013-03-17 04:43:44 +0000902 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LVX), DestReg),
903 FrameIdx));
904 NonRI = true;
Hal Finkel27774d92014-03-13 07:58:58 +0000905 } else if (PPC::VSRCRegClass.hasSubClassEq(RC)) {
906 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LXVD2X), DestReg),
907 FrameIdx));
908 NonRI = true;
Hal Finkela1431df2013-03-21 19:03:21 +0000909 } else if (PPC::VRSAVERCRegClass.hasSubClassEq(RC)) {
Hal Finkela7b06302013-03-27 00:02:20 +0000910 assert(TM.getSubtargetImpl()->isDarwin() &&
911 "VRSAVE only needs spill/restore on Darwin");
Hal Finkela1431df2013-03-21 19:03:21 +0000912 NewMIs.push_back(addFrameReference(BuildMI(MF, DL,
913 get(PPC::RESTORE_VRSAVE),
914 DestReg),
915 FrameIdx));
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000916 SpillsVRS = true;
Owen Andersoneee14602008-01-01 21:11:32 +0000917 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000918 llvm_unreachable("Unknown regclass!");
Owen Andersoneee14602008-01-01 21:11:32 +0000919 }
Hal Finkelbde7f8f2011-12-06 20:55:36 +0000920
921 return false;
Owen Andersoneee14602008-01-01 21:11:32 +0000922}
923
924void
925PPCInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
Bill Wendling632ea652008-03-03 22:19:16 +0000926 MachineBasicBlock::iterator MI,
927 unsigned DestReg, int FrameIdx,
Evan Chengefb126a2010-05-06 19:06:44 +0000928 const TargetRegisterClass *RC,
929 const TargetRegisterInfo *TRI) const {
Dan Gohman3b460302008-07-07 23:14:23 +0000930 MachineFunction &MF = *MBB.getParent();
Owen Andersoneee14602008-01-01 21:11:32 +0000931 SmallVector<MachineInstr*, 4> NewMIs;
Chris Lattner6f306d72010-04-02 20:16:16 +0000932 DebugLoc DL;
Bill Wendlingf6d609a2009-02-12 00:02:55 +0000933 if (MI != MBB.end()) DL = MI->getDebugLoc();
Hal Finkelfcc51d42013-03-17 04:43:44 +0000934
935 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
936 FuncInfo->setHasSpills();
937
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000938 bool NonRI = false, SpillsVRS = false;
939 if (LoadRegFromStackSlot(MF, DL, DestReg, FrameIdx, RC, NewMIs,
940 NonRI, SpillsVRS))
Hal Finkelbde7f8f2011-12-06 20:55:36 +0000941 FuncInfo->setSpillsCR();
Hal Finkelfcc51d42013-03-17 04:43:44 +0000942
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000943 if (SpillsVRS)
944 FuncInfo->setSpillsVRSAVE();
945
Hal Finkelfcc51d42013-03-17 04:43:44 +0000946 if (NonRI)
947 FuncInfo->setHasNonRISpills();
948
Owen Andersoneee14602008-01-01 21:11:32 +0000949 for (unsigned i = 0, e = NewMIs.size(); i != e; ++i)
950 MBB.insert(MI, NewMIs[i]);
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +0000951
952 const MachineFrameInfo &MFI = *MF.getFrameInfo();
953 MachineMemOperand *MMO =
Jay Foad465101b2011-11-15 07:34:52 +0000954 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
Chris Lattnere3d864b2010-09-21 04:39:43 +0000955 MachineMemOperand::MOLoad,
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +0000956 MFI.getObjectSize(FrameIdx),
957 MFI.getObjectAlignment(FrameIdx));
958 NewMIs.back()->addMemOperand(MF, MMO);
Owen Andersoneee14602008-01-01 21:11:32 +0000959}
960
Chris Lattnera47294ed2006-10-13 21:21:17 +0000961bool PPCInstrInfo::
Owen Anderson4f6bf042008-08-14 22:49:33 +0000962ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
Chris Lattner23f22de2006-10-21 06:03:11 +0000963 assert(Cond.size() == 2 && "Invalid PPC branch opcode!");
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000964 if (Cond[1].getReg() == PPC::CTR8 || Cond[1].getReg() == PPC::CTR)
965 Cond[0].setImm(Cond[0].getImm() == 0 ? 1 : 0);
966 else
967 // Leave the CR# the same, but invert the condition.
968 Cond[0].setImm(PPC::InvertPredicate((PPC::Predicate)Cond[0].getImm()));
Chris Lattner23f22de2006-10-21 06:03:11 +0000969 return false;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000970}
Nicolas Geoffrayae84bbd2008-04-16 20:10:13 +0000971
Hal Finkeld61d4f82013-04-06 19:30:30 +0000972bool PPCInstrInfo::FoldImmediate(MachineInstr *UseMI, MachineInstr *DefMI,
973 unsigned Reg, MachineRegisterInfo *MRI) const {
974 // For some instructions, it is legal to fold ZERO into the RA register field.
975 // A zero immediate should always be loaded with a single li.
976 unsigned DefOpc = DefMI->getOpcode();
977 if (DefOpc != PPC::LI && DefOpc != PPC::LI8)
978 return false;
979 if (!DefMI->getOperand(1).isImm())
980 return false;
981 if (DefMI->getOperand(1).getImm() != 0)
982 return false;
983
984 // Note that we cannot here invert the arguments of an isel in order to fold
985 // a ZERO into what is presented as the second argument. All we have here
986 // is the condition bit, and that might come from a CR-logical bit operation.
987
988 const MCInstrDesc &UseMCID = UseMI->getDesc();
989
990 // Only fold into real machine instructions.
991 if (UseMCID.isPseudo())
992 return false;
993
994 unsigned UseIdx;
995 for (UseIdx = 0; UseIdx < UseMI->getNumOperands(); ++UseIdx)
996 if (UseMI->getOperand(UseIdx).isReg() &&
997 UseMI->getOperand(UseIdx).getReg() == Reg)
998 break;
999
1000 assert(UseIdx < UseMI->getNumOperands() && "Cannot find Reg in UseMI");
1001 assert(UseIdx < UseMCID.getNumOperands() && "No operand description for Reg");
1002
1003 const MCOperandInfo *UseInfo = &UseMCID.OpInfo[UseIdx];
1004
1005 // We can fold the zero if this register requires a GPRC_NOR0/G8RC_NOX0
1006 // register (which might also be specified as a pointer class kind).
1007 if (UseInfo->isLookupPtrRegClass()) {
1008 if (UseInfo->RegClass /* Kind */ != 1)
1009 return false;
1010 } else {
1011 if (UseInfo->RegClass != PPC::GPRC_NOR0RegClassID &&
1012 UseInfo->RegClass != PPC::G8RC_NOX0RegClassID)
1013 return false;
1014 }
1015
1016 // Make sure this is not tied to an output register (or otherwise
1017 // constrained). This is true for ST?UX registers, for example, which
1018 // are tied to their output registers.
1019 if (UseInfo->Constraints != 0)
1020 return false;
1021
1022 unsigned ZeroReg;
1023 if (UseInfo->isLookupPtrRegClass()) {
1024 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
1025 ZeroReg = isPPC64 ? PPC::ZERO8 : PPC::ZERO;
1026 } else {
1027 ZeroReg = UseInfo->RegClass == PPC::G8RC_NOX0RegClassID ?
1028 PPC::ZERO8 : PPC::ZERO;
1029 }
1030
1031 bool DeleteDef = MRI->hasOneNonDBGUse(Reg);
1032 UseMI->getOperand(UseIdx).setReg(ZeroReg);
1033
1034 if (DeleteDef)
1035 DefMI->eraseFromParent();
1036
1037 return true;
1038}
1039
Hal Finkel30ae2292013-04-10 18:30:16 +00001040static bool MBBDefinesCTR(MachineBasicBlock &MBB) {
1041 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end();
1042 I != IE; ++I)
1043 if (I->definesRegister(PPC::CTR) || I->definesRegister(PPC::CTR8))
1044 return true;
1045 return false;
1046}
1047
1048// We should make sure that, if we're going to predicate both sides of a
1049// condition (a diamond), that both sides don't define the counter register. We
1050// can predicate counter-decrement-based branches, but while that predicates
1051// the branching, it does not predicate the counter decrement. If we tried to
1052// merge the triangle into one predicated block, we'd decrement the counter
1053// twice.
1054bool PPCInstrInfo::isProfitableToIfCvt(MachineBasicBlock &TMBB,
1055 unsigned NumT, unsigned ExtraT,
1056 MachineBasicBlock &FMBB,
1057 unsigned NumF, unsigned ExtraF,
1058 const BranchProbability &Probability) const {
1059 return !(MBBDefinesCTR(TMBB) && MBBDefinesCTR(FMBB));
1060}
1061
1062
Hal Finkel5711eca2013-04-09 22:58:37 +00001063bool PPCInstrInfo::isPredicated(const MachineInstr *MI) const {
Hal Finkelf29285a2013-04-11 01:23:34 +00001064 // The predicated branches are identified by their type, not really by the
1065 // explicit presence of a predicate. Furthermore, some of them can be
1066 // predicated more than once. Because if conversion won't try to predicate
1067 // any instruction which already claims to be predicated (by returning true
1068 // here), always return false. In doing so, we let isPredicable() be the
1069 // final word on whether not the instruction can be (further) predicated.
1070
1071 return false;
Hal Finkel5711eca2013-04-09 22:58:37 +00001072}
1073
1074bool PPCInstrInfo::isUnpredicatedTerminator(const MachineInstr *MI) const {
1075 if (!MI->isTerminator())
1076 return false;
1077
1078 // Conditional branch is a special case.
1079 if (MI->isBranch() && !MI->isBarrier())
1080 return true;
1081
1082 return !isPredicated(MI);
1083}
1084
1085bool PPCInstrInfo::PredicateInstruction(
1086 MachineInstr *MI,
1087 const SmallVectorImpl<MachineOperand> &Pred) const {
1088 unsigned OpC = MI->getOpcode();
1089 if (OpC == PPC::BLR) {
1090 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR) {
1091 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
1092 MI->setDesc(get(Pred[0].getImm() ?
1093 (isPPC64 ? PPC::BDNZLR8 : PPC::BDNZLR) :
1094 (isPPC64 ? PPC::BDZLR8 : PPC::BDZLR)));
Hal Finkel940ab932014-02-28 00:27:01 +00001095 } else if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
Hal Finkel5711eca2013-04-09 22:58:37 +00001096 MI->setDesc(get(PPC::BCLR));
1097 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
Hal Finkel940ab932014-02-28 00:27:01 +00001098 .addReg(Pred[1].getReg());
1099 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
1100 MI->setDesc(get(PPC::BCLRn));
1101 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
1102 .addReg(Pred[1].getReg());
1103 } else {
1104 MI->setDesc(get(PPC::BCCLR));
1105 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
Hal Finkel5711eca2013-04-09 22:58:37 +00001106 .addImm(Pred[0].getImm())
1107 .addReg(Pred[1].getReg());
1108 }
1109
1110 return true;
1111 } else if (OpC == PPC::B) {
1112 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR) {
1113 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
1114 MI->setDesc(get(Pred[0].getImm() ?
1115 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
1116 (isPPC64 ? PPC::BDZ8 : PPC::BDZ)));
Hal Finkel940ab932014-02-28 00:27:01 +00001117 } else if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
1118 MachineBasicBlock *MBB = MI->getOperand(0).getMBB();
1119 MI->RemoveOperand(0);
1120
1121 MI->setDesc(get(PPC::BC));
1122 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
1123 .addReg(Pred[1].getReg())
1124 .addMBB(MBB);
1125 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
1126 MachineBasicBlock *MBB = MI->getOperand(0).getMBB();
1127 MI->RemoveOperand(0);
1128
1129 MI->setDesc(get(PPC::BCn));
1130 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
1131 .addReg(Pred[1].getReg())
1132 .addMBB(MBB);
Hal Finkel5711eca2013-04-09 22:58:37 +00001133 } else {
1134 MachineBasicBlock *MBB = MI->getOperand(0).getMBB();
1135 MI->RemoveOperand(0);
1136
1137 MI->setDesc(get(PPC::BCC));
1138 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
1139 .addImm(Pred[0].getImm())
1140 .addReg(Pred[1].getReg())
1141 .addMBB(MBB);
1142 }
1143
1144 return true;
Hal Finkel500b0042013-04-10 06:42:34 +00001145 } else if (OpC == PPC::BCTR || OpC == PPC::BCTR8 ||
1146 OpC == PPC::BCTRL || OpC == PPC::BCTRL8) {
1147 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR)
1148 llvm_unreachable("Cannot predicate bctr[l] on the ctr register");
1149
1150 bool setLR = OpC == PPC::BCTRL || OpC == PPC::BCTRL8;
1151 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
Hal Finkel940ab932014-02-28 00:27:01 +00001152
1153 if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
1154 MI->setDesc(get(isPPC64 ? (setLR ? PPC::BCCTRL8 : PPC::BCCTR8) :
1155 (setLR ? PPC::BCCTRL : PPC::BCCTR)));
1156 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
1157 .addReg(Pred[1].getReg());
1158 return true;
1159 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
1160 MI->setDesc(get(isPPC64 ? (setLR ? PPC::BCCTRL8n : PPC::BCCTR8n) :
1161 (setLR ? PPC::BCCTRLn : PPC::BCCTRn)));
1162 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
1163 .addReg(Pred[1].getReg());
1164 return true;
1165 }
1166
1167 MI->setDesc(get(isPPC64 ? (setLR ? PPC::BCCCTRL8 : PPC::BCCCTR8) :
1168 (setLR ? PPC::BCCCTRL : PPC::BCCCTR)));
Hal Finkel500b0042013-04-10 06:42:34 +00001169 MachineInstrBuilder(*MI->getParent()->getParent(), MI)
1170 .addImm(Pred[0].getImm())
1171 .addReg(Pred[1].getReg());
1172 return true;
Hal Finkel5711eca2013-04-09 22:58:37 +00001173 }
1174
1175 return false;
1176}
1177
1178bool PPCInstrInfo::SubsumesPredicate(
1179 const SmallVectorImpl<MachineOperand> &Pred1,
1180 const SmallVectorImpl<MachineOperand> &Pred2) const {
1181 assert(Pred1.size() == 2 && "Invalid PPC first predicate");
1182 assert(Pred2.size() == 2 && "Invalid PPC second predicate");
1183
1184 if (Pred1[1].getReg() == PPC::CTR8 || Pred1[1].getReg() == PPC::CTR)
1185 return false;
1186 if (Pred2[1].getReg() == PPC::CTR8 || Pred2[1].getReg() == PPC::CTR)
1187 return false;
1188
Hal Finkel94a6f382013-12-11 23:12:25 +00001189 // P1 can only subsume P2 if they test the same condition register.
1190 if (Pred1[1].getReg() != Pred2[1].getReg())
1191 return false;
1192
Hal Finkel5711eca2013-04-09 22:58:37 +00001193 PPC::Predicate P1 = (PPC::Predicate) Pred1[0].getImm();
1194 PPC::Predicate P2 = (PPC::Predicate) Pred2[0].getImm();
1195
1196 if (P1 == P2)
1197 return true;
1198
1199 // Does P1 subsume P2, e.g. GE subsumes GT.
1200 if (P1 == PPC::PRED_LE &&
1201 (P2 == PPC::PRED_LT || P2 == PPC::PRED_EQ))
1202 return true;
1203 if (P1 == PPC::PRED_GE &&
1204 (P2 == PPC::PRED_GT || P2 == PPC::PRED_EQ))
1205 return true;
1206
1207 return false;
1208}
1209
1210bool PPCInstrInfo::DefinesPredicate(MachineInstr *MI,
1211 std::vector<MachineOperand> &Pred) const {
1212 // Note: At the present time, the contents of Pred from this function is
1213 // unused by IfConversion. This implementation follows ARM by pushing the
1214 // CR-defining operand. Because the 'DZ' and 'DNZ' count as types of
1215 // predicate, instructions defining CTR or CTR8 are also included as
1216 // predicate-defining instructions.
1217
1218 const TargetRegisterClass *RCs[] =
1219 { &PPC::CRRCRegClass, &PPC::CRBITRCRegClass,
1220 &PPC::CTRRCRegClass, &PPC::CTRRC8RegClass };
1221
1222 bool Found = false;
1223 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1224 const MachineOperand &MO = MI->getOperand(i);
Hal Finkelaf822012013-04-10 07:17:47 +00001225 for (unsigned c = 0; c < array_lengthof(RCs) && !Found; ++c) {
Hal Finkel5711eca2013-04-09 22:58:37 +00001226 const TargetRegisterClass *RC = RCs[c];
Hal Finkelaf822012013-04-10 07:17:47 +00001227 if (MO.isReg()) {
1228 if (MO.isDef() && RC->contains(MO.getReg())) {
Hal Finkel5711eca2013-04-09 22:58:37 +00001229 Pred.push_back(MO);
1230 Found = true;
1231 }
Hal Finkelaf822012013-04-10 07:17:47 +00001232 } else if (MO.isRegMask()) {
1233 for (TargetRegisterClass::iterator I = RC->begin(),
1234 IE = RC->end(); I != IE; ++I)
1235 if (MO.clobbersPhysReg(*I)) {
1236 Pred.push_back(MO);
1237 Found = true;
1238 }
Hal Finkel5711eca2013-04-09 22:58:37 +00001239 }
1240 }
1241 }
1242
1243 return Found;
1244}
1245
1246bool PPCInstrInfo::isPredicable(MachineInstr *MI) const {
1247 unsigned OpC = MI->getOpcode();
1248 switch (OpC) {
1249 default:
1250 return false;
1251 case PPC::B:
1252 case PPC::BLR:
Hal Finkel500b0042013-04-10 06:42:34 +00001253 case PPC::BCTR:
1254 case PPC::BCTR8:
1255 case PPC::BCTRL:
1256 case PPC::BCTRL8:
Hal Finkel5711eca2013-04-09 22:58:37 +00001257 return true;
1258 }
1259}
1260
Hal Finkel82656cb2013-04-18 22:15:08 +00001261bool PPCInstrInfo::analyzeCompare(const MachineInstr *MI,
1262 unsigned &SrcReg, unsigned &SrcReg2,
1263 int &Mask, int &Value) const {
1264 unsigned Opc = MI->getOpcode();
1265
1266 switch (Opc) {
1267 default: return false;
1268 case PPC::CMPWI:
1269 case PPC::CMPLWI:
1270 case PPC::CMPDI:
1271 case PPC::CMPLDI:
1272 SrcReg = MI->getOperand(1).getReg();
1273 SrcReg2 = 0;
1274 Value = MI->getOperand(2).getImm();
1275 Mask = 0xFFFF;
1276 return true;
1277 case PPC::CMPW:
1278 case PPC::CMPLW:
1279 case PPC::CMPD:
1280 case PPC::CMPLD:
1281 case PPC::FCMPUS:
1282 case PPC::FCMPUD:
1283 SrcReg = MI->getOperand(1).getReg();
1284 SrcReg2 = MI->getOperand(2).getReg();
1285 return true;
1286 }
1287}
Hal Finkele6322392013-04-19 22:08:38 +00001288
Hal Finkel82656cb2013-04-18 22:15:08 +00001289bool PPCInstrInfo::optimizeCompareInstr(MachineInstr *CmpInstr,
1290 unsigned SrcReg, unsigned SrcReg2,
1291 int Mask, int Value,
1292 const MachineRegisterInfo *MRI) const {
Hal Finkelb12da6b2013-04-18 22:54:25 +00001293 if (DisableCmpOpt)
1294 return false;
1295
Hal Finkel82656cb2013-04-18 22:15:08 +00001296 int OpC = CmpInstr->getOpcode();
1297 unsigned CRReg = CmpInstr->getOperand(0).getReg();
Hal Finkel08e53ee2013-05-08 12:16:14 +00001298
1299 // FP record forms set CR1 based on the execption status bits, not a
1300 // comparison with zero.
1301 if (OpC == PPC::FCMPUS || OpC == PPC::FCMPUD)
1302 return false;
Hal Finkel82656cb2013-04-18 22:15:08 +00001303
1304 // The record forms set the condition register based on a signed comparison
1305 // with zero (so says the ISA manual). This is not as straightforward as it
1306 // seems, however, because this is always a 64-bit comparison on PPC64, even
1307 // for instructions that are 32-bit in nature (like slw for example).
1308 // So, on PPC32, for unsigned comparisons, we can use the record forms only
1309 // for equality checks (as those don't depend on the sign). On PPC64,
1310 // we are restricted to equality for unsigned 64-bit comparisons and for
1311 // signed 32-bit comparisons the applicability is more restricted.
1312 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
1313 bool is32BitSignedCompare = OpC == PPC::CMPWI || OpC == PPC::CMPW;
1314 bool is32BitUnsignedCompare = OpC == PPC::CMPLWI || OpC == PPC::CMPLW;
1315 bool is64BitUnsignedCompare = OpC == PPC::CMPLDI || OpC == PPC::CMPLD;
1316
1317 // Get the unique definition of SrcReg.
1318 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
1319 if (!MI) return false;
1320 int MIOpC = MI->getOpcode();
1321
1322 bool equalityOnly = false;
1323 bool noSub = false;
1324 if (isPPC64) {
1325 if (is32BitSignedCompare) {
1326 // We can perform this optimization only if MI is sign-extending.
1327 if (MIOpC == PPC::SRAW || MIOpC == PPC::SRAWo ||
1328 MIOpC == PPC::SRAWI || MIOpC == PPC::SRAWIo ||
1329 MIOpC == PPC::EXTSB || MIOpC == PPC::EXTSBo ||
1330 MIOpC == PPC::EXTSH || MIOpC == PPC::EXTSHo ||
1331 MIOpC == PPC::EXTSW || MIOpC == PPC::EXTSWo) {
1332 noSub = true;
1333 } else
1334 return false;
1335 } else if (is32BitUnsignedCompare) {
1336 // We can perform this optimization, equality only, if MI is
1337 // zero-extending.
1338 if (MIOpC == PPC::CNTLZW || MIOpC == PPC::CNTLZWo ||
1339 MIOpC == PPC::SLW || MIOpC == PPC::SLWo ||
1340 MIOpC == PPC::SRW || MIOpC == PPC::SRWo) {
1341 noSub = true;
1342 equalityOnly = true;
1343 } else
1344 return false;
Hal Finkel08e53ee2013-05-08 12:16:14 +00001345 } else
Hal Finkel82656cb2013-04-18 22:15:08 +00001346 equalityOnly = is64BitUnsignedCompare;
Hal Finkel08e53ee2013-05-08 12:16:14 +00001347 } else
Hal Finkel82656cb2013-04-18 22:15:08 +00001348 equalityOnly = is32BitUnsignedCompare;
1349
1350 if (equalityOnly) {
1351 // We need to check the uses of the condition register in order to reject
1352 // non-equality comparisons.
Owen Anderson16c6bf42014-03-13 23:12:04 +00001353 for (MachineRegisterInfo::use_instr_iterator I =MRI->use_instr_begin(CRReg),
1354 IE = MRI->use_instr_end(); I != IE; ++I) {
Hal Finkel82656cb2013-04-18 22:15:08 +00001355 MachineInstr *UseMI = &*I;
1356 if (UseMI->getOpcode() == PPC::BCC) {
1357 unsigned Pred = UseMI->getOperand(0).getImm();
Hal Finkelc3632452013-05-07 17:49:55 +00001358 if (Pred != PPC::PRED_EQ && Pred != PPC::PRED_NE)
1359 return false;
Hal Finkel82656cb2013-04-18 22:15:08 +00001360 } else if (UseMI->getOpcode() == PPC::ISEL ||
1361 UseMI->getOpcode() == PPC::ISEL8) {
1362 unsigned SubIdx = UseMI->getOperand(3).getSubReg();
Hal Finkelc3632452013-05-07 17:49:55 +00001363 if (SubIdx != PPC::sub_eq)
1364 return false;
Hal Finkel82656cb2013-04-18 22:15:08 +00001365 } else
1366 return false;
1367 }
1368 }
1369
Hal Finkelc3632452013-05-07 17:49:55 +00001370 MachineBasicBlock::iterator I = CmpInstr;
Hal Finkel82656cb2013-04-18 22:15:08 +00001371
1372 // Scan forward to find the first use of the compare.
1373 for (MachineBasicBlock::iterator EL = CmpInstr->getParent()->end();
1374 I != EL; ++I) {
1375 bool FoundUse = false;
Owen Anderson16c6bf42014-03-13 23:12:04 +00001376 for (MachineRegisterInfo::use_instr_iterator J =MRI->use_instr_begin(CRReg),
1377 JE = MRI->use_instr_end(); J != JE; ++J)
Hal Finkel82656cb2013-04-18 22:15:08 +00001378 if (&*J == &*I) {
1379 FoundUse = true;
1380 break;
1381 }
1382
1383 if (FoundUse)
1384 break;
1385 }
1386
Hal Finkel82656cb2013-04-18 22:15:08 +00001387 // There are two possible candidates which can be changed to set CR[01].
1388 // One is MI, the other is a SUB instruction.
1389 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
1390 MachineInstr *Sub = NULL;
1391 if (SrcReg2 != 0)
1392 // MI is not a candidate for CMPrr.
1393 MI = NULL;
1394 // FIXME: Conservatively refuse to convert an instruction which isn't in the
1395 // same BB as the comparison. This is to allow the check below to avoid calls
1396 // (and other explicit clobbers); instead we should really check for these
1397 // more explicitly (in at least a few predecessors).
1398 else if (MI->getParent() != CmpInstr->getParent() || Value != 0) {
1399 // PPC does not have a record-form SUBri.
1400 return false;
1401 }
1402
1403 // Search for Sub.
1404 const TargetRegisterInfo *TRI = &getRegisterInfo();
1405 --I;
Hal Finkelc3632452013-05-07 17:49:55 +00001406
1407 // Get ready to iterate backward from CmpInstr.
1408 MachineBasicBlock::iterator E = MI,
1409 B = CmpInstr->getParent()->begin();
1410
Hal Finkel82656cb2013-04-18 22:15:08 +00001411 for (; I != E && !noSub; --I) {
1412 const MachineInstr &Instr = *I;
1413 unsigned IOpC = Instr.getOpcode();
1414
1415 if (&*I != CmpInstr && (
Hal Finkel08e53ee2013-05-08 12:16:14 +00001416 Instr.modifiesRegister(PPC::CR0, TRI) ||
1417 Instr.readsRegister(PPC::CR0, TRI)))
Hal Finkel82656cb2013-04-18 22:15:08 +00001418 // This instruction modifies or uses the record condition register after
1419 // the one we want to change. While we could do this transformation, it
1420 // would likely not be profitable. This transformation removes one
1421 // instruction, and so even forcing RA to generate one move probably
1422 // makes it unprofitable.
1423 return false;
1424
1425 // Check whether CmpInstr can be made redundant by the current instruction.
1426 if ((OpC == PPC::CMPW || OpC == PPC::CMPLW ||
1427 OpC == PPC::CMPD || OpC == PPC::CMPLD) &&
1428 (IOpC == PPC::SUBF || IOpC == PPC::SUBF8) &&
1429 ((Instr.getOperand(1).getReg() == SrcReg &&
1430 Instr.getOperand(2).getReg() == SrcReg2) ||
1431 (Instr.getOperand(1).getReg() == SrcReg2 &&
1432 Instr.getOperand(2).getReg() == SrcReg))) {
1433 Sub = &*I;
1434 break;
1435 }
1436
Hal Finkel82656cb2013-04-18 22:15:08 +00001437 if (I == B)
1438 // The 'and' is below the comparison instruction.
1439 return false;
1440 }
1441
1442 // Return false if no candidates exist.
1443 if (!MI && !Sub)
1444 return false;
1445
1446 // The single candidate is called MI.
1447 if (!MI) MI = Sub;
1448
1449 int NewOpC = -1;
1450 MIOpC = MI->getOpcode();
1451 if (MIOpC == PPC::ANDIo || MIOpC == PPC::ANDIo8)
1452 NewOpC = MIOpC;
1453 else {
1454 NewOpC = PPC::getRecordFormOpcode(MIOpC);
1455 if (NewOpC == -1 && PPC::getNonRecordFormOpcode(MIOpC) != -1)
1456 NewOpC = MIOpC;
1457 }
1458
1459 // FIXME: On the non-embedded POWER architectures, only some of the record
1460 // forms are fast, and we should use only the fast ones.
1461
1462 // The defining instruction has a record form (or is already a record
1463 // form). It is possible, however, that we'll need to reverse the condition
1464 // code of the users.
1465 if (NewOpC == -1)
1466 return false;
1467
Hal Finkele6322392013-04-19 22:08:38 +00001468 SmallVector<std::pair<MachineOperand*, PPC::Predicate>, 4> PredsToUpdate;
1469 SmallVector<std::pair<MachineOperand*, unsigned>, 4> SubRegsToUpdate;
Hal Finkel82656cb2013-04-18 22:15:08 +00001470
1471 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based on CMP
1472 // needs to be updated to be based on SUB. Push the condition code
1473 // operands to OperandsToUpdate. If it is safe to remove CmpInstr, the
1474 // condition code of these operands will be modified.
1475 bool ShouldSwap = false;
1476 if (Sub) {
1477 ShouldSwap = SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
1478 Sub->getOperand(2).getReg() == SrcReg;
1479
1480 // The operands to subf are the opposite of sub, so only in the fixed-point
1481 // case, invert the order.
Hal Finkel08e53ee2013-05-08 12:16:14 +00001482 ShouldSwap = !ShouldSwap;
Hal Finkel82656cb2013-04-18 22:15:08 +00001483 }
1484
1485 if (ShouldSwap)
Owen Anderson16c6bf42014-03-13 23:12:04 +00001486 for (MachineRegisterInfo::use_instr_iterator
1487 I = MRI->use_instr_begin(CRReg), IE = MRI->use_instr_end();
1488 I != IE; ++I) {
Hal Finkel82656cb2013-04-18 22:15:08 +00001489 MachineInstr *UseMI = &*I;
1490 if (UseMI->getOpcode() == PPC::BCC) {
1491 PPC::Predicate Pred = (PPC::Predicate) UseMI->getOperand(0).getImm();
Hal Finkele6322392013-04-19 22:08:38 +00001492 assert((!equalityOnly ||
1493 Pred == PPC::PRED_EQ || Pred == PPC::PRED_NE) &&
1494 "Invalid predicate for equality-only optimization");
Owen Anderson16c6bf42014-03-13 23:12:04 +00001495 PredsToUpdate.push_back(std::make_pair(&(UseMI->getOperand(0)),
Hal Finkel0f64e212013-04-20 05:16:26 +00001496 PPC::getSwappedPredicate(Pred)));
Hal Finkel82656cb2013-04-18 22:15:08 +00001497 } else if (UseMI->getOpcode() == PPC::ISEL ||
1498 UseMI->getOpcode() == PPC::ISEL8) {
Hal Finkele6322392013-04-19 22:08:38 +00001499 unsigned NewSubReg = UseMI->getOperand(3).getSubReg();
1500 assert((!equalityOnly || NewSubReg == PPC::sub_eq) &&
1501 "Invalid CR bit for equality-only optimization");
1502
1503 if (NewSubReg == PPC::sub_lt)
1504 NewSubReg = PPC::sub_gt;
1505 else if (NewSubReg == PPC::sub_gt)
1506 NewSubReg = PPC::sub_lt;
1507
Owen Anderson16c6bf42014-03-13 23:12:04 +00001508 SubRegsToUpdate.push_back(std::make_pair(&(UseMI->getOperand(3)),
Hal Finkele6322392013-04-19 22:08:38 +00001509 NewSubReg));
Hal Finkel82656cb2013-04-18 22:15:08 +00001510 } else // We need to abort on a user we don't understand.
1511 return false;
1512 }
1513
1514 // Create a new virtual register to hold the value of the CR set by the
1515 // record-form instruction. If the instruction was not previously in
1516 // record form, then set the kill flag on the CR.
1517 CmpInstr->eraseFromParent();
1518
1519 MachineBasicBlock::iterator MII = MI;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001520 BuildMI(*MI->getParent(), std::next(MII), MI->getDebugLoc(),
Hal Finkel82656cb2013-04-18 22:15:08 +00001521 get(TargetOpcode::COPY), CRReg)
Hal Finkel08e53ee2013-05-08 12:16:14 +00001522 .addReg(PPC::CR0, MIOpC != NewOpC ? RegState::Kill : 0);
Hal Finkel82656cb2013-04-18 22:15:08 +00001523
1524 if (MIOpC != NewOpC) {
1525 // We need to be careful here: we're replacing one instruction with
1526 // another, and we need to make sure that we get all of the right
1527 // implicit uses and defs. On the other hand, the caller may be holding
1528 // an iterator to this instruction, and so we can't delete it (this is
1529 // specifically the case if this is the instruction directly after the
1530 // compare).
1531
1532 const MCInstrDesc &NewDesc = get(NewOpC);
1533 MI->setDesc(NewDesc);
1534
1535 if (NewDesc.ImplicitDefs)
1536 for (const uint16_t *ImpDefs = NewDesc.getImplicitDefs();
1537 *ImpDefs; ++ImpDefs)
1538 if (!MI->definesRegister(*ImpDefs))
1539 MI->addOperand(*MI->getParent()->getParent(),
1540 MachineOperand::CreateReg(*ImpDefs, true, true));
1541 if (NewDesc.ImplicitUses)
1542 for (const uint16_t *ImpUses = NewDesc.getImplicitUses();
1543 *ImpUses; ++ImpUses)
1544 if (!MI->readsRegister(*ImpUses))
1545 MI->addOperand(*MI->getParent()->getParent(),
1546 MachineOperand::CreateReg(*ImpUses, false, true));
1547 }
1548
1549 // Modify the condition code of operands in OperandsToUpdate.
1550 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
1551 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
Hal Finkele6322392013-04-19 22:08:38 +00001552 for (unsigned i = 0, e = PredsToUpdate.size(); i < e; i++)
1553 PredsToUpdate[i].first->setImm(PredsToUpdate[i].second);
Hal Finkel82656cb2013-04-18 22:15:08 +00001554
Hal Finkele6322392013-04-19 22:08:38 +00001555 for (unsigned i = 0, e = SubRegsToUpdate.size(); i < e; i++)
1556 SubRegsToUpdate[i].first->setSubReg(SubRegsToUpdate[i].second);
Hal Finkel82656cb2013-04-18 22:15:08 +00001557
1558 return true;
1559}
1560
Nicolas Geoffrayae84bbd2008-04-16 20:10:13 +00001561/// GetInstSize - Return the number of bytes of code the specified
1562/// instruction may be. This returns the maximum number of bytes.
1563///
1564unsigned PPCInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
Hal Finkela7bbaf62014-02-02 06:12:27 +00001565 unsigned Opcode = MI->getOpcode();
1566
1567 if (Opcode == PPC::INLINEASM) {
Nicolas Geoffrayae84bbd2008-04-16 20:10:13 +00001568 const MachineFunction *MF = MI->getParent()->getParent();
1569 const char *AsmStr = MI->getOperand(0).getSymbolName();
Chris Lattner7b26fce2009-08-22 20:48:53 +00001570 return getInlineAsmLength(AsmStr, *MF->getTarget().getMCAsmInfo());
Hal Finkela7bbaf62014-02-02 06:12:27 +00001571 } else {
1572 const MCInstrDesc &Desc = get(Opcode);
1573 return Desc.getSize();
Nicolas Geoffrayae84bbd2008-04-16 20:10:13 +00001574 }
1575}
Hal Finkelb5aa7e52013-04-08 16:24:03 +00001576
Hal Finkel174e5902014-03-25 23:29:21 +00001577#undef DEBUG_TYPE
1578#define DEBUG_TYPE "ppc-vsx-fma-mutate"
1579
1580namespace {
1581 // PPCVSXFMAMutate pass - For copies between VSX registers and non-VSX registers
1582 // (Altivec and scalar floating-point registers), we need to transform the
1583 // copies into subregister copies with other restrictions.
1584 struct PPCVSXFMAMutate : public MachineFunctionPass {
1585 static char ID;
1586 PPCVSXFMAMutate() : MachineFunctionPass(ID) {
1587 initializePPCVSXFMAMutatePass(*PassRegistry::getPassRegistry());
1588 }
1589
1590 LiveIntervals *LIS;
1591
1592 const PPCTargetMachine *TM;
1593 const PPCInstrInfo *TII;
1594
1595protected:
1596 bool processBlock(MachineBasicBlock &MBB) {
1597 bool Changed = false;
1598
1599 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
1600 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end();
1601 I != IE; ++I) {
1602 MachineInstr *MI = I;
1603
1604 // The default (A-type) VSX FMA form kills the addend (it is taken from
1605 // the target register, which is then updated to reflect the result of
1606 // the FMA). If the instruction, however, kills one of the registers
1607 // used for the product, then we can use the M-form instruction (which
1608 // will take that value from the to-be-defined register).
1609
1610 int AltOpc = PPC::getAltVSXFMAOpcode(MI->getOpcode());
1611 if (AltOpc == -1)
1612 continue;
1613
1614 // This pass is run after register coalescing, and so we're looking for
1615 // a situation like this:
1616 // ...
1617 // %vreg5<def> = COPY %vreg9; VSLRC:%vreg5,%vreg9
1618 // %vreg5<def,tied1> = XSMADDADP %vreg5<tied0>, %vreg17, %vreg16,
1619 // %RM<imp-use>; VSLRC:%vreg5,%vreg17,%vreg16
1620 // ...
1621 // %vreg9<def,tied1> = XSMADDADP %vreg9<tied0>, %vreg17, %vreg19,
1622 // %RM<imp-use>; VSLRC:%vreg9,%vreg17,%vreg19
1623 // ...
1624 // Where we can eliminate the copy by changing from the A-type to the
1625 // M-type instruction. Specifically, for this example, this means:
1626 // %vreg5<def,tied1> = XSMADDADP %vreg5<tied0>, %vreg17, %vreg16,
1627 // %RM<imp-use>; VSLRC:%vreg5,%vreg17,%vreg16
1628 // is replaced by:
1629 // %vreg16<def,tied1> = XSMADDMDP %vreg16<tied0>, %vreg18, %vreg9,
1630 // %RM<imp-use>; VSLRC:%vreg16,%vreg18,%vreg9
1631 // and we remove: %vreg5<def> = COPY %vreg9; VSLRC:%vreg5,%vreg9
1632
1633 SlotIndex FMAIdx = LIS->getInstructionIndex(MI);
1634
1635 VNInfo *AddendValNo =
1636 LIS->getInterval(MI->getOperand(1).getReg()).Query(FMAIdx).valueIn();
1637 MachineInstr *AddendMI = LIS->getInstructionFromIndex(AddendValNo->def);
1638
1639 // The addend and this instruction must be in the same block.
1640
1641 if (AddendMI->getParent() != MI->getParent())
1642 continue;
1643
1644 // The addend must be a full copy within the same register class.
1645
1646 if (!AddendMI->isFullCopy())
1647 continue;
1648
1649 if (MRI.getRegClass(AddendMI->getOperand(0).getReg()) !=
1650 MRI.getRegClass(AddendMI->getOperand(1).getReg()))
1651 continue;
1652
1653 // In theory, there could be other uses of the addend copy before this
1654 // fma. We could deal with this, but that would require additional
1655 // logic below and I suspect it will not occur in any relevant
1656 // situations.
1657 bool OtherUsers = false;
1658 for (auto J = std::prev(I), JE = MachineBasicBlock::iterator(AddendMI);
1659 J != JE; --J)
1660 if (J->readsVirtualRegister(AddendMI->getOperand(0).getReg())) {
1661 OtherUsers = true;
1662 break;
1663 }
1664
1665 if (OtherUsers)
1666 continue;
1667
1668 // Find one of the product operands that is killed by this instruction.
1669
1670 unsigned KilledProdOp = 0, OtherProdOp = 0;
1671 if (LIS->getInterval(MI->getOperand(2).getReg())
1672 .Query(FMAIdx).isKill()) {
1673 KilledProdOp = 2;
1674 OtherProdOp = 3;
1675 } else if (LIS->getInterval(MI->getOperand(3).getReg())
1676 .Query(FMAIdx).isKill()) {
1677 KilledProdOp = 3;
1678 OtherProdOp = 2;
1679 }
1680
1681 // If there are no killed product operands, then this transformation is
1682 // likely not profitable.
1683 if (!KilledProdOp)
1684 continue;
1685
1686 // In order to replace the addend here with the source of the copy,
1687 // it must still be live here.
1688 if (!LIS->getInterval(AddendMI->getOperand(1).getReg()).liveAt(FMAIdx))
1689 continue;
1690
1691 // Transform: (O2 * O3) + O1 -> (O2 * O1) + O3.
1692
1693 unsigned AddReg = AddendMI->getOperand(1).getReg();
1694 unsigned KilledProdReg = MI->getOperand(KilledProdOp).getReg();
1695 unsigned OtherProdReg = MI->getOperand(OtherProdOp).getReg();
1696
1697 unsigned AddSubReg = AddendMI->getOperand(1).getSubReg();
1698 unsigned KilledProdSubReg = MI->getOperand(KilledProdOp).getSubReg();
1699 unsigned OtherProdSubReg = MI->getOperand(OtherProdOp).getSubReg();
1700
1701 bool AddRegKill = AddendMI->getOperand(1).isKill();
1702 bool KilledProdRegKill = MI->getOperand(KilledProdOp).isKill();
1703 bool OtherProdRegKill = MI->getOperand(OtherProdOp).isKill();
1704
1705 bool AddRegUndef = AddendMI->getOperand(1).isUndef();
1706 bool KilledProdRegUndef = MI->getOperand(KilledProdOp).isUndef();
1707 bool OtherProdRegUndef = MI->getOperand(OtherProdOp).isUndef();
1708
1709 unsigned OldFMAReg = MI->getOperand(0).getReg();
1710
1711 assert(OldFMAReg == AddendMI->getOperand(0).getReg() &&
1712 "Addend copy not tied to old FMA output!");
1713
1714 DEBUG(dbgs() << "VSX FMA Mutation:\n " << *MI;);
1715
1716 MI->getOperand(0).setReg(KilledProdReg);
1717 MI->getOperand(1).setReg(KilledProdReg);
1718 MI->getOperand(3).setReg(AddReg);
1719 MI->getOperand(2).setReg(OtherProdReg);
1720
1721 MI->getOperand(0).setSubReg(KilledProdSubReg);
1722 MI->getOperand(1).setSubReg(KilledProdSubReg);
1723 MI->getOperand(3).setSubReg(AddSubReg);
1724 MI->getOperand(2).setSubReg(OtherProdSubReg);
1725
1726 MI->getOperand(1).setIsKill(KilledProdRegKill);
1727 MI->getOperand(3).setIsKill(AddRegKill);
1728 MI->getOperand(2).setIsKill(OtherProdRegKill);
1729
1730 MI->getOperand(1).setIsUndef(KilledProdRegUndef);
1731 MI->getOperand(3).setIsUndef(AddRegUndef);
1732 MI->getOperand(2).setIsUndef(OtherProdRegUndef);
1733
1734 MI->setDesc(TII->get(AltOpc));
1735
1736 DEBUG(dbgs() << " -> " << *MI);
1737
1738 // The killed product operand was killed here, so we can reuse it now
1739 // for the result of the fma.
1740
1741 LiveInterval &FMAInt = LIS->getInterval(OldFMAReg);
1742 VNInfo *FMAValNo = FMAInt.getVNInfoAt(FMAIdx.getRegSlot());
1743 for (auto UI = MRI.reg_nodbg_begin(OldFMAReg), UE = MRI.reg_nodbg_end();
1744 UI != UE;) {
1745 MachineOperand &UseMO = *UI;
1746 MachineInstr *UseMI = UseMO.getParent();
1747 ++UI;
1748
1749 // Don't replace the result register of the copy we're about to erase.
1750 if (UseMI == AddendMI)
1751 continue;
1752
1753 UseMO.setReg(KilledProdReg);
1754 UseMO.setSubReg(KilledProdSubReg);
1755 }
1756
1757 // Extend the live intervals of the killed product operand to hold the
1758 // fma result.
1759
1760 LiveInterval &NewFMAInt = LIS->getInterval(KilledProdReg);
1761 for (LiveInterval::iterator AI = FMAInt.begin(), AE = FMAInt.end();
1762 AI != AE; ++AI) {
1763 // Don't add the segment that corresponds to the original copy.
1764 if (AI->valno == AddendValNo)
1765 continue;
1766
1767 VNInfo *NewFMAValNo =
1768 NewFMAInt.getNextValue(AI->start,
1769 LIS->getVNInfoAllocator());
1770
1771 NewFMAInt.addSegment(LiveInterval::Segment(AI->start, AI->end,
1772 NewFMAValNo));
1773 }
1774 DEBUG(dbgs() << " extended: " << NewFMAInt << '\n');
1775
1776 FMAInt.removeValNo(FMAValNo);
1777 DEBUG(dbgs() << " trimmed: " << FMAInt << '\n');
1778
1779 // Remove the (now unused) copy.
1780
1781 DEBUG(dbgs() << " removing: " << *AddendMI << '\n');
1782 LIS->RemoveMachineInstrFromMaps(AddendMI);
1783 AddendMI->eraseFromParent();
1784
1785 Changed = true;
1786 }
1787
1788 return Changed;
1789 }
1790
1791public:
1792 virtual bool runOnMachineFunction(MachineFunction &MF) {
1793 LIS = &getAnalysis<LiveIntervals>();
1794
1795 TM = static_cast<const PPCTargetMachine *>(&MF.getTarget());
1796 TII = TM->getInstrInfo();
1797
1798 bool Changed = false;
1799
1800 if (DisableVSXFMAMutate)
1801 return Changed;
1802
1803 for (MachineFunction::iterator I = MF.begin(); I != MF.end();) {
1804 MachineBasicBlock &B = *I++;
1805 if (processBlock(B))
1806 Changed = true;
1807 }
1808
1809 return Changed;
1810 }
1811
1812 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
1813 AU.addRequired<LiveIntervals>();
1814 AU.addPreserved<LiveIntervals>();
1815 AU.addRequired<SlotIndexes>();
1816 AU.addPreserved<SlotIndexes>();
1817 MachineFunctionPass::getAnalysisUsage(AU);
1818 }
1819 };
1820}
1821
1822INITIALIZE_PASS_BEGIN(PPCVSXFMAMutate, DEBUG_TYPE,
1823 "PowerPC VSX FMA Mutation", false, false)
1824INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
1825INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
1826INITIALIZE_PASS_END(PPCVSXFMAMutate, DEBUG_TYPE,
1827 "PowerPC VSX FMA Mutation", false, false)
1828
1829char &llvm::PPCVSXFMAMutateID = PPCVSXFMAMutate::ID;
1830
1831char PPCVSXFMAMutate::ID = 0;
1832FunctionPass*
1833llvm::createPPCVSXFMAMutatePass() { return new PPCVSXFMAMutate(); }
Hal Finkel27774d92014-03-13 07:58:58 +00001834
1835#undef DEBUG_TYPE
1836#define DEBUG_TYPE "ppc-vsx-copy"
1837
1838namespace llvm {
1839 void initializePPCVSXCopyPass(PassRegistry&);
1840}
1841
1842namespace {
1843 // PPCVSXCopy pass - For copies between VSX registers and non-VSX registers
1844 // (Altivec and scalar floating-point registers), we need to transform the
1845 // copies into subregister copies with other restrictions.
1846 struct PPCVSXCopy : public MachineFunctionPass {
1847 static char ID;
1848 PPCVSXCopy() : MachineFunctionPass(ID) {
1849 initializePPCVSXCopyPass(*PassRegistry::getPassRegistry());
1850 }
1851
1852 const PPCTargetMachine *TM;
1853 const PPCInstrInfo *TII;
1854
1855 bool IsRegInClass(unsigned Reg, const TargetRegisterClass *RC,
1856 MachineRegisterInfo &MRI) {
1857 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1858 return RC->hasSubClassEq(MRI.getRegClass(Reg));
1859 } else if (RC->contains(Reg)) {
1860 return true;
1861 }
1862
1863 return false;
1864 }
1865
1866 bool IsVSReg(unsigned Reg, MachineRegisterInfo &MRI) {
1867 return IsRegInClass(Reg, &PPC::VSRCRegClass, MRI);
1868 }
1869
1870 bool IsVRReg(unsigned Reg, MachineRegisterInfo &MRI) {
1871 return IsRegInClass(Reg, &PPC::VRRCRegClass, MRI);
1872 }
1873
1874 bool IsF8Reg(unsigned Reg, MachineRegisterInfo &MRI) {
1875 return IsRegInClass(Reg, &PPC::F8RCRegClass, MRI);
1876 }
1877
1878protected:
1879 bool processBlock(MachineBasicBlock &MBB) {
1880 bool Changed = false;
1881
1882 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
1883 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end();
1884 I != IE; ++I) {
1885 MachineInstr *MI = I;
1886 if (!MI->isFullCopy())
1887 continue;
1888
1889 MachineOperand &DstMO = MI->getOperand(0);
1890 MachineOperand &SrcMO = MI->getOperand(1);
1891
1892 if ( IsVSReg(DstMO.getReg(), MRI) &&
1893 !IsVSReg(SrcMO.getReg(), MRI)) {
1894 // This is a copy *to* a VSX register from a non-VSX register.
1895 Changed = true;
1896
1897 const TargetRegisterClass *SrcRC =
1898 IsVRReg(SrcMO.getReg(), MRI) ? &PPC::VSHRCRegClass :
1899 &PPC::VSLRCRegClass;
1900 assert((IsF8Reg(SrcMO.getReg(), MRI) ||
1901 IsVRReg(SrcMO.getReg(), MRI)) &&
1902 "Unknown source for a VSX copy");
1903
1904 unsigned NewVReg = MRI.createVirtualRegister(SrcRC);
1905 BuildMI(MBB, MI, MI->getDebugLoc(),
1906 TII->get(TargetOpcode::SUBREG_TO_REG), NewVReg)
1907 .addImm(1) // add 1, not 0, because there is no implicit clearing
1908 // of the high bits.
1909 .addOperand(SrcMO)
1910 .addImm(IsVRReg(SrcMO.getReg(), MRI) ? PPC::sub_128 :
1911 PPC::sub_64);
1912
1913 // The source of the original copy is now the new virtual register.
1914 SrcMO.setReg(NewVReg);
1915 } else if (!IsVSReg(DstMO.getReg(), MRI) &&
1916 IsVSReg(SrcMO.getReg(), MRI)) {
1917 // This is a copy *from* a VSX register to a non-VSX register.
1918 Changed = true;
1919
1920 const TargetRegisterClass *DstRC =
1921 IsVRReg(DstMO.getReg(), MRI) ? &PPC::VSHRCRegClass :
1922 &PPC::VSLRCRegClass;
1923 assert((IsF8Reg(DstMO.getReg(), MRI) ||
1924 IsVRReg(DstMO.getReg(), MRI)) &&
1925 "Unknown destination for a VSX copy");
1926
1927 // Copy the VSX value into a new VSX register of the correct subclass.
1928 unsigned NewVReg = MRI.createVirtualRegister(DstRC);
1929 BuildMI(MBB, MI, MI->getDebugLoc(),
1930 TII->get(TargetOpcode::COPY), NewVReg)
1931 .addOperand(SrcMO);
1932
1933 // Transform the original copy into a subregister extraction copy.
1934 SrcMO.setReg(NewVReg);
1935 SrcMO.setSubReg(IsVRReg(DstMO.getReg(), MRI) ? PPC::sub_128 :
1936 PPC::sub_64);
1937 }
1938 }
1939
1940 return Changed;
1941 }
1942
1943public:
1944 virtual bool runOnMachineFunction(MachineFunction &MF) {
1945 TM = static_cast<const PPCTargetMachine *>(&MF.getTarget());
1946 TII = TM->getInstrInfo();
1947
1948 bool Changed = false;
1949
1950 for (MachineFunction::iterator I = MF.begin(); I != MF.end();) {
1951 MachineBasicBlock &B = *I++;
1952 if (processBlock(B))
1953 Changed = true;
1954 }
1955
1956 return Changed;
1957 }
1958
1959 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
1960 MachineFunctionPass::getAnalysisUsage(AU);
1961 }
1962 };
1963}
1964
1965INITIALIZE_PASS(PPCVSXCopy, DEBUG_TYPE,
1966 "PowerPC VSX Copy Legalization", false, false)
1967
1968char PPCVSXCopy::ID = 0;
1969FunctionPass*
1970llvm::createPPCVSXCopyPass() { return new PPCVSXCopy(); }
1971
Hal Finkelb5aa7e52013-04-08 16:24:03 +00001972#undef DEBUG_TYPE
Hal Finkelc6fc9b82014-03-27 23:12:31 +00001973#define DEBUG_TYPE "ppc-vsx-copy-cleanup"
1974
1975namespace llvm {
1976 void initializePPCVSXCopyCleanupPass(PassRegistry&);
1977}
1978
1979namespace {
1980 // PPCVSXCopyCleanup pass - We sometimes end up generating self copies of VSX
1981 // registers (mostly because the ABI code still places all values into the
1982 // "traditional" floating-point and vector registers). Remove them here.
1983 struct PPCVSXCopyCleanup : public MachineFunctionPass {
1984 static char ID;
1985 PPCVSXCopyCleanup() : MachineFunctionPass(ID) {
1986 initializePPCVSXCopyCleanupPass(*PassRegistry::getPassRegistry());
1987 }
1988
1989 const PPCTargetMachine *TM;
1990 const PPCInstrInfo *TII;
1991
1992protected:
1993 bool processBlock(MachineBasicBlock &MBB) {
1994 bool Changed = false;
1995
1996 SmallVector<MachineInstr *, 4> ToDelete;
1997 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end();
1998 I != IE; ++I) {
1999 MachineInstr *MI = I;
2000 if (MI->getOpcode() == PPC::XXLOR &&
2001 MI->getOperand(0).getReg() == MI->getOperand(1).getReg() &&
2002 MI->getOperand(0).getReg() == MI->getOperand(2).getReg())
2003 ToDelete.push_back(MI);
2004 }
2005
2006 if (!ToDelete.empty())
2007 Changed = true;
2008
2009 for (unsigned i = 0, ie = ToDelete.size(); i != ie; ++i) {
2010 DEBUG(dbgs() << "Removing VSX self-copy: " << *ToDelete[i]);
2011 ToDelete[i]->eraseFromParent();
2012 }
2013
2014 return Changed;
2015 }
2016
2017public:
2018 virtual bool runOnMachineFunction(MachineFunction &MF) {
2019 TM = static_cast<const PPCTargetMachine *>(&MF.getTarget());
2020 TII = TM->getInstrInfo();
2021
2022 bool Changed = false;
2023
2024 for (MachineFunction::iterator I = MF.begin(); I != MF.end();) {
2025 MachineBasicBlock &B = *I++;
2026 if (processBlock(B))
2027 Changed = true;
2028 }
2029
2030 return Changed;
2031 }
2032
2033 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
2034 MachineFunctionPass::getAnalysisUsage(AU);
2035 }
2036 };
2037}
2038
2039INITIALIZE_PASS(PPCVSXCopyCleanup, DEBUG_TYPE,
2040 "PowerPC VSX Copy Cleanup", false, false)
2041
2042char PPCVSXCopyCleanup::ID = 0;
2043FunctionPass*
2044llvm::createPPCVSXCopyCleanupPass() { return new PPCVSXCopyCleanup(); }
2045
2046#undef DEBUG_TYPE
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002047#define DEBUG_TYPE "ppc-early-ret"
2048STATISTIC(NumBCLR, "Number of early conditional returns");
2049STATISTIC(NumBLR, "Number of early returns");
2050
2051namespace llvm {
2052 void initializePPCEarlyReturnPass(PassRegistry&);
2053}
2054
2055namespace {
2056 // PPCEarlyReturn pass - For simple functions without epilogue code, move
2057 // returns up, and create conditional returns, to avoid unnecessary
2058 // branch-to-blr sequences.
2059 struct PPCEarlyReturn : public MachineFunctionPass {
2060 static char ID;
2061 PPCEarlyReturn() : MachineFunctionPass(ID) {
2062 initializePPCEarlyReturnPass(*PassRegistry::getPassRegistry());
2063 }
2064
2065 const PPCTargetMachine *TM;
2066 const PPCInstrInfo *TII;
2067
2068protected:
Hal Finkel21aad9a2013-04-09 18:25:18 +00002069 bool processBlock(MachineBasicBlock &ReturnMBB) {
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002070 bool Changed = false;
2071
Hal Finkel21aad9a2013-04-09 18:25:18 +00002072 MachineBasicBlock::iterator I = ReturnMBB.begin();
2073 I = ReturnMBB.SkipPHIsAndLabels(I);
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002074
2075 // The block must be essentially empty except for the blr.
Hal Finkel21aad9a2013-04-09 18:25:18 +00002076 if (I == ReturnMBB.end() || I->getOpcode() != PPC::BLR ||
2077 I != ReturnMBB.getLastNonDebugInstr())
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002078 return Changed;
2079
2080 SmallVector<MachineBasicBlock*, 8> PredToRemove;
Hal Finkel21aad9a2013-04-09 18:25:18 +00002081 for (MachineBasicBlock::pred_iterator PI = ReturnMBB.pred_begin(),
2082 PIE = ReturnMBB.pred_end(); PI != PIE; ++PI) {
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002083 bool OtherReference = false, BlockChanged = false;
Hal Finkel21aad9a2013-04-09 18:25:18 +00002084 for (MachineBasicBlock::iterator J = (*PI)->getLastNonDebugInstr();;) {
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002085 if (J->getOpcode() == PPC::B) {
Hal Finkel21aad9a2013-04-09 18:25:18 +00002086 if (J->getOperand(0).getMBB() == &ReturnMBB) {
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002087 // This is an unconditional branch to the return. Replace the
Andrew Trick9defbd82013-12-17 04:50:40 +00002088 // branch with a blr.
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002089 BuildMI(**PI, J, J->getDebugLoc(), TII->get(PPC::BLR));
Hal Finkel21aad9a2013-04-09 18:25:18 +00002090 MachineBasicBlock::iterator K = J--;
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002091 K->eraseFromParent();
2092 BlockChanged = true;
2093 ++NumBLR;
2094 continue;
2095 }
2096 } else if (J->getOpcode() == PPC::BCC) {
Hal Finkel21aad9a2013-04-09 18:25:18 +00002097 if (J->getOperand(2).getMBB() == &ReturnMBB) {
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002098 // This is a conditional branch to the return. Replace the branch
2099 // with a bclr.
Hal Finkel940ab932014-02-28 00:27:01 +00002100 BuildMI(**PI, J, J->getDebugLoc(), TII->get(PPC::BCCLR))
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002101 .addImm(J->getOperand(0).getImm())
2102 .addReg(J->getOperand(1).getReg());
Hal Finkel21aad9a2013-04-09 18:25:18 +00002103 MachineBasicBlock::iterator K = J--;
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002104 K->eraseFromParent();
2105 BlockChanged = true;
2106 ++NumBCLR;
2107 continue;
2108 }
Hal Finkel940ab932014-02-28 00:27:01 +00002109 } else if (J->getOpcode() == PPC::BC || J->getOpcode() == PPC::BCn) {
2110 if (J->getOperand(1).getMBB() == &ReturnMBB) {
2111 // This is a conditional branch to the return. Replace the branch
2112 // with a bclr.
2113 BuildMI(**PI, J, J->getDebugLoc(),
2114 TII->get(J->getOpcode() == PPC::BC ?
2115 PPC::BCLR : PPC::BCLRn))
2116 .addReg(J->getOperand(0).getReg());
2117 MachineBasicBlock::iterator K = J--;
2118 K->eraseFromParent();
2119 BlockChanged = true;
2120 ++NumBCLR;
2121 continue;
2122 }
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002123 } else if (J->isBranch()) {
2124 if (J->isIndirectBranch()) {
Hal Finkel21aad9a2013-04-09 18:25:18 +00002125 if (ReturnMBB.hasAddressTaken())
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002126 OtherReference = true;
2127 } else
2128 for (unsigned i = 0; i < J->getNumOperands(); ++i)
2129 if (J->getOperand(i).isMBB() &&
Hal Finkel21aad9a2013-04-09 18:25:18 +00002130 J->getOperand(i).getMBB() == &ReturnMBB)
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002131 OtherReference = true;
Hal Finkel21aad9a2013-04-09 18:25:18 +00002132 } else if (!J->isTerminator() && !J->isDebugValue())
2133 break;
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002134
Hal Finkel21aad9a2013-04-09 18:25:18 +00002135 if (J == (*PI)->begin())
2136 break;
2137
2138 --J;
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002139 }
2140
Hal Finkel21aad9a2013-04-09 18:25:18 +00002141 if ((*PI)->canFallThrough() && (*PI)->isLayoutSuccessor(&ReturnMBB))
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002142 OtherReference = true;
2143
Andrew Trick9defbd82013-12-17 04:50:40 +00002144 // Predecessors are stored in a vector and can't be removed here.
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002145 if (!OtherReference && BlockChanged) {
2146 PredToRemove.push_back(*PI);
2147 }
2148
2149 if (BlockChanged)
2150 Changed = true;
2151 }
2152
2153 for (unsigned i = 0, ie = PredToRemove.size(); i != ie; ++i)
Hal Finkel21aad9a2013-04-09 18:25:18 +00002154 PredToRemove[i]->removeSuccessor(&ReturnMBB);
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002155
Hal Finkel21aad9a2013-04-09 18:25:18 +00002156 if (Changed && !ReturnMBB.hasAddressTaken()) {
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002157 // We now might be able to merge this blr-only block into its
2158 // by-layout predecessor.
Hal Finkel21aad9a2013-04-09 18:25:18 +00002159 if (ReturnMBB.pred_size() == 1 &&
2160 (*ReturnMBB.pred_begin())->isLayoutSuccessor(&ReturnMBB)) {
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002161 // Move the blr into the preceding block.
Hal Finkel21aad9a2013-04-09 18:25:18 +00002162 MachineBasicBlock &PrevMBB = **ReturnMBB.pred_begin();
2163 PrevMBB.splice(PrevMBB.end(), &ReturnMBB, I);
2164 PrevMBB.removeSuccessor(&ReturnMBB);
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002165 }
2166
Hal Finkel21aad9a2013-04-09 18:25:18 +00002167 if (ReturnMBB.pred_empty())
2168 ReturnMBB.eraseFromParent();
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002169 }
2170
2171 return Changed;
2172 }
2173
2174public:
2175 virtual bool runOnMachineFunction(MachineFunction &MF) {
2176 TM = static_cast<const PPCTargetMachine *>(&MF.getTarget());
2177 TII = TM->getInstrInfo();
2178
2179 bool Changed = false;
2180
Hal Finkel21aad9a2013-04-09 18:25:18 +00002181 // If the function does not have at least two blocks, then there is
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002182 // nothing to do.
2183 if (MF.size() < 2)
2184 return Changed;
2185
2186 for (MachineFunction::iterator I = MF.begin(); I != MF.end();) {
Andrew Trick9defbd82013-12-17 04:50:40 +00002187 MachineBasicBlock &B = *I++;
Hal Finkelb5aa7e52013-04-08 16:24:03 +00002188 if (processBlock(B))
2189 Changed = true;
2190 }
2191
2192 return Changed;
2193 }
2194
2195 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
2196 MachineFunctionPass::getAnalysisUsage(AU);
2197 }
2198 };
2199}
2200
2201INITIALIZE_PASS(PPCEarlyReturn, DEBUG_TYPE,
2202 "PowerPC Early-Return Creation", false, false)
2203
2204char PPCEarlyReturn::ID = 0;
2205FunctionPass*
2206llvm::createPPCEarlyReturnPass() { return new PPCEarlyReturn(); }