blob: b4da2d65596b03c446d4021a98cb99da93685264 [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"
Eric Christopher1dcea732014-06-12 21:48:52 +000030#include "llvm/CodeGen/ScheduleDAG.h"
Hal Finkel174e5902014-03-25 23:29:21 +000031#include "llvm/CodeGen/SlotIndexes.h"
Hal Finkel934361a2015-01-14 01:07:51 +000032#include "llvm/CodeGen/StackMaps.h"
Evan Chengc5e6d2f2011-07-11 03:57:24 +000033#include "llvm/MC/MCAsmInfo.h"
Pete Cooper3de83e42015-05-15 21:58:42 +000034#include "llvm/MC/MCInst.h"
Bill Wendling1af20ad2008-03-04 23:13:51 +000035#include "llvm/Support/CommandLine.h"
Hal Finkel174e5902014-03-25 23:29:21 +000036#include "llvm/Support/Debug.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000037#include "llvm/Support/ErrorHandling.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000038#include "llvm/Support/TargetRegistry.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000039#include "llvm/Support/raw_ostream.h"
Misha Brukman116f9272004-08-17 04:55:41 +000040
Dan Gohman20857192010-04-15 17:20:57 +000041using namespace llvm;
Bill Wendling1af20ad2008-03-04 23:13:51 +000042
Chandler Carruthe96dd892014-04-21 22:55:11 +000043#define DEBUG_TYPE "ppc-instr-info"
44
Chandler Carruthd174b722014-04-22 02:03:14 +000045#define GET_INSTRMAP_INFO
46#define GET_INSTRINFO_CTOR_DTOR
47#include "PPCGenInstrInfo.inc"
48
Zaara Syedafcd96972017-09-21 16:12:33 +000049STATISTIC(NumStoreSPILLVSRRCAsVec,
50 "Number of spillvsrrc spilled to stack as vec");
51STATISTIC(NumStoreSPILLVSRRCAsGpr,
52 "Number of spillvsrrc spilled to stack as gpr");
53STATISTIC(NumGPRtoVSRSpill, "Number of gpr spills to spillvsrrc");
54
Hal Finkel821e0012012-06-08 15:38:25 +000055static cl::
Hal Finkelc6b5deb2012-06-08 19:19:53 +000056opt<bool> DisableCTRLoopAnal("disable-ppc-ctrloop-analysis", cl::Hidden,
57 cl::desc("Disable analysis for CTR loops"));
Hal Finkel821e0012012-06-08 15:38:25 +000058
Hal Finkele6322392013-04-19 22:08:38 +000059static cl::opt<bool> DisableCmpOpt("disable-ppc-cmp-opt",
Hal Finkelb12da6b2013-04-18 22:54:25 +000060cl::desc("Disable compare instruction optimization"), cl::Hidden);
61
Hal Finkel9dcb3582014-03-27 22:46:28 +000062static cl::opt<bool> VSXSelfCopyCrash("crash-on-ppc-vsx-self-copy",
63cl::desc("Causes the backend to crash instead of generating a nop VSX copy"),
64cl::Hidden);
65
Hal Finkel8acae522015-07-14 20:02:02 +000066static cl::opt<bool>
67UseOldLatencyCalc("ppc-old-latency-calc", cl::Hidden,
68 cl::desc("Use the old (incorrect) instruction latency calculation"));
69
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000070// Pin the vtable to this file.
71void PPCInstrInfo::anchor() {}
72
Eric Christopher1dcea732014-06-12 21:48:52 +000073PPCInstrInfo::PPCInstrInfo(PPCSubtarget &STI)
Tim Shen918ed872017-02-10 21:03:24 +000074 : PPCGenInstrInfo(PPC::ADJCALLSTACKDOWN, PPC::ADJCALLSTACKUP,
75 /* CatchRetOpcode */ -1,
76 STI.isPPC64() ? PPC::BLR8 : PPC::BLR),
Eric Christopherea178cf2015-03-12 01:42:51 +000077 Subtarget(STI), RI(STI.getTargetMachine()) {}
Chris Lattner49cadab2006-06-17 00:01:04 +000078
Andrew Trick10ffc2b2010-12-24 05:03:26 +000079/// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
80/// this target when scheduling the DAG.
Eric Christopherf047bfd2014-06-13 22:38:52 +000081ScheduleHazardRecognizer *
82PPCInstrInfo::CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI,
83 const ScheduleDAG *DAG) const {
84 unsigned Directive =
85 static_cast<const PPCSubtarget *>(STI)->getDarwinDirective();
Hal Finkel742b5352012-08-28 16:12:39 +000086 if (Directive == PPC::DIR_440 || Directive == PPC::DIR_A2 ||
87 Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) {
Eric Christopherf047bfd2014-06-13 22:38:52 +000088 const InstrItineraryData *II =
Eric Christopherd9134482014-08-04 21:25:23 +000089 static_cast<const PPCSubtarget *>(STI)->getInstrItineraryData();
Hal Finkel563cc052013-12-02 23:52:46 +000090 return new ScoreboardHazardRecognizer(II, DAG);
Hal Finkel6fa56972011-10-17 04:03:49 +000091 }
Hal Finkel58ca3602011-12-02 04:58:02 +000092
Eric Christopherf047bfd2014-06-13 22:38:52 +000093 return TargetInstrInfo::CreateTargetHazardRecognizer(STI, DAG);
Andrew Trick10ffc2b2010-12-24 05:03:26 +000094}
95
Hal Finkel58ca3602011-12-02 04:58:02 +000096/// CreateTargetPostRAHazardRecognizer - Return the postRA hazard recognizer
97/// to use for this target when scheduling the DAG.
Eric Christophercccae792015-01-30 22:02:31 +000098ScheduleHazardRecognizer *
99PPCInstrInfo::CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
100 const ScheduleDAG *DAG) const {
Eric Christopher1dcea732014-06-12 21:48:52 +0000101 unsigned Directive =
Eric Christophercccae792015-01-30 22:02:31 +0000102 DAG->MF.getSubtarget<PPCSubtarget>().getDarwinDirective();
Hal Finkel58ca3602011-12-02 04:58:02 +0000103
Nemanja Ivanovic6e29baf2016-05-09 18:54:58 +0000104 // FIXME: Leaving this as-is until we have POWER9 scheduling info
Will Schmidt970ff642014-06-26 13:36:19 +0000105 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8)
Hal Finkelceb1f122013-12-12 00:19:11 +0000106 return new PPCDispatchGroupSBHazardRecognizer(II, DAG);
107
Hal Finkel58ca3602011-12-02 04:58:02 +0000108 // Most subtargets use a PPC970 recognizer.
Hal Finkel742b5352012-08-28 16:12:39 +0000109 if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2 &&
110 Directive != PPC::DIR_E500mc && Directive != PPC::DIR_E5500) {
Eric Christopher1dcea732014-06-12 21:48:52 +0000111 assert(DAG->TII && "No InstrInfo?");
Hal Finkel58ca3602011-12-02 04:58:02 +0000112
Eric Christopher1dcea732014-06-12 21:48:52 +0000113 return new PPCHazardRecognizer970(*DAG);
Hal Finkel58ca3602011-12-02 04:58:02 +0000114 }
115
Hal Finkel563cc052013-12-02 23:52:46 +0000116 return new ScoreboardHazardRecognizer(II, DAG);
Hal Finkel58ca3602011-12-02 04:58:02 +0000117}
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000118
Hal Finkel8acae522015-07-14 20:02:02 +0000119unsigned PPCInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000120 const MachineInstr &MI,
Hal Finkel8acae522015-07-14 20:02:02 +0000121 unsigned *PredCost) const {
122 if (!ItinData || UseOldLatencyCalc)
123 return PPCGenInstrInfo::getInstrLatency(ItinData, MI, PredCost);
124
125 // The default implementation of getInstrLatency calls getStageLatency, but
126 // getStageLatency does not do the right thing for us. While we have
127 // itinerary, most cores are fully pipelined, and so the itineraries only
128 // express the first part of the pipeline, not every stage. Instead, we need
129 // to use the listed output operand cycle number (using operand 0 here, which
130 // is an output).
131
132 unsigned Latency = 1;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000133 unsigned DefClass = MI.getDesc().getSchedClass();
134 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
135 const MachineOperand &MO = MI.getOperand(i);
Hal Finkel8acae522015-07-14 20:02:02 +0000136 if (!MO.isReg() || !MO.isDef() || MO.isImplicit())
137 continue;
138
139 int Cycle = ItinData->getOperandCycle(DefClass, i);
140 if (Cycle < 0)
141 continue;
142
143 Latency = std::max(Latency, (unsigned) Cycle);
144 }
145
146 return Latency;
147}
Hal Finkelceb1f122013-12-12 00:19:11 +0000148
149int PPCInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000150 const MachineInstr &DefMI, unsigned DefIdx,
151 const MachineInstr &UseMI,
Hal Finkelceb1f122013-12-12 00:19:11 +0000152 unsigned UseIdx) const {
153 int Latency = PPCGenInstrInfo::getOperandLatency(ItinData, DefMI, DefIdx,
154 UseMI, UseIdx);
155
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000156 if (!DefMI.getParent())
Hal Finkel5d36b232015-07-15 08:23:05 +0000157 return Latency;
158
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000159 const MachineOperand &DefMO = DefMI.getOperand(DefIdx);
Hal Finkelceb1f122013-12-12 00:19:11 +0000160 unsigned Reg = DefMO.getReg();
161
Hal Finkelceb1f122013-12-12 00:19:11 +0000162 bool IsRegCR;
Andrew Kaylor5c73e1f2015-03-24 23:37:10 +0000163 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Hal Finkelceb1f122013-12-12 00:19:11 +0000164 const MachineRegisterInfo *MRI =
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000165 &DefMI.getParent()->getParent()->getRegInfo();
Hal Finkelceb1f122013-12-12 00:19:11 +0000166 IsRegCR = MRI->getRegClass(Reg)->hasSuperClassEq(&PPC::CRRCRegClass) ||
167 MRI->getRegClass(Reg)->hasSuperClassEq(&PPC::CRBITRCRegClass);
168 } else {
169 IsRegCR = PPC::CRRCRegClass.contains(Reg) ||
170 PPC::CRBITRCRegClass.contains(Reg);
171 }
172
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000173 if (UseMI.isBranch() && IsRegCR) {
Hal Finkelceb1f122013-12-12 00:19:11 +0000174 if (Latency < 0)
175 Latency = getInstrLatency(ItinData, DefMI);
176
177 // On some cores, there is an additional delay between writing to a condition
178 // register, and using it from a branch.
Eric Christopher1dcea732014-06-12 21:48:52 +0000179 unsigned Directive = Subtarget.getDarwinDirective();
Hal Finkelceb1f122013-12-12 00:19:11 +0000180 switch (Directive) {
181 default: break;
182 case PPC::DIR_7400:
183 case PPC::DIR_750:
184 case PPC::DIR_970:
185 case PPC::DIR_E5500:
186 case PPC::DIR_PWR4:
187 case PPC::DIR_PWR5:
188 case PPC::DIR_PWR5X:
189 case PPC::DIR_PWR6:
190 case PPC::DIR_PWR6X:
191 case PPC::DIR_PWR7:
Will Schmidt970ff642014-06-26 13:36:19 +0000192 case PPC::DIR_PWR8:
Nemanja Ivanovic6e29baf2016-05-09 18:54:58 +0000193 // FIXME: Is this needed for POWER9?
Hal Finkelceb1f122013-12-12 00:19:11 +0000194 Latency += 2;
195 break;
196 }
197 }
198
199 return Latency;
200}
201
Hal Finkel5d36b232015-07-15 08:23:05 +0000202// This function does not list all associative and commutative operations, but
203// only those worth feeding through the machine combiner in an attempt to
204// reduce the critical path. Mostly, this means floating-point operations,
205// because they have high latencies (compared to other operations, such and
206// and/or, which are also associative and commutative, but have low latencies).
Chad Rosier03a47302015-09-21 15:09:11 +0000207bool PPCInstrInfo::isAssociativeAndCommutative(const MachineInstr &Inst) const {
208 switch (Inst.getOpcode()) {
Hal Finkel5d36b232015-07-15 08:23:05 +0000209 // FP Add:
210 case PPC::FADD:
211 case PPC::FADDS:
212 // FP Multiply:
213 case PPC::FMUL:
214 case PPC::FMULS:
215 // Altivec Add:
216 case PPC::VADDFP:
217 // VSX Add:
218 case PPC::XSADDDP:
219 case PPC::XVADDDP:
220 case PPC::XVADDSP:
221 case PPC::XSADDSP:
222 // VSX Multiply:
223 case PPC::XSMULDP:
224 case PPC::XVMULDP:
225 case PPC::XVMULSP:
226 case PPC::XSMULSP:
227 // QPX Add:
228 case PPC::QVFADD:
229 case PPC::QVFADDS:
230 case PPC::QVFADDSs:
231 // QPX Multiply:
232 case PPC::QVFMUL:
233 case PPC::QVFMULS:
234 case PPC::QVFMULSs:
235 return true;
236 default:
237 return false;
238 }
239}
240
Chad Rosier03a47302015-09-21 15:09:11 +0000241bool PPCInstrInfo::getMachineCombinerPatterns(
242 MachineInstr &Root,
Sanjay Patel387e66e2015-11-05 19:34:57 +0000243 SmallVectorImpl<MachineCombinerPattern> &Patterns) const {
Hal Finkel5d36b232015-07-15 08:23:05 +0000244 // Using the machine combiner in this way is potentially expensive, so
245 // restrict to when aggressive optimizations are desired.
246 if (Subtarget.getTargetMachine().getOptLevel() != CodeGenOpt::Aggressive)
247 return false;
248
249 // FP reassociation is only legal when we don't need strict IEEE semantics.
250 if (!Root.getParent()->getParent()->getTarget().Options.UnsafeFPMath)
251 return false;
252
Chad Rosier03a47302015-09-21 15:09:11 +0000253 return TargetInstrInfo::getMachineCombinerPatterns(Root, Patterns);
Hal Finkel5d36b232015-07-15 08:23:05 +0000254}
255
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000256// Detect 32 -> 64-bit extensions where we may reuse the low sub-register.
257bool PPCInstrInfo::isCoalescableExtInstr(const MachineInstr &MI,
258 unsigned &SrcReg, unsigned &DstReg,
259 unsigned &SubIdx) const {
260 switch (MI.getOpcode()) {
261 default: return false;
262 case PPC::EXTSW:
Hiroshi Inouee3a3e3c2017-10-16 04:12:57 +0000263 case PPC::EXTSW_32:
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000264 case PPC::EXTSW_32_64:
265 SrcReg = MI.getOperand(1).getReg();
266 DstReg = MI.getOperand(0).getReg();
267 SubIdx = PPC::sub_32;
268 return true;
269 }
270}
271
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000272unsigned PPCInstrInfo::isLoadFromStackSlot(const MachineInstr &MI,
Chris Lattner91400bd2006-03-16 22:24:02 +0000273 int &FrameIndex) const {
Hal Finkel37714b82013-03-27 21:21:15 +0000274 // Note: This list must be kept consistent with LoadRegFromStackSlot.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000275 switch (MI.getOpcode()) {
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000276 default: break;
277 case PPC::LD:
278 case PPC::LWZ:
279 case PPC::LFS:
280 case PPC::LFD:
Hal Finkel37714b82013-03-27 21:21:15 +0000281 case PPC::RESTORE_CR:
Hal Finkel940ab932014-02-28 00:27:01 +0000282 case PPC::RESTORE_CRBIT:
Hal Finkel37714b82013-03-27 21:21:15 +0000283 case PPC::LVX:
Hal Finkel27774d92014-03-13 07:58:58 +0000284 case PPC::LXVD2X:
Lei Huang263dc4e2017-10-11 20:20:58 +0000285 case PPC::LXV:
Hal Finkelc93a9a22015-02-25 01:06:45 +0000286 case PPC::QVLFDX:
287 case PPC::QVLFSXs:
288 case PPC::QVLFDXb:
Hal Finkel37714b82013-03-27 21:21:15 +0000289 case PPC::RESTORE_VRSAVE:
Zaara Syedafcd96972017-09-21 16:12:33 +0000290 case PPC::SPILLTOVSR_LD:
Hal Finkel37714b82013-03-27 21:21:15 +0000291 // Check for the operands added by addFrameReference (the immediate is the
292 // offset which defaults to 0).
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000293 if (MI.getOperand(1).isImm() && !MI.getOperand(1).getImm() &&
294 MI.getOperand(2).isFI()) {
295 FrameIndex = MI.getOperand(2).getIndex();
296 return MI.getOperand(0).getReg();
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000297 }
298 break;
299 }
300 return 0;
Chris Lattnerc327d712006-02-02 20:16:12 +0000301}
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000302
Lei Huang84dbbfd2017-06-21 17:17:56 +0000303// For opcodes with the ReMaterializable flag set, this function is called to
304// verify the instruction is really rematable.
305bool PPCInstrInfo::isReallyTriviallyReMaterializable(const MachineInstr &MI,
306 AliasAnalysis *AA) const {
307 switch (MI.getOpcode()) {
308 default:
309 // This function should only be called for opcodes with the ReMaterializable
310 // flag set.
311 llvm_unreachable("Unknown rematerializable operation!");
312 break;
313 case PPC::LI:
314 case PPC::LI8:
315 case PPC::LIS:
316 case PPC::LIS8:
317 case PPC::QVGPCI:
318 case PPC::ADDIStocHA:
319 case PPC::ADDItocL:
320 case PPC::LOAD_STACK_GUARD:
321 return true;
322 }
323 return false;
324}
325
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000326unsigned PPCInstrInfo::isStoreToStackSlot(const MachineInstr &MI,
Chris Lattnerc327d712006-02-02 20:16:12 +0000327 int &FrameIndex) const {
Hal Finkel37714b82013-03-27 21:21:15 +0000328 // Note: This list must be kept consistent with StoreRegToStackSlot.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000329 switch (MI.getOpcode()) {
Chris Lattnerc327d712006-02-02 20:16:12 +0000330 default: break;
Nate Begeman4efb3282006-02-02 21:07:50 +0000331 case PPC::STD:
Chris Lattnerc327d712006-02-02 20:16:12 +0000332 case PPC::STW:
333 case PPC::STFS:
334 case PPC::STFD:
Hal Finkel37714b82013-03-27 21:21:15 +0000335 case PPC::SPILL_CR:
Hal Finkel940ab932014-02-28 00:27:01 +0000336 case PPC::SPILL_CRBIT:
Hal Finkel37714b82013-03-27 21:21:15 +0000337 case PPC::STVX:
Hal Finkel27774d92014-03-13 07:58:58 +0000338 case PPC::STXVD2X:
Lei Huang263dc4e2017-10-11 20:20:58 +0000339 case PPC::STXV:
Hal Finkelc93a9a22015-02-25 01:06:45 +0000340 case PPC::QVSTFDX:
341 case PPC::QVSTFSXs:
342 case PPC::QVSTFDXb:
Hal Finkel37714b82013-03-27 21:21:15 +0000343 case PPC::SPILL_VRSAVE:
Zaara Syedafcd96972017-09-21 16:12:33 +0000344 case PPC::SPILLTOVSR_ST:
Hal Finkel37714b82013-03-27 21:21:15 +0000345 // Check for the operands added by addFrameReference (the immediate is the
346 // offset which defaults to 0).
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000347 if (MI.getOperand(1).isImm() && !MI.getOperand(1).getImm() &&
348 MI.getOperand(2).isFI()) {
349 FrameIndex = MI.getOperand(2).getIndex();
350 return MI.getOperand(0).getReg();
Chris Lattnerc327d712006-02-02 20:16:12 +0000351 }
352 break;
353 }
354 return 0;
355}
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000356
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000357MachineInstr *PPCInstrInfo::commuteInstructionImpl(MachineInstr &MI, bool NewMI,
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000358 unsigned OpIdx1,
359 unsigned OpIdx2) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000360 MachineFunction &MF = *MI.getParent()->getParent();
Dan Gohman3b460302008-07-07 23:14:23 +0000361
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000362 // Normal instructions can be commuted the obvious way.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000363 if (MI.getOpcode() != PPC::RLWIMI && MI.getOpcode() != PPC::RLWIMIo)
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000364 return TargetInstrInfo::commuteInstructionImpl(MI, NewMI, OpIdx1, OpIdx2);
Hal Finkel4c6658f2014-12-12 23:59:36 +0000365 // Note that RLWIMI can be commuted as a 32-bit instruction, but not as a
366 // 64-bit instruction (so we don't handle PPC::RLWIMI8 here), because
367 // changing the relative order of the mask operands might change what happens
368 // to the high-bits of the mask (and, thus, the result).
Andrew Trickc416ba62010-12-24 04:28:06 +0000369
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000370 // Cannot commute if it has a non-zero rotate count.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000371 if (MI.getOperand(3).getImm() != 0)
Craig Topper062a2ba2014-04-25 05:30:21 +0000372 return nullptr;
Andrew Trickc416ba62010-12-24 04:28:06 +0000373
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000374 // If we have a zero rotate count, we have:
375 // M = mask(MB,ME)
376 // Op0 = (Op1 & ~M) | (Op2 & M)
377 // Change this to:
378 // M = mask((ME+1)&31, (MB-1)&31)
379 // Op0 = (Op2 & ~M) | (Op1 & M)
380
381 // Swap op1/op2
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000382 assert(((OpIdx1 == 1 && OpIdx2 == 2) || (OpIdx1 == 2 && OpIdx2 == 1)) &&
383 "Only the operands 1 and 2 can be swapped in RLSIMI/RLWIMIo.");
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000384 unsigned Reg0 = MI.getOperand(0).getReg();
385 unsigned Reg1 = MI.getOperand(1).getReg();
386 unsigned Reg2 = MI.getOperand(2).getReg();
387 unsigned SubReg1 = MI.getOperand(1).getSubReg();
388 unsigned SubReg2 = MI.getOperand(2).getSubReg();
389 bool Reg1IsKill = MI.getOperand(1).isKill();
390 bool Reg2IsKill = MI.getOperand(2).isKill();
Evan Cheng03553bb2008-06-16 07:33:11 +0000391 bool ChangeReg0 = false;
Evan Cheng244183e2008-02-13 02:46:49 +0000392 // If machine instrs are no longer in two-address forms, update
393 // destination register as well.
394 if (Reg0 == Reg1) {
395 // Must be two address instruction!
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000396 assert(MI.getDesc().getOperandConstraint(0, MCOI::TIED_TO) &&
Evan Cheng244183e2008-02-13 02:46:49 +0000397 "Expecting a two-address instruction!");
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000398 assert(MI.getOperand(0).getSubReg() == SubReg1 && "Tied subreg mismatch");
Evan Cheng244183e2008-02-13 02:46:49 +0000399 Reg2IsKill = false;
Evan Cheng03553bb2008-06-16 07:33:11 +0000400 ChangeReg0 = true;
Evan Cheng244183e2008-02-13 02:46:49 +0000401 }
Evan Cheng03553bb2008-06-16 07:33:11 +0000402
403 // Masks.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000404 unsigned MB = MI.getOperand(4).getImm();
405 unsigned ME = MI.getOperand(5).getImm();
Evan Cheng03553bb2008-06-16 07:33:11 +0000406
Hal Finkelccf92592015-09-06 04:17:30 +0000407 // We can't commute a trivial mask (there is no way to represent an all-zero
408 // mask).
409 if (MB == 0 && ME == 31)
410 return nullptr;
411
Evan Cheng03553bb2008-06-16 07:33:11 +0000412 if (NewMI) {
413 // Create a new instruction.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000414 unsigned Reg0 = ChangeReg0 ? Reg2 : MI.getOperand(0).getReg();
415 bool Reg0IsDead = MI.getOperand(0).isDead();
416 return BuildMI(MF, MI.getDebugLoc(), MI.getDesc())
417 .addReg(Reg0, RegState::Define | getDeadRegState(Reg0IsDead))
418 .addReg(Reg2, getKillRegState(Reg2IsKill))
419 .addReg(Reg1, getKillRegState(Reg1IsKill))
420 .addImm((ME + 1) & 31)
421 .addImm((MB - 1) & 31);
Evan Cheng03553bb2008-06-16 07:33:11 +0000422 }
423
Andrew Tricke3398282013-12-17 04:50:45 +0000424 if (ChangeReg0) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000425 MI.getOperand(0).setReg(Reg2);
426 MI.getOperand(0).setSubReg(SubReg2);
Andrew Tricke3398282013-12-17 04:50:45 +0000427 }
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000428 MI.getOperand(2).setReg(Reg1);
429 MI.getOperand(1).setReg(Reg2);
430 MI.getOperand(2).setSubReg(SubReg1);
431 MI.getOperand(1).setSubReg(SubReg2);
432 MI.getOperand(2).setIsKill(Reg1IsKill);
433 MI.getOperand(1).setIsKill(Reg2IsKill);
Andrew Trickc416ba62010-12-24 04:28:06 +0000434
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000435 // Swap the mask around.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000436 MI.getOperand(4).setImm((ME + 1) & 31);
437 MI.getOperand(5).setImm((MB - 1) & 31);
438 return &MI;
Chris Lattnerc37a2f12005-09-09 18:17:41 +0000439}
Chris Lattnerea79d9fd732006-03-05 23:49:55 +0000440
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000441bool PPCInstrInfo::findCommutedOpIndices(MachineInstr &MI, unsigned &SrcOpIdx1,
Hal Finkel6c32ff32014-03-25 19:26:43 +0000442 unsigned &SrcOpIdx2) const {
443 // For VSX A-Type FMA instructions, it is the first two operands that can be
444 // commuted, however, because the non-encoded tied input operand is listed
445 // first, the operands to swap are actually the second and third.
446
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000447 int AltOpc = PPC::getAltVSXFMAOpcode(MI.getOpcode());
Hal Finkel6c32ff32014-03-25 19:26:43 +0000448 if (AltOpc == -1)
449 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
450
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000451 // The commutable operand indices are 2 and 3. Return them in SrcOpIdx1
452 // and SrcOpIdx2.
453 return fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, 2, 3);
Hal Finkel6c32ff32014-03-25 19:26:43 +0000454}
455
Andrew Trickc416ba62010-12-24 04:28:06 +0000456void PPCInstrInfo::insertNoop(MachineBasicBlock &MBB,
Chris Lattnerea79d9fd732006-03-05 23:49:55 +0000457 MachineBasicBlock::iterator MI) const {
Hal Finkelceb1f122013-12-12 00:19:11 +0000458 // This function is used for scheduling, and the nop wanted here is the type
459 // that terminates dispatch groups on the POWER cores.
Eric Christopher1dcea732014-06-12 21:48:52 +0000460 unsigned Directive = Subtarget.getDarwinDirective();
Hal Finkelceb1f122013-12-12 00:19:11 +0000461 unsigned Opcode;
462 switch (Directive) {
463 default: Opcode = PPC::NOP; break;
464 case PPC::DIR_PWR6: Opcode = PPC::NOP_GT_PWR6; break;
465 case PPC::DIR_PWR7: Opcode = PPC::NOP_GT_PWR7; break;
Will Schmidt970ff642014-06-26 13:36:19 +0000466 case PPC::DIR_PWR8: Opcode = PPC::NOP_GT_PWR7; break; /* FIXME: Update when P8 InstrScheduling model is ready */
Nemanja Ivanovic6e29baf2016-05-09 18:54:58 +0000467 // FIXME: Update when POWER9 scheduling model is ready.
468 case PPC::DIR_PWR9: Opcode = PPC::NOP_GT_PWR7; break;
Hal Finkelceb1f122013-12-12 00:19:11 +0000469 }
Chris Lattnera47294ed2006-10-13 21:21:17 +0000470
Hal Finkelceb1f122013-12-12 00:19:11 +0000471 DebugLoc DL;
472 BuildMI(MBB, MI, DL, get(Opcode));
473}
Chris Lattnera47294ed2006-10-13 21:21:17 +0000474
Hans Wennborg9b9a5352017-04-21 21:48:41 +0000475/// Return the noop instruction to use for a noop.
476void PPCInstrInfo::getNoop(MCInst &NopInst) const {
Joerg Sonnenberger7ee0f312014-08-08 19:13:23 +0000477 NopInst.setOpcode(PPC::NOP);
478}
479
Chris Lattnera47294ed2006-10-13 21:21:17 +0000480// Branch analysis.
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000481// Note: If the condition register is set to CTR or CTR8 then this is a
482// BDNZ (imm == 1) or BDZ (imm == 0) branch.
Jacques Pienaar71c30a12016-07-15 14:41:04 +0000483bool PPCInstrInfo::analyzeBranch(MachineBasicBlock &MBB,
484 MachineBasicBlock *&TBB,
Chris Lattnera47294ed2006-10-13 21:21:17 +0000485 MachineBasicBlock *&FBB,
Evan Cheng64dfcac2009-02-09 07:14:22 +0000486 SmallVectorImpl<MachineOperand> &Cond,
487 bool AllowModify) const {
Eric Christopher1dcea732014-06-12 21:48:52 +0000488 bool isPPC64 = Subtarget.isPPC64();
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000489
Chris Lattnera47294ed2006-10-13 21:21:17 +0000490 // If the block has no terminators, it just falls into the block after it.
Benjamin Kramer92861d72015-06-25 13:39:03 +0000491 MachineBasicBlock::iterator I = MBB.getLastNonDebugInstr();
492 if (I == MBB.end())
Dale Johannesen4244d122010-04-02 01:38:09 +0000493 return false;
Benjamin Kramer92861d72015-06-25 13:39:03 +0000494
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000495 if (!isUnpredicatedTerminator(*I))
Chris Lattnera47294ed2006-10-13 21:21:17 +0000496 return false;
497
Hiroshi Inoueed1ffa42017-09-27 10:33:02 +0000498 if (AllowModify) {
499 // If the BB ends with an unconditional branch to the fallthrough BB,
500 // we eliminate the branch instruction.
501 if (I->getOpcode() == PPC::B &&
502 MBB.isLayoutSuccessor(I->getOperand(0).getMBB())) {
503 I->eraseFromParent();
504
505 // We update iterator after deleting the last branch.
506 I = MBB.getLastNonDebugInstr();
507 if (I == MBB.end() || !isUnpredicatedTerminator(*I))
508 return false;
509 }
510 }
511
Chris Lattnera47294ed2006-10-13 21:21:17 +0000512 // Get the last instruction in the block.
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000513 MachineInstr &LastInst = *I;
Andrew Trickc416ba62010-12-24 04:28:06 +0000514
Chris Lattnera47294ed2006-10-13 21:21:17 +0000515 // If there is only one terminator instruction, process it.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000516 if (I == MBB.begin() || !isUnpredicatedTerminator(*--I)) {
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000517 if (LastInst.getOpcode() == PPC::B) {
518 if (!LastInst.getOperand(0).isMBB())
Evan Cheng8f43afd2009-05-08 23:09:25 +0000519 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000520 TBB = LastInst.getOperand(0).getMBB();
Chris Lattnera47294ed2006-10-13 21:21:17 +0000521 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000522 } else if (LastInst.getOpcode() == PPC::BCC) {
523 if (!LastInst.getOperand(2).isMBB())
Evan Cheng8f43afd2009-05-08 23:09:25 +0000524 return true;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000525 // Block ends with fall-through condbranch.
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000526 TBB = LastInst.getOperand(2).getMBB();
527 Cond.push_back(LastInst.getOperand(0));
528 Cond.push_back(LastInst.getOperand(1));
Chris Lattner23f22de2006-10-21 06:03:11 +0000529 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000530 } else if (LastInst.getOpcode() == PPC::BC) {
531 if (!LastInst.getOperand(1).isMBB())
Hal Finkel940ab932014-02-28 00:27:01 +0000532 return true;
533 // Block ends with fall-through condbranch.
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000534 TBB = LastInst.getOperand(1).getMBB();
Hal Finkel940ab932014-02-28 00:27:01 +0000535 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000536 Cond.push_back(LastInst.getOperand(0));
Hal Finkel940ab932014-02-28 00:27:01 +0000537 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000538 } else if (LastInst.getOpcode() == PPC::BCn) {
539 if (!LastInst.getOperand(1).isMBB())
Hal Finkel940ab932014-02-28 00:27:01 +0000540 return true;
541 // Block ends with fall-through condbranch.
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000542 TBB = LastInst.getOperand(1).getMBB();
Hal Finkel940ab932014-02-28 00:27:01 +0000543 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_UNSET));
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000544 Cond.push_back(LastInst.getOperand(0));
Hal Finkel940ab932014-02-28 00:27:01 +0000545 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000546 } else if (LastInst.getOpcode() == PPC::BDNZ8 ||
547 LastInst.getOpcode() == PPC::BDNZ) {
548 if (!LastInst.getOperand(0).isMBB())
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000549 return true;
Hal Finkelc6b5deb2012-06-08 19:19:53 +0000550 if (DisableCTRLoopAnal)
Hal Finkel821e0012012-06-08 15:38:25 +0000551 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000552 TBB = LastInst.getOperand(0).getMBB();
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000553 Cond.push_back(MachineOperand::CreateImm(1));
554 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
555 true));
556 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000557 } else if (LastInst.getOpcode() == PPC::BDZ8 ||
558 LastInst.getOpcode() == PPC::BDZ) {
559 if (!LastInst.getOperand(0).isMBB())
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000560 return true;
Hal Finkelc6b5deb2012-06-08 19:19:53 +0000561 if (DisableCTRLoopAnal)
Hal Finkel821e0012012-06-08 15:38:25 +0000562 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000563 TBB = LastInst.getOperand(0).getMBB();
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000564 Cond.push_back(MachineOperand::CreateImm(0));
565 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
566 true));
567 return false;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000568 }
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000569
Chris Lattnera47294ed2006-10-13 21:21:17 +0000570 // Otherwise, don't know what this is.
571 return true;
572 }
Andrew Trickc416ba62010-12-24 04:28:06 +0000573
Chris Lattnera47294ed2006-10-13 21:21:17 +0000574 // Get the instruction before it if it's a terminator.
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000575 MachineInstr &SecondLastInst = *I;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000576
577 // If there are three terminators, we don't know what sort of block this is.
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000578 if (I != MBB.begin() && isUnpredicatedTerminator(*--I))
Chris Lattnera47294ed2006-10-13 21:21:17 +0000579 return true;
Andrew Trickc416ba62010-12-24 04:28:06 +0000580
Chris Lattnere0263792006-11-17 22:14:47 +0000581 // If the block ends with PPC::B and PPC:BCC, handle it.
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000582 if (SecondLastInst.getOpcode() == PPC::BCC &&
583 LastInst.getOpcode() == PPC::B) {
584 if (!SecondLastInst.getOperand(2).isMBB() ||
585 !LastInst.getOperand(0).isMBB())
Evan Cheng8f43afd2009-05-08 23:09:25 +0000586 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000587 TBB = SecondLastInst.getOperand(2).getMBB();
588 Cond.push_back(SecondLastInst.getOperand(0));
589 Cond.push_back(SecondLastInst.getOperand(1));
590 FBB = LastInst.getOperand(0).getMBB();
Chris Lattnera47294ed2006-10-13 21:21:17 +0000591 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000592 } else if (SecondLastInst.getOpcode() == PPC::BC &&
593 LastInst.getOpcode() == PPC::B) {
594 if (!SecondLastInst.getOperand(1).isMBB() ||
595 !LastInst.getOperand(0).isMBB())
Hal Finkel940ab932014-02-28 00:27:01 +0000596 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000597 TBB = SecondLastInst.getOperand(1).getMBB();
Hal Finkel940ab932014-02-28 00:27:01 +0000598 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000599 Cond.push_back(SecondLastInst.getOperand(0));
600 FBB = LastInst.getOperand(0).getMBB();
Hal Finkel940ab932014-02-28 00:27:01 +0000601 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000602 } else if (SecondLastInst.getOpcode() == PPC::BCn &&
603 LastInst.getOpcode() == PPC::B) {
604 if (!SecondLastInst.getOperand(1).isMBB() ||
605 !LastInst.getOperand(0).isMBB())
Hal Finkel940ab932014-02-28 00:27:01 +0000606 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000607 TBB = SecondLastInst.getOperand(1).getMBB();
Hal Finkel940ab932014-02-28 00:27:01 +0000608 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_UNSET));
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000609 Cond.push_back(SecondLastInst.getOperand(0));
610 FBB = LastInst.getOperand(0).getMBB();
Hal Finkel940ab932014-02-28 00:27:01 +0000611 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000612 } else if ((SecondLastInst.getOpcode() == PPC::BDNZ8 ||
613 SecondLastInst.getOpcode() == PPC::BDNZ) &&
614 LastInst.getOpcode() == PPC::B) {
615 if (!SecondLastInst.getOperand(0).isMBB() ||
616 !LastInst.getOperand(0).isMBB())
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000617 return true;
Hal Finkelc6b5deb2012-06-08 19:19:53 +0000618 if (DisableCTRLoopAnal)
Hal Finkel821e0012012-06-08 15:38:25 +0000619 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000620 TBB = SecondLastInst.getOperand(0).getMBB();
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000621 Cond.push_back(MachineOperand::CreateImm(1));
622 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
623 true));
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000624 FBB = LastInst.getOperand(0).getMBB();
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000625 return false;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000626 } else if ((SecondLastInst.getOpcode() == PPC::BDZ8 ||
627 SecondLastInst.getOpcode() == PPC::BDZ) &&
628 LastInst.getOpcode() == PPC::B) {
629 if (!SecondLastInst.getOperand(0).isMBB() ||
630 !LastInst.getOperand(0).isMBB())
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000631 return true;
Hal Finkelc6b5deb2012-06-08 19:19:53 +0000632 if (DisableCTRLoopAnal)
Hal Finkel821e0012012-06-08 15:38:25 +0000633 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000634 TBB = SecondLastInst.getOperand(0).getMBB();
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000635 Cond.push_back(MachineOperand::CreateImm(0));
636 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
637 true));
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000638 FBB = LastInst.getOperand(0).getMBB();
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000639 return false;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000640 }
Andrew Trickc416ba62010-12-24 04:28:06 +0000641
Dale Johannesenc6855462007-06-13 17:59:52 +0000642 // If the block ends with two PPC:Bs, handle it. The second one is not
643 // executed, so remove it.
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000644 if (SecondLastInst.getOpcode() == PPC::B && LastInst.getOpcode() == PPC::B) {
645 if (!SecondLastInst.getOperand(0).isMBB())
Evan Cheng8f43afd2009-05-08 23:09:25 +0000646 return true;
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000647 TBB = SecondLastInst.getOperand(0).getMBB();
Dale Johannesenc6855462007-06-13 17:59:52 +0000648 I = LastInst;
Evan Cheng64dfcac2009-02-09 07:14:22 +0000649 if (AllowModify)
650 I->eraseFromParent();
Dale Johannesenc6855462007-06-13 17:59:52 +0000651 return false;
652 }
653
Chris Lattnera47294ed2006-10-13 21:21:17 +0000654 // Otherwise, can't handle this.
655 return true;
656}
657
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000658unsigned PPCInstrInfo::removeBranch(MachineBasicBlock &MBB,
Matt Arsenaulta2b036e2016-09-14 17:23:48 +0000659 int *BytesRemoved) const {
660 assert(!BytesRemoved && "code size not handled");
661
Benjamin Kramer92861d72015-06-25 13:39:03 +0000662 MachineBasicBlock::iterator I = MBB.getLastNonDebugInstr();
663 if (I == MBB.end())
664 return 0;
665
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000666 if (I->getOpcode() != PPC::B && I->getOpcode() != PPC::BCC &&
Hal Finkel940ab932014-02-28 00:27:01 +0000667 I->getOpcode() != PPC::BC && I->getOpcode() != PPC::BCn &&
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000668 I->getOpcode() != PPC::BDNZ8 && I->getOpcode() != PPC::BDNZ &&
669 I->getOpcode() != PPC::BDZ8 && I->getOpcode() != PPC::BDZ)
Evan Cheng99be49d2007-05-18 00:05:48 +0000670 return 0;
Andrew Trickc416ba62010-12-24 04:28:06 +0000671
Chris Lattnera47294ed2006-10-13 21:21:17 +0000672 // Remove the branch.
673 I->eraseFromParent();
Andrew Trickc416ba62010-12-24 04:28:06 +0000674
Chris Lattnera47294ed2006-10-13 21:21:17 +0000675 I = MBB.end();
676
Evan Cheng99be49d2007-05-18 00:05:48 +0000677 if (I == MBB.begin()) return 1;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000678 --I;
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000679 if (I->getOpcode() != PPC::BCC &&
Hal Finkel940ab932014-02-28 00:27:01 +0000680 I->getOpcode() != PPC::BC && I->getOpcode() != PPC::BCn &&
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000681 I->getOpcode() != PPC::BDNZ8 && I->getOpcode() != PPC::BDNZ &&
682 I->getOpcode() != PPC::BDZ8 && I->getOpcode() != PPC::BDZ)
Evan Cheng99be49d2007-05-18 00:05:48 +0000683 return 1;
Andrew Trickc416ba62010-12-24 04:28:06 +0000684
Chris Lattnera47294ed2006-10-13 21:21:17 +0000685 // Remove the branch.
686 I->eraseFromParent();
Evan Cheng99be49d2007-05-18 00:05:48 +0000687 return 2;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000688}
689
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000690unsigned PPCInstrInfo::insertBranch(MachineBasicBlock &MBB,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000691 MachineBasicBlock *TBB,
692 MachineBasicBlock *FBB,
693 ArrayRef<MachineOperand> Cond,
Matt Arsenaulta2b036e2016-09-14 17:23:48 +0000694 const DebugLoc &DL,
695 int *BytesAdded) const {
Chris Lattnera61f0102006-10-17 18:06:55 +0000696 // Shouldn't be a fall through.
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000697 assert(TBB && "insertBranch must not be told to insert a fallthrough");
Andrew Trickc416ba62010-12-24 04:28:06 +0000698 assert((Cond.size() == 2 || Cond.size() == 0) &&
Chris Lattner94e04442006-10-21 05:36:13 +0000699 "PPC branch conditions have two components!");
Matt Arsenaulta2b036e2016-09-14 17:23:48 +0000700 assert(!BytesAdded && "code size not handled");
Andrew Trickc416ba62010-12-24 04:28:06 +0000701
Eric Christopher1dcea732014-06-12 21:48:52 +0000702 bool isPPC64 = Subtarget.isPPC64();
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000703
Chris Lattner94e04442006-10-21 05:36:13 +0000704 // One-way branch.
Craig Topper062a2ba2014-04-25 05:30:21 +0000705 if (!FBB) {
Chris Lattner94e04442006-10-21 05:36:13 +0000706 if (Cond.empty()) // Unconditional branch
Stuart Hastings0125b642010-06-17 22:43:56 +0000707 BuildMI(&MBB, DL, get(PPC::B)).addMBB(TBB);
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000708 else if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
709 BuildMI(&MBB, DL, get(Cond[0].getImm() ?
710 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
711 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB);
Hal Finkel940ab932014-02-28 00:27:01 +0000712 else if (Cond[0].getImm() == PPC::PRED_BIT_SET)
Diana Picus116bbab2017-01-13 09:58:52 +0000713 BuildMI(&MBB, DL, get(PPC::BC)).add(Cond[1]).addMBB(TBB);
Hal Finkel940ab932014-02-28 00:27:01 +0000714 else if (Cond[0].getImm() == PPC::PRED_BIT_UNSET)
Diana Picus116bbab2017-01-13 09:58:52 +0000715 BuildMI(&MBB, DL, get(PPC::BCn)).add(Cond[1]).addMBB(TBB);
Chris Lattner94e04442006-10-21 05:36:13 +0000716 else // Conditional branch
Stuart Hastings0125b642010-06-17 22:43:56 +0000717 BuildMI(&MBB, DL, get(PPC::BCC))
Diana Picus116bbab2017-01-13 09:58:52 +0000718 .addImm(Cond[0].getImm())
719 .add(Cond[1])
720 .addMBB(TBB);
Evan Cheng99be49d2007-05-18 00:05:48 +0000721 return 1;
Chris Lattnera61f0102006-10-17 18:06:55 +0000722 }
Andrew Trickc416ba62010-12-24 04:28:06 +0000723
Chris Lattnerd8816602006-10-21 05:42:09 +0000724 // Two-way Conditional Branch.
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000725 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
726 BuildMI(&MBB, DL, get(Cond[0].getImm() ?
727 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
728 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB);
Hal Finkel940ab932014-02-28 00:27:01 +0000729 else if (Cond[0].getImm() == PPC::PRED_BIT_SET)
Diana Picus116bbab2017-01-13 09:58:52 +0000730 BuildMI(&MBB, DL, get(PPC::BC)).add(Cond[1]).addMBB(TBB);
Hal Finkel940ab932014-02-28 00:27:01 +0000731 else if (Cond[0].getImm() == PPC::PRED_BIT_UNSET)
Diana Picus116bbab2017-01-13 09:58:52 +0000732 BuildMI(&MBB, DL, get(PPC::BCn)).add(Cond[1]).addMBB(TBB);
Hal Finkel96c2d4d2012-06-08 15:38:21 +0000733 else
734 BuildMI(&MBB, DL, get(PPC::BCC))
Diana Picus116bbab2017-01-13 09:58:52 +0000735 .addImm(Cond[0].getImm())
736 .add(Cond[1])
737 .addMBB(TBB);
Stuart Hastings0125b642010-06-17 22:43:56 +0000738 BuildMI(&MBB, DL, get(PPC::B)).addMBB(FBB);
Evan Cheng99be49d2007-05-18 00:05:48 +0000739 return 2;
Chris Lattnera47294ed2006-10-13 21:21:17 +0000740}
741
Hal Finkeled6a2852013-04-05 23:29:01 +0000742// Select analysis.
743bool PPCInstrInfo::canInsertSelect(const MachineBasicBlock &MBB,
Ahmed Bougachac88bf542015-06-11 19:30:37 +0000744 ArrayRef<MachineOperand> Cond,
Hal Finkeled6a2852013-04-05 23:29:01 +0000745 unsigned TrueReg, unsigned FalseReg,
746 int &CondCycles, int &TrueCycles, int &FalseCycles) const {
Hal Finkeled6a2852013-04-05 23:29:01 +0000747 if (Cond.size() != 2)
748 return false;
749
750 // If this is really a bdnz-like condition, then it cannot be turned into a
751 // select.
752 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
753 return false;
754
755 // Check register classes.
756 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
757 const TargetRegisterClass *RC =
758 RI.getCommonSubClass(MRI.getRegClass(TrueReg), MRI.getRegClass(FalseReg));
759 if (!RC)
760 return false;
761
762 // isel is for regular integer GPRs only.
763 if (!PPC::GPRCRegClass.hasSubClassEq(RC) &&
Hal Finkel8e8618a2013-07-15 20:22:58 +0000764 !PPC::GPRC_NOR0RegClass.hasSubClassEq(RC) &&
765 !PPC::G8RCRegClass.hasSubClassEq(RC) &&
766 !PPC::G8RC_NOX0RegClass.hasSubClassEq(RC))
Hal Finkeled6a2852013-04-05 23:29:01 +0000767 return false;
768
769 // FIXME: These numbers are for the A2, how well they work for other cores is
770 // an open question. On the A2, the isel instruction has a 2-cycle latency
771 // but single-cycle throughput. These numbers are used in combination with
772 // the MispredictPenalty setting from the active SchedMachineModel.
773 CondCycles = 1;
774 TrueCycles = 1;
775 FalseCycles = 1;
776
777 return true;
778}
779
780void PPCInstrInfo::insertSelect(MachineBasicBlock &MBB,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000781 MachineBasicBlock::iterator MI,
782 const DebugLoc &dl, unsigned DestReg,
783 ArrayRef<MachineOperand> Cond, unsigned TrueReg,
784 unsigned FalseReg) const {
Hal Finkeled6a2852013-04-05 23:29:01 +0000785 assert(Cond.size() == 2 &&
786 "PPC branch conditions have two components!");
787
Hal Finkeled6a2852013-04-05 23:29:01 +0000788 // Get the register classes.
789 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
790 const TargetRegisterClass *RC =
791 RI.getCommonSubClass(MRI.getRegClass(TrueReg), MRI.getRegClass(FalseReg));
792 assert(RC && "TrueReg and FalseReg must have overlapping register classes");
Hal Finkel8e8618a2013-07-15 20:22:58 +0000793
794 bool Is64Bit = PPC::G8RCRegClass.hasSubClassEq(RC) ||
795 PPC::G8RC_NOX0RegClass.hasSubClassEq(RC);
796 assert((Is64Bit ||
797 PPC::GPRCRegClass.hasSubClassEq(RC) ||
798 PPC::GPRC_NOR0RegClass.hasSubClassEq(RC)) &&
Hal Finkeled6a2852013-04-05 23:29:01 +0000799 "isel is for regular integer GPRs only");
800
Hal Finkel8e8618a2013-07-15 20:22:58 +0000801 unsigned OpCode = Is64Bit ? PPC::ISEL8 : PPC::ISEL;
Kyle Buttcec40802016-01-12 21:00:43 +0000802 auto SelectPred = static_cast<PPC::Predicate>(Cond[0].getImm());
Hal Finkeled6a2852013-04-05 23:29:01 +0000803
Kyle Butt132bf362016-01-15 19:20:06 +0000804 unsigned SubIdx = 0;
805 bool SwapOps = false;
Hal Finkeled6a2852013-04-05 23:29:01 +0000806 switch (SelectPred) {
Kyle Buttcec40802016-01-12 21:00:43 +0000807 case PPC::PRED_EQ:
808 case PPC::PRED_EQ_MINUS:
809 case PPC::PRED_EQ_PLUS:
810 SubIdx = PPC::sub_eq; SwapOps = false; break;
811 case PPC::PRED_NE:
812 case PPC::PRED_NE_MINUS:
813 case PPC::PRED_NE_PLUS:
814 SubIdx = PPC::sub_eq; SwapOps = true; break;
815 case PPC::PRED_LT:
816 case PPC::PRED_LT_MINUS:
817 case PPC::PRED_LT_PLUS:
818 SubIdx = PPC::sub_lt; SwapOps = false; break;
819 case PPC::PRED_GE:
820 case PPC::PRED_GE_MINUS:
821 case PPC::PRED_GE_PLUS:
822 SubIdx = PPC::sub_lt; SwapOps = true; break;
823 case PPC::PRED_GT:
824 case PPC::PRED_GT_MINUS:
825 case PPC::PRED_GT_PLUS:
826 SubIdx = PPC::sub_gt; SwapOps = false; break;
827 case PPC::PRED_LE:
828 case PPC::PRED_LE_MINUS:
829 case PPC::PRED_LE_PLUS:
830 SubIdx = PPC::sub_gt; SwapOps = true; break;
831 case PPC::PRED_UN:
832 case PPC::PRED_UN_MINUS:
833 case PPC::PRED_UN_PLUS:
834 SubIdx = PPC::sub_un; SwapOps = false; break;
835 case PPC::PRED_NU:
836 case PPC::PRED_NU_MINUS:
837 case PPC::PRED_NU_PLUS:
838 SubIdx = PPC::sub_un; SwapOps = true; break;
Hal Finkel940ab932014-02-28 00:27:01 +0000839 case PPC::PRED_BIT_SET: SubIdx = 0; SwapOps = false; break;
840 case PPC::PRED_BIT_UNSET: SubIdx = 0; SwapOps = true; break;
Hal Finkeled6a2852013-04-05 23:29:01 +0000841 }
842
843 unsigned FirstReg = SwapOps ? FalseReg : TrueReg,
844 SecondReg = SwapOps ? TrueReg : FalseReg;
845
846 // The first input register of isel cannot be r0. If it is a member
847 // of a register class that can be r0, then copy it first (the
848 // register allocator should eliminate the copy).
849 if (MRI.getRegClass(FirstReg)->contains(PPC::R0) ||
850 MRI.getRegClass(FirstReg)->contains(PPC::X0)) {
851 const TargetRegisterClass *FirstRC =
852 MRI.getRegClass(FirstReg)->contains(PPC::X0) ?
853 &PPC::G8RC_NOX0RegClass : &PPC::GPRC_NOR0RegClass;
854 unsigned OldFirstReg = FirstReg;
855 FirstReg = MRI.createVirtualRegister(FirstRC);
856 BuildMI(MBB, MI, dl, get(TargetOpcode::COPY), FirstReg)
857 .addReg(OldFirstReg);
858 }
859
860 BuildMI(MBB, MI, dl, get(OpCode), DestReg)
861 .addReg(FirstReg).addReg(SecondReg)
862 .addReg(Cond[1].getReg(), 0, SubIdx);
863}
864
Kit Barton535e69d2015-03-25 19:36:23 +0000865static unsigned getCRBitValue(unsigned CRBit) {
866 unsigned Ret = 4;
867 if (CRBit == PPC::CR0LT || CRBit == PPC::CR1LT ||
868 CRBit == PPC::CR2LT || CRBit == PPC::CR3LT ||
869 CRBit == PPC::CR4LT || CRBit == PPC::CR5LT ||
870 CRBit == PPC::CR6LT || CRBit == PPC::CR7LT)
871 Ret = 3;
872 if (CRBit == PPC::CR0GT || CRBit == PPC::CR1GT ||
873 CRBit == PPC::CR2GT || CRBit == PPC::CR3GT ||
874 CRBit == PPC::CR4GT || CRBit == PPC::CR5GT ||
875 CRBit == PPC::CR6GT || CRBit == PPC::CR7GT)
876 Ret = 2;
877 if (CRBit == PPC::CR0EQ || CRBit == PPC::CR1EQ ||
878 CRBit == PPC::CR2EQ || CRBit == PPC::CR3EQ ||
879 CRBit == PPC::CR4EQ || CRBit == PPC::CR5EQ ||
880 CRBit == PPC::CR6EQ || CRBit == PPC::CR7EQ)
881 Ret = 1;
882 if (CRBit == PPC::CR0UN || CRBit == PPC::CR1UN ||
883 CRBit == PPC::CR2UN || CRBit == PPC::CR3UN ||
884 CRBit == PPC::CR4UN || CRBit == PPC::CR5UN ||
885 CRBit == PPC::CR6UN || CRBit == PPC::CR7UN)
886 Ret = 0;
887
888 assert(Ret != 4 && "Invalid CR bit register");
889 return Ret;
890}
891
Jakob Stoklund Olesen0d611972010-07-11 07:31:00 +0000892void PPCInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000893 MachineBasicBlock::iterator I,
894 const DebugLoc &DL, unsigned DestReg,
895 unsigned SrcReg, bool KillSrc) const {
Hal Finkel27774d92014-03-13 07:58:58 +0000896 // We can end up with self copies and similar things as a result of VSX copy
Hal Finkel9dcb3582014-03-27 22:46:28 +0000897 // legalization. Promote them here.
Hal Finkel27774d92014-03-13 07:58:58 +0000898 const TargetRegisterInfo *TRI = &getRegisterInfo();
899 if (PPC::F8RCRegClass.contains(DestReg) &&
Hal Finkel5cedafb2015-02-16 23:46:30 +0000900 PPC::VSRCRegClass.contains(SrcReg)) {
Hal Finkel27774d92014-03-13 07:58:58 +0000901 unsigned SuperReg =
902 TRI->getMatchingSuperReg(DestReg, PPC::sub_64, &PPC::VSRCRegClass);
903
Hal Finkel9dcb3582014-03-27 22:46:28 +0000904 if (VSXSelfCopyCrash && SrcReg == SuperReg)
905 llvm_unreachable("nop VSX copy");
Hal Finkel27774d92014-03-13 07:58:58 +0000906
907 DestReg = SuperReg;
Hal Finkel27774d92014-03-13 07:58:58 +0000908 } else if (PPC::F8RCRegClass.contains(SrcReg) &&
Hal Finkel5cedafb2015-02-16 23:46:30 +0000909 PPC::VSRCRegClass.contains(DestReg)) {
Hal Finkel27774d92014-03-13 07:58:58 +0000910 unsigned SuperReg =
911 TRI->getMatchingSuperReg(SrcReg, PPC::sub_64, &PPC::VSRCRegClass);
912
Hal Finkel9dcb3582014-03-27 22:46:28 +0000913 if (VSXSelfCopyCrash && DestReg == SuperReg)
914 llvm_unreachable("nop VSX copy");
Hal Finkel27774d92014-03-13 07:58:58 +0000915
916 SrcReg = SuperReg;
Hal Finkel27774d92014-03-13 07:58:58 +0000917 }
918
Kit Barton535e69d2015-03-25 19:36:23 +0000919 // Different class register copy
920 if (PPC::CRBITRCRegClass.contains(SrcReg) &&
921 PPC::GPRCRegClass.contains(DestReg)) {
922 unsigned CRReg = getCRFromCRBit(SrcReg);
Richard Trieu7a083812016-02-18 22:09:30 +0000923 BuildMI(MBB, I, DL, get(PPC::MFOCRF), DestReg).addReg(CRReg);
924 getKillRegState(KillSrc);
Kit Barton535e69d2015-03-25 19:36:23 +0000925 // Rotate the CR bit in the CR fields to be the least significant bit and
926 // then mask with 0x1 (MB = ME = 31).
927 BuildMI(MBB, I, DL, get(PPC::RLWINM), DestReg)
928 .addReg(DestReg, RegState::Kill)
929 .addImm(TRI->getEncodingValue(CRReg) * 4 + (4 - getCRBitValue(SrcReg)))
930 .addImm(31)
931 .addImm(31);
932 return;
933 } else if (PPC::CRRCRegClass.contains(SrcReg) &&
934 PPC::G8RCRegClass.contains(DestReg)) {
Richard Trieu7a083812016-02-18 22:09:30 +0000935 BuildMI(MBB, I, DL, get(PPC::MFOCRF8), DestReg).addReg(SrcReg);
936 getKillRegState(KillSrc);
Kit Barton535e69d2015-03-25 19:36:23 +0000937 return;
938 } else if (PPC::CRRCRegClass.contains(SrcReg) &&
939 PPC::GPRCRegClass.contains(DestReg)) {
Richard Trieu7a083812016-02-18 22:09:30 +0000940 BuildMI(MBB, I, DL, get(PPC::MFOCRF), DestReg).addReg(SrcReg);
941 getKillRegState(KillSrc);
Kit Barton535e69d2015-03-25 19:36:23 +0000942 return;
Zaara Syedafcd96972017-09-21 16:12:33 +0000943 } else if (PPC::G8RCRegClass.contains(SrcReg) &&
944 PPC::VSFRCRegClass.contains(DestReg)) {
945 BuildMI(MBB, I, DL, get(PPC::MTVSRD), DestReg).addReg(SrcReg);
946 NumGPRtoVSRSpill++;
947 getKillRegState(KillSrc);
948 return;
949 } else if (PPC::VSFRCRegClass.contains(SrcReg) &&
950 PPC::G8RCRegClass.contains(DestReg)) {
951 BuildMI(MBB, I, DL, get(PPC::MFVSRD), DestReg).addReg(SrcReg);
952 getKillRegState(KillSrc);
953 return;
954 }
Kit Barton535e69d2015-03-25 19:36:23 +0000955
Jakob Stoklund Olesen0d611972010-07-11 07:31:00 +0000956 unsigned Opc;
957 if (PPC::GPRCRegClass.contains(DestReg, SrcReg))
958 Opc = PPC::OR;
959 else if (PPC::G8RCRegClass.contains(DestReg, SrcReg))
960 Opc = PPC::OR8;
961 else if (PPC::F4RCRegClass.contains(DestReg, SrcReg))
962 Opc = PPC::FMR;
963 else if (PPC::CRRCRegClass.contains(DestReg, SrcReg))
964 Opc = PPC::MCRF;
965 else if (PPC::VRRCRegClass.contains(DestReg, SrcReg))
966 Opc = PPC::VOR;
Hal Finkel27774d92014-03-13 07:58:58 +0000967 else if (PPC::VSRCRegClass.contains(DestReg, SrcReg))
Hal Finkelbbad2332014-03-24 09:36:36 +0000968 // There are two different ways this can be done:
Hal Finkel27774d92014-03-13 07:58:58 +0000969 // 1. xxlor : This has lower latency (on the P7), 2 cycles, but can only
970 // issue in VSU pipeline 0.
971 // 2. xmovdp/xmovsp: This has higher latency (on the P7), 6 cycles, but
972 // can go to either pipeline.
Hal Finkelbbad2332014-03-24 09:36:36 +0000973 // We'll always use xxlor here, because in practically all cases where
974 // copies are generated, they are close enough to some use that the
975 // lower-latency form is preferable.
Hal Finkel27774d92014-03-13 07:58:58 +0000976 Opc = PPC::XXLOR;
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +0000977 else if (PPC::VSFRCRegClass.contains(DestReg, SrcReg) ||
978 PPC::VSSRCRegClass.contains(DestReg, SrcReg))
Hal Finkel19be5062014-03-29 05:29:01 +0000979 Opc = PPC::XXLORf;
Hal Finkelc93a9a22015-02-25 01:06:45 +0000980 else if (PPC::QFRCRegClass.contains(DestReg, SrcReg))
981 Opc = PPC::QVFMR;
982 else if (PPC::QSRCRegClass.contains(DestReg, SrcReg))
983 Opc = PPC::QVFMRs;
984 else if (PPC::QBRCRegClass.contains(DestReg, SrcReg))
985 Opc = PPC::QVFMRb;
Jakob Stoklund Olesen0d611972010-07-11 07:31:00 +0000986 else if (PPC::CRBITRCRegClass.contains(DestReg, SrcReg))
987 Opc = PPC::CROR;
988 else
989 llvm_unreachable("Impossible reg-to-reg copy");
Owen Anderson7a73ae92007-12-31 06:32:00 +0000990
Evan Cheng6cc775f2011-06-28 19:10:37 +0000991 const MCInstrDesc &MCID = get(Opc);
992 if (MCID.getNumOperands() == 3)
993 BuildMI(MBB, I, DL, MCID, DestReg)
Jakob Stoklund Olesen0d611972010-07-11 07:31:00 +0000994 .addReg(SrcReg).addReg(SrcReg, getKillRegState(KillSrc));
995 else
Evan Cheng6cc775f2011-06-28 19:10:37 +0000996 BuildMI(MBB, I, DL, MCID, DestReg).addReg(SrcReg, getKillRegState(KillSrc));
Owen Anderson7a73ae92007-12-31 06:32:00 +0000997}
998
Hal Finkel8f6834d2011-12-05 17:55:17 +0000999// This function returns true if a CR spill is necessary and false otherwise.
Bill Wendlingc6c48fc2008-03-10 22:49:16 +00001000bool
Dan Gohman3b460302008-07-07 23:14:23 +00001001PPCInstrInfo::StoreRegToStackSlot(MachineFunction &MF,
1002 unsigned SrcReg, bool isKill,
Bill Wendlingc6c48fc2008-03-10 22:49:16 +00001003 int FrameIdx,
1004 const TargetRegisterClass *RC,
Hal Finkelfcc51d42013-03-17 04:43:44 +00001005 SmallVectorImpl<MachineInstr*> &NewMIs,
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001006 bool &NonRI, bool &SpillsVRS) const{
Hal Finkel37714b82013-03-27 21:21:15 +00001007 // Note: If additional store instructions are added here,
1008 // update isStoreToStackSlot.
1009
Chris Lattner6f306d72010-04-02 20:16:16 +00001010 DebugLoc DL;
Hal Finkel4e703bc2014-01-28 05:32:58 +00001011 if (PPC::GPRCRegClass.hasSubClassEq(RC) ||
1012 PPC::GPRC_NOR0RegClass.hasSubClassEq(RC)) {
Hal Finkel794e05b2013-03-23 17:14:27 +00001013 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STW))
1014 .addReg(SrcReg,
1015 getKillRegState(isKill)),
1016 FrameIdx));
Hal Finkel4e703bc2014-01-28 05:32:58 +00001017 } else if (PPC::G8RCRegClass.hasSubClassEq(RC) ||
1018 PPC::G8RC_NOX0RegClass.hasSubClassEq(RC)) {
Hal Finkel794e05b2013-03-23 17:14:27 +00001019 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STD))
1020 .addReg(SrcReg,
1021 getKillRegState(isKill)),
1022 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +00001023 } else if (PPC::F8RCRegClass.hasSubClassEq(RC)) {
Dale Johannesen6b8c76a2009-02-12 23:08:38 +00001024 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STFD))
Bill Wendlingf7b83c72009-05-13 21:33:08 +00001025 .addReg(SrcReg,
1026 getKillRegState(isKill)),
1027 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +00001028 } else if (PPC::F4RCRegClass.hasSubClassEq(RC)) {
Dale Johannesen6b8c76a2009-02-12 23:08:38 +00001029 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STFS))
Bill Wendlingf7b83c72009-05-13 21:33:08 +00001030 .addReg(SrcReg,
1031 getKillRegState(isKill)),
1032 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +00001033 } else if (PPC::CRRCRegClass.hasSubClassEq(RC)) {
Hal Finkele154c8f2013-03-12 14:12:16 +00001034 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_CR))
1035 .addReg(SrcReg,
1036 getKillRegState(isKill)),
1037 FrameIdx));
1038 return true;
Craig Topperabadc662012-04-20 06:31:50 +00001039 } else if (PPC::CRBITRCRegClass.hasSubClassEq(RC)) {
Hal Finkel940ab932014-02-28 00:27:01 +00001040 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_CRBIT))
1041 .addReg(SrcReg,
1042 getKillRegState(isKill)),
1043 FrameIdx));
1044 return true;
Craig Topperabadc662012-04-20 06:31:50 +00001045 } else if (PPC::VRRCRegClass.hasSubClassEq(RC)) {
Hal Finkelfcc51d42013-03-17 04:43:44 +00001046 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STVX))
1047 .addReg(SrcReg,
1048 getKillRegState(isKill)),
1049 FrameIdx));
1050 NonRI = true;
Hal Finkel27774d92014-03-13 07:58:58 +00001051 } else if (PPC::VSRCRegClass.hasSubClassEq(RC)) {
Lei Huang263dc4e2017-10-11 20:20:58 +00001052 unsigned Op = Subtarget.hasP9Vector() ? PPC::STXV : PPC::STXVD2X;
Nemanja Ivanovic6e7879c2016-09-22 09:52:19 +00001053 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(Op))
Hal Finkel27774d92014-03-13 07:58:58 +00001054 .addReg(SrcReg,
1055 getKillRegState(isKill)),
1056 FrameIdx));
1057 NonRI = true;
Hal Finkel19be5062014-03-29 05:29:01 +00001058 } else if (PPC::VSFRCRegClass.hasSubClassEq(RC)) {
Nemanja Ivanovic6354d232016-10-04 11:25:52 +00001059 unsigned Opc = Subtarget.hasP9Vector() ? PPC::DFSTOREf64 : PPC::STXSDX;
1060 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(Opc))
Hal Finkel19be5062014-03-29 05:29:01 +00001061 .addReg(SrcReg,
1062 getKillRegState(isKill)),
1063 FrameIdx));
1064 NonRI = true;
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00001065 } else if (PPC::VSSRCRegClass.hasSubClassEq(RC)) {
Nemanja Ivanovic6354d232016-10-04 11:25:52 +00001066 unsigned Opc = Subtarget.hasP9Vector() ? PPC::DFSTOREf32 : PPC::STXSSPX;
1067 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(Opc))
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00001068 .addReg(SrcReg,
1069 getKillRegState(isKill)),
1070 FrameIdx));
1071 NonRI = true;
Hal Finkela1431df2013-03-21 19:03:21 +00001072 } else if (PPC::VRSAVERCRegClass.hasSubClassEq(RC)) {
Eric Christopher1dcea732014-06-12 21:48:52 +00001073 assert(Subtarget.isDarwin() &&
Hal Finkela7b06302013-03-27 00:02:20 +00001074 "VRSAVE only needs spill/restore on Darwin");
Hal Finkela1431df2013-03-21 19:03:21 +00001075 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_VRSAVE))
1076 .addReg(SrcReg,
1077 getKillRegState(isKill)),
1078 FrameIdx));
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001079 SpillsVRS = true;
Hal Finkelc93a9a22015-02-25 01:06:45 +00001080 } else if (PPC::QFRCRegClass.hasSubClassEq(RC)) {
1081 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::QVSTFDX))
1082 .addReg(SrcReg,
1083 getKillRegState(isKill)),
1084 FrameIdx));
1085 NonRI = true;
1086 } else if (PPC::QSRCRegClass.hasSubClassEq(RC)) {
1087 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::QVSTFSXs))
1088 .addReg(SrcReg,
1089 getKillRegState(isKill)),
1090 FrameIdx));
1091 NonRI = true;
1092 } else if (PPC::QBRCRegClass.hasSubClassEq(RC)) {
1093 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::QVSTFDXb))
1094 .addReg(SrcReg,
1095 getKillRegState(isKill)),
1096 FrameIdx));
1097 NonRI = true;
Zaara Syedafcd96972017-09-21 16:12:33 +00001098 } else if (PPC::SPILLTOVSRRCRegClass.hasSubClassEq(RC)) {
1099 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILLTOVSR_ST))
1100 .addReg(SrcReg,
1101 getKillRegState(isKill)),
1102 FrameIdx));
Owen Andersoneee14602008-01-01 21:11:32 +00001103 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001104 llvm_unreachable("Unknown regclass!");
Owen Andersoneee14602008-01-01 21:11:32 +00001105 }
Bill Wendling632ea652008-03-03 22:19:16 +00001106
1107 return false;
Owen Andersoneee14602008-01-01 21:11:32 +00001108}
1109
1110void
1111PPCInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
Bill Wendling632ea652008-03-03 22:19:16 +00001112 MachineBasicBlock::iterator MI,
1113 unsigned SrcReg, bool isKill, int FrameIdx,
Evan Chengefb126a2010-05-06 19:06:44 +00001114 const TargetRegisterClass *RC,
1115 const TargetRegisterInfo *TRI) const {
Dan Gohman3b460302008-07-07 23:14:23 +00001116 MachineFunction &MF = *MBB.getParent();
Owen Andersoneee14602008-01-01 21:11:32 +00001117 SmallVector<MachineInstr*, 4> NewMIs;
Bill Wendling632ea652008-03-03 22:19:16 +00001118
Hal Finkelbb420f12013-03-15 05:06:04 +00001119 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1120 FuncInfo->setHasSpills();
1121
Nemanja Ivanovic11049f82016-10-04 06:59:23 +00001122 // We need to avoid a situation in which the value from a VRRC register is
1123 // spilled using an Altivec instruction and reloaded into a VSRC register
1124 // using a VSX instruction. The issue with this is that the VSX
1125 // load/store instructions swap the doublewords in the vector and the Altivec
1126 // ones don't. The register classes on the spill/reload may be different if
1127 // the register is defined using an Altivec instruction and is then used by a
1128 // VSX instruction.
1129 RC = updatedRC(RC);
1130
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001131 bool NonRI = false, SpillsVRS = false;
1132 if (StoreRegToStackSlot(MF, SrcReg, isKill, FrameIdx, RC, NewMIs,
1133 NonRI, SpillsVRS))
Bill Wendling632ea652008-03-03 22:19:16 +00001134 FuncInfo->setSpillsCR();
Bill Wendling632ea652008-03-03 22:19:16 +00001135
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001136 if (SpillsVRS)
1137 FuncInfo->setSpillsVRSAVE();
1138
Hal Finkelfcc51d42013-03-17 04:43:44 +00001139 if (NonRI)
1140 FuncInfo->setHasNonRISpills();
1141
Owen Andersoneee14602008-01-01 21:11:32 +00001142 for (unsigned i = 0, e = NewMIs.size(); i != e; ++i)
1143 MBB.insert(MI, NewMIs[i]);
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +00001144
Matthias Braun941a7052016-07-28 18:40:00 +00001145 const MachineFrameInfo &MFI = MF.getFrameInfo();
Alex Lorenze40c8a22015-08-11 23:09:45 +00001146 MachineMemOperand *MMO = MF.getMachineMemOperand(
1147 MachinePointerInfo::getFixedStack(MF, FrameIdx),
1148 MachineMemOperand::MOStore, MFI.getObjectSize(FrameIdx),
1149 MFI.getObjectAlignment(FrameIdx));
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +00001150 NewMIs.back()->addMemOperand(MF, MMO);
Owen Andersoneee14602008-01-01 21:11:32 +00001151}
1152
Benjamin Kramerbdc49562016-06-12 15:39:02 +00001153bool PPCInstrInfo::LoadRegFromStackSlot(MachineFunction &MF, const DebugLoc &DL,
1154 unsigned DestReg, int FrameIdx,
1155 const TargetRegisterClass *RC,
1156 SmallVectorImpl<MachineInstr *> &NewMIs,
1157 bool &NonRI, bool &SpillsVRS) const {
Hal Finkel37714b82013-03-27 21:21:15 +00001158 // Note: If additional load instructions are added here,
1159 // update isLoadFromStackSlot.
1160
Hal Finkel4e703bc2014-01-28 05:32:58 +00001161 if (PPC::GPRCRegClass.hasSubClassEq(RC) ||
1162 PPC::GPRC_NOR0RegClass.hasSubClassEq(RC)) {
Hal Finkel5791f512013-03-27 19:10:40 +00001163 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LWZ),
1164 DestReg), FrameIdx));
Hal Finkel4e703bc2014-01-28 05:32:58 +00001165 } else if (PPC::G8RCRegClass.hasSubClassEq(RC) ||
1166 PPC::G8RC_NOX0RegClass.hasSubClassEq(RC)) {
Hal Finkel5791f512013-03-27 19:10:40 +00001167 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LD), DestReg),
1168 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +00001169 } else if (PPC::F8RCRegClass.hasSubClassEq(RC)) {
Bill Wendlingf6d609a2009-02-12 00:02:55 +00001170 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LFD), DestReg),
Owen Andersoneee14602008-01-01 21:11:32 +00001171 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +00001172 } else if (PPC::F4RCRegClass.hasSubClassEq(RC)) {
Bill Wendlingf6d609a2009-02-12 00:02:55 +00001173 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LFS), DestReg),
Owen Andersoneee14602008-01-01 21:11:32 +00001174 FrameIdx));
Craig Topperabadc662012-04-20 06:31:50 +00001175 } else if (PPC::CRRCRegClass.hasSubClassEq(RC)) {
Hal Finkele154c8f2013-03-12 14:12:16 +00001176 NewMIs.push_back(addFrameReference(BuildMI(MF, DL,
1177 get(PPC::RESTORE_CR), DestReg),
1178 FrameIdx));
1179 return true;
Craig Topperabadc662012-04-20 06:31:50 +00001180 } else if (PPC::CRBITRCRegClass.hasSubClassEq(RC)) {
Hal Finkel940ab932014-02-28 00:27:01 +00001181 NewMIs.push_back(addFrameReference(BuildMI(MF, DL,
1182 get(PPC::RESTORE_CRBIT), DestReg),
1183 FrameIdx));
1184 return true;
Craig Topperabadc662012-04-20 06:31:50 +00001185 } else if (PPC::VRRCRegClass.hasSubClassEq(RC)) {
Hal Finkelfcc51d42013-03-17 04:43:44 +00001186 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::LVX), DestReg),
1187 FrameIdx));
1188 NonRI = true;
Hal Finkel27774d92014-03-13 07:58:58 +00001189 } else if (PPC::VSRCRegClass.hasSubClassEq(RC)) {
Lei Huang263dc4e2017-10-11 20:20:58 +00001190 unsigned Op = Subtarget.hasP9Vector() ? PPC::LXV : PPC::LXVD2X;
Nemanja Ivanovic6e7879c2016-09-22 09:52:19 +00001191 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(Op), DestReg),
Hal Finkel27774d92014-03-13 07:58:58 +00001192 FrameIdx));
1193 NonRI = true;
Hal Finkel19be5062014-03-29 05:29:01 +00001194 } else if (PPC::VSFRCRegClass.hasSubClassEq(RC)) {
Nemanja Ivanovic6354d232016-10-04 11:25:52 +00001195 unsigned Opc = Subtarget.hasP9Vector() ? PPC::DFLOADf64 : PPC::LXSDX;
1196 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(Opc),
1197 DestReg), FrameIdx));
Hal Finkel19be5062014-03-29 05:29:01 +00001198 NonRI = true;
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00001199 } else if (PPC::VSSRCRegClass.hasSubClassEq(RC)) {
Nemanja Ivanovic6354d232016-10-04 11:25:52 +00001200 unsigned Opc = Subtarget.hasP9Vector() ? PPC::DFLOADf32 : PPC::LXSSPX;
1201 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(Opc),
1202 DestReg), FrameIdx));
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00001203 NonRI = true;
Hal Finkela1431df2013-03-21 19:03:21 +00001204 } else if (PPC::VRSAVERCRegClass.hasSubClassEq(RC)) {
Eric Christopher1dcea732014-06-12 21:48:52 +00001205 assert(Subtarget.isDarwin() &&
Hal Finkela7b06302013-03-27 00:02:20 +00001206 "VRSAVE only needs spill/restore on Darwin");
Hal Finkela1431df2013-03-21 19:03:21 +00001207 NewMIs.push_back(addFrameReference(BuildMI(MF, DL,
1208 get(PPC::RESTORE_VRSAVE),
1209 DestReg),
1210 FrameIdx));
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001211 SpillsVRS = true;
Hal Finkelc93a9a22015-02-25 01:06:45 +00001212 } else if (PPC::QFRCRegClass.hasSubClassEq(RC)) {
1213 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::QVLFDX), DestReg),
1214 FrameIdx));
1215 NonRI = true;
1216 } else if (PPC::QSRCRegClass.hasSubClassEq(RC)) {
1217 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::QVLFSXs), DestReg),
1218 FrameIdx));
1219 NonRI = true;
1220 } else if (PPC::QBRCRegClass.hasSubClassEq(RC)) {
1221 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::QVLFDXb), DestReg),
1222 FrameIdx));
1223 NonRI = true;
Zaara Syedafcd96972017-09-21 16:12:33 +00001224 } else if (PPC::SPILLTOVSRRCRegClass.hasSubClassEq(RC)) {
1225 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILLTOVSR_LD),
1226 DestReg), FrameIdx));
Owen Andersoneee14602008-01-01 21:11:32 +00001227 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001228 llvm_unreachable("Unknown regclass!");
Owen Andersoneee14602008-01-01 21:11:32 +00001229 }
Hal Finkelbde7f8f2011-12-06 20:55:36 +00001230
1231 return false;
Owen Andersoneee14602008-01-01 21:11:32 +00001232}
1233
1234void
1235PPCInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
Bill Wendling632ea652008-03-03 22:19:16 +00001236 MachineBasicBlock::iterator MI,
1237 unsigned DestReg, int FrameIdx,
Evan Chengefb126a2010-05-06 19:06:44 +00001238 const TargetRegisterClass *RC,
1239 const TargetRegisterInfo *TRI) const {
Dan Gohman3b460302008-07-07 23:14:23 +00001240 MachineFunction &MF = *MBB.getParent();
Owen Andersoneee14602008-01-01 21:11:32 +00001241 SmallVector<MachineInstr*, 4> NewMIs;
Chris Lattner6f306d72010-04-02 20:16:16 +00001242 DebugLoc DL;
Bill Wendlingf6d609a2009-02-12 00:02:55 +00001243 if (MI != MBB.end()) DL = MI->getDebugLoc();
Hal Finkelfcc51d42013-03-17 04:43:44 +00001244
1245 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1246 FuncInfo->setHasSpills();
1247
Nemanja Ivanovic11049f82016-10-04 06:59:23 +00001248 // We need to avoid a situation in which the value from a VRRC register is
1249 // spilled using an Altivec instruction and reloaded into a VSRC register
1250 // using a VSX instruction. The issue with this is that the VSX
1251 // load/store instructions swap the doublewords in the vector and the Altivec
1252 // ones don't. The register classes on the spill/reload may be different if
1253 // the register is defined using an Altivec instruction and is then used by a
1254 // VSX instruction.
1255 if (Subtarget.hasVSX() && RC == &PPC::VRRCRegClass)
1256 RC = &PPC::VSRCRegClass;
1257
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001258 bool NonRI = false, SpillsVRS = false;
1259 if (LoadRegFromStackSlot(MF, DL, DestReg, FrameIdx, RC, NewMIs,
1260 NonRI, SpillsVRS))
Hal Finkelbde7f8f2011-12-06 20:55:36 +00001261 FuncInfo->setSpillsCR();
Hal Finkelfcc51d42013-03-17 04:43:44 +00001262
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001263 if (SpillsVRS)
1264 FuncInfo->setSpillsVRSAVE();
1265
Hal Finkelfcc51d42013-03-17 04:43:44 +00001266 if (NonRI)
1267 FuncInfo->setHasNonRISpills();
1268
Owen Andersoneee14602008-01-01 21:11:32 +00001269 for (unsigned i = 0, e = NewMIs.size(); i != e; ++i)
1270 MBB.insert(MI, NewMIs[i]);
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +00001271
Matthias Braun941a7052016-07-28 18:40:00 +00001272 const MachineFrameInfo &MFI = MF.getFrameInfo();
Alex Lorenze40c8a22015-08-11 23:09:45 +00001273 MachineMemOperand *MMO = MF.getMachineMemOperand(
1274 MachinePointerInfo::getFixedStack(MF, FrameIdx),
1275 MachineMemOperand::MOLoad, MFI.getObjectSize(FrameIdx),
1276 MFI.getObjectAlignment(FrameIdx));
Jakob Stoklund Olesen6353e532010-07-16 18:22:00 +00001277 NewMIs.back()->addMemOperand(MF, MMO);
Owen Andersoneee14602008-01-01 21:11:32 +00001278}
1279
Chris Lattnera47294ed2006-10-13 21:21:17 +00001280bool PPCInstrInfo::
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +00001281reverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
Chris Lattner23f22de2006-10-21 06:03:11 +00001282 assert(Cond.size() == 2 && "Invalid PPC branch opcode!");
Hal Finkel96c2d4d2012-06-08 15:38:21 +00001283 if (Cond[1].getReg() == PPC::CTR8 || Cond[1].getReg() == PPC::CTR)
1284 Cond[0].setImm(Cond[0].getImm() == 0 ? 1 : 0);
1285 else
1286 // Leave the CR# the same, but invert the condition.
1287 Cond[0].setImm(PPC::InvertPredicate((PPC::Predicate)Cond[0].getImm()));
Chris Lattner23f22de2006-10-21 06:03:11 +00001288 return false;
Chris Lattnera47294ed2006-10-13 21:21:17 +00001289}
Nicolas Geoffrayae84bbd2008-04-16 20:10:13 +00001290
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001291bool PPCInstrInfo::FoldImmediate(MachineInstr &UseMI, MachineInstr &DefMI,
1292 unsigned Reg, MachineRegisterInfo *MRI) const {
Hal Finkeld61d4f82013-04-06 19:30:30 +00001293 // For some instructions, it is legal to fold ZERO into the RA register field.
1294 // A zero immediate should always be loaded with a single li.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001295 unsigned DefOpc = DefMI.getOpcode();
Hal Finkeld61d4f82013-04-06 19:30:30 +00001296 if (DefOpc != PPC::LI && DefOpc != PPC::LI8)
1297 return false;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001298 if (!DefMI.getOperand(1).isImm())
Hal Finkeld61d4f82013-04-06 19:30:30 +00001299 return false;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001300 if (DefMI.getOperand(1).getImm() != 0)
Hal Finkeld61d4f82013-04-06 19:30:30 +00001301 return false;
1302
1303 // Note that we cannot here invert the arguments of an isel in order to fold
1304 // a ZERO into what is presented as the second argument. All we have here
1305 // is the condition bit, and that might come from a CR-logical bit operation.
1306
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001307 const MCInstrDesc &UseMCID = UseMI.getDesc();
Hal Finkeld61d4f82013-04-06 19:30:30 +00001308
1309 // Only fold into real machine instructions.
1310 if (UseMCID.isPseudo())
1311 return false;
1312
1313 unsigned UseIdx;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001314 for (UseIdx = 0; UseIdx < UseMI.getNumOperands(); ++UseIdx)
1315 if (UseMI.getOperand(UseIdx).isReg() &&
1316 UseMI.getOperand(UseIdx).getReg() == Reg)
Hal Finkeld61d4f82013-04-06 19:30:30 +00001317 break;
1318
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001319 assert(UseIdx < UseMI.getNumOperands() && "Cannot find Reg in UseMI");
Hal Finkeld61d4f82013-04-06 19:30:30 +00001320 assert(UseIdx < UseMCID.getNumOperands() && "No operand description for Reg");
1321
1322 const MCOperandInfo *UseInfo = &UseMCID.OpInfo[UseIdx];
1323
1324 // We can fold the zero if this register requires a GPRC_NOR0/G8RC_NOX0
1325 // register (which might also be specified as a pointer class kind).
1326 if (UseInfo->isLookupPtrRegClass()) {
1327 if (UseInfo->RegClass /* Kind */ != 1)
1328 return false;
1329 } else {
1330 if (UseInfo->RegClass != PPC::GPRC_NOR0RegClassID &&
1331 UseInfo->RegClass != PPC::G8RC_NOX0RegClassID)
1332 return false;
1333 }
1334
1335 // Make sure this is not tied to an output register (or otherwise
1336 // constrained). This is true for ST?UX registers, for example, which
1337 // are tied to their output registers.
1338 if (UseInfo->Constraints != 0)
1339 return false;
1340
1341 unsigned ZeroReg;
1342 if (UseInfo->isLookupPtrRegClass()) {
Eric Christopher1dcea732014-06-12 21:48:52 +00001343 bool isPPC64 = Subtarget.isPPC64();
Hal Finkeld61d4f82013-04-06 19:30:30 +00001344 ZeroReg = isPPC64 ? PPC::ZERO8 : PPC::ZERO;
1345 } else {
1346 ZeroReg = UseInfo->RegClass == PPC::G8RC_NOX0RegClassID ?
1347 PPC::ZERO8 : PPC::ZERO;
1348 }
1349
1350 bool DeleteDef = MRI->hasOneNonDBGUse(Reg);
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001351 UseMI.getOperand(UseIdx).setReg(ZeroReg);
Hal Finkeld61d4f82013-04-06 19:30:30 +00001352
1353 if (DeleteDef)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001354 DefMI.eraseFromParent();
Hal Finkeld61d4f82013-04-06 19:30:30 +00001355
1356 return true;
1357}
1358
Hal Finkel30ae2292013-04-10 18:30:16 +00001359static bool MBBDefinesCTR(MachineBasicBlock &MBB) {
1360 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end();
1361 I != IE; ++I)
1362 if (I->definesRegister(PPC::CTR) || I->definesRegister(PPC::CTR8))
1363 return true;
1364 return false;
1365}
1366
1367// We should make sure that, if we're going to predicate both sides of a
1368// condition (a diamond), that both sides don't define the counter register. We
1369// can predicate counter-decrement-based branches, but while that predicates
1370// the branching, it does not predicate the counter decrement. If we tried to
1371// merge the triangle into one predicated block, we'd decrement the counter
1372// twice.
1373bool PPCInstrInfo::isProfitableToIfCvt(MachineBasicBlock &TMBB,
1374 unsigned NumT, unsigned ExtraT,
1375 MachineBasicBlock &FMBB,
1376 unsigned NumF, unsigned ExtraF,
Cong Houc536bd92015-09-10 23:10:42 +00001377 BranchProbability Probability) const {
Hal Finkel30ae2292013-04-10 18:30:16 +00001378 return !(MBBDefinesCTR(TMBB) && MBBDefinesCTR(FMBB));
1379}
1380
1381
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001382bool PPCInstrInfo::isPredicated(const MachineInstr &MI) const {
Hal Finkelf29285a2013-04-11 01:23:34 +00001383 // The predicated branches are identified by their type, not really by the
1384 // explicit presence of a predicate. Furthermore, some of them can be
1385 // predicated more than once. Because if conversion won't try to predicate
1386 // any instruction which already claims to be predicated (by returning true
1387 // here), always return false. In doing so, we let isPredicable() be the
1388 // final word on whether not the instruction can be (further) predicated.
1389
1390 return false;
Hal Finkel5711eca2013-04-09 22:58:37 +00001391}
1392
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001393bool PPCInstrInfo::isUnpredicatedTerminator(const MachineInstr &MI) const {
1394 if (!MI.isTerminator())
Hal Finkel5711eca2013-04-09 22:58:37 +00001395 return false;
1396
1397 // Conditional branch is a special case.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001398 if (MI.isBranch() && !MI.isBarrier())
Hal Finkel5711eca2013-04-09 22:58:37 +00001399 return true;
1400
1401 return !isPredicated(MI);
1402}
1403
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001404bool PPCInstrInfo::PredicateInstruction(MachineInstr &MI,
Ahmed Bougachac88bf542015-06-11 19:30:37 +00001405 ArrayRef<MachineOperand> Pred) const {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001406 unsigned OpC = MI.getOpcode();
Hal Finkelf4a22c02015-01-13 17:47:54 +00001407 if (OpC == PPC::BLR || OpC == PPC::BLR8) {
Hal Finkel5711eca2013-04-09 22:58:37 +00001408 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR) {
Eric Christopher1dcea732014-06-12 21:48:52 +00001409 bool isPPC64 = Subtarget.isPPC64();
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001410 MI.setDesc(get(Pred[0].getImm() ? (isPPC64 ? PPC::BDNZLR8 : PPC::BDNZLR)
1411 : (isPPC64 ? PPC::BDZLR8 : PPC::BDZLR)));
Hal Finkel940ab932014-02-28 00:27:01 +00001412 } else if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001413 MI.setDesc(get(PPC::BCLR));
1414 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1415 .addReg(Pred[1].getReg());
Hal Finkel940ab932014-02-28 00:27:01 +00001416 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001417 MI.setDesc(get(PPC::BCLRn));
1418 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1419 .addReg(Pred[1].getReg());
Hal Finkel940ab932014-02-28 00:27:01 +00001420 } else {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001421 MI.setDesc(get(PPC::BCCLR));
1422 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1423 .addImm(Pred[0].getImm())
1424 .addReg(Pred[1].getReg());
Hal Finkel5711eca2013-04-09 22:58:37 +00001425 }
1426
1427 return true;
1428 } else if (OpC == PPC::B) {
1429 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR) {
Eric Christopher1dcea732014-06-12 21:48:52 +00001430 bool isPPC64 = Subtarget.isPPC64();
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001431 MI.setDesc(get(Pred[0].getImm() ? (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ)
1432 : (isPPC64 ? PPC::BDZ8 : PPC::BDZ)));
Hal Finkel940ab932014-02-28 00:27:01 +00001433 } else if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001434 MachineBasicBlock *MBB = MI.getOperand(0).getMBB();
1435 MI.RemoveOperand(0);
Hal Finkel940ab932014-02-28 00:27:01 +00001436
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001437 MI.setDesc(get(PPC::BC));
1438 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1439 .addReg(Pred[1].getReg())
1440 .addMBB(MBB);
Hal Finkel940ab932014-02-28 00:27:01 +00001441 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001442 MachineBasicBlock *MBB = MI.getOperand(0).getMBB();
1443 MI.RemoveOperand(0);
Hal Finkel940ab932014-02-28 00:27:01 +00001444
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001445 MI.setDesc(get(PPC::BCn));
1446 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1447 .addReg(Pred[1].getReg())
1448 .addMBB(MBB);
Hal Finkel5711eca2013-04-09 22:58:37 +00001449 } else {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001450 MachineBasicBlock *MBB = MI.getOperand(0).getMBB();
1451 MI.RemoveOperand(0);
Hal Finkel5711eca2013-04-09 22:58:37 +00001452
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001453 MI.setDesc(get(PPC::BCC));
1454 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1455 .addImm(Pred[0].getImm())
1456 .addReg(Pred[1].getReg())
1457 .addMBB(MBB);
Hal Finkel5711eca2013-04-09 22:58:37 +00001458 }
1459
1460 return true;
Hal Finkel500b0042013-04-10 06:42:34 +00001461 } else if (OpC == PPC::BCTR || OpC == PPC::BCTR8 ||
1462 OpC == PPC::BCTRL || OpC == PPC::BCTRL8) {
1463 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR)
1464 llvm_unreachable("Cannot predicate bctr[l] on the ctr register");
1465
1466 bool setLR = OpC == PPC::BCTRL || OpC == PPC::BCTRL8;
Eric Christopher1dcea732014-06-12 21:48:52 +00001467 bool isPPC64 = Subtarget.isPPC64();
Hal Finkel940ab932014-02-28 00:27:01 +00001468
1469 if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001470 MI.setDesc(get(isPPC64 ? (setLR ? PPC::BCCTRL8 : PPC::BCCTR8)
1471 : (setLR ? PPC::BCCTRL : PPC::BCCTR)));
1472 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1473 .addReg(Pred[1].getReg());
Hal Finkel940ab932014-02-28 00:27:01 +00001474 return true;
1475 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001476 MI.setDesc(get(isPPC64 ? (setLR ? PPC::BCCTRL8n : PPC::BCCTR8n)
1477 : (setLR ? PPC::BCCTRLn : PPC::BCCTRn)));
1478 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1479 .addReg(Pred[1].getReg());
Hal Finkel940ab932014-02-28 00:27:01 +00001480 return true;
1481 }
1482
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001483 MI.setDesc(get(isPPC64 ? (setLR ? PPC::BCCCTRL8 : PPC::BCCCTR8)
1484 : (setLR ? PPC::BCCCTRL : PPC::BCCCTR)));
1485 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
1486 .addImm(Pred[0].getImm())
1487 .addReg(Pred[1].getReg());
Hal Finkel500b0042013-04-10 06:42:34 +00001488 return true;
Hal Finkel5711eca2013-04-09 22:58:37 +00001489 }
1490
1491 return false;
1492}
1493
Ahmed Bougachac88bf542015-06-11 19:30:37 +00001494bool PPCInstrInfo::SubsumesPredicate(ArrayRef<MachineOperand> Pred1,
1495 ArrayRef<MachineOperand> Pred2) const {
Hal Finkel5711eca2013-04-09 22:58:37 +00001496 assert(Pred1.size() == 2 && "Invalid PPC first predicate");
1497 assert(Pred2.size() == 2 && "Invalid PPC second predicate");
1498
1499 if (Pred1[1].getReg() == PPC::CTR8 || Pred1[1].getReg() == PPC::CTR)
1500 return false;
1501 if (Pred2[1].getReg() == PPC::CTR8 || Pred2[1].getReg() == PPC::CTR)
1502 return false;
1503
Hal Finkel94a6f382013-12-11 23:12:25 +00001504 // P1 can only subsume P2 if they test the same condition register.
1505 if (Pred1[1].getReg() != Pred2[1].getReg())
1506 return false;
1507
Hal Finkel5711eca2013-04-09 22:58:37 +00001508 PPC::Predicate P1 = (PPC::Predicate) Pred1[0].getImm();
1509 PPC::Predicate P2 = (PPC::Predicate) Pred2[0].getImm();
1510
1511 if (P1 == P2)
1512 return true;
1513
1514 // Does P1 subsume P2, e.g. GE subsumes GT.
1515 if (P1 == PPC::PRED_LE &&
1516 (P2 == PPC::PRED_LT || P2 == PPC::PRED_EQ))
1517 return true;
1518 if (P1 == PPC::PRED_GE &&
1519 (P2 == PPC::PRED_GT || P2 == PPC::PRED_EQ))
1520 return true;
1521
1522 return false;
1523}
1524
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001525bool PPCInstrInfo::DefinesPredicate(MachineInstr &MI,
Hal Finkel5711eca2013-04-09 22:58:37 +00001526 std::vector<MachineOperand> &Pred) const {
1527 // Note: At the present time, the contents of Pred from this function is
1528 // unused by IfConversion. This implementation follows ARM by pushing the
1529 // CR-defining operand. Because the 'DZ' and 'DNZ' count as types of
1530 // predicate, instructions defining CTR or CTR8 are also included as
1531 // predicate-defining instructions.
1532
1533 const TargetRegisterClass *RCs[] =
1534 { &PPC::CRRCRegClass, &PPC::CRBITRCRegClass,
1535 &PPC::CTRRCRegClass, &PPC::CTRRC8RegClass };
1536
1537 bool Found = false;
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001538 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1539 const MachineOperand &MO = MI.getOperand(i);
Hal Finkelaf822012013-04-10 07:17:47 +00001540 for (unsigned c = 0; c < array_lengthof(RCs) && !Found; ++c) {
Hal Finkel5711eca2013-04-09 22:58:37 +00001541 const TargetRegisterClass *RC = RCs[c];
Hal Finkelaf822012013-04-10 07:17:47 +00001542 if (MO.isReg()) {
1543 if (MO.isDef() && RC->contains(MO.getReg())) {
Hal Finkel5711eca2013-04-09 22:58:37 +00001544 Pred.push_back(MO);
1545 Found = true;
1546 }
Hal Finkelaf822012013-04-10 07:17:47 +00001547 } else if (MO.isRegMask()) {
1548 for (TargetRegisterClass::iterator I = RC->begin(),
1549 IE = RC->end(); I != IE; ++I)
1550 if (MO.clobbersPhysReg(*I)) {
1551 Pred.push_back(MO);
1552 Found = true;
1553 }
Hal Finkel5711eca2013-04-09 22:58:37 +00001554 }
1555 }
1556 }
1557
1558 return Found;
1559}
1560
Krzysztof Parzyszekcc318712017-03-03 18:30:54 +00001561bool PPCInstrInfo::isPredicable(const MachineInstr &MI) const {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001562 unsigned OpC = MI.getOpcode();
Hal Finkel5711eca2013-04-09 22:58:37 +00001563 switch (OpC) {
1564 default:
1565 return false;
1566 case PPC::B:
1567 case PPC::BLR:
Hal Finkelf4a22c02015-01-13 17:47:54 +00001568 case PPC::BLR8:
Hal Finkel500b0042013-04-10 06:42:34 +00001569 case PPC::BCTR:
1570 case PPC::BCTR8:
1571 case PPC::BCTRL:
1572 case PPC::BCTRL8:
Hal Finkel5711eca2013-04-09 22:58:37 +00001573 return true;
1574 }
1575}
1576
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001577bool PPCInstrInfo::analyzeCompare(const MachineInstr &MI, unsigned &SrcReg,
1578 unsigned &SrcReg2, int &Mask,
1579 int &Value) const {
1580 unsigned Opc = MI.getOpcode();
Hal Finkel82656cb2013-04-18 22:15:08 +00001581
1582 switch (Opc) {
1583 default: return false;
1584 case PPC::CMPWI:
1585 case PPC::CMPLWI:
1586 case PPC::CMPDI:
1587 case PPC::CMPLDI:
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001588 SrcReg = MI.getOperand(1).getReg();
Hal Finkel82656cb2013-04-18 22:15:08 +00001589 SrcReg2 = 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001590 Value = MI.getOperand(2).getImm();
Hal Finkel82656cb2013-04-18 22:15:08 +00001591 Mask = 0xFFFF;
1592 return true;
1593 case PPC::CMPW:
1594 case PPC::CMPLW:
1595 case PPC::CMPD:
1596 case PPC::CMPLD:
1597 case PPC::FCMPUS:
1598 case PPC::FCMPUD:
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001599 SrcReg = MI.getOperand(1).getReg();
1600 SrcReg2 = MI.getOperand(2).getReg();
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001601 Value = 0;
1602 Mask = 0;
Hal Finkel82656cb2013-04-18 22:15:08 +00001603 return true;
1604 }
1605}
Hal Finkele6322392013-04-19 22:08:38 +00001606
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001607bool PPCInstrInfo::optimizeCompareInstr(MachineInstr &CmpInstr, unsigned SrcReg,
1608 unsigned SrcReg2, int Mask, int Value,
Hal Finkel82656cb2013-04-18 22:15:08 +00001609 const MachineRegisterInfo *MRI) const {
Hal Finkelb12da6b2013-04-18 22:54:25 +00001610 if (DisableCmpOpt)
1611 return false;
1612
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001613 int OpC = CmpInstr.getOpcode();
1614 unsigned CRReg = CmpInstr.getOperand(0).getReg();
Hal Finkel08e53ee2013-05-08 12:16:14 +00001615
1616 // FP record forms set CR1 based on the execption status bits, not a
1617 // comparison with zero.
1618 if (OpC == PPC::FCMPUS || OpC == PPC::FCMPUD)
1619 return false;
Hal Finkel82656cb2013-04-18 22:15:08 +00001620
1621 // The record forms set the condition register based on a signed comparison
1622 // with zero (so says the ISA manual). This is not as straightforward as it
1623 // seems, however, because this is always a 64-bit comparison on PPC64, even
1624 // for instructions that are 32-bit in nature (like slw for example).
1625 // So, on PPC32, for unsigned comparisons, we can use the record forms only
1626 // for equality checks (as those don't depend on the sign). On PPC64,
1627 // we are restricted to equality for unsigned 64-bit comparisons and for
1628 // signed 32-bit comparisons the applicability is more restricted.
Eric Christopher1dcea732014-06-12 21:48:52 +00001629 bool isPPC64 = Subtarget.isPPC64();
Hal Finkel82656cb2013-04-18 22:15:08 +00001630 bool is32BitSignedCompare = OpC == PPC::CMPWI || OpC == PPC::CMPW;
1631 bool is32BitUnsignedCompare = OpC == PPC::CMPLWI || OpC == PPC::CMPLW;
1632 bool is64BitUnsignedCompare = OpC == PPC::CMPLDI || OpC == PPC::CMPLD;
1633
1634 // Get the unique definition of SrcReg.
1635 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
1636 if (!MI) return false;
1637 int MIOpC = MI->getOpcode();
1638
1639 bool equalityOnly = false;
1640 bool noSub = false;
1641 if (isPPC64) {
1642 if (is32BitSignedCompare) {
1643 // We can perform this optimization only if MI is sign-extending.
1644 if (MIOpC == PPC::SRAW || MIOpC == PPC::SRAWo ||
1645 MIOpC == PPC::SRAWI || MIOpC == PPC::SRAWIo ||
1646 MIOpC == PPC::EXTSB || MIOpC == PPC::EXTSBo ||
1647 MIOpC == PPC::EXTSH || MIOpC == PPC::EXTSHo ||
1648 MIOpC == PPC::EXTSW || MIOpC == PPC::EXTSWo) {
1649 noSub = true;
1650 } else
1651 return false;
1652 } else if (is32BitUnsignedCompare) {
Kyle Butt61311282016-03-23 19:51:22 +00001653 // 32-bit rotate and mask instructions are zero extending only if MB <= ME
1654 bool isZeroExtendingRotate =
1655 (MIOpC == PPC::RLWINM || MIOpC == PPC::RLWINMo ||
1656 MIOpC == PPC::RLWNM || MIOpC == PPC::RLWNMo)
1657 && MI->getOperand(3).getImm() <= MI->getOperand(4).getImm();
1658
Hal Finkel82656cb2013-04-18 22:15:08 +00001659 // We can perform this optimization, equality only, if MI is
1660 // zero-extending.
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001661 // FIXME: Other possible target instructions include ANDISo and
1662 // RLWINM aliases, such as ROTRWI, EXTLWI, SLWI and SRWI.
Hal Finkel82656cb2013-04-18 22:15:08 +00001663 if (MIOpC == PPC::CNTLZW || MIOpC == PPC::CNTLZWo ||
1664 MIOpC == PPC::SLW || MIOpC == PPC::SLWo ||
Kyle Butt61311282016-03-23 19:51:22 +00001665 MIOpC == PPC::SRW || MIOpC == PPC::SRWo ||
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001666 MIOpC == PPC::ANDIo ||
Kyle Butt61311282016-03-23 19:51:22 +00001667 isZeroExtendingRotate) {
Hal Finkel82656cb2013-04-18 22:15:08 +00001668 noSub = true;
1669 equalityOnly = true;
1670 } else
1671 return false;
Hal Finkel08e53ee2013-05-08 12:16:14 +00001672 } else
Hal Finkel82656cb2013-04-18 22:15:08 +00001673 equalityOnly = is64BitUnsignedCompare;
Hal Finkel08e53ee2013-05-08 12:16:14 +00001674 } else
Hal Finkel82656cb2013-04-18 22:15:08 +00001675 equalityOnly = is32BitUnsignedCompare;
1676
1677 if (equalityOnly) {
1678 // We need to check the uses of the condition register in order to reject
1679 // non-equality comparisons.
Hiroshi Inoue393ef842017-07-18 13:31:40 +00001680 for (MachineRegisterInfo::use_instr_iterator
1681 I = MRI->use_instr_begin(CRReg), IE = MRI->use_instr_end();
1682 I != IE; ++I) {
Hal Finkel82656cb2013-04-18 22:15:08 +00001683 MachineInstr *UseMI = &*I;
1684 if (UseMI->getOpcode() == PPC::BCC) {
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001685 PPC::Predicate Pred = (PPC::Predicate)UseMI->getOperand(0).getImm();
1686 unsigned PredCond = PPC::getPredicateCondition(Pred);
1687 // We ignore hint bits when checking for non-equality comparisons.
1688 if (PredCond != PPC::PRED_EQ && PredCond != PPC::PRED_NE)
Hal Finkelc3632452013-05-07 17:49:55 +00001689 return false;
Hal Finkel82656cb2013-04-18 22:15:08 +00001690 } else if (UseMI->getOpcode() == PPC::ISEL ||
1691 UseMI->getOpcode() == PPC::ISEL8) {
1692 unsigned SubIdx = UseMI->getOperand(3).getSubReg();
Hal Finkelc3632452013-05-07 17:49:55 +00001693 if (SubIdx != PPC::sub_eq)
1694 return false;
Hal Finkel82656cb2013-04-18 22:15:08 +00001695 } else
1696 return false;
1697 }
1698 }
1699
Hal Finkelc3632452013-05-07 17:49:55 +00001700 MachineBasicBlock::iterator I = CmpInstr;
Hal Finkel82656cb2013-04-18 22:15:08 +00001701
1702 // Scan forward to find the first use of the compare.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001703 for (MachineBasicBlock::iterator EL = CmpInstr.getParent()->end(); I != EL;
1704 ++I) {
Hal Finkel82656cb2013-04-18 22:15:08 +00001705 bool FoundUse = false;
Hiroshi Inoue393ef842017-07-18 13:31:40 +00001706 for (MachineRegisterInfo::use_instr_iterator
1707 J = MRI->use_instr_begin(CRReg), JE = MRI->use_instr_end();
1708 J != JE; ++J)
Hal Finkel82656cb2013-04-18 22:15:08 +00001709 if (&*J == &*I) {
1710 FoundUse = true;
1711 break;
1712 }
1713
1714 if (FoundUse)
1715 break;
1716 }
1717
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001718 SmallVector<std::pair<MachineOperand*, PPC::Predicate>, 4> PredsToUpdate;
1719 SmallVector<std::pair<MachineOperand*, unsigned>, 4> SubRegsToUpdate;
1720
Hal Finkel82656cb2013-04-18 22:15:08 +00001721 // There are two possible candidates which can be changed to set CR[01].
1722 // One is MI, the other is a SUB instruction.
1723 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
Craig Topper062a2ba2014-04-25 05:30:21 +00001724 MachineInstr *Sub = nullptr;
Hal Finkel82656cb2013-04-18 22:15:08 +00001725 if (SrcReg2 != 0)
1726 // MI is not a candidate for CMPrr.
Craig Topper062a2ba2014-04-25 05:30:21 +00001727 MI = nullptr;
Hal Finkel82656cb2013-04-18 22:15:08 +00001728 // FIXME: Conservatively refuse to convert an instruction which isn't in the
1729 // same BB as the comparison. This is to allow the check below to avoid calls
1730 // (and other explicit clobbers); instead we should really check for these
1731 // more explicitly (in at least a few predecessors).
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001732 else if (MI->getParent() != CmpInstr.getParent())
Hal Finkel82656cb2013-04-18 22:15:08 +00001733 return false;
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001734 else if (Value != 0) {
1735 // The record-form instructions set CR bit based on signed comparison against 0.
1736 // We try to convert a compare against 1 or -1 into a compare against 0.
1737 bool Success = false;
1738 if (!equalityOnly && MRI->hasOneUse(CRReg)) {
1739 MachineInstr *UseMI = &*MRI->use_instr_begin(CRReg);
1740 if (UseMI->getOpcode() == PPC::BCC) {
1741 PPC::Predicate Pred = (PPC::Predicate)UseMI->getOperand(0).getImm();
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001742 unsigned PredCond = PPC::getPredicateCondition(Pred);
1743 unsigned PredHint = PPC::getPredicateHint(Pred);
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001744 int16_t Immed = (int16_t)Value;
1745
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001746 // When modyfing the condition in the predicate, we propagate hint bits
1747 // from the original predicate to the new one.
1748 if (Immed == -1 && PredCond == PPC::PRED_GT) {
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001749 // We convert "greater than -1" into "greater than or equal to 0",
1750 // since we are assuming signed comparison by !equalityOnly
1751 PredsToUpdate.push_back(std::make_pair(&(UseMI->getOperand(0)),
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001752 PPC::getPredicate(PPC::PRED_GE, PredHint)));
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001753 Success = true;
1754 }
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001755 else if (Immed == 1 && PredCond == PPC::PRED_LT) {
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001756 // We convert "less than 1" into "less than or equal to 0".
1757 PredsToUpdate.push_back(std::make_pair(&(UseMI->getOperand(0)),
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001758 PPC::getPredicate(PPC::PRED_LE, PredHint)));
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001759 Success = true;
1760 }
1761 }
1762 }
1763
1764 // PPC does not have a record-form SUBri.
1765 if (!Success)
1766 return false;
Hal Finkel82656cb2013-04-18 22:15:08 +00001767 }
1768
1769 // Search for Sub.
1770 const TargetRegisterInfo *TRI = &getRegisterInfo();
1771 --I;
Hal Finkelc3632452013-05-07 17:49:55 +00001772
1773 // Get ready to iterate backward from CmpInstr.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001774 MachineBasicBlock::iterator E = MI, B = CmpInstr.getParent()->begin();
Hal Finkelc3632452013-05-07 17:49:55 +00001775
Hal Finkel82656cb2013-04-18 22:15:08 +00001776 for (; I != E && !noSub; --I) {
1777 const MachineInstr &Instr = *I;
1778 unsigned IOpC = Instr.getOpcode();
1779
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001780 if (&*I != &CmpInstr && (Instr.modifiesRegister(PPC::CR0, TRI) ||
1781 Instr.readsRegister(PPC::CR0, TRI)))
Hal Finkel82656cb2013-04-18 22:15:08 +00001782 // This instruction modifies or uses the record condition register after
1783 // the one we want to change. While we could do this transformation, it
1784 // would likely not be profitable. This transformation removes one
1785 // instruction, and so even forcing RA to generate one move probably
1786 // makes it unprofitable.
1787 return false;
1788
1789 // Check whether CmpInstr can be made redundant by the current instruction.
1790 if ((OpC == PPC::CMPW || OpC == PPC::CMPLW ||
1791 OpC == PPC::CMPD || OpC == PPC::CMPLD) &&
1792 (IOpC == PPC::SUBF || IOpC == PPC::SUBF8) &&
1793 ((Instr.getOperand(1).getReg() == SrcReg &&
1794 Instr.getOperand(2).getReg() == SrcReg2) ||
1795 (Instr.getOperand(1).getReg() == SrcReg2 &&
1796 Instr.getOperand(2).getReg() == SrcReg))) {
1797 Sub = &*I;
1798 break;
1799 }
1800
Hal Finkel82656cb2013-04-18 22:15:08 +00001801 if (I == B)
1802 // The 'and' is below the comparison instruction.
1803 return false;
1804 }
1805
1806 // Return false if no candidates exist.
1807 if (!MI && !Sub)
1808 return false;
1809
1810 // The single candidate is called MI.
1811 if (!MI) MI = Sub;
1812
1813 int NewOpC = -1;
1814 MIOpC = MI->getOpcode();
1815 if (MIOpC == PPC::ANDIo || MIOpC == PPC::ANDIo8)
1816 NewOpC = MIOpC;
1817 else {
1818 NewOpC = PPC::getRecordFormOpcode(MIOpC);
1819 if (NewOpC == -1 && PPC::getNonRecordFormOpcode(MIOpC) != -1)
1820 NewOpC = MIOpC;
1821 }
1822
1823 // FIXME: On the non-embedded POWER architectures, only some of the record
1824 // forms are fast, and we should use only the fast ones.
1825
1826 // The defining instruction has a record form (or is already a record
1827 // form). It is possible, however, that we'll need to reverse the condition
1828 // code of the users.
1829 if (NewOpC == -1)
1830 return false;
1831
Hal Finkel82656cb2013-04-18 22:15:08 +00001832 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based on CMP
1833 // needs to be updated to be based on SUB. Push the condition code
1834 // operands to OperandsToUpdate. If it is safe to remove CmpInstr, the
1835 // condition code of these operands will be modified.
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001836 // Here, Value == 0 means we haven't converted comparison against 1 or -1 to
1837 // comparison against 0, which may modify predicate.
Hal Finkel82656cb2013-04-18 22:15:08 +00001838 bool ShouldSwap = false;
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001839 if (Sub && Value == 0) {
Hal Finkel82656cb2013-04-18 22:15:08 +00001840 ShouldSwap = SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
1841 Sub->getOperand(2).getReg() == SrcReg;
1842
1843 // The operands to subf are the opposite of sub, so only in the fixed-point
1844 // case, invert the order.
Hal Finkel08e53ee2013-05-08 12:16:14 +00001845 ShouldSwap = !ShouldSwap;
Hal Finkel82656cb2013-04-18 22:15:08 +00001846 }
1847
1848 if (ShouldSwap)
Owen Anderson16c6bf42014-03-13 23:12:04 +00001849 for (MachineRegisterInfo::use_instr_iterator
1850 I = MRI->use_instr_begin(CRReg), IE = MRI->use_instr_end();
1851 I != IE; ++I) {
Hal Finkel82656cb2013-04-18 22:15:08 +00001852 MachineInstr *UseMI = &*I;
1853 if (UseMI->getOpcode() == PPC::BCC) {
1854 PPC::Predicate Pred = (PPC::Predicate) UseMI->getOperand(0).getImm();
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001855 unsigned PredCond = PPC::getPredicateCondition(Pred);
Hal Finkele6322392013-04-19 22:08:38 +00001856 assert((!equalityOnly ||
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001857 PredCond == PPC::PRED_EQ || PredCond == PPC::PRED_NE) &&
Hal Finkele6322392013-04-19 22:08:38 +00001858 "Invalid predicate for equality-only optimization");
Hiroshi Inoue967dc582017-07-27 08:14:48 +00001859 (void)PredCond; // To suppress warning in release build.
Owen Anderson16c6bf42014-03-13 23:12:04 +00001860 PredsToUpdate.push_back(std::make_pair(&(UseMI->getOperand(0)),
Hal Finkel0f64e212013-04-20 05:16:26 +00001861 PPC::getSwappedPredicate(Pred)));
Hal Finkel82656cb2013-04-18 22:15:08 +00001862 } else if (UseMI->getOpcode() == PPC::ISEL ||
1863 UseMI->getOpcode() == PPC::ISEL8) {
Hal Finkele6322392013-04-19 22:08:38 +00001864 unsigned NewSubReg = UseMI->getOperand(3).getSubReg();
1865 assert((!equalityOnly || NewSubReg == PPC::sub_eq) &&
1866 "Invalid CR bit for equality-only optimization");
1867
1868 if (NewSubReg == PPC::sub_lt)
1869 NewSubReg = PPC::sub_gt;
1870 else if (NewSubReg == PPC::sub_gt)
1871 NewSubReg = PPC::sub_lt;
1872
Owen Anderson16c6bf42014-03-13 23:12:04 +00001873 SubRegsToUpdate.push_back(std::make_pair(&(UseMI->getOperand(3)),
Hal Finkele6322392013-04-19 22:08:38 +00001874 NewSubReg));
Hal Finkel82656cb2013-04-18 22:15:08 +00001875 } else // We need to abort on a user we don't understand.
1876 return false;
1877 }
Hiroshi Inoue37e63b12017-05-21 06:00:05 +00001878 assert(!(Value != 0 && ShouldSwap) &&
1879 "Non-zero immediate support and ShouldSwap"
1880 "may conflict in updating predicate");
Hal Finkel82656cb2013-04-18 22:15:08 +00001881
1882 // Create a new virtual register to hold the value of the CR set by the
1883 // record-form instruction. If the instruction was not previously in
1884 // record form, then set the kill flag on the CR.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001885 CmpInstr.eraseFromParent();
Hal Finkel82656cb2013-04-18 22:15:08 +00001886
1887 MachineBasicBlock::iterator MII = MI;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001888 BuildMI(*MI->getParent(), std::next(MII), MI->getDebugLoc(),
Hal Finkel82656cb2013-04-18 22:15:08 +00001889 get(TargetOpcode::COPY), CRReg)
Hal Finkel08e53ee2013-05-08 12:16:14 +00001890 .addReg(PPC::CR0, MIOpC != NewOpC ? RegState::Kill : 0);
Hal Finkel82656cb2013-04-18 22:15:08 +00001891
Chuang-Yu Cheng94f58e72016-04-12 03:10:52 +00001892 // Even if CR0 register were dead before, it is alive now since the
1893 // instruction we just built uses it.
1894 MI->clearRegisterDeads(PPC::CR0);
1895
Hal Finkel82656cb2013-04-18 22:15:08 +00001896 if (MIOpC != NewOpC) {
1897 // We need to be careful here: we're replacing one instruction with
1898 // another, and we need to make sure that we get all of the right
1899 // implicit uses and defs. On the other hand, the caller may be holding
1900 // an iterator to this instruction, and so we can't delete it (this is
1901 // specifically the case if this is the instruction directly after the
1902 // compare).
1903
1904 const MCInstrDesc &NewDesc = get(NewOpC);
1905 MI->setDesc(NewDesc);
1906
1907 if (NewDesc.ImplicitDefs)
Craig Toppere5e035a32015-12-05 07:13:35 +00001908 for (const MCPhysReg *ImpDefs = NewDesc.getImplicitDefs();
Hal Finkel82656cb2013-04-18 22:15:08 +00001909 *ImpDefs; ++ImpDefs)
1910 if (!MI->definesRegister(*ImpDefs))
1911 MI->addOperand(*MI->getParent()->getParent(),
1912 MachineOperand::CreateReg(*ImpDefs, true, true));
1913 if (NewDesc.ImplicitUses)
Craig Toppere5e035a32015-12-05 07:13:35 +00001914 for (const MCPhysReg *ImpUses = NewDesc.getImplicitUses();
Hal Finkel82656cb2013-04-18 22:15:08 +00001915 *ImpUses; ++ImpUses)
1916 if (!MI->readsRegister(*ImpUses))
1917 MI->addOperand(*MI->getParent()->getParent(),
1918 MachineOperand::CreateReg(*ImpUses, false, true));
1919 }
Keno Fischer55734832016-06-01 20:31:07 +00001920 assert(MI->definesRegister(PPC::CR0) &&
1921 "Record-form instruction does not define cr0?");
Hal Finkel82656cb2013-04-18 22:15:08 +00001922
1923 // Modify the condition code of operands in OperandsToUpdate.
1924 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
1925 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
Hal Finkele6322392013-04-19 22:08:38 +00001926 for (unsigned i = 0, e = PredsToUpdate.size(); i < e; i++)
1927 PredsToUpdate[i].first->setImm(PredsToUpdate[i].second);
Hal Finkel82656cb2013-04-18 22:15:08 +00001928
Hal Finkele6322392013-04-19 22:08:38 +00001929 for (unsigned i = 0, e = SubRegsToUpdate.size(); i < e; i++)
1930 SubRegsToUpdate[i].first->setSubReg(SubRegsToUpdate[i].second);
Hal Finkel82656cb2013-04-18 22:15:08 +00001931
1932 return true;
1933}
1934
Nicolas Geoffrayae84bbd2008-04-16 20:10:13 +00001935/// GetInstSize - Return the number of bytes of code the specified
1936/// instruction may be. This returns the maximum number of bytes.
1937///
Sjoerd Meijer89217f82016-07-28 16:32:22 +00001938unsigned PPCInstrInfo::getInstSizeInBytes(const MachineInstr &MI) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001939 unsigned Opcode = MI.getOpcode();
Hal Finkela7bbaf62014-02-02 06:12:27 +00001940
1941 if (Opcode == PPC::INLINEASM) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001942 const MachineFunction *MF = MI.getParent()->getParent();
1943 const char *AsmStr = MI.getOperand(0).getSymbolName();
Chris Lattner7b26fce2009-08-22 20:48:53 +00001944 return getInlineAsmLength(AsmStr, *MF->getTarget().getMCAsmInfo());
Hal Finkel934361a2015-01-14 01:07:51 +00001945 } else if (Opcode == TargetOpcode::STACKMAP) {
Philip Reamese83c4b32016-08-23 23:33:29 +00001946 StackMapOpers Opers(&MI);
1947 return Opers.getNumPatchBytes();
Hal Finkel934361a2015-01-14 01:07:51 +00001948 } else if (Opcode == TargetOpcode::PATCHPOINT) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001949 PatchPointOpers Opers(&MI);
Philip Reamese83c4b32016-08-23 23:33:29 +00001950 return Opers.getNumPatchBytes();
Hal Finkela7bbaf62014-02-02 06:12:27 +00001951 } else {
Eric Christopherf48ef332017-03-27 22:40:51 +00001952 return get(Opcode).getSize();
Nicolas Geoffrayae84bbd2008-04-16 20:10:13 +00001953 }
1954}
Hal Finkelb5aa7e52013-04-08 16:24:03 +00001955
Hal Finkel2d556982015-08-30 07:50:35 +00001956std::pair<unsigned, unsigned>
1957PPCInstrInfo::decomposeMachineOperandsTargetFlags(unsigned TF) const {
1958 const unsigned Mask = PPCII::MO_ACCESS_MASK;
1959 return std::make_pair(TF & Mask, TF & ~Mask);
1960}
1961
1962ArrayRef<std::pair<unsigned, const char *>>
1963PPCInstrInfo::getSerializableDirectMachineOperandTargetFlags() const {
1964 using namespace PPCII;
Hal Finkel982e8d42015-08-30 08:07:29 +00001965 static const std::pair<unsigned, const char *> TargetFlags[] = {
Hal Finkel2d556982015-08-30 07:50:35 +00001966 {MO_LO, "ppc-lo"},
1967 {MO_HA, "ppc-ha"},
1968 {MO_TPREL_LO, "ppc-tprel-lo"},
1969 {MO_TPREL_HA, "ppc-tprel-ha"},
1970 {MO_DTPREL_LO, "ppc-dtprel-lo"},
1971 {MO_TLSLD_LO, "ppc-tlsld-lo"},
1972 {MO_TOC_LO, "ppc-toc-lo"},
1973 {MO_TLS, "ppc-tls"}};
1974 return makeArrayRef(TargetFlags);
1975}
1976
1977ArrayRef<std::pair<unsigned, const char *>>
1978PPCInstrInfo::getSerializableBitmaskMachineOperandTargetFlags() const {
1979 using namespace PPCII;
Hal Finkel982e8d42015-08-30 08:07:29 +00001980 static const std::pair<unsigned, const char *> TargetFlags[] = {
Rafael Espindolaa99ccfc2016-06-29 14:59:50 +00001981 {MO_PLT, "ppc-plt"},
Hal Finkel2d556982015-08-30 07:50:35 +00001982 {MO_PIC_FLAG, "ppc-pic"},
1983 {MO_NLP_FLAG, "ppc-nlp"},
1984 {MO_NLP_HIDDEN_FLAG, "ppc-nlp-hidden"}};
1985 return makeArrayRef(TargetFlags);
1986}
1987
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001988bool PPCInstrInfo::expandPostRAPseudo(MachineInstr &MI) const {
Tim Shen3bef27c2017-05-16 20:18:06 +00001989 auto &MBB = *MI.getParent();
1990 auto DL = MI.getDebugLoc();
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001991 switch (MI.getOpcode()) {
Tim Shena1d8bc52016-04-19 20:14:52 +00001992 case TargetOpcode::LOAD_STACK_GUARD: {
1993 assert(Subtarget.isTargetLinux() &&
1994 "Only Linux target is expected to contain LOAD_STACK_GUARD");
1995 const int64_t Offset = Subtarget.isPPC64() ? -0x7010 : -0x7008;
1996 const unsigned Reg = Subtarget.isPPC64() ? PPC::X13 : PPC::R2;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001997 MI.setDesc(get(Subtarget.isPPC64() ? PPC::LD : PPC::LWZ));
1998 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
Tim Shena1d8bc52016-04-19 20:14:52 +00001999 .addImm(Offset)
2000 .addReg(Reg);
2001 return true;
2002 }
Nemanja Ivanovic6354d232016-10-04 11:25:52 +00002003 case PPC::DFLOADf32:
2004 case PPC::DFLOADf64:
2005 case PPC::DFSTOREf32:
2006 case PPC::DFSTOREf64: {
2007 assert(Subtarget.hasP9Vector() &&
2008 "Invalid D-Form Pseudo-ops on non-P9 target.");
Hiroshi Inouee3c14eb2017-05-29 07:12:39 +00002009 assert(MI.getOperand(2).isReg() && MI.getOperand(1).isImm() &&
2010 "D-form op must have register and immediate operands");
Nemanja Ivanovic6354d232016-10-04 11:25:52 +00002011 unsigned UpperOpcode, LowerOpcode;
2012 switch (MI.getOpcode()) {
2013 case PPC::DFLOADf32:
2014 UpperOpcode = PPC::LXSSP;
2015 LowerOpcode = PPC::LFS;
2016 break;
2017 case PPC::DFLOADf64:
2018 UpperOpcode = PPC::LXSD;
2019 LowerOpcode = PPC::LFD;
2020 break;
2021 case PPC::DFSTOREf32:
2022 UpperOpcode = PPC::STXSSP;
2023 LowerOpcode = PPC::STFS;
2024 break;
2025 case PPC::DFSTOREf64:
2026 UpperOpcode = PPC::STXSD;
2027 LowerOpcode = PPC::STFD;
2028 break;
2029 }
2030 unsigned TargetReg = MI.getOperand(0).getReg();
2031 unsigned Opcode;
2032 if ((TargetReg >= PPC::F0 && TargetReg <= PPC::F31) ||
2033 (TargetReg >= PPC::VSL0 && TargetReg <= PPC::VSL31))
2034 Opcode = LowerOpcode;
2035 else
2036 Opcode = UpperOpcode;
2037 MI.setDesc(get(Opcode));
2038 return true;
2039 }
Zaara Syedafcd96972017-09-21 16:12:33 +00002040 case PPC::SPILLTOVSR_LD: {
2041 unsigned TargetReg = MI.getOperand(0).getReg();
2042 if (PPC::VSFRCRegClass.contains(TargetReg)) {
2043 MI.setDesc(get(PPC::DFLOADf64));
2044 return expandPostRAPseudo(MI);
2045 }
2046 else
2047 MI.setDesc(get(PPC::LD));
2048 return true;
2049 }
2050 case PPC::SPILLTOVSR_ST: {
2051 unsigned SrcReg = MI.getOperand(0).getReg();
2052 if (PPC::VSFRCRegClass.contains(SrcReg)) {
2053 NumStoreSPILLVSRRCAsVec++;
2054 MI.setDesc(get(PPC::DFSTOREf64));
2055 return expandPostRAPseudo(MI);
2056 } else {
2057 NumStoreSPILLVSRRCAsGpr++;
2058 MI.setDesc(get(PPC::STD));
2059 }
2060 return true;
2061 }
2062 case PPC::SPILLTOVSR_LDX: {
2063 unsigned TargetReg = MI.getOperand(0).getReg();
2064 if (PPC::VSFRCRegClass.contains(TargetReg))
2065 MI.setDesc(get(PPC::LXSDX));
2066 else
2067 MI.setDesc(get(PPC::LDX));
2068 return true;
2069 }
2070 case PPC::SPILLTOVSR_STX: {
2071 unsigned SrcReg = MI.getOperand(0).getReg();
2072 if (PPC::VSFRCRegClass.contains(SrcReg)) {
2073 NumStoreSPILLVSRRCAsVec++;
2074 MI.setDesc(get(PPC::STXSDX));
2075 } else {
2076 NumStoreSPILLVSRRCAsGpr++;
2077 MI.setDesc(get(PPC::STDX));
2078 }
2079 return true;
2080 }
2081
Tim Shen3bef27c2017-05-16 20:18:06 +00002082 case PPC::CFENCE8: {
2083 auto Val = MI.getOperand(0).getReg();
Hiroshi Inoue7a08bb12017-06-15 16:51:28 +00002084 BuildMI(MBB, MI, DL, get(PPC::CMPD), PPC::CR7).addReg(Val).addReg(Val);
Tim Shen3bef27c2017-05-16 20:18:06 +00002085 BuildMI(MBB, MI, DL, get(PPC::CTRL_DEP))
2086 .addImm(PPC::PRED_NE_MINUS)
2087 .addReg(PPC::CR7)
2088 .addImm(1);
2089 MI.setDesc(get(PPC::ISYNC));
2090 MI.RemoveOperand(0);
2091 return true;
2092 }
Tim Shena1d8bc52016-04-19 20:14:52 +00002093 }
2094 return false;
2095}
Nemanja Ivanovic11049f82016-10-04 06:59:23 +00002096
2097const TargetRegisterClass *
2098PPCInstrInfo::updatedRC(const TargetRegisterClass *RC) const {
2099 if (Subtarget.hasVSX() && RC == &PPC::VRRCRegClass)
2100 return &PPC::VSRCRegClass;
2101 return RC;
2102}
Nemanja Ivanovice597bd82017-05-31 05:40:25 +00002103
2104int PPCInstrInfo::getRecordFormOpcode(unsigned Opcode) {
2105 return PPC::getRecordFormOpcode(Opcode);
2106}
Hiroshi Inouee3a3e3c2017-10-16 04:12:57 +00002107
2108// This function returns true if the machine instruction
2109// always outputs a value by sign-extending a 32 bit value,
2110// i.e. 0 to 31-th bits are same as 32-th bit.
2111static bool isSignExtendingOp(const MachineInstr &MI) {
2112 int Opcode = MI.getOpcode();
2113 if (Opcode == PPC::LI || Opcode == PPC::LI8 ||
2114 Opcode == PPC::LIS || Opcode == PPC::LIS8 ||
2115 Opcode == PPC::SRAW || Opcode == PPC::SRAWo ||
2116 Opcode == PPC::SRAWI || Opcode == PPC::SRAWIo ||
2117 Opcode == PPC::LWA || Opcode == PPC::LWAX ||
2118 Opcode == PPC::LWA_32 || Opcode == PPC::LWAX_32 ||
2119 Opcode == PPC::LHA || Opcode == PPC::LHAX ||
2120 Opcode == PPC::LHA8 || Opcode == PPC::LHAX8 ||
2121 Opcode == PPC::LBZ || Opcode == PPC::LBZX ||
2122 Opcode == PPC::LBZ8 || Opcode == PPC::LBZX8 ||
2123 Opcode == PPC::LBZU || Opcode == PPC::LBZUX ||
2124 Opcode == PPC::LBZU8 || Opcode == PPC::LBZUX8 ||
2125 Opcode == PPC::LHZ || Opcode == PPC::LHZX ||
2126 Opcode == PPC::LHZ8 || Opcode == PPC::LHZX8 ||
2127 Opcode == PPC::LHZU || Opcode == PPC::LHZUX ||
2128 Opcode == PPC::LHZU8 || Opcode == PPC::LHZUX8 ||
2129 Opcode == PPC::EXTSB || Opcode == PPC::EXTSBo ||
2130 Opcode == PPC::EXTSH || Opcode == PPC::EXTSHo ||
2131 Opcode == PPC::EXTSB8 || Opcode == PPC::EXTSH8 ||
2132 Opcode == PPC::EXTSW || Opcode == PPC::EXTSWo ||
2133 Opcode == PPC::EXTSH8_32_64 || Opcode == PPC::EXTSW_32_64 ||
2134 Opcode == PPC::EXTSB8_32_64)
2135 return true;
2136
2137 if (Opcode == PPC::RLDICL && MI.getOperand(3).getImm() >= 33)
2138 return true;
2139
2140 if ((Opcode == PPC::RLWINM || Opcode == PPC::RLWINMo ||
2141 Opcode == PPC::RLWNM || Opcode == PPC::RLWNMo) &&
2142 MI.getOperand(3).getImm() > 0 &&
2143 MI.getOperand(3).getImm() <= MI.getOperand(4).getImm())
2144 return true;
2145
2146 return false;
2147}
2148
2149// This function returns true if the machine instruction
2150// always outputs zeros in higher 32 bits.
2151static bool isZeroExtendingOp(const MachineInstr &MI) {
2152 int Opcode = MI.getOpcode();
2153 // The 16-bit immediate is sign-extended in li/lis.
2154 // If the most significant bit is zero, all higher bits are zero.
2155 if (Opcode == PPC::LI || Opcode == PPC::LI8 ||
2156 Opcode == PPC::LIS || Opcode == PPC::LIS8) {
2157 int64_t Imm = MI.getOperand(1).getImm();
2158 if (((uint64_t)Imm & ~0x7FFFuLL) == 0)
2159 return true;
2160 }
2161
2162 // We have some variations of rotate-and-mask instructions
2163 // that clear higher 32-bits.
2164 if ((Opcode == PPC::RLDICL || Opcode == PPC::RLDICLo ||
2165 Opcode == PPC::RLDCL || Opcode == PPC::RLDCLo ||
2166 Opcode == PPC::RLDICL_32_64) &&
2167 MI.getOperand(3).getImm() >= 32)
2168 return true;
2169
2170 if ((Opcode == PPC::RLDIC || Opcode == PPC::RLDICo) &&
2171 MI.getOperand(3).getImm() >= 32 &&
2172 MI.getOperand(3).getImm() <= 63 - MI.getOperand(2).getImm())
2173 return true;
2174
2175 if ((Opcode == PPC::RLWINM || Opcode == PPC::RLWINMo ||
2176 Opcode == PPC::RLWNM || Opcode == PPC::RLWNMo ||
2177 Opcode == PPC::RLWINM8 || Opcode == PPC::RLWNM8) &&
2178 MI.getOperand(3).getImm() <= MI.getOperand(4).getImm())
2179 return true;
2180
2181 // There are other instructions that clear higher 32-bits.
2182 if (Opcode == PPC::CNTLZW || Opcode == PPC::CNTLZWo ||
2183 Opcode == PPC::CNTTZW || Opcode == PPC::CNTTZWo ||
2184 Opcode == PPC::CNTLZW8 || Opcode == PPC::CNTTZW8 ||
2185 Opcode == PPC::CNTLZD || Opcode == PPC::CNTLZDo ||
2186 Opcode == PPC::CNTTZD || Opcode == PPC::CNTTZDo ||
2187 Opcode == PPC::POPCNTD || Opcode == PPC::POPCNTW ||
2188 Opcode == PPC::SLW || Opcode == PPC::SLWo ||
2189 Opcode == PPC::SRW || Opcode == PPC::SRWo ||
2190 Opcode == PPC::SLW8 || Opcode == PPC::SRW8 ||
2191 Opcode == PPC::SLWI || Opcode == PPC::SLWIo ||
2192 Opcode == PPC::SRWI || Opcode == PPC::SRWIo ||
2193 Opcode == PPC::LWZ || Opcode == PPC::LWZX ||
2194 Opcode == PPC::LWZU || Opcode == PPC::LWZUX ||
2195 Opcode == PPC::LWBRX || Opcode == PPC::LHBRX ||
2196 Opcode == PPC::LHZ || Opcode == PPC::LHZX ||
2197 Opcode == PPC::LHZU || Opcode == PPC::LHZUX ||
2198 Opcode == PPC::LBZ || Opcode == PPC::LBZX ||
2199 Opcode == PPC::LBZU || Opcode == PPC::LBZUX ||
2200 Opcode == PPC::LWZ8 || Opcode == PPC::LWZX8 ||
2201 Opcode == PPC::LWZU8 || Opcode == PPC::LWZUX8 ||
2202 Opcode == PPC::LWBRX8 || Opcode == PPC::LHBRX8 ||
2203 Opcode == PPC::LHZ8 || Opcode == PPC::LHZX8 ||
2204 Opcode == PPC::LHZU8 || Opcode == PPC::LHZUX8 ||
2205 Opcode == PPC::LBZ8 || Opcode == PPC::LBZX8 ||
2206 Opcode == PPC::LBZU8 || Opcode == PPC::LBZUX8 ||
2207 Opcode == PPC::ANDIo || Opcode == PPC::ANDISo ||
2208 Opcode == PPC::ROTRWI || Opcode == PPC::ROTRWIo ||
2209 Opcode == PPC::EXTLWI || Opcode == PPC::EXTLWIo ||
2210 Opcode == PPC::MFVSRWZ)
2211 return true;
2212
2213 return false;
2214}
2215
2216// We limit the max depth to track incoming values of PHIs or binary ops
2217// (e.g. AND) to avoid exsessive cost.
2218const unsigned MAX_DEPTH = 1;
2219
2220bool
2221PPCInstrInfo::isSignOrZeroExtended(const MachineInstr &MI, bool SignExt,
2222 const unsigned Depth) const {
2223 const MachineFunction *MF = MI.getParent()->getParent();
2224 const MachineRegisterInfo *MRI = &MF->getRegInfo();
2225
2226 switch (MI.getOpcode()) {
2227 case PPC::COPY: {
2228 unsigned SrcReg = MI.getOperand(1).getReg();
2229
2230 // In both ELFv1 and v2 ABI, method parameters and the return value
2231 // are sign- or zero-extended.
2232 if (MF->getSubtarget<PPCSubtarget>().isSVR4ABI()) {
2233 const PPCFunctionInfo *FuncInfo = MF->getInfo<PPCFunctionInfo>();
2234 // We check the ZExt/SExt flags for a method parameter.
2235 if (MI.getParent()->getBasicBlock() ==
2236 &MF->getFunction()->getEntryBlock()) {
2237 unsigned VReg = MI.getOperand(0).getReg();
2238 if (MF->getRegInfo().isLiveIn(VReg))
2239 return SignExt ? FuncInfo->isLiveInSExt(VReg) :
2240 FuncInfo->isLiveInZExt(VReg);
2241 }
2242
2243 // For a method return value, we check the ZExt/SExt flags in attribute.
2244 // We assume the following code sequence for method call.
2245 // ADJCALLSTACKDOWN 32, %R1<imp-def,dead>, %R1<imp-use>
2246 // BL8_NOP <ga:@func>,...
2247 // ADJCALLSTACKUP 32, 0, %R1<imp-def,dead>, %R1<imp-use>
2248 // %vreg5<def> = COPY %X3; G8RC:%vreg5
2249 if (SrcReg == PPC::X3) {
2250 const MachineBasicBlock *MBB = MI.getParent();
2251 MachineBasicBlock::const_instr_iterator II =
2252 MachineBasicBlock::const_instr_iterator(&MI);
2253 if (II != MBB->instr_begin() &&
2254 (--II)->getOpcode() == PPC::ADJCALLSTACKUP) {
2255 const MachineInstr &CallMI = *(--II);
2256 if (CallMI.isCall() && CallMI.getOperand(0).isGlobal()) {
2257 const Function *CalleeFn =
2258 dyn_cast<Function>(CallMI.getOperand(0).getGlobal());
Hiroshi Inouea7eb78b2017-10-16 12:11:15 +00002259 if (!CalleeFn)
2260 return false;
Hiroshi Inouee3a3e3c2017-10-16 04:12:57 +00002261 const IntegerType *IntTy =
2262 dyn_cast<IntegerType>(CalleeFn->getReturnType());
2263 const AttributeSet &Attrs =
2264 CalleeFn->getAttributes().getRetAttributes();
2265 if (IntTy && IntTy->getBitWidth() <= 32)
2266 return Attrs.hasAttribute(SignExt ? Attribute::SExt :
2267 Attribute::ZExt);
2268 }
2269 }
2270 }
2271 }
2272
2273 // If this is a copy from another register, we recursively check source.
2274 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
2275 return false;
2276 const MachineInstr *SrcMI = MRI->getVRegDef(SrcReg);
2277 if (SrcMI != NULL)
2278 return isSignOrZeroExtended(*SrcMI, SignExt, Depth);
2279
2280 return false;
2281 }
2282
2283 case PPC::ANDIo:
2284 case PPC::ANDISo:
2285 case PPC::ORI:
2286 case PPC::ORIS:
2287 case PPC::XORI:
2288 case PPC::XORIS:
2289 case PPC::ANDIo8:
2290 case PPC::ANDISo8:
2291 case PPC::ORI8:
2292 case PPC::ORIS8:
2293 case PPC::XORI8:
2294 case PPC::XORIS8: {
2295 // logical operation with 16-bit immediate does not change the upper bits.
2296 // So, we track the operand register as we do for register copy.
2297 unsigned SrcReg = MI.getOperand(1).getReg();
2298 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
2299 return false;
2300 const MachineInstr *SrcMI = MRI->getVRegDef(SrcReg);
2301 if (SrcMI != NULL)
2302 return isSignOrZeroExtended(*SrcMI, SignExt, Depth);
2303
2304 return false;
2305 }
2306
2307 // If all incoming values are sign-/zero-extended,
2308 // the output of AND, OR, ISEL or PHI is also sign-/zero-extended.
2309 case PPC::AND:
2310 case PPC::AND8:
2311 case PPC::OR:
2312 case PPC::OR8:
2313 case PPC::ISEL:
2314 case PPC::PHI: {
2315 if (Depth >= MAX_DEPTH)
2316 return false;
2317
2318 // The input registers for PHI are operand 1, 3, ...
2319 // The input registers for others are operand 1 and 2.
2320 unsigned E = 3, D = 1;
2321 if (MI.getOpcode() == PPC::PHI) {
2322 E = MI.getNumOperands();
2323 D = 2;
2324 }
2325
2326 for (unsigned I = 1; I != E; I += D) {
2327 if (MI.getOperand(I).isReg()) {
2328 unsigned SrcReg = MI.getOperand(I).getReg();
2329 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
2330 return false;
2331 const MachineInstr *SrcMI = MRI->getVRegDef(SrcReg);
2332 if (SrcMI == NULL || !isSignOrZeroExtended(*SrcMI, SignExt, Depth+1))
2333 return false;
2334 }
2335 else
2336 return false;
2337 }
2338 return true;
2339 }
2340
2341 default:
2342 return SignExt?isSignExtendingOp(MI):
2343 isZeroExtendingOp(MI);
2344 }
2345 return false;
2346}