LLVM 23.0.0git
PPCInstrInfo.cpp
Go to the documentation of this file.
1//===-- PPCInstrInfo.cpp - PowerPC Instruction Information ----------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains the PowerPC implementation of the TargetInstrInfo class.
10//
11//===----------------------------------------------------------------------===//
12
13#include "PPCInstrInfo.h"
15#include "PPC.h"
17#include "PPCInstrBuilder.h"
19#include "PPCTargetMachine.h"
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/ADT/Statistic.h"
37#include "llvm/IR/Module.h"
38#include "llvm/MC/MCInst.h"
41#include "llvm/Support/Debug.h"
44
45using namespace llvm;
46
47#define DEBUG_TYPE "ppc-instr-info"
48
49#define GET_INSTRMAP_INFO
50#define GET_INSTRINFO_CTOR_DTOR
51#include "PPCGenInstrInfo.inc"
52
53STATISTIC(NumStoreSPILLVSRRCAsVec,
54 "Number of spillvsrrc spilled to stack as vec");
55STATISTIC(NumStoreSPILLVSRRCAsGpr,
56 "Number of spillvsrrc spilled to stack as gpr");
57STATISTIC(NumGPRtoVSRSpill, "Number of gpr spills to spillvsrrc");
58STATISTIC(CmpIselsConverted,
59 "Number of ISELs that depend on comparison of constants converted");
60STATISTIC(MissedConvertibleImmediateInstrs,
61 "Number of compare-immediate instructions fed by constants");
62STATISTIC(NumRcRotatesConvertedToRcAnd,
63 "Number of record-form rotates converted to record-form andi");
64
65static cl::
66opt<bool> DisableCTRLoopAnal("disable-ppc-ctrloop-analysis", cl::Hidden,
67 cl::desc("Disable analysis for CTR loops"));
68
69static cl::opt<bool> DisableCmpOpt("disable-ppc-cmp-opt",
70cl::desc("Disable compare instruction optimization"), cl::Hidden);
71
72static cl::opt<bool> VSXSelfCopyCrash("crash-on-ppc-vsx-self-copy",
73cl::desc("Causes the backend to crash instead of generating a nop VSX copy"),
75
76static cl::opt<bool>
77UseOldLatencyCalc("ppc-old-latency-calc", cl::Hidden,
78 cl::desc("Use the old (incorrect) instruction latency calculation"));
79
80static cl::opt<float>
81 FMARPFactor("ppc-fma-rp-factor", cl::Hidden, cl::init(1.5),
82 cl::desc("register pressure factor for the transformations."));
83
85 "ppc-fma-rp-reduction", cl::Hidden, cl::init(true),
86 cl::desc("enable register pressure reduce in machine combiner pass."));
87
88// Pin the vtable to this file.
89void PPCInstrInfo::anchor() {}
90
92 : PPCGenInstrInfo(STI, RI, PPC::ADJCALLSTACKDOWN, PPC::ADJCALLSTACKUP,
93 /* CatchRetOpcode */ -1,
94 STI.isPPC64() ? PPC::BLR8 : PPC::BLR),
95 Subtarget(STI), RI(STI.getTargetMachine()) {}
96
97/// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
98/// this target when scheduling the DAG.
101 const ScheduleDAG *DAG) const {
102 unsigned Directive =
103 static_cast<const PPCSubtarget *>(STI)->getCPUDirective();
106 const InstrItineraryData *II =
107 static_cast<const PPCSubtarget *>(STI)->getInstrItineraryData();
108 return new ScoreboardHazardRecognizer(II, DAG);
109 }
110
112}
113
114/// CreateTargetPostRAHazardRecognizer - Return the postRA hazard recognizer
115/// to use for this target when scheduling the DAG.
118 const ScheduleDAG *DAG) const {
119 unsigned Directive =
120 DAG->MF.getSubtarget<PPCSubtarget>().getCPUDirective();
121
122 // FIXME: Leaving this as-is until we have POWER9 scheduling info
124 return new PPCDispatchGroupSBHazardRecognizer(II, DAG);
125
126 // Most subtargets use a PPC970 recognizer.
129 assert(DAG->TII && "No InstrInfo?");
130
131 return new PPCHazardRecognizer970(*DAG);
132 }
133
134 return new ScoreboardHazardRecognizer(II, DAG);
135}
136
138 const MachineInstr &MI,
139 unsigned *PredCost) const {
140 if (!ItinData || UseOldLatencyCalc)
141 return PPCGenInstrInfo::getInstrLatency(ItinData, MI, PredCost);
142
143 // The default implementation of getInstrLatency calls getStageLatency, but
144 // getStageLatency does not do the right thing for us. While we have
145 // itinerary, most cores are fully pipelined, and so the itineraries only
146 // express the first part of the pipeline, not every stage. Instead, we need
147 // to use the listed output operand cycle number (using operand 0 here, which
148 // is an output).
149
150 unsigned Latency = 1;
151 unsigned DefClass = MI.getDesc().getSchedClass();
152 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
153 const MachineOperand &MO = MI.getOperand(i);
154 if (!MO.isReg() || !MO.isDef() || MO.isImplicit())
155 continue;
156
157 std::optional<unsigned> Cycle = ItinData->getOperandCycle(DefClass, i);
158 if (!Cycle)
159 continue;
160
161 Latency = std::max(Latency, *Cycle);
162 }
163
164 return Latency;
165}
166
167std::optional<unsigned> PPCInstrInfo::getOperandLatency(
168 const InstrItineraryData *ItinData, const MachineInstr &DefMI,
169 unsigned DefIdx, const MachineInstr &UseMI, unsigned UseIdx) const {
170 std::optional<unsigned> Latency = PPCGenInstrInfo::getOperandLatency(
171 ItinData, DefMI, DefIdx, UseMI, UseIdx);
172
173 if (!DefMI.getParent())
174 return Latency;
175
176 const MachineOperand &DefMO = DefMI.getOperand(DefIdx);
177 Register Reg = DefMO.getReg();
178
179 bool IsRegCR;
180 if (Reg.isVirtual()) {
181 const MachineRegisterInfo *MRI =
182 &DefMI.getParent()->getParent()->getRegInfo();
183 IsRegCR = MRI->getRegClass(Reg)->hasSuperClassEq(&PPC::CRRCRegClass) ||
184 MRI->getRegClass(Reg)->hasSuperClassEq(&PPC::CRBITRCRegClass);
185 } else {
186 IsRegCR = PPC::CRRCRegClass.contains(Reg) ||
187 PPC::CRBITRCRegClass.contains(Reg);
188 }
189
190 if (UseMI.isBranch() && IsRegCR) {
191 if (!Latency)
192 Latency = getInstrLatency(ItinData, DefMI);
193
194 // On some cores, there is an additional delay between writing to a condition
195 // register, and using it from a branch.
196 unsigned Directive = Subtarget.getCPUDirective();
197 switch (Directive) {
198 default: break;
199 case PPC::DIR_7400:
200 case PPC::DIR_750:
201 case PPC::DIR_970:
202 case PPC::DIR_E5500:
203 case PPC::DIR_PWR4:
204 case PPC::DIR_PWR5:
205 case PPC::DIR_PWR5X:
206 case PPC::DIR_PWR6:
207 case PPC::DIR_PWR6X:
208 case PPC::DIR_PWR7:
209 case PPC::DIR_PWR8:
210 // FIXME: Is this needed for POWER9?
211 Latency = *Latency + 2;
212 break;
213 }
214 }
215
216 return Latency;
217}
218
220 uint32_t Flags) const {
221 MI.setFlags(Flags);
225}
226
227// This function does not list all associative and commutative operations, but
228// only those worth feeding through the machine combiner in an attempt to
229// reduce the critical path. Mostly, this means floating-point operations,
230// because they have high latencies(>=5) (compared to other operations, such as
231// and/or, which are also associative and commutative, but have low latencies).
233 bool Invert) const {
234 if (Invert)
235 return false;
236 switch (Inst.getOpcode()) {
237 // Floating point:
238 // FP Add:
239 case PPC::FADD:
240 case PPC::FADDS:
241 // FP Multiply:
242 case PPC::FMUL:
243 case PPC::FMULS:
244 // Altivec Add:
245 case PPC::VADDFP:
246 // VSX Add:
247 case PPC::XSADDDP:
248 case PPC::XVADDDP:
249 case PPC::XVADDSP:
250 case PPC::XSADDSP:
251 // VSX Multiply:
252 case PPC::XSMULDP:
253 case PPC::XVMULDP:
254 case PPC::XVMULSP:
255 case PPC::XSMULSP:
258 // Fixed point:
259 // Multiply:
260 case PPC::MULHD:
261 case PPC::MULLD:
262 case PPC::MULHW:
263 case PPC::MULLW:
264 return true;
265 default:
266 return false;
267 }
268}
269
270#define InfoArrayIdxFMAInst 0
271#define InfoArrayIdxFAddInst 1
272#define InfoArrayIdxFMULInst 2
273#define InfoArrayIdxAddOpIdx 3
274#define InfoArrayIdxMULOpIdx 4
275#define InfoArrayIdxFSubInst 5
276// Array keeps info for FMA instructions:
277// Index 0(InfoArrayIdxFMAInst): FMA instruction;
278// Index 1(InfoArrayIdxFAddInst): ADD instruction associated with FMA;
279// Index 2(InfoArrayIdxFMULInst): MUL instruction associated with FMA;
280// Index 3(InfoArrayIdxAddOpIdx): ADD operand index in FMA operands;
281// Index 4(InfoArrayIdxMULOpIdx): first MUL operand index in FMA operands;
282// second MUL operand index is plus 1;
283// Index 5(InfoArrayIdxFSubInst): SUB instruction associated with FMA.
284static const uint16_t FMAOpIdxInfo[][6] = {
285 // FIXME: Add more FMA instructions like XSNMADDADP and so on.
286 {PPC::XSMADDADP, PPC::XSADDDP, PPC::XSMULDP, 1, 2, PPC::XSSUBDP},
287 {PPC::XSMADDASP, PPC::XSADDSP, PPC::XSMULSP, 1, 2, PPC::XSSUBSP},
288 {PPC::XVMADDADP, PPC::XVADDDP, PPC::XVMULDP, 1, 2, PPC::XVSUBDP},
289 {PPC::XVMADDASP, PPC::XVADDSP, PPC::XVMULSP, 1, 2, PPC::XVSUBSP},
290 {PPC::FMADD, PPC::FADD, PPC::FMUL, 3, 1, PPC::FSUB},
291 {PPC::FMADDS, PPC::FADDS, PPC::FMULS, 3, 1, PPC::FSUBS}};
292
293// Check if an opcode is a FMA instruction. If it is, return the index in array
294// FMAOpIdxInfo. Otherwise, return -1.
295int16_t PPCInstrInfo::getFMAOpIdxInfo(unsigned Opcode) const {
296 for (unsigned I = 0; I < std::size(FMAOpIdxInfo); I++)
297 if (FMAOpIdxInfo[I][InfoArrayIdxFMAInst] == Opcode)
298 return I;
299 return -1;
300}
301
302// On PowerPC target, we have two kinds of patterns related to FMA:
303// 1: Improve ILP.
304// Try to reassociate FMA chains like below:
305//
306// Pattern 1:
307// A = FADD X, Y (Leaf)
308// B = FMA A, M21, M22 (Prev)
309// C = FMA B, M31, M32 (Root)
310// -->
311// A = FMA X, M21, M22
312// B = FMA Y, M31, M32
313// C = FADD A, B
314//
315// Pattern 2:
316// A = FMA X, M11, M12 (Leaf)
317// B = FMA A, M21, M22 (Prev)
318// C = FMA B, M31, M32 (Root)
319// -->
320// A = FMUL M11, M12
321// B = FMA X, M21, M22
322// D = FMA A, M31, M32
323// C = FADD B, D
324//
325// breaking the dependency between A and B, allowing FMA to be executed in
326// parallel (or back-to-back in a pipeline) instead of depending on each other.
327//
328// 2: Reduce register pressure.
329// Try to reassociate FMA with FSUB and a constant like below:
330// C is a floating point const.
331//
332// Pattern 1:
333// A = FSUB X, Y (Leaf)
334// D = FMA B, C, A (Root)
335// -->
336// A = FMA B, Y, -C
337// D = FMA A, X, C
338//
339// Pattern 2:
340// A = FSUB X, Y (Leaf)
341// D = FMA B, A, C (Root)
342// -->
343// A = FMA B, Y, -C
344// D = FMA A, X, C
345//
346// Before the transformation, A must be assigned with different hardware
347// register with D. After the transformation, A and D must be assigned with
348// same hardware register due to TIE attribute of FMA instructions.
349//
352 bool DoRegPressureReduce) const {
354 const MachineRegisterInfo *MRI = &MBB->getParent()->getRegInfo();
356
357 auto IsAllOpsVirtualReg = [](const MachineInstr &Instr) {
358 for (const auto &MO : Instr.explicit_operands())
359 if (!(MO.isReg() && MO.getReg().isVirtual()))
360 return false;
361 return true;
362 };
363
364 auto IsReassociableAddOrSub = [&](const MachineInstr &Instr,
365 unsigned OpType) {
366 if (Instr.getOpcode() !=
367 FMAOpIdxInfo[getFMAOpIdxInfo(Root.getOpcode())][OpType])
368 return false;
369
370 // Instruction can be reassociated.
371 // fast math flags may prohibit reassociation.
372 if (!(Instr.getFlag(MachineInstr::MIFlag::FmReassoc) &&
373 Instr.getFlag(MachineInstr::MIFlag::FmNsz)))
374 return false;
375
376 // Instruction operands are virtual registers for reassociation.
377 if (!IsAllOpsVirtualReg(Instr))
378 return false;
379
380 // For register pressure reassociation, the FSub must have only one use as
381 // we want to delete the sub to save its def.
382 if (OpType == InfoArrayIdxFSubInst &&
383 !MRI->hasOneNonDBGUse(Instr.getOperand(0).getReg()))
384 return false;
385
386 return true;
387 };
388
389 auto IsReassociableFMA = [&](const MachineInstr &Instr, int16_t &AddOpIdx,
390 int16_t &MulOpIdx, bool IsLeaf) {
391 int16_t Idx = getFMAOpIdxInfo(Instr.getOpcode());
392 if (Idx < 0)
393 return false;
394
395 // Instruction can be reassociated.
396 // fast math flags may prohibit reassociation.
397 if (!(Instr.getFlag(MachineInstr::MIFlag::FmReassoc) &&
398 Instr.getFlag(MachineInstr::MIFlag::FmNsz)))
399 return false;
400
401 // Instruction operands are virtual registers for reassociation.
402 if (!IsAllOpsVirtualReg(Instr))
403 return false;
404
405 MulOpIdx = FMAOpIdxInfo[Idx][InfoArrayIdxMULOpIdx];
406 if (IsLeaf)
407 return true;
408
409 AddOpIdx = FMAOpIdxInfo[Idx][InfoArrayIdxAddOpIdx];
410
411 const MachineOperand &OpAdd = Instr.getOperand(AddOpIdx);
412 MachineInstr *MIAdd = MRI->getUniqueVRegDef(OpAdd.getReg());
413 // If 'add' operand's def is not in current block, don't do ILP related opt.
414 if (!MIAdd || MIAdd->getParent() != MBB)
415 return false;
416
417 // If this is not Leaf FMA Instr, its 'add' operand should only have one use
418 // as this fma will be changed later.
419 return MRI->hasOneNonDBGUse(OpAdd.getReg());
420 };
421
422 int16_t AddOpIdx = -1;
423 int16_t MulOpIdx = -1;
424
425 bool IsUsedOnceL = false;
426 bool IsUsedOnceR = false;
427 MachineInstr *MULInstrL = nullptr;
428 MachineInstr *MULInstrR = nullptr;
429
430 auto IsRPReductionCandidate = [&]() {
431 // Currently, we only support float and double.
432 // FIXME: add support for other types.
433 unsigned Opcode = Root.getOpcode();
434 if (Opcode != PPC::XSMADDASP && Opcode != PPC::XSMADDADP)
435 return false;
436
437 // Root must be a valid FMA like instruction.
438 // Treat it as leaf as we don't care its add operand.
439 if (IsReassociableFMA(Root, AddOpIdx, MulOpIdx, true)) {
440 assert((MulOpIdx >= 0) && "mul operand index not right!");
441 Register MULRegL = TRI->lookThruSingleUseCopyChain(
442 Root.getOperand(MulOpIdx).getReg(), MRI);
443 Register MULRegR = TRI->lookThruSingleUseCopyChain(
444 Root.getOperand(MulOpIdx + 1).getReg(), MRI);
445 if (!MULRegL && !MULRegR)
446 return false;
447
448 if (MULRegL && !MULRegR) {
449 MULRegR =
450 TRI->lookThruCopyLike(Root.getOperand(MulOpIdx + 1).getReg(), MRI);
451 IsUsedOnceL = true;
452 } else if (!MULRegL && MULRegR) {
453 MULRegL =
454 TRI->lookThruCopyLike(Root.getOperand(MulOpIdx).getReg(), MRI);
455 IsUsedOnceR = true;
456 } else {
457 IsUsedOnceL = true;
458 IsUsedOnceR = true;
459 }
460
461 if (!MULRegL.isVirtual() || !MULRegR.isVirtual())
462 return false;
463
464 MULInstrL = MRI->getVRegDef(MULRegL);
465 MULInstrR = MRI->getVRegDef(MULRegR);
466 return true;
467 }
468 return false;
469 };
470
471 // Register pressure fma reassociation patterns.
472 if (DoRegPressureReduce && IsRPReductionCandidate()) {
473 assert((MULInstrL && MULInstrR) && "wrong register preduction candidate!");
474 // Register pressure pattern 1
475 if (isLoadFromConstantPool(MULInstrL) && IsUsedOnceR &&
476 IsReassociableAddOrSub(*MULInstrR, InfoArrayIdxFSubInst)) {
477 LLVM_DEBUG(dbgs() << "add pattern REASSOC_XY_BCA\n");
479 return true;
480 }
481
482 // Register pressure pattern 2
483 if ((isLoadFromConstantPool(MULInstrR) && IsUsedOnceL &&
484 IsReassociableAddOrSub(*MULInstrL, InfoArrayIdxFSubInst))) {
485 LLVM_DEBUG(dbgs() << "add pattern REASSOC_XY_BAC\n");
487 return true;
488 }
489 }
490
491 // ILP fma reassociation patterns.
492 // Root must be a valid FMA like instruction.
493 AddOpIdx = -1;
494 if (!IsReassociableFMA(Root, AddOpIdx, MulOpIdx, false))
495 return false;
496
497 assert((AddOpIdx >= 0) && "add operand index not right!");
498
499 Register RegB = Root.getOperand(AddOpIdx).getReg();
500 MachineInstr *Prev = MRI->getUniqueVRegDef(RegB);
501
502 // Prev must be a valid FMA like instruction.
503 AddOpIdx = -1;
504 if (!IsReassociableFMA(*Prev, AddOpIdx, MulOpIdx, false))
505 return false;
506
507 assert((AddOpIdx >= 0) && "add operand index not right!");
508
509 Register RegA = Prev->getOperand(AddOpIdx).getReg();
510 MachineInstr *Leaf = MRI->getUniqueVRegDef(RegA);
511 AddOpIdx = -1;
512 if (IsReassociableFMA(*Leaf, AddOpIdx, MulOpIdx, true)) {
514 LLVM_DEBUG(dbgs() << "add pattern REASSOC_XMM_AMM_BMM\n");
515 return true;
516 }
517 if (IsReassociableAddOrSub(*Leaf, InfoArrayIdxFAddInst)) {
519 LLVM_DEBUG(dbgs() << "add pattern REASSOC_XY_AMM_BMM\n");
520 return true;
521 }
522 return false;
523}
524
526 MachineInstr &Root, unsigned &Pattern,
527 SmallVectorImpl<MachineInstr *> &InsInstrs) const {
528 assert(!InsInstrs.empty() && "Instructions set to be inserted is empty!");
529
530 MachineFunction *MF = Root.getMF();
531 MachineRegisterInfo *MRI = &MF->getRegInfo();
534
535 int16_t Idx = getFMAOpIdxInfo(Root.getOpcode());
536 if (Idx < 0)
537 return;
538
539 uint16_t FirstMulOpIdx = FMAOpIdxInfo[Idx][InfoArrayIdxMULOpIdx];
540
541 // For now we only need to fix up placeholder for register pressure reduce
542 // patterns.
543 Register ConstReg = 0;
544 switch (Pattern) {
546 ConstReg =
547 TRI->lookThruCopyLike(Root.getOperand(FirstMulOpIdx).getReg(), MRI);
548 break;
550 ConstReg =
551 TRI->lookThruCopyLike(Root.getOperand(FirstMulOpIdx + 1).getReg(), MRI);
552 break;
553 default:
554 // Not register pressure reduce patterns.
555 return;
556 }
557
558 MachineInstr *ConstDefInstr = MRI->getVRegDef(ConstReg);
559 // Get const value from const pool.
560 const Constant *C = getConstantFromConstantPool(ConstDefInstr);
561 assert(isa<llvm::ConstantFP>(C) && "not a valid constant!");
562
563 // Get negative fp const.
564 APFloat F1((dyn_cast<ConstantFP>(C))->getValueAPF());
565 F1.changeSign();
566 Constant *NegC = ConstantFP::get(dyn_cast<ConstantFP>(C)->getContext(), F1);
567 Align Alignment = MF->getDataLayout().getPrefTypeAlign(C->getType());
568
569 // Put negative fp const into constant pool.
570 unsigned ConstPoolIdx = MCP->getConstantPoolIndex(NegC, Alignment);
571
572 MachineOperand *Placeholder = nullptr;
573 // Record the placeholder PPC::ZERO8 we add in reassociateFMA.
574 for (auto *Inst : InsInstrs) {
575 for (MachineOperand &Operand : Inst->explicit_operands()) {
576 assert(Operand.isReg() && "Invalid instruction in InsInstrs!");
577 if (Operand.getReg() == PPC::ZERO8) {
578 Placeholder = &Operand;
579 break;
580 }
581 }
582 }
583
584 assert(Placeholder && "Placeholder does not exist!");
585
586 // Generate instructions to load the const fp from constant pool.
587 // We only support PPC64 and medium code model.
588 Register LoadNewConst =
589 generateLoadForNewConst(ConstPoolIdx, &Root, C->getType(), InsInstrs);
590
591 // Fill the placeholder with the new load from constant pool.
592 Placeholder->setReg(LoadNewConst);
593}
594
596 const MachineBasicBlock *MBB, const RegisterClassInfo *RegClassInfo) const {
597
599 return false;
600
601 // Currently, we only enable register pressure reducing in machine combiner
602 // for: 1: PPC64; 2: Code Model is Medium; 3: Power9 which also has vector
603 // support.
604 //
605 // So we need following instructions to access a TOC entry:
606 //
607 // %6:g8rc_and_g8rc_nox0 = ADDIStocHA8 $x2, %const.0
608 // %7:vssrc = DFLOADf32 target-flags(ppc-toc-lo) %const.0,
609 // killed %6:g8rc_and_g8rc_nox0, implicit $x2 :: (load 4 from constant-pool)
610 //
611 // FIXME: add more supported targets, like Small and Large code model, PPC32,
612 // AIX.
613 if (!(Subtarget.isPPC64() && Subtarget.hasP9Vector() &&
614 Subtarget.getTargetMachine().getCodeModel() == CodeModel::Medium))
615 return false;
616
618 const MachineFunction *MF = MBB->getParent();
619 const MachineRegisterInfo *MRI = &MF->getRegInfo();
620
621 auto GetMBBPressure =
622 [&](const MachineBasicBlock *MBB) -> std::vector<unsigned> {
623 RegionPressure Pressure;
624 RegPressureTracker RPTracker(Pressure);
625
626 // Initialize the register pressure tracker.
627 RPTracker.init(MBB->getParent(), RegClassInfo, nullptr, MBB, MBB->end(),
628 /*TrackLaneMasks*/ false, /*TrackUntiedDefs=*/true);
629
630 for (const auto &MI : reverse(*MBB)) {
631 if (MI.isDebugValue() || MI.isDebugLabel())
632 continue;
633 RegisterOperands RegOpers;
634 RegOpers.collect(MI, *TRI, *MRI, false, false);
635 RPTracker.recedeSkipDebugValues();
636 assert(&*RPTracker.getPos() == &MI && "RPTracker sync error!");
637 RPTracker.recede(RegOpers);
638 }
639
640 // Close the RPTracker to finalize live ins.
641 RPTracker.closeRegion();
642
643 return RPTracker.getPressure().MaxSetPressure;
644 };
645
646 // For now we only care about float and double type fma.
647 unsigned VSSRCLimit =
648 RegClassInfo->getRegPressureSetLimit(PPC::RegisterPressureSets::VSSRC);
649
650 // Only reduce register pressure when pressure is high.
651 return GetMBBPressure(MBB)[PPC::RegisterPressureSets::VSSRC] >
652 (float)VSSRCLimit * FMARPFactor;
653}
654
656 // I has only one memory operand which is load from constant pool.
657 if (!I->hasOneMemOperand())
658 return false;
659
660 MachineMemOperand *Op = I->memoperands()[0];
661 return Op->isLoad() && Op->getPseudoValue() &&
662 Op->getPseudoValue()->kind() == PseudoSourceValue::ConstantPool;
663}
664
665Register PPCInstrInfo::generateLoadForNewConst(
666 unsigned Idx, MachineInstr *MI, Type *Ty,
667 SmallVectorImpl<MachineInstr *> &InsInstrs) const {
668 // Now we only support PPC64, Medium code model and P9 with vector.
669 // We have immutable pattern to access const pool. See function
670 // shouldReduceRegisterPressure.
671 assert((Subtarget.isPPC64() && Subtarget.hasP9Vector() &&
673 "Target not supported!\n");
674
675 MachineFunction *MF = MI->getMF();
676 MachineRegisterInfo *MRI = &MF->getRegInfo();
677
678 // Generate ADDIStocHA8
679 Register VReg1 = MRI->createVirtualRegister(&PPC::G8RC_and_G8RC_NOX0RegClass);
680 MachineInstrBuilder TOCOffset =
681 BuildMI(*MF, MI->getDebugLoc(), get(PPC::ADDIStocHA8), VReg1)
682 .addReg(PPC::X2)
684
685 assert((Ty->isFloatTy() || Ty->isDoubleTy()) &&
686 "Only float and double are supported!");
687
688 unsigned LoadOpcode;
689 // Should be float type or double type.
690 if (Ty->isFloatTy())
691 LoadOpcode = PPC::DFLOADf32;
692 else
693 LoadOpcode = PPC::DFLOADf64;
694
695 const TargetRegisterClass *RC = MRI->getRegClass(MI->getOperand(0).getReg());
696 Register VReg2 = MRI->createVirtualRegister(RC);
699 Ty->getScalarSizeInBits() / 8, MF->getDataLayout().getPrefTypeAlign(Ty));
700
701 // Generate Load from constant pool.
703 BuildMI(*MF, MI->getDebugLoc(), get(LoadOpcode), VReg2)
705 .addReg(VReg1, getKillRegState(true))
706 .addMemOperand(MMO);
707
708 Load->getOperand(1).setTargetFlags(PPCII::MO_TOC_LO);
709
710 // Insert the toc load instructions into InsInstrs.
711 InsInstrs.insert(InsInstrs.begin(), Load);
712 InsInstrs.insert(InsInstrs.begin(), TOCOffset);
713 return VReg2;
714}
715
716// This function returns the const value in constant pool if the \p I is a load
717// from constant pool.
718const Constant *
720 MachineFunction *MF = I->getMF();
721 MachineRegisterInfo *MRI = &MF->getRegInfo();
723 assert(I->mayLoad() && "Should be a load instruction.\n");
724 for (auto MO : I->uses()) {
725 if (!MO.isReg())
726 continue;
727 Register Reg = MO.getReg();
728 if (Reg == 0 || !Reg.isVirtual())
729 continue;
730 // Find the toc address.
731 MachineInstr *DefMI = MRI->getVRegDef(Reg);
732 for (auto MO2 : DefMI->uses())
733 if (MO2.isCPI())
734 return (MCP->getConstants())[MO2.getIndex()].Val.ConstVal;
735 }
736 return nullptr;
737}
738
751
754 bool DoRegPressureReduce) const {
755 // Using the machine combiner in this way is potentially expensive, so
756 // restrict to when aggressive optimizations are desired.
757 if (Subtarget.getTargetMachine().getOptLevel() != CodeGenOptLevel::Aggressive)
758 return false;
759
760 if (getFMAPatterns(Root, Patterns, DoRegPressureReduce))
761 return true;
762
764 DoRegPressureReduce);
765}
766
768 MachineInstr &Root, unsigned Pattern,
771 DenseMap<Register, unsigned> &InstrIdxForVirtReg) const {
772 switch (Pattern) {
777 reassociateFMA(Root, Pattern, InsInstrs, DelInstrs, InstrIdxForVirtReg);
778 break;
779 default:
780 // Reassociate default patterns.
782 DelInstrs, InstrIdxForVirtReg);
783 break;
784 }
785}
786
787void PPCInstrInfo::reassociateFMA(
788 MachineInstr &Root, unsigned Pattern,
791 DenseMap<Register, unsigned> &InstrIdxForVirtReg) const {
792 MachineFunction *MF = Root.getMF();
793 MachineRegisterInfo &MRI = MF->getRegInfo();
795 MachineOperand &OpC = Root.getOperand(0);
796 Register RegC = OpC.getReg();
797 const TargetRegisterClass *RC = MRI.getRegClass(RegC);
798 MRI.constrainRegClass(RegC, RC);
799
800 unsigned FmaOp = Root.getOpcode();
801 int16_t Idx = getFMAOpIdxInfo(FmaOp);
802 assert(Idx >= 0 && "Root must be a FMA instruction");
803
804 bool IsILPReassociate =
807
809 uint16_t FirstMulOpIdx = FMAOpIdxInfo[Idx][InfoArrayIdxMULOpIdx];
810
811 MachineInstr *Prev = nullptr;
812 MachineInstr *Leaf = nullptr;
813 switch (Pattern) {
814 default:
815 llvm_unreachable("not recognized pattern!");
818 Prev = MRI.getUniqueVRegDef(Root.getOperand(AddOpIdx).getReg());
819 Leaf = MRI.getUniqueVRegDef(Prev->getOperand(AddOpIdx).getReg());
820 break;
822 Register MULReg =
823 TRI->lookThruCopyLike(Root.getOperand(FirstMulOpIdx).getReg(), &MRI);
824 Leaf = MRI.getVRegDef(MULReg);
825 break;
826 }
828 Register MULReg = TRI->lookThruCopyLike(
829 Root.getOperand(FirstMulOpIdx + 1).getReg(), &MRI);
830 Leaf = MRI.getVRegDef(MULReg);
831 break;
832 }
833 }
834
835 uint32_t IntersectedFlags = 0;
836 if (IsILPReassociate)
837 IntersectedFlags = Root.getFlags() & Prev->getFlags() & Leaf->getFlags();
838 else
839 IntersectedFlags = Root.getFlags() & Leaf->getFlags();
840
841 auto GetOperandInfo = [&](const MachineOperand &Operand, Register &Reg,
842 bool &KillFlag) {
843 Reg = Operand.getReg();
844 MRI.constrainRegClass(Reg, RC);
845 KillFlag = Operand.isKill();
846 };
847
848 auto GetFMAInstrInfo = [&](const MachineInstr &Instr, Register &MulOp1,
849 Register &MulOp2, Register &AddOp,
850 bool &MulOp1KillFlag, bool &MulOp2KillFlag,
851 bool &AddOpKillFlag) {
852 GetOperandInfo(Instr.getOperand(FirstMulOpIdx), MulOp1, MulOp1KillFlag);
853 GetOperandInfo(Instr.getOperand(FirstMulOpIdx + 1), MulOp2, MulOp2KillFlag);
854 GetOperandInfo(Instr.getOperand(AddOpIdx), AddOp, AddOpKillFlag);
855 };
856
857 Register RegM11, RegM12, RegX, RegY, RegM21, RegM22, RegM31, RegM32, RegA11,
858 RegA21, RegB;
859 bool KillX = false, KillY = false, KillM11 = false, KillM12 = false,
860 KillM21 = false, KillM22 = false, KillM31 = false, KillM32 = false,
861 KillA11 = false, KillA21 = false, KillB = false;
862
863 GetFMAInstrInfo(Root, RegM31, RegM32, RegB, KillM31, KillM32, KillB);
864
865 if (IsILPReassociate)
866 GetFMAInstrInfo(*Prev, RegM21, RegM22, RegA21, KillM21, KillM22, KillA21);
867
869 GetFMAInstrInfo(*Leaf, RegM11, RegM12, RegA11, KillM11, KillM12, KillA11);
870 GetOperandInfo(Leaf->getOperand(AddOpIdx), RegX, KillX);
871 } else if (Pattern == PPCMachineCombinerPattern::REASSOC_XY_AMM_BMM) {
872 GetOperandInfo(Leaf->getOperand(1), RegX, KillX);
873 GetOperandInfo(Leaf->getOperand(2), RegY, KillY);
874 } else {
875 // Get FSUB instruction info.
876 GetOperandInfo(Leaf->getOperand(1), RegX, KillX);
877 GetOperandInfo(Leaf->getOperand(2), RegY, KillY);
878 }
879
880 // Create new virtual registers for the new results instead of
881 // recycling legacy ones because the MachineCombiner's computation of the
882 // critical path requires a new register definition rather than an existing
883 // one.
884 // For register pressure reassociation, we only need create one virtual
885 // register for the new fma.
886 Register NewVRA = MRI.createVirtualRegister(RC);
887 InstrIdxForVirtReg.insert(std::make_pair(NewVRA, 0));
888
889 Register NewVRB = 0;
890 if (IsILPReassociate) {
891 NewVRB = MRI.createVirtualRegister(RC);
892 InstrIdxForVirtReg.insert(std::make_pair(NewVRB, 1));
893 }
894
895 Register NewVRD = 0;
897 NewVRD = MRI.createVirtualRegister(RC);
898 InstrIdxForVirtReg.insert(std::make_pair(NewVRD, 2));
899 }
900
901 auto AdjustOperandOrder = [&](MachineInstr *MI, Register RegAdd, bool KillAdd,
902 Register RegMul1, bool KillRegMul1,
903 Register RegMul2, bool KillRegMul2) {
904 MI->getOperand(AddOpIdx).setReg(RegAdd);
905 MI->getOperand(AddOpIdx).setIsKill(KillAdd);
906 MI->getOperand(FirstMulOpIdx).setReg(RegMul1);
907 MI->getOperand(FirstMulOpIdx).setIsKill(KillRegMul1);
908 MI->getOperand(FirstMulOpIdx + 1).setReg(RegMul2);
909 MI->getOperand(FirstMulOpIdx + 1).setIsKill(KillRegMul2);
910 };
911
912 MachineInstrBuilder NewARegPressure, NewCRegPressure;
913 switch (Pattern) {
914 default:
915 llvm_unreachable("not recognized pattern!");
917 // Create new instructions for insertion.
918 MachineInstrBuilder MINewB =
919 BuildMI(*MF, Prev->getDebugLoc(), get(FmaOp), NewVRB)
920 .addReg(RegX, getKillRegState(KillX))
921 .addReg(RegM21, getKillRegState(KillM21))
922 .addReg(RegM22, getKillRegState(KillM22));
923 MachineInstrBuilder MINewA =
924 BuildMI(*MF, Root.getDebugLoc(), get(FmaOp), NewVRA)
925 .addReg(RegY, getKillRegState(KillY))
926 .addReg(RegM31, getKillRegState(KillM31))
927 .addReg(RegM32, getKillRegState(KillM32));
928 // If AddOpIdx is not 1, adjust the order.
929 if (AddOpIdx != 1) {
930 AdjustOperandOrder(MINewB, RegX, KillX, RegM21, KillM21, RegM22, KillM22);
931 AdjustOperandOrder(MINewA, RegY, KillY, RegM31, KillM31, RegM32, KillM32);
932 }
933
934 MachineInstrBuilder MINewC =
935 BuildMI(*MF, Root.getDebugLoc(),
937 .addReg(NewVRB, getKillRegState(true))
938 .addReg(NewVRA, getKillRegState(true));
939
940 // Update flags for newly created instructions.
941 setSpecialOperandAttr(*MINewA, IntersectedFlags);
942 setSpecialOperandAttr(*MINewB, IntersectedFlags);
943 setSpecialOperandAttr(*MINewC, IntersectedFlags);
944
945 // Record new instructions for insertion.
946 InsInstrs.push_back(MINewA);
947 InsInstrs.push_back(MINewB);
948 InsInstrs.push_back(MINewC);
949 break;
950 }
952 assert(NewVRD && "new FMA register not created!");
953 // Create new instructions for insertion.
954 MachineInstrBuilder MINewA =
955 BuildMI(*MF, Leaf->getDebugLoc(),
957 .addReg(RegM11, getKillRegState(KillM11))
958 .addReg(RegM12, getKillRegState(KillM12));
959 MachineInstrBuilder MINewB =
960 BuildMI(*MF, Prev->getDebugLoc(), get(FmaOp), NewVRB)
961 .addReg(RegX, getKillRegState(KillX))
962 .addReg(RegM21, getKillRegState(KillM21))
963 .addReg(RegM22, getKillRegState(KillM22));
964 MachineInstrBuilder MINewD =
965 BuildMI(*MF, Root.getDebugLoc(), get(FmaOp), NewVRD)
966 .addReg(NewVRA, getKillRegState(true))
967 .addReg(RegM31, getKillRegState(KillM31))
968 .addReg(RegM32, getKillRegState(KillM32));
969 // If AddOpIdx is not 1, adjust the order.
970 if (AddOpIdx != 1) {
971 AdjustOperandOrder(MINewB, RegX, KillX, RegM21, KillM21, RegM22, KillM22);
972 AdjustOperandOrder(MINewD, NewVRA, true, RegM31, KillM31, RegM32,
973 KillM32);
974 }
975
976 MachineInstrBuilder MINewC =
977 BuildMI(*MF, Root.getDebugLoc(),
979 .addReg(NewVRB, getKillRegState(true))
980 .addReg(NewVRD, getKillRegState(true));
981
982 // Update flags for newly created instructions.
983 setSpecialOperandAttr(*MINewA, IntersectedFlags);
984 setSpecialOperandAttr(*MINewB, IntersectedFlags);
985 setSpecialOperandAttr(*MINewD, IntersectedFlags);
986 setSpecialOperandAttr(*MINewC, IntersectedFlags);
987
988 // Record new instructions for insertion.
989 InsInstrs.push_back(MINewA);
990 InsInstrs.push_back(MINewB);
991 InsInstrs.push_back(MINewD);
992 InsInstrs.push_back(MINewC);
993 break;
994 }
997 Register VarReg;
998 bool KillVarReg = false;
1000 VarReg = RegM31;
1001 KillVarReg = KillM31;
1002 } else {
1003 VarReg = RegM32;
1004 KillVarReg = KillM32;
1005 }
1006 // We don't want to get negative const from memory pool too early, as the
1007 // created entry will not be deleted even if it has no users. Since all
1008 // operand of Leaf and Root are virtual register, we use zero register
1009 // here as a placeholder. When the InsInstrs is selected in
1010 // MachineCombiner, we call finalizeInsInstrs to replace the zero register
1011 // with a virtual register which is a load from constant pool.
1012 NewARegPressure = BuildMI(*MF, Root.getDebugLoc(), get(FmaOp), NewVRA)
1013 .addReg(RegB, getKillRegState(RegB))
1014 .addReg(RegY, getKillRegState(KillY))
1015 .addReg(PPC::ZERO8);
1016 NewCRegPressure = BuildMI(*MF, Root.getDebugLoc(), get(FmaOp), RegC)
1017 .addReg(NewVRA, getKillRegState(true))
1018 .addReg(RegX, getKillRegState(KillX))
1019 .addReg(VarReg, getKillRegState(KillVarReg));
1020 // For now, we only support xsmaddadp/xsmaddasp, their add operand are
1021 // both at index 1, no need to adjust.
1022 // FIXME: when add more fma instructions support, like fma/fmas, adjust
1023 // the operand index here.
1024 break;
1025 }
1026 }
1027
1028 if (!IsILPReassociate) {
1029 setSpecialOperandAttr(*NewARegPressure, IntersectedFlags);
1030 setSpecialOperandAttr(*NewCRegPressure, IntersectedFlags);
1031
1032 InsInstrs.push_back(NewARegPressure);
1033 InsInstrs.push_back(NewCRegPressure);
1034 }
1035
1036 assert(!InsInstrs.empty() &&
1037 "Insertion instructions set should not be empty!");
1038
1039 // Record old instructions for deletion.
1040 DelInstrs.push_back(Leaf);
1041 if (IsILPReassociate)
1042 DelInstrs.push_back(Prev);
1043 DelInstrs.push_back(&Root);
1044}
1045
1046// Detect 32 -> 64-bit extensions where we may reuse the low sub-register.
1048 Register &SrcReg, Register &DstReg,
1049 unsigned &SubIdx) const {
1050 switch (MI.getOpcode()) {
1051 default: return false;
1052 case PPC::EXTSW:
1053 case PPC::EXTSW_32:
1054 case PPC::EXTSW_32_64:
1055 SrcReg = MI.getOperand(1).getReg();
1056 DstReg = MI.getOperand(0).getReg();
1057 SubIdx = PPC::sub_32;
1058 return true;
1059 }
1060}
1061
1063 int &FrameIndex) const {
1064 if (llvm::is_contained(getLoadOpcodesForSpillArray(), MI.getOpcode())) {
1065 // Check for the operands added by addFrameReference (the immediate is the
1066 // offset which defaults to 0).
1067 if (MI.getOperand(1).isImm() && !MI.getOperand(1).getImm() &&
1068 MI.getOperand(2).isFI()) {
1069 FrameIndex = MI.getOperand(2).getIndex();
1070 return MI.getOperand(0).getReg();
1071 }
1072 }
1073 return 0;
1074}
1075
1076// For opcodes with the ReMaterializable flag set, this function is called to
1077// verify the instruction is really rematable.
1079 const MachineInstr &MI) const {
1080 switch (MI.getOpcode()) {
1081 default:
1082 // Let base implementaion decide.
1083 break;
1084 case PPC::LI:
1085 case PPC::LI8:
1086 case PPC::PLI:
1087 case PPC::PLI8:
1088 case PPC::LIS:
1089 case PPC::LIS8:
1090 case PPC::ADDIStocHA:
1091 case PPC::ADDIStocHA8:
1092 case PPC::ADDItocL:
1093 case PPC::ADDItocL8:
1094 case PPC::LOAD_STACK_GUARD:
1095 case PPC::PPCLdFixedAddr:
1096 case PPC::XXLXORz:
1097 case PPC::XXLXORspz:
1098 case PPC::XXLXORdpz:
1099 case PPC::XXLEQVOnes:
1100 case PPC::XXSPLTI32DX:
1101 case PPC::XXSPLTIW:
1102 case PPC::XXSPLTIDP:
1103 case PPC::V_SET0B:
1104 case PPC::V_SET0H:
1105 case PPC::V_SET0:
1106 case PPC::V_SETALLONESB:
1107 case PPC::V_SETALLONESH:
1108 case PPC::V_SETALLONES:
1109 case PPC::CRSET:
1110 case PPC::CRUNSET:
1111 case PPC::XXSETACCZ:
1112 case PPC::DMXXSETACCZ:
1113 return true;
1114 }
1116}
1117
1119 int &FrameIndex) const {
1120 if (llvm::is_contained(getStoreOpcodesForSpillArray(), MI.getOpcode())) {
1121 if (MI.getOperand(1).isImm() && !MI.getOperand(1).getImm() &&
1122 MI.getOperand(2).isFI()) {
1123 FrameIndex = MI.getOperand(2).getIndex();
1124 return MI.getOperand(0).getReg();
1125 }
1126 }
1127 return 0;
1128}
1129
1131 unsigned OpIdx1,
1132 unsigned OpIdx2) const {
1133 MachineFunction &MF = *MI.getParent()->getParent();
1134
1135 // Normal instructions can be commuted the obvious way.
1136 if (MI.getOpcode() != PPC::RLWIMI && MI.getOpcode() != PPC::RLWIMI_rec)
1137 return TargetInstrInfo::commuteInstructionImpl(MI, NewMI, OpIdx1, OpIdx2);
1138 // Note that RLWIMI can be commuted as a 32-bit instruction, but not as a
1139 // 64-bit instruction (so we don't handle PPC::RLWIMI8 here), because
1140 // changing the relative order of the mask operands might change what happens
1141 // to the high-bits of the mask (and, thus, the result).
1142
1143 // Cannot commute if it has a non-zero rotate count.
1144 if (MI.getOperand(3).getImm() != 0)
1145 return nullptr;
1146
1147 // If we have a zero rotate count, we have:
1148 // M = mask(MB,ME)
1149 // Op0 = (Op1 & ~M) | (Op2 & M)
1150 // Change this to:
1151 // M = mask((ME+1)&31, (MB-1)&31)
1152 // Op0 = (Op2 & ~M) | (Op1 & M)
1153
1154 // Swap op1/op2
1155 assert(((OpIdx1 == 1 && OpIdx2 == 2) || (OpIdx1 == 2 && OpIdx2 == 1)) &&
1156 "Only the operands 1 and 2 can be swapped in RLSIMI/RLWIMI_rec.");
1157 Register Reg0 = MI.getOperand(0).getReg();
1158 Register Reg1 = MI.getOperand(1).getReg();
1159 Register Reg2 = MI.getOperand(2).getReg();
1160 unsigned SubReg1 = MI.getOperand(1).getSubReg();
1161 unsigned SubReg2 = MI.getOperand(2).getSubReg();
1162 bool Reg1IsKill = MI.getOperand(1).isKill();
1163 bool Reg2IsKill = MI.getOperand(2).isKill();
1164 bool ChangeReg0 = false;
1165 // If machine instrs are no longer in two-address forms, update
1166 // destination register as well.
1167 if (Reg0 == Reg1) {
1168 // Must be two address instruction (i.e. op1 is tied to op0).
1169 assert(MI.getDesc().getOperandConstraint(1, MCOI::TIED_TO) == 0 &&
1170 "Expecting a two-address instruction!");
1171 assert(MI.getOperand(0).getSubReg() == SubReg1 && "Tied subreg mismatch");
1172 Reg2IsKill = false;
1173 ChangeReg0 = true;
1174 }
1175
1176 // Masks.
1177 unsigned MB = MI.getOperand(4).getImm();
1178 unsigned ME = MI.getOperand(5).getImm();
1179
1180 // We can't commute a trivial mask (there is no way to represent an all-zero
1181 // mask).
1182 if (MB == 0 && ME == 31)
1183 return nullptr;
1184
1185 if (NewMI) {
1186 // Create a new instruction.
1187 Register Reg0 = ChangeReg0 ? Reg2 : MI.getOperand(0).getReg();
1188 bool Reg0IsDead = MI.getOperand(0).isDead();
1189 return BuildMI(MF, MI.getDebugLoc(), MI.getDesc())
1190 .addReg(Reg0, RegState::Define | getDeadRegState(Reg0IsDead))
1191 .addReg(Reg2, getKillRegState(Reg2IsKill))
1192 .addReg(Reg1, getKillRegState(Reg1IsKill))
1193 .addImm((ME + 1) & 31)
1194 .addImm((MB - 1) & 31);
1195 }
1196
1197 if (ChangeReg0) {
1198 MI.getOperand(0).setReg(Reg2);
1199 MI.getOperand(0).setSubReg(SubReg2);
1200 }
1201 MI.getOperand(2).setReg(Reg1);
1202 MI.getOperand(1).setReg(Reg2);
1203 MI.getOperand(2).setSubReg(SubReg1);
1204 MI.getOperand(1).setSubReg(SubReg2);
1205 MI.getOperand(2).setIsKill(Reg1IsKill);
1206 MI.getOperand(1).setIsKill(Reg2IsKill);
1207
1208 // Swap the mask around.
1209 MI.getOperand(4).setImm((ME + 1) & 31);
1210 MI.getOperand(5).setImm((MB - 1) & 31);
1211 return &MI;
1212}
1213
1215 unsigned &SrcOpIdx1,
1216 unsigned &SrcOpIdx2) const {
1217 // For VSX A-Type FMA instructions, it is the first two operands that can be
1218 // commuted, however, because the non-encoded tied input operand is listed
1219 // first, the operands to swap are actually the second and third.
1220
1221 int AltOpc = PPC::getAltVSXFMAOpcode(MI.getOpcode());
1222 if (AltOpc == -1)
1223 return TargetInstrInfo::findCommutedOpIndices(MI, SrcOpIdx1, SrcOpIdx2);
1224
1225 // The commutable operand indices are 2 and 3. Return them in SrcOpIdx1
1226 // and SrcOpIdx2.
1227 return fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, 2, 3);
1228}
1229
1232 // This function is used for scheduling, and the nop wanted here is the type
1233 // that terminates dispatch groups on the POWER cores.
1234 unsigned Directive = Subtarget.getCPUDirective();
1235 unsigned Opcode;
1236 switch (Directive) {
1237 default: Opcode = PPC::NOP; break;
1238 case PPC::DIR_PWR6: Opcode = PPC::NOP_GT_PWR6; break;
1239 case PPC::DIR_PWR7: Opcode = PPC::NOP_GT_PWR7; break;
1240 case PPC::DIR_PWR8: Opcode = PPC::NOP_GT_PWR7; break; /* FIXME: Update when P8 InstrScheduling model is ready */
1241 // FIXME: Update when POWER9 scheduling model is ready.
1242 case PPC::DIR_PWR9: Opcode = PPC::NOP_GT_PWR7; break;
1243 }
1244
1245 DebugLoc DL;
1246 BuildMI(MBB, MI, DL, get(Opcode));
1247}
1248
1249/// Return the noop instruction to use for a noop.
1251 MCInst Nop;
1252 Nop.setOpcode(PPC::NOP);
1253 return Nop;
1254}
1255
1256// Branch analysis.
1257// Note: If the condition register is set to CTR or CTR8 then this is a
1258// BDNZ (imm == 1) or BDZ (imm == 0) branch.
1261 MachineBasicBlock *&FBB,
1263 bool AllowModify) const {
1264 bool isPPC64 = Subtarget.isPPC64();
1265
1266 // If the block has no terminators, it just falls into the block after it.
1267 MachineBasicBlock::iterator I = MBB.getLastNonDebugInstr();
1268 if (I == MBB.end())
1269 return false;
1270
1271 if (!isUnpredicatedTerminator(*I))
1272 return false;
1273
1274 if (AllowModify) {
1275 // If the BB ends with an unconditional branch to the fallthrough BB,
1276 // we eliminate the branch instruction.
1277 if (I->getOpcode() == PPC::B &&
1278 MBB.isLayoutSuccessor(I->getOperand(0).getMBB())) {
1279 I->eraseFromParent();
1280
1281 // We update iterator after deleting the last branch.
1282 I = MBB.getLastNonDebugInstr();
1283 if (I == MBB.end() || !isUnpredicatedTerminator(*I))
1284 return false;
1285 }
1286 }
1287
1288 // Get the last instruction in the block.
1289 MachineInstr &LastInst = *I;
1290
1291 // If there is only one terminator instruction, process it.
1292 if (I == MBB.begin() || !isUnpredicatedTerminator(*--I)) {
1293 if (LastInst.getOpcode() == PPC::B) {
1294 if (!LastInst.getOperand(0).isMBB())
1295 return true;
1296 TBB = LastInst.getOperand(0).getMBB();
1297 return false;
1298 } else if (LastInst.getOpcode() == PPC::BCC) {
1299 if (!LastInst.getOperand(2).isMBB())
1300 return true;
1301 // Block ends with fall-through condbranch.
1302 TBB = LastInst.getOperand(2).getMBB();
1303 Cond.push_back(LastInst.getOperand(0));
1304 Cond.push_back(LastInst.getOperand(1));
1305 return false;
1306 } else if (LastInst.getOpcode() == PPC::BC) {
1307 if (!LastInst.getOperand(1).isMBB())
1308 return true;
1309 // Block ends with fall-through condbranch.
1310 TBB = LastInst.getOperand(1).getMBB();
1312 Cond.push_back(LastInst.getOperand(0));
1313 return false;
1314 } else if (LastInst.getOpcode() == PPC::BCn) {
1315 if (!LastInst.getOperand(1).isMBB())
1316 return true;
1317 // Block ends with fall-through condbranch.
1318 TBB = LastInst.getOperand(1).getMBB();
1320 Cond.push_back(LastInst.getOperand(0));
1321 return false;
1322 } else if (LastInst.getOpcode() == PPC::BDNZ8 ||
1323 LastInst.getOpcode() == PPC::BDNZ) {
1324 if (!LastInst.getOperand(0).isMBB())
1325 return true;
1327 return true;
1328 TBB = LastInst.getOperand(0).getMBB();
1329 Cond.push_back(MachineOperand::CreateImm(1));
1330 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
1331 true));
1332 return false;
1333 } else if (LastInst.getOpcode() == PPC::BDZ8 ||
1334 LastInst.getOpcode() == PPC::BDZ) {
1335 if (!LastInst.getOperand(0).isMBB())
1336 return true;
1338 return true;
1339 TBB = LastInst.getOperand(0).getMBB();
1340 Cond.push_back(MachineOperand::CreateImm(0));
1341 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
1342 true));
1343 return false;
1344 }
1345
1346 // Otherwise, don't know what this is.
1347 return true;
1348 }
1349
1350 // Get the instruction before it if it's a terminator.
1351 MachineInstr &SecondLastInst = *I;
1352
1353 // If there are three terminators, we don't know what sort of block this is.
1354 if (I != MBB.begin() && isUnpredicatedTerminator(*--I))
1355 return true;
1356
1357 // If the block ends with PPC::B and PPC:BCC, handle it.
1358 if (SecondLastInst.getOpcode() == PPC::BCC &&
1359 LastInst.getOpcode() == PPC::B) {
1360 if (!SecondLastInst.getOperand(2).isMBB() ||
1361 !LastInst.getOperand(0).isMBB())
1362 return true;
1363 TBB = SecondLastInst.getOperand(2).getMBB();
1364 Cond.push_back(SecondLastInst.getOperand(0));
1365 Cond.push_back(SecondLastInst.getOperand(1));
1366 FBB = LastInst.getOperand(0).getMBB();
1367 return false;
1368 } else if (SecondLastInst.getOpcode() == PPC::BC &&
1369 LastInst.getOpcode() == PPC::B) {
1370 if (!SecondLastInst.getOperand(1).isMBB() ||
1371 !LastInst.getOperand(0).isMBB())
1372 return true;
1373 TBB = SecondLastInst.getOperand(1).getMBB();
1375 Cond.push_back(SecondLastInst.getOperand(0));
1376 FBB = LastInst.getOperand(0).getMBB();
1377 return false;
1378 } else if (SecondLastInst.getOpcode() == PPC::BCn &&
1379 LastInst.getOpcode() == PPC::B) {
1380 if (!SecondLastInst.getOperand(1).isMBB() ||
1381 !LastInst.getOperand(0).isMBB())
1382 return true;
1383 TBB = SecondLastInst.getOperand(1).getMBB();
1385 Cond.push_back(SecondLastInst.getOperand(0));
1386 FBB = LastInst.getOperand(0).getMBB();
1387 return false;
1388 } else if ((SecondLastInst.getOpcode() == PPC::BDNZ8 ||
1389 SecondLastInst.getOpcode() == PPC::BDNZ) &&
1390 LastInst.getOpcode() == PPC::B) {
1391 if (!SecondLastInst.getOperand(0).isMBB() ||
1392 !LastInst.getOperand(0).isMBB())
1393 return true;
1395 return true;
1396 TBB = SecondLastInst.getOperand(0).getMBB();
1397 Cond.push_back(MachineOperand::CreateImm(1));
1398 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
1399 true));
1400 FBB = LastInst.getOperand(0).getMBB();
1401 return false;
1402 } else if ((SecondLastInst.getOpcode() == PPC::BDZ8 ||
1403 SecondLastInst.getOpcode() == PPC::BDZ) &&
1404 LastInst.getOpcode() == PPC::B) {
1405 if (!SecondLastInst.getOperand(0).isMBB() ||
1406 !LastInst.getOperand(0).isMBB())
1407 return true;
1409 return true;
1410 TBB = SecondLastInst.getOperand(0).getMBB();
1411 Cond.push_back(MachineOperand::CreateImm(0));
1412 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
1413 true));
1414 FBB = LastInst.getOperand(0).getMBB();
1415 return false;
1416 }
1417
1418 // If the block ends with two PPC:Bs, handle it. The second one is not
1419 // executed, so remove it.
1420 if (SecondLastInst.getOpcode() == PPC::B && LastInst.getOpcode() == PPC::B) {
1421 if (!SecondLastInst.getOperand(0).isMBB())
1422 return true;
1423 TBB = SecondLastInst.getOperand(0).getMBB();
1424 I = LastInst;
1425 if (AllowModify)
1426 I->eraseFromParent();
1427 return false;
1428 }
1429
1430 // Otherwise, can't handle this.
1431 return true;
1432}
1433
1435 int *BytesRemoved) const {
1436 assert(!BytesRemoved && "code size not handled");
1437
1438 MachineBasicBlock::iterator I = MBB.getLastNonDebugInstr();
1439 if (I == MBB.end())
1440 return 0;
1441
1442 if (I->getOpcode() != PPC::B && I->getOpcode() != PPC::BCC &&
1443 I->getOpcode() != PPC::BC && I->getOpcode() != PPC::BCn &&
1444 I->getOpcode() != PPC::BDNZ8 && I->getOpcode() != PPC::BDNZ &&
1445 I->getOpcode() != PPC::BDZ8 && I->getOpcode() != PPC::BDZ)
1446 return 0;
1447
1448 // Remove the branch.
1449 I->eraseFromParent();
1450
1451 I = MBB.end();
1452
1453 if (I == MBB.begin()) return 1;
1454 --I;
1455 if (I->getOpcode() != PPC::BCC &&
1456 I->getOpcode() != PPC::BC && I->getOpcode() != PPC::BCn &&
1457 I->getOpcode() != PPC::BDNZ8 && I->getOpcode() != PPC::BDNZ &&
1458 I->getOpcode() != PPC::BDZ8 && I->getOpcode() != PPC::BDZ)
1459 return 1;
1460
1461 // Remove the branch.
1462 I->eraseFromParent();
1463 return 2;
1464}
1465
1468 MachineBasicBlock *FBB,
1470 const DebugLoc &DL,
1471 int *BytesAdded) const {
1472 // Shouldn't be a fall through.
1473 assert(TBB && "insertBranch must not be told to insert a fallthrough");
1474 assert((Cond.size() == 2 || Cond.size() == 0) &&
1475 "PPC branch conditions have two components!");
1476 assert(!BytesAdded && "code size not handled");
1477
1478 bool isPPC64 = Subtarget.isPPC64();
1479
1480 // One-way branch.
1481 if (!FBB) {
1482 if (Cond.empty()) // Unconditional branch
1483 BuildMI(&MBB, DL, get(PPC::B)).addMBB(TBB);
1484 else if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
1485 BuildMI(&MBB, DL, get(Cond[0].getImm() ?
1486 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
1487 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB);
1488 else if (Cond[0].getImm() == PPC::PRED_BIT_SET)
1489 BuildMI(&MBB, DL, get(PPC::BC)).add(Cond[1]).addMBB(TBB);
1490 else if (Cond[0].getImm() == PPC::PRED_BIT_UNSET)
1491 BuildMI(&MBB, DL, get(PPC::BCn)).add(Cond[1]).addMBB(TBB);
1492 else // Conditional branch
1493 BuildMI(&MBB, DL, get(PPC::BCC))
1494 .addImm(Cond[0].getImm())
1495 .add(Cond[1])
1496 .addMBB(TBB);
1497 return 1;
1498 }
1499
1500 // Two-way Conditional Branch.
1501 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
1502 BuildMI(&MBB, DL, get(Cond[0].getImm() ?
1503 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
1504 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB);
1505 else if (Cond[0].getImm() == PPC::PRED_BIT_SET)
1506 BuildMI(&MBB, DL, get(PPC::BC)).add(Cond[1]).addMBB(TBB);
1507 else if (Cond[0].getImm() == PPC::PRED_BIT_UNSET)
1508 BuildMI(&MBB, DL, get(PPC::BCn)).add(Cond[1]).addMBB(TBB);
1509 else
1510 BuildMI(&MBB, DL, get(PPC::BCC))
1511 .addImm(Cond[0].getImm())
1512 .add(Cond[1])
1513 .addMBB(TBB);
1514 BuildMI(&MBB, DL, get(PPC::B)).addMBB(FBB);
1515 return 2;
1516}
1517
1518// Select analysis.
1521 Register DstReg, Register TrueReg,
1522 Register FalseReg, int &CondCycles,
1523 int &TrueCycles, int &FalseCycles) const {
1524 if (!Subtarget.hasISEL())
1525 return false;
1526
1527 if (Cond.size() != 2)
1528 return false;
1529
1530 // If this is really a bdnz-like condition, then it cannot be turned into a
1531 // select.
1532 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
1533 return false;
1534
1535 // If the conditional branch uses a physical register, then it cannot be
1536 // turned into a select.
1537 if (Cond[1].getReg().isPhysical())
1538 return false;
1539
1540 // Check register classes.
1541 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
1542 const TargetRegisterClass *RC =
1543 RI.getCommonSubClass(MRI.getRegClass(TrueReg), MRI.getRegClass(FalseReg));
1544 if (!RC)
1545 return false;
1546
1547 // isel is for regular integer GPRs only.
1548 if (!PPC::GPRCRegClass.hasSubClassEq(RC) &&
1549 !PPC::GPRC_NOR0RegClass.hasSubClassEq(RC) &&
1550 !PPC::G8RCRegClass.hasSubClassEq(RC) &&
1551 !PPC::G8RC_NOX0RegClass.hasSubClassEq(RC))
1552 return false;
1553
1554 // FIXME: These numbers are for the A2, how well they work for other cores is
1555 // an open question. On the A2, the isel instruction has a 2-cycle latency
1556 // but single-cycle throughput. These numbers are used in combination with
1557 // the MispredictPenalty setting from the active SchedMachineModel.
1558 CondCycles = 1;
1559 TrueCycles = 1;
1560 FalseCycles = 1;
1561
1562 return true;
1563}
1564
1567 const DebugLoc &dl, Register DestReg,
1569 Register FalseReg) const {
1570 assert(Cond.size() == 2 &&
1571 "PPC branch conditions have two components!");
1572
1573 // Get the register classes.
1574 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
1575 const TargetRegisterClass *RC =
1576 RI.getCommonSubClass(MRI.getRegClass(TrueReg), MRI.getRegClass(FalseReg));
1577 assert(RC && "TrueReg and FalseReg must have overlapping register classes");
1578
1579 bool Is64Bit = PPC::G8RCRegClass.hasSubClassEq(RC) ||
1580 PPC::G8RC_NOX0RegClass.hasSubClassEq(RC);
1581 assert((Is64Bit ||
1582 PPC::GPRCRegClass.hasSubClassEq(RC) ||
1583 PPC::GPRC_NOR0RegClass.hasSubClassEq(RC)) &&
1584 "isel is for regular integer GPRs only");
1585
1586 unsigned OpCode = Is64Bit ? PPC::ISEL8 : PPC::ISEL;
1587 auto SelectPred = static_cast<PPC::Predicate>(Cond[0].getImm());
1588
1589 unsigned SubIdx = 0;
1590 bool SwapOps = false;
1591 switch (SelectPred) {
1592 case PPC::PRED_EQ:
1593 case PPC::PRED_EQ_MINUS:
1594 case PPC::PRED_EQ_PLUS:
1595 SubIdx = PPC::sub_eq; SwapOps = false; break;
1596 case PPC::PRED_NE:
1597 case PPC::PRED_NE_MINUS:
1598 case PPC::PRED_NE_PLUS:
1599 SubIdx = PPC::sub_eq; SwapOps = true; break;
1600 case PPC::PRED_LT:
1601 case PPC::PRED_LT_MINUS:
1602 case PPC::PRED_LT_PLUS:
1603 SubIdx = PPC::sub_lt; SwapOps = false; break;
1604 case PPC::PRED_GE:
1605 case PPC::PRED_GE_MINUS:
1606 case PPC::PRED_GE_PLUS:
1607 SubIdx = PPC::sub_lt; SwapOps = true; break;
1608 case PPC::PRED_GT:
1609 case PPC::PRED_GT_MINUS:
1610 case PPC::PRED_GT_PLUS:
1611 SubIdx = PPC::sub_gt; SwapOps = false; break;
1612 case PPC::PRED_LE:
1613 case PPC::PRED_LE_MINUS:
1614 case PPC::PRED_LE_PLUS:
1615 SubIdx = PPC::sub_gt; SwapOps = true; break;
1616 case PPC::PRED_UN:
1617 case PPC::PRED_UN_MINUS:
1618 case PPC::PRED_UN_PLUS:
1619 SubIdx = PPC::sub_un; SwapOps = false; break;
1620 case PPC::PRED_NU:
1621 case PPC::PRED_NU_MINUS:
1622 case PPC::PRED_NU_PLUS:
1623 SubIdx = PPC::sub_un; SwapOps = true; break;
1624 case PPC::PRED_BIT_SET: SubIdx = 0; SwapOps = false; break;
1625 case PPC::PRED_BIT_UNSET: SubIdx = 0; SwapOps = true; break;
1626 }
1627
1628 Register FirstReg = SwapOps ? FalseReg : TrueReg,
1629 SecondReg = SwapOps ? TrueReg : FalseReg;
1630
1631 // The first input register of isel cannot be r0. If it is a member
1632 // of a register class that can be r0, then copy it first (the
1633 // register allocator should eliminate the copy).
1634 if (MRI.getRegClass(FirstReg)->contains(PPC::R0) ||
1635 MRI.getRegClass(FirstReg)->contains(PPC::X0)) {
1636 const TargetRegisterClass *FirstRC =
1637 MRI.getRegClass(FirstReg)->contains(PPC::X0) ?
1638 &PPC::G8RC_NOX0RegClass : &PPC::GPRC_NOR0RegClass;
1639 Register OldFirstReg = FirstReg;
1640 FirstReg = MRI.createVirtualRegister(FirstRC);
1641 BuildMI(MBB, MI, dl, get(TargetOpcode::COPY), FirstReg)
1642 .addReg(OldFirstReg);
1643 }
1644
1645 BuildMI(MBB, MI, dl, get(OpCode), DestReg)
1646 .addReg(FirstReg)
1647 .addReg(SecondReg)
1648 .addReg(Cond[1].getReg(), {}, SubIdx);
1649}
1650
1651static unsigned getCRBitValue(unsigned CRBit) {
1652 unsigned Ret = 4;
1653 if (CRBit == PPC::CR0LT || CRBit == PPC::CR1LT ||
1654 CRBit == PPC::CR2LT || CRBit == PPC::CR3LT ||
1655 CRBit == PPC::CR4LT || CRBit == PPC::CR5LT ||
1656 CRBit == PPC::CR6LT || CRBit == PPC::CR7LT)
1657 Ret = 3;
1658 if (CRBit == PPC::CR0GT || CRBit == PPC::CR1GT ||
1659 CRBit == PPC::CR2GT || CRBit == PPC::CR3GT ||
1660 CRBit == PPC::CR4GT || CRBit == PPC::CR5GT ||
1661 CRBit == PPC::CR6GT || CRBit == PPC::CR7GT)
1662 Ret = 2;
1663 if (CRBit == PPC::CR0EQ || CRBit == PPC::CR1EQ ||
1664 CRBit == PPC::CR2EQ || CRBit == PPC::CR3EQ ||
1665 CRBit == PPC::CR4EQ || CRBit == PPC::CR5EQ ||
1666 CRBit == PPC::CR6EQ || CRBit == PPC::CR7EQ)
1667 Ret = 1;
1668 if (CRBit == PPC::CR0UN || CRBit == PPC::CR1UN ||
1669 CRBit == PPC::CR2UN || CRBit == PPC::CR3UN ||
1670 CRBit == PPC::CR4UN || CRBit == PPC::CR5UN ||
1671 CRBit == PPC::CR6UN || CRBit == PPC::CR7UN)
1672 Ret = 0;
1673
1674 assert(Ret != 4 && "Invalid CR bit register");
1675 return Ret;
1676}
1677
1680 const DebugLoc &DL, Register DestReg,
1681 Register SrcReg, bool KillSrc,
1682 bool RenamableDest, bool RenamableSrc) const {
1683 // We can end up with self copies and similar things as a result of VSX copy
1684 // legalization. Promote them here.
1686 if (PPC::F8RCRegClass.contains(DestReg) &&
1687 PPC::VSRCRegClass.contains(SrcReg)) {
1688 MCRegister SuperReg =
1689 TRI->getMatchingSuperReg(DestReg, PPC::sub_64, &PPC::VSRCRegClass);
1690
1691 if (VSXSelfCopyCrash && SrcReg == SuperReg)
1692 llvm_unreachable("nop VSX copy");
1693
1694 DestReg = SuperReg;
1695 } else if (PPC::F8RCRegClass.contains(SrcReg) &&
1696 PPC::VSRCRegClass.contains(DestReg)) {
1697 MCRegister SuperReg =
1698 TRI->getMatchingSuperReg(SrcReg, PPC::sub_64, &PPC::VSRCRegClass);
1699
1700 if (VSXSelfCopyCrash && DestReg == SuperReg)
1701 llvm_unreachable("nop VSX copy");
1702
1703 SrcReg = SuperReg;
1704 }
1705
1706 // Different class register copy
1707 if (PPC::CRBITRCRegClass.contains(SrcReg) &&
1708 PPC::GPRCRegClass.contains(DestReg)) {
1709 MCRegister CRReg = getCRFromCRBit(SrcReg);
1710 BuildMI(MBB, I, DL, get(PPC::MFOCRF), DestReg).addReg(CRReg);
1711 getKillRegState(KillSrc);
1712 // Rotate the CR bit in the CR fields to be the least significant bit and
1713 // then mask with 0x1 (MB = ME = 31).
1714 BuildMI(MBB, I, DL, get(PPC::RLWINM), DestReg)
1715 .addReg(DestReg, RegState::Kill)
1716 .addImm(TRI->getEncodingValue(CRReg) * 4 + (4 - getCRBitValue(SrcReg)))
1717 .addImm(31)
1718 .addImm(31);
1719 return;
1720 } else if (PPC::CRRCRegClass.contains(SrcReg) &&
1721 (PPC::G8RCRegClass.contains(DestReg) ||
1722 PPC::GPRCRegClass.contains(DestReg))) {
1723 bool Is64Bit = PPC::G8RCRegClass.contains(DestReg);
1724 unsigned MvCode = Is64Bit ? PPC::MFOCRF8 : PPC::MFOCRF;
1725 unsigned ShCode = Is64Bit ? PPC::RLWINM8 : PPC::RLWINM;
1726 unsigned CRNum = TRI->getEncodingValue(SrcReg);
1727 BuildMI(MBB, I, DL, get(MvCode), DestReg).addReg(SrcReg);
1728 getKillRegState(KillSrc);
1729 if (CRNum == 7)
1730 return;
1731 // Shift the CR bits to make the CR field in the lowest 4 bits of GRC.
1732 BuildMI(MBB, I, DL, get(ShCode), DestReg)
1733 .addReg(DestReg, RegState::Kill)
1734 .addImm(CRNum * 4 + 4)
1735 .addImm(28)
1736 .addImm(31);
1737 return;
1738 } else if (PPC::G8RCRegClass.contains(SrcReg) &&
1739 PPC::VSFRCRegClass.contains(DestReg)) {
1740 assert(Subtarget.hasDirectMove() &&
1741 "Subtarget doesn't support directmove, don't know how to copy.");
1742 BuildMI(MBB, I, DL, get(PPC::MTVSRD), DestReg).addReg(SrcReg);
1743 NumGPRtoVSRSpill++;
1744 getKillRegState(KillSrc);
1745 return;
1746 } else if (PPC::VSFRCRegClass.contains(SrcReg) &&
1747 PPC::G8RCRegClass.contains(DestReg)) {
1748 assert(Subtarget.hasDirectMove() &&
1749 "Subtarget doesn't support directmove, don't know how to copy.");
1750 BuildMI(MBB, I, DL, get(PPC::MFVSRD), DestReg).addReg(SrcReg);
1751 getKillRegState(KillSrc);
1752 return;
1753 } else if (PPC::SPERCRegClass.contains(SrcReg) &&
1754 PPC::GPRCRegClass.contains(DestReg)) {
1755 BuildMI(MBB, I, DL, get(PPC::EFSCFD), DestReg).addReg(SrcReg);
1756 getKillRegState(KillSrc);
1757 return;
1758 } else if (PPC::GPRCRegClass.contains(SrcReg) &&
1759 PPC::SPERCRegClass.contains(DestReg)) {
1760 BuildMI(MBB, I, DL, get(PPC::EFDCFS), DestReg).addReg(SrcReg);
1761 getKillRegState(KillSrc);
1762 return;
1763 } else if ((PPC::G8RCRegClass.contains(DestReg) ||
1764 PPC::GPRCRegClass.contains(DestReg)) &&
1765 SrcReg == PPC::CARRY) {
1766 bool Is64Bit = PPC::G8RCRegClass.contains(DestReg);
1767 BuildMI(MBB, I, DL, get(Is64Bit ? PPC::MFSPR8 : PPC::MFSPR), DestReg)
1768 .addImm(1)
1769 .addReg(PPC::CARRY, RegState::Implicit);
1770 return;
1771 } else if ((PPC::G8RCRegClass.contains(SrcReg) ||
1772 PPC::GPRCRegClass.contains(SrcReg)) &&
1773 DestReg == PPC::CARRY) {
1774 bool Is64Bit = PPC::G8RCRegClass.contains(SrcReg);
1775 BuildMI(MBB, I, DL, get(Is64Bit ? PPC::MTSPR8 : PPC::MTSPR))
1776 .addImm(1)
1777 .addReg(SrcReg)
1778 .addReg(PPC::CARRY, RegState::ImplicitDefine);
1779 return;
1780 }
1781
1782 unsigned Opc;
1783 if (PPC::GPRCRegClass.contains(DestReg, SrcReg))
1784 Opc = PPC::OR;
1785 else if (PPC::G8RCRegClass.contains(DestReg, SrcReg))
1786 Opc = PPC::OR8;
1787 else if (PPC::F4RCRegClass.contains(DestReg, SrcReg))
1788 Opc = PPC::FMR;
1789 else if (PPC::CRRCRegClass.contains(DestReg, SrcReg))
1790 Opc = PPC::MCRF;
1791 else if (PPC::VRRCRegClass.contains(DestReg, SrcReg))
1792 Opc = PPC::VOR;
1793 else if (PPC::VSRCRegClass.contains(DestReg, SrcReg))
1794 // There are two different ways this can be done:
1795 // 1. xxlor : This has lower latency (on the P7), 2 cycles, but can only
1796 // issue in VSU pipeline 0.
1797 // 2. xmovdp/xmovsp: This has higher latency (on the P7), 6 cycles, but
1798 // can go to either pipeline.
1799 // We'll always use xxlor here, because in practically all cases where
1800 // copies are generated, they are close enough to some use that the
1801 // lower-latency form is preferable.
1802 Opc = PPC::XXLOR;
1803 else if (PPC::VSFRCRegClass.contains(DestReg, SrcReg) ||
1804 PPC::VSSRCRegClass.contains(DestReg, SrcReg))
1805 Opc = (Subtarget.hasP9Vector()) ? PPC::XSCPSGNDP : PPC::XXLORf;
1806 else if (Subtarget.pairedVectorMemops() &&
1807 PPC::VSRpRCRegClass.contains(DestReg, SrcReg)) {
1808 if (SrcReg > PPC::VSRp15)
1809 SrcReg = PPC::V0 + (SrcReg - PPC::VSRp16) * 2;
1810 else
1811 SrcReg = PPC::VSL0 + (SrcReg - PPC::VSRp0) * 2;
1812 if (DestReg > PPC::VSRp15)
1813 DestReg = PPC::V0 + (DestReg - PPC::VSRp16) * 2;
1814 else
1815 DestReg = PPC::VSL0 + (DestReg - PPC::VSRp0) * 2;
1816 BuildMI(MBB, I, DL, get(PPC::XXLOR), DestReg).
1817 addReg(SrcReg).addReg(SrcReg, getKillRegState(KillSrc));
1818 BuildMI(MBB, I, DL, get(PPC::XXLOR), DestReg + 1).
1819 addReg(SrcReg + 1).addReg(SrcReg + 1, getKillRegState(KillSrc));
1820 return;
1821 }
1822 else if (PPC::CRBITRCRegClass.contains(DestReg, SrcReg))
1823 Opc = PPC::CROR;
1824 else if (PPC::SPERCRegClass.contains(DestReg, SrcReg))
1825 Opc = PPC::EVOR;
1826 else if ((PPC::ACCRCRegClass.contains(DestReg) ||
1827 PPC::UACCRCRegClass.contains(DestReg)) &&
1828 (PPC::ACCRCRegClass.contains(SrcReg) ||
1829 PPC::UACCRCRegClass.contains(SrcReg))) {
1830 // If primed, de-prime the source register, copy the individual registers
1831 // and prime the destination if needed. The vector subregisters are
1832 // vs[(u)acc * 4] - vs[(u)acc * 4 + 3]. If the copy is not a kill and the
1833 // source is primed, we need to re-prime it after the copy as well.
1834 PPCRegisterInfo::emitAccCopyInfo(MBB, DestReg, SrcReg);
1835 bool DestPrimed = PPC::ACCRCRegClass.contains(DestReg);
1836 bool SrcPrimed = PPC::ACCRCRegClass.contains(SrcReg);
1837 MCRegister VSLSrcReg =
1838 PPC::VSL0 + (SrcReg - (SrcPrimed ? PPC::ACC0 : PPC::UACC0)) * 4;
1839 MCRegister VSLDestReg =
1840 PPC::VSL0 + (DestReg - (DestPrimed ? PPC::ACC0 : PPC::UACC0)) * 4;
1841 if (SrcPrimed)
1842 BuildMI(MBB, I, DL, get(PPC::XXMFACC), SrcReg).addReg(SrcReg);
1843 for (unsigned Idx = 0; Idx < 4; Idx++)
1844 BuildMI(MBB, I, DL, get(PPC::XXLOR), VSLDestReg + Idx)
1845 .addReg(VSLSrcReg + Idx)
1846 .addReg(VSLSrcReg + Idx, getKillRegState(KillSrc));
1847 if (DestPrimed)
1848 BuildMI(MBB, I, DL, get(PPC::XXMTACC), DestReg).addReg(DestReg);
1849 if (SrcPrimed && !KillSrc)
1850 BuildMI(MBB, I, DL, get(PPC::XXMTACC), SrcReg).addReg(SrcReg);
1851 return;
1852 } else if (PPC::G8pRCRegClass.contains(DestReg) &&
1853 PPC::G8pRCRegClass.contains(SrcReg)) {
1854 // TODO: Handle G8RC to G8pRC (and vice versa) copy.
1855 unsigned DestRegIdx = DestReg - PPC::G8p0;
1856 MCRegister DestRegSub0 = PPC::X0 + 2 * DestRegIdx;
1857 MCRegister DestRegSub1 = PPC::X0 + 2 * DestRegIdx + 1;
1858 unsigned SrcRegIdx = SrcReg - PPC::G8p0;
1859 MCRegister SrcRegSub0 = PPC::X0 + 2 * SrcRegIdx;
1860 MCRegister SrcRegSub1 = PPC::X0 + 2 * SrcRegIdx + 1;
1861 BuildMI(MBB, I, DL, get(PPC::OR8), DestRegSub0)
1862 .addReg(SrcRegSub0)
1863 .addReg(SrcRegSub0, getKillRegState(KillSrc));
1864 BuildMI(MBB, I, DL, get(PPC::OR8), DestRegSub1)
1865 .addReg(SrcRegSub1)
1866 .addReg(SrcRegSub1, getKillRegState(KillSrc));
1867 return;
1868 } else if ((PPC::WACCRCRegClass.contains(DestReg) ||
1869 PPC::WACC_HIRCRegClass.contains(DestReg)) &&
1870 (PPC::WACCRCRegClass.contains(SrcReg) ||
1871 PPC::WACC_HIRCRegClass.contains(SrcReg))) {
1872
1873 Opc = PPC::WACCRCRegClass.contains(SrcReg) ? PPC::DMXXEXTFDMR512
1874 : PPC::DMXXEXTFDMR512_HI;
1875
1876 RegScavenger RS;
1877 RS.enterBasicBlockEnd(MBB);
1878 RS.backward(std::next(I));
1879
1880 Register TmpReg1 = RS.scavengeRegisterBackwards(PPC::VSRpRCRegClass, I,
1881 /* RestoreAfter */ false, 0,
1882 /* AllowSpill */ false);
1883
1884 RS.setRegUsed(TmpReg1);
1885 Register TmpReg2 = RS.scavengeRegisterBackwards(PPC::VSRpRCRegClass, I,
1886 /* RestoreAfter */ false, 0,
1887 /* AllowSpill */ false);
1888
1889 BuildMI(MBB, I, DL, get(Opc))
1890 .addReg(TmpReg1, RegState::Define)
1891 .addReg(TmpReg2, RegState::Define)
1892 .addReg(SrcReg, getKillRegState(KillSrc));
1893
1894 Opc = PPC::WACCRCRegClass.contains(DestReg) ? PPC::DMXXINSTDMR512
1895 : PPC::DMXXINSTDMR512_HI;
1896
1897 BuildMI(MBB, I, DL, get(Opc), DestReg)
1898 .addReg(TmpReg1, RegState::Kill)
1899 .addReg(TmpReg2, RegState::Kill);
1900
1901 return;
1902 } else if (PPC::DMRRCRegClass.contains(DestReg) &&
1903 PPC::DMRRCRegClass.contains(SrcReg)) {
1904
1905 BuildMI(MBB, I, DL, get(PPC::DMMR), DestReg)
1906 .addReg(SrcReg, getKillRegState(KillSrc));
1907
1908 return;
1909
1910 } else
1911 llvm_unreachable("Impossible reg-to-reg copy");
1912
1913 const MCInstrDesc &MCID = get(Opc);
1914 if (MCID.getNumOperands() == 3)
1915 BuildMI(MBB, I, DL, MCID, DestReg)
1916 .addReg(SrcReg).addReg(SrcReg, getKillRegState(KillSrc));
1917 else
1918 BuildMI(MBB, I, DL, MCID, DestReg).addReg(SrcReg, getKillRegState(KillSrc));
1919}
1920
1921unsigned PPCInstrInfo::getSpillIndex(const TargetRegisterClass *RC) const {
1922 int OpcodeIndex = 0;
1923
1924 if (PPC::GPRCRegClass.hasSubClassEq(RC) ||
1925 PPC::GPRC_NOR0RegClass.hasSubClassEq(RC)) {
1927 } else if (PPC::G8RCRegClass.hasSubClassEq(RC) ||
1928 PPC::G8RC_NOX0RegClass.hasSubClassEq(RC)) {
1930 } else if (PPC::F8RCRegClass.hasSubClassEq(RC)) {
1932 } else if (PPC::F4RCRegClass.hasSubClassEq(RC)) {
1934 } else if (PPC::SPERCRegClass.hasSubClassEq(RC)) {
1936 } else if (PPC::CRRCRegClass.hasSubClassEq(RC)) {
1938 } else if (PPC::CRBITRCRegClass.hasSubClassEq(RC)) {
1940 } else if (PPC::VRRCRegClass.hasSubClassEq(RC)) {
1942 } else if (PPC::VSRCRegClass.hasSubClassEq(RC)) {
1944 } else if (PPC::VSFRCRegClass.hasSubClassEq(RC)) {
1946 } else if (PPC::VSSRCRegClass.hasSubClassEq(RC)) {
1948 } else if (PPC::SPILLTOVSRRCRegClass.hasSubClassEq(RC)) {
1950 } else if (PPC::ACCRCRegClass.hasSubClassEq(RC)) {
1951 assert(Subtarget.pairedVectorMemops() &&
1952 "Register unexpected when paired memops are disabled.");
1954 } else if (PPC::UACCRCRegClass.hasSubClassEq(RC)) {
1955 assert(Subtarget.pairedVectorMemops() &&
1956 "Register unexpected when paired memops are disabled.");
1958 } else if (PPC::WACCRCRegClass.hasSubClassEq(RC)) {
1959 assert(Subtarget.pairedVectorMemops() &&
1960 "Register unexpected when paired memops are disabled.");
1962 } else if (PPC::VSRpRCRegClass.hasSubClassEq(RC)) {
1963 assert(Subtarget.pairedVectorMemops() &&
1964 "Register unexpected when paired memops are disabled.");
1966 } else if (PPC::G8pRCRegClass.hasSubClassEq(RC)) {
1968 } else if (PPC::DMRROWRCRegClass.hasSubClassEq(RC)) {
1969 llvm_unreachable("TODO: Implement spill DMRROW regclass!");
1970 } else if (PPC::DMRROWpRCRegClass.hasSubClassEq(RC)) {
1971 llvm_unreachable("TODO: Implement spill DMRROWp regclass!");
1972 } else if (PPC::DMRpRCRegClass.hasSubClassEq(RC)) {
1974 } else if (PPC::DMRRCRegClass.hasSubClassEq(RC)) {
1976 } else {
1977 llvm_unreachable("Unknown regclass!");
1978 }
1979 return OpcodeIndex;
1980}
1981
1982unsigned
1984 ArrayRef<unsigned> OpcodesForSpill = getStoreOpcodesForSpillArray();
1985 return OpcodesForSpill[getSpillIndex(RC)];
1986}
1987
1988unsigned
1990 ArrayRef<unsigned> OpcodesForSpill = getLoadOpcodesForSpillArray();
1991 return OpcodesForSpill[getSpillIndex(RC)];
1992}
1993
1994void PPCInstrInfo::StoreRegToStackSlot(
1995 MachineFunction &MF, unsigned SrcReg, bool isKill, int FrameIdx,
1996 const TargetRegisterClass *RC,
1997 SmallVectorImpl<MachineInstr *> &NewMIs) const {
1998 unsigned Opcode = getStoreOpcodeForSpill(RC);
1999 DebugLoc DL;
2000
2001 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2002 FuncInfo->setHasSpills();
2003
2005 BuildMI(MF, DL, get(Opcode)).addReg(SrcReg, getKillRegState(isKill)),
2006 FrameIdx));
2007
2008 if (PPC::CRRCRegClass.hasSubClassEq(RC) ||
2009 PPC::CRBITRCRegClass.hasSubClassEq(RC))
2010 FuncInfo->setSpillsCR();
2011
2012 if (isXFormMemOp(Opcode))
2013 FuncInfo->setHasNonRISpills();
2014}
2015
2018 bool isKill, int FrameIdx, const TargetRegisterClass *RC) const {
2019 MachineFunction &MF = *MBB.getParent();
2021
2022 StoreRegToStackSlot(MF, SrcReg, isKill, FrameIdx, RC, NewMIs);
2023
2024 for (MachineInstr *NewMI : NewMIs)
2025 MBB.insert(MI, NewMI);
2026
2027 const MachineFrameInfo &MFI = MF.getFrameInfo();
2031 MFI.getObjectAlign(FrameIdx));
2032 NewMIs.back()->addMemOperand(MF, MMO);
2033}
2034
2037 bool isKill, int FrameIdx, const TargetRegisterClass *RC, Register VReg,
2038 MachineInstr::MIFlag Flags) const {
2039 // We need to avoid a situation in which the value from a VRRC register is
2040 // spilled using an Altivec instruction and reloaded into a VSRC register
2041 // using a VSX instruction. The issue with this is that the VSX
2042 // load/store instructions swap the doublewords in the vector and the Altivec
2043 // ones don't. The register classes on the spill/reload may be different if
2044 // the register is defined using an Altivec instruction and is then used by a
2045 // VSX instruction.
2046 RC = updatedRC(RC);
2047 storeRegToStackSlotNoUpd(MBB, MI, SrcReg, isKill, FrameIdx, RC);
2048}
2049
2050void PPCInstrInfo::LoadRegFromStackSlot(MachineFunction &MF, const DebugLoc &DL,
2051 unsigned DestReg, int FrameIdx,
2052 const TargetRegisterClass *RC,
2054 const {
2055 unsigned Opcode = getLoadOpcodeForSpill(RC);
2056 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(Opcode), DestReg),
2057 FrameIdx));
2058}
2059
2062 int FrameIdx, const TargetRegisterClass *RC) const {
2063 MachineFunction &MF = *MBB.getParent();
2065 DebugLoc DL;
2066 if (MI != MBB.end()) DL = MI->getDebugLoc();
2067
2068 LoadRegFromStackSlot(MF, DL, DestReg, FrameIdx, RC, NewMIs);
2069
2070 for (MachineInstr *NewMI : NewMIs)
2071 MBB.insert(MI, NewMI);
2072
2073 const MachineFrameInfo &MFI = MF.getFrameInfo();
2077 MFI.getObjectAlign(FrameIdx));
2078 NewMIs.back()->addMemOperand(MF, MMO);
2079}
2080
2083 Register DestReg, int FrameIdx,
2084 const TargetRegisterClass *RC,
2085 Register VReg, unsigned SubReg,
2086 MachineInstr::MIFlag Flags) const {
2087 // We need to avoid a situation in which the value from a VRRC register is
2088 // spilled using an Altivec instruction and reloaded into a VSRC register
2089 // using a VSX instruction. The issue with this is that the VSX
2090 // load/store instructions swap the doublewords in the vector and the Altivec
2091 // ones don't. The register classes on the spill/reload may be different if
2092 // the register is defined using an Altivec instruction and is then used by a
2093 // VSX instruction.
2094 RC = updatedRC(RC);
2095
2096 loadRegFromStackSlotNoUpd(MBB, MI, DestReg, FrameIdx, RC);
2097}
2098
2101 assert(Cond.size() == 2 && "Invalid PPC branch opcode!");
2102 if (Cond[1].getReg() == PPC::CTR8 || Cond[1].getReg() == PPC::CTR)
2103 Cond[0].setImm(Cond[0].getImm() == 0 ? 1 : 0);
2104 else
2105 // Leave the CR# the same, but invert the condition.
2107 return false;
2108}
2109
2110// For some instructions, it is legal to fold ZERO into the RA register field.
2111// This function performs that fold by replacing the operand with PPC::ZERO,
2112// it does not consider whether the load immediate zero is no longer in use.
2114 Register Reg) const {
2115 // A zero immediate should always be loaded with a single li.
2116 unsigned DefOpc = DefMI.getOpcode();
2117 if (DefOpc != PPC::LI && DefOpc != PPC::LI8)
2118 return false;
2119 if (!DefMI.getOperand(1).isImm())
2120 return false;
2121 if (DefMI.getOperand(1).getImm() != 0)
2122 return false;
2123
2124 // Note that we cannot here invert the arguments of an isel in order to fold
2125 // a ZERO into what is presented as the second argument. All we have here
2126 // is the condition bit, and that might come from a CR-logical bit operation.
2127
2128 const MCInstrDesc &UseMCID = UseMI.getDesc();
2129
2130 // Only fold into real machine instructions.
2131 if (UseMCID.isPseudo())
2132 return false;
2133
2134 // We need to find which of the User's operands is to be folded, that will be
2135 // the operand that matches the given register ID.
2136 unsigned UseIdx;
2137 for (UseIdx = 0; UseIdx < UseMI.getNumOperands(); ++UseIdx)
2138 if (UseMI.getOperand(UseIdx).isReg() &&
2139 UseMI.getOperand(UseIdx).getReg() == Reg)
2140 break;
2141
2142 assert(UseIdx < UseMI.getNumOperands() && "Cannot find Reg in UseMI");
2143 assert(UseIdx < UseMCID.getNumOperands() && "No operand description for Reg");
2144
2145 // We can fold the zero if this register requires a GPRC_NOR0/G8RC_NOX0
2146 // register (which might also be specified as a pointer class kind).
2147
2148 const MCOperandInfo &UseInfo = UseMCID.operands()[UseIdx];
2149 int16_t RegClass = getOpRegClassID(UseInfo);
2150 if (UseInfo.RegClass != PPC::GPRC_NOR0RegClassID &&
2151 UseInfo.RegClass != PPC::G8RC_NOX0RegClassID)
2152 return false;
2153
2154 // Make sure this is not tied to an output register (or otherwise
2155 // constrained). This is true for ST?UX registers, for example, which
2156 // are tied to their output registers.
2157 if (UseInfo.Constraints != 0)
2158 return false;
2159
2160 MCRegister ZeroReg =
2161 RegClass == PPC::G8RC_NOX0RegClassID ? PPC::ZERO8 : PPC::ZERO;
2162
2163 LLVM_DEBUG(dbgs() << "Folded immediate zero for: ");
2164 LLVM_DEBUG(UseMI.dump());
2165 UseMI.getOperand(UseIdx).setReg(ZeroReg);
2166 LLVM_DEBUG(dbgs() << "Into: ");
2167 LLVM_DEBUG(UseMI.dump());
2168 return true;
2169}
2170
2171// Folds zero into instructions which have a load immediate zero as an operand
2172// but also recognize zero as immediate zero. If the definition of the load
2173// has no more users it is deleted.
2175 Register Reg, MachineRegisterInfo *MRI) const {
2176 bool Changed = onlyFoldImmediate(UseMI, DefMI, Reg);
2177 if (MRI->use_nodbg_empty(Reg))
2178 DefMI.eraseFromParent();
2179 return Changed;
2180}
2181
2183 for (MachineInstr &MI : MBB)
2184 if (MI.definesRegister(PPC::CTR, /*TRI=*/nullptr) ||
2185 MI.definesRegister(PPC::CTR8, /*TRI=*/nullptr))
2186 return true;
2187 return false;
2188}
2189
2190// We should make sure that, if we're going to predicate both sides of a
2191// condition (a diamond), that both sides don't define the counter register. We
2192// can predicate counter-decrement-based branches, but while that predicates
2193// the branching, it does not predicate the counter decrement. If we tried to
2194// merge the triangle into one predicated block, we'd decrement the counter
2195// twice.
2197 unsigned NumT, unsigned ExtraT,
2198 MachineBasicBlock &FMBB,
2199 unsigned NumF, unsigned ExtraF,
2200 BranchProbability Probability) const {
2201 return !(MBBDefinesCTR(TMBB) && MBBDefinesCTR(FMBB));
2202}
2203
2204
2206 // The predicated branches are identified by their type, not really by the
2207 // explicit presence of a predicate. Furthermore, some of them can be
2208 // predicated more than once. Because if conversion won't try to predicate
2209 // any instruction which already claims to be predicated (by returning true
2210 // here), always return false. In doing so, we let isPredicable() be the
2211 // final word on whether not the instruction can be (further) predicated.
2212
2213 return false;
2214}
2215
2217 const MachineBasicBlock *MBB,
2218 const MachineFunction &MF) const {
2219 switch (MI.getOpcode()) {
2220 default:
2221 break;
2222 // Set MFFS and MTFSF as scheduling boundary to avoid unexpected code motion
2223 // across them, since some FP operations may change content of FPSCR.
2224 // TODO: Model FPSCR in PPC instruction definitions and remove the workaround
2225 case PPC::MFFS:
2226 case PPC::MTFSF:
2227 case PPC::FENCE:
2228 return true;
2229 }
2231}
2232
2234 ArrayRef<MachineOperand> Pred) const {
2235 unsigned OpC = MI.getOpcode();
2236 if (OpC == PPC::BLR || OpC == PPC::BLR8) {
2237 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR) {
2238 bool isPPC64 = Subtarget.isPPC64();
2239 MI.setDesc(get(Pred[0].getImm() ? (isPPC64 ? PPC::BDNZLR8 : PPC::BDNZLR)
2240 : (isPPC64 ? PPC::BDZLR8 : PPC::BDZLR)));
2241 // Need add Def and Use for CTR implicit operand.
2242 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2243 .addReg(Pred[1].getReg(), RegState::Implicit)
2245 } else if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
2246 MI.setDesc(get(PPC::BCLR));
2247 MachineInstrBuilder(*MI.getParent()->getParent(), MI).add(Pred[1]);
2248 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
2249 MI.setDesc(get(PPC::BCLRn));
2250 MachineInstrBuilder(*MI.getParent()->getParent(), MI).add(Pred[1]);
2251 } else {
2252 MI.setDesc(get(PPC::BCCLR));
2253 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2254 .addImm(Pred[0].getImm())
2255 .add(Pred[1]);
2256 }
2257
2258 return true;
2259 } else if (OpC == PPC::B) {
2260 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR) {
2261 bool isPPC64 = Subtarget.isPPC64();
2262 MI.setDesc(get(Pred[0].getImm() ? (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ)
2263 : (isPPC64 ? PPC::BDZ8 : PPC::BDZ)));
2264 // Need add Def and Use for CTR implicit operand.
2265 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2266 .addReg(Pred[1].getReg(), RegState::Implicit)
2268 } else if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
2269 MachineBasicBlock *MBB = MI.getOperand(0).getMBB();
2270 MI.removeOperand(0);
2271
2272 MI.setDesc(get(PPC::BC));
2273 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2274 .add(Pred[1])
2275 .addMBB(MBB);
2276 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
2277 MachineBasicBlock *MBB = MI.getOperand(0).getMBB();
2278 MI.removeOperand(0);
2279
2280 MI.setDesc(get(PPC::BCn));
2281 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2282 .add(Pred[1])
2283 .addMBB(MBB);
2284 } else {
2285 MachineBasicBlock *MBB = MI.getOperand(0).getMBB();
2286 MI.removeOperand(0);
2287
2288 MI.setDesc(get(PPC::BCC));
2289 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2290 .addImm(Pred[0].getImm())
2291 .add(Pred[1])
2292 .addMBB(MBB);
2293 }
2294
2295 return true;
2296 } else if (OpC == PPC::BCTR || OpC == PPC::BCTR8 || OpC == PPC::BCTRL ||
2297 OpC == PPC::BCTRL8 || OpC == PPC::BCTRL_RM ||
2298 OpC == PPC::BCTRL8_RM) {
2299 if (Pred[1].getReg() == PPC::CTR8 || Pred[1].getReg() == PPC::CTR)
2300 llvm_unreachable("Cannot predicate bctr[l] on the ctr register");
2301
2302 bool setLR = OpC == PPC::BCTRL || OpC == PPC::BCTRL8 ||
2303 OpC == PPC::BCTRL_RM || OpC == PPC::BCTRL8_RM;
2304 bool isPPC64 = Subtarget.isPPC64();
2305
2306 if (Pred[0].getImm() == PPC::PRED_BIT_SET) {
2307 MI.setDesc(get(isPPC64 ? (setLR ? PPC::BCCTRL8 : PPC::BCCTR8)
2308 : (setLR ? PPC::BCCTRL : PPC::BCCTR)));
2309 MachineInstrBuilder(*MI.getParent()->getParent(), MI).add(Pred[1]);
2310 } else if (Pred[0].getImm() == PPC::PRED_BIT_UNSET) {
2311 MI.setDesc(get(isPPC64 ? (setLR ? PPC::BCCTRL8n : PPC::BCCTR8n)
2312 : (setLR ? PPC::BCCTRLn : PPC::BCCTRn)));
2313 MachineInstrBuilder(*MI.getParent()->getParent(), MI).add(Pred[1]);
2314 } else {
2315 MI.setDesc(get(isPPC64 ? (setLR ? PPC::BCCCTRL8 : PPC::BCCCTR8)
2316 : (setLR ? PPC::BCCCTRL : PPC::BCCCTR)));
2317 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2318 .addImm(Pred[0].getImm())
2319 .add(Pred[1]);
2320 }
2321
2322 // Need add Def and Use for LR implicit operand.
2323 if (setLR)
2324 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2325 .addReg(isPPC64 ? PPC::LR8 : PPC::LR, RegState::Implicit)
2326 .addReg(isPPC64 ? PPC::LR8 : PPC::LR, RegState::ImplicitDefine);
2327 if (OpC == PPC::BCTRL_RM || OpC == PPC::BCTRL8_RM)
2328 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
2330
2331 return true;
2332 }
2333
2334 return false;
2335}
2336
2338 ArrayRef<MachineOperand> Pred2) const {
2339 assert(Pred1.size() == 2 && "Invalid PPC first predicate");
2340 assert(Pred2.size() == 2 && "Invalid PPC second predicate");
2341
2342 if (Pred1[1].getReg() == PPC::CTR8 || Pred1[1].getReg() == PPC::CTR)
2343 return false;
2344 if (Pred2[1].getReg() == PPC::CTR8 || Pred2[1].getReg() == PPC::CTR)
2345 return false;
2346
2347 // P1 can only subsume P2 if they test the same condition register.
2348 if (Pred1[1].getReg() != Pred2[1].getReg())
2349 return false;
2350
2351 PPC::Predicate P1 = (PPC::Predicate) Pred1[0].getImm();
2352 PPC::Predicate P2 = (PPC::Predicate) Pred2[0].getImm();
2353
2354 if (P1 == P2)
2355 return true;
2356
2357 // Does P1 subsume P2, e.g. GE subsumes GT.
2358 if (P1 == PPC::PRED_LE &&
2359 (P2 == PPC::PRED_LT || P2 == PPC::PRED_EQ))
2360 return true;
2361 if (P1 == PPC::PRED_GE &&
2362 (P2 == PPC::PRED_GT || P2 == PPC::PRED_EQ))
2363 return true;
2364
2365 return false;
2366}
2367
2369 std::vector<MachineOperand> &Pred,
2370 bool SkipDead) const {
2371 // Note: At the present time, the contents of Pred from this function is
2372 // unused by IfConversion. This implementation follows ARM by pushing the
2373 // CR-defining operand. Because the 'DZ' and 'DNZ' count as types of
2374 // predicate, instructions defining CTR or CTR8 are also included as
2375 // predicate-defining instructions.
2376
2377 const TargetRegisterClass *RCs[] =
2378 { &PPC::CRRCRegClass, &PPC::CRBITRCRegClass,
2379 &PPC::CTRRCRegClass, &PPC::CTRRC8RegClass };
2380
2381 bool Found = false;
2382 for (const MachineOperand &MO : MI.operands()) {
2383 for (unsigned c = 0; c < std::size(RCs) && !Found; ++c) {
2384 const TargetRegisterClass *RC = RCs[c];
2385 if (MO.isReg()) {
2386 if (MO.isDef() && RC->contains(MO.getReg())) {
2387 Pred.push_back(MO);
2388 Found = true;
2389 }
2390 } else if (MO.isRegMask()) {
2391 for (MCPhysReg R : *RC)
2392 if (MO.clobbersPhysReg(R)) {
2393 Pred.push_back(MO);
2394 Found = true;
2395 }
2396 }
2397 }
2398 }
2399
2400 return Found;
2401}
2402
2404 Register &SrcReg2, int64_t &Mask,
2405 int64_t &Value) const {
2406 unsigned Opc = MI.getOpcode();
2407
2408 switch (Opc) {
2409 default: return false;
2410 case PPC::CMPWI:
2411 case PPC::CMPLWI:
2412 case PPC::CMPDI:
2413 case PPC::CMPLDI:
2414 SrcReg = MI.getOperand(1).getReg();
2415 SrcReg2 = 0;
2416 Value = MI.getOperand(2).getImm();
2417 Mask = 0xFFFF;
2418 return true;
2419 case PPC::CMPW:
2420 case PPC::CMPLW:
2421 case PPC::CMPD:
2422 case PPC::CMPLD:
2423 case PPC::FCMPUS:
2424 case PPC::FCMPUD:
2425 SrcReg = MI.getOperand(1).getReg();
2426 SrcReg2 = MI.getOperand(2).getReg();
2427 Value = 0;
2428 Mask = 0;
2429 return true;
2430 }
2431}
2432
2434 Register SrcReg2, int64_t Mask,
2435 int64_t Value,
2436 const MachineRegisterInfo *MRI) const {
2437 if (DisableCmpOpt)
2438 return false;
2439
2440 int OpC = CmpInstr.getOpcode();
2441 Register CRReg = CmpInstr.getOperand(0).getReg();
2442
2443 // FP record forms set CR1 based on the exception status bits, not a
2444 // comparison with zero.
2445 if (OpC == PPC::FCMPUS || OpC == PPC::FCMPUD)
2446 return false;
2447
2449 // The record forms set the condition register based on a signed comparison
2450 // with zero (so says the ISA manual). This is not as straightforward as it
2451 // seems, however, because this is always a 64-bit comparison on PPC64, even
2452 // for instructions that are 32-bit in nature (like slw for example).
2453 // So, on PPC32, for unsigned comparisons, we can use the record forms only
2454 // for equality checks (as those don't depend on the sign). On PPC64,
2455 // we are restricted to equality for unsigned 64-bit comparisons and for
2456 // signed 32-bit comparisons the applicability is more restricted.
2457 bool isPPC64 = Subtarget.isPPC64();
2458 bool is32BitSignedCompare = OpC == PPC::CMPWI || OpC == PPC::CMPW;
2459 bool is32BitUnsignedCompare = OpC == PPC::CMPLWI || OpC == PPC::CMPLW;
2460 bool is64BitUnsignedCompare = OpC == PPC::CMPLDI || OpC == PPC::CMPLD;
2461
2462 // Look through copies unless that gets us to a physical register.
2463 Register ActualSrc = TRI->lookThruCopyLike(SrcReg, MRI);
2464 if (ActualSrc.isVirtual())
2465 SrcReg = ActualSrc;
2466
2467 // Get the unique definition of SrcReg.
2468 MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
2469 if (!MI) return false;
2470
2471 bool equalityOnly = false;
2472 bool noSub = false;
2473 if (isPPC64) {
2474 if (is32BitSignedCompare) {
2475 // We can perform this optimization only if SrcReg is sign-extending.
2476 if (isSignExtended(SrcReg, MRI))
2477 noSub = true;
2478 else
2479 return false;
2480 } else if (is32BitUnsignedCompare) {
2481 // We can perform this optimization, equality only, if SrcReg is
2482 // zero-extending.
2483 if (isZeroExtended(SrcReg, MRI)) {
2484 noSub = true;
2485 equalityOnly = true;
2486 } else
2487 return false;
2488 } else
2489 equalityOnly = is64BitUnsignedCompare;
2490 } else
2491 equalityOnly = is32BitUnsignedCompare;
2492
2493 if (equalityOnly) {
2494 // We need to check the uses of the condition register in order to reject
2495 // non-equality comparisons.
2497 I = MRI->use_instr_begin(CRReg), IE = MRI->use_instr_end();
2498 I != IE; ++I) {
2499 MachineInstr *UseMI = &*I;
2500 if (UseMI->getOpcode() == PPC::BCC) {
2501 PPC::Predicate Pred = (PPC::Predicate)UseMI->getOperand(0).getImm();
2502 unsigned PredCond = PPC::getPredicateCondition(Pred);
2503 // We ignore hint bits when checking for non-equality comparisons.
2504 if (PredCond != PPC::PRED_EQ && PredCond != PPC::PRED_NE)
2505 return false;
2506 } else if (UseMI->getOpcode() == PPC::ISEL ||
2507 UseMI->getOpcode() == PPC::ISEL8) {
2508 unsigned SubIdx = UseMI->getOperand(3).getSubReg();
2509 if (SubIdx != PPC::sub_eq)
2510 return false;
2511 } else
2512 return false;
2513 }
2514 }
2515
2516 MachineBasicBlock::iterator I = CmpInstr;
2517
2518 // Scan forward to find the first use of the compare.
2519 for (MachineBasicBlock::iterator EL = CmpInstr.getParent()->end(); I != EL;
2520 ++I) {
2521 bool FoundUse = false;
2523 J = MRI->use_instr_begin(CRReg), JE = MRI->use_instr_end();
2524 J != JE; ++J)
2525 if (&*J == &*I) {
2526 FoundUse = true;
2527 break;
2528 }
2529
2530 if (FoundUse)
2531 break;
2532 }
2533
2536
2537 // There are two possible candidates which can be changed to set CR[01].
2538 // One is MI, the other is a SUB instruction.
2539 // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
2540 MachineInstr *Sub = nullptr;
2541 if (SrcReg2 != 0)
2542 // MI is not a candidate for CMPrr.
2543 MI = nullptr;
2544 // FIXME: Conservatively refuse to convert an instruction which isn't in the
2545 // same BB as the comparison. This is to allow the check below to avoid calls
2546 // (and other explicit clobbers); instead we should really check for these
2547 // more explicitly (in at least a few predecessors).
2548 else if (MI->getParent() != CmpInstr.getParent())
2549 return false;
2550 else if (Value != 0) {
2551 // The record-form instructions set CR bit based on signed comparison
2552 // against 0. We try to convert a compare against 1 or -1 into a compare
2553 // against 0 to exploit record-form instructions. For example, we change
2554 // the condition "greater than -1" into "greater than or equal to 0"
2555 // and "less than 1" into "less than or equal to 0".
2556
2557 // Since we optimize comparison based on a specific branch condition,
2558 // we don't optimize if condition code is used by more than once.
2559 if (equalityOnly || !MRI->hasOneUse(CRReg))
2560 return false;
2561
2562 MachineInstr *UseMI = &*MRI->use_instr_begin(CRReg);
2563 if (UseMI->getOpcode() != PPC::BCC)
2564 return false;
2565
2566 PPC::Predicate Pred = (PPC::Predicate)UseMI->getOperand(0).getImm();
2567 unsigned PredCond = PPC::getPredicateCondition(Pred);
2568 unsigned PredHint = PPC::getPredicateHint(Pred);
2569 int16_t Immed = (int16_t)Value;
2570
2571 // When modifying the condition in the predicate, we propagate hint bits
2572 // from the original predicate to the new one.
2573 if (Immed == -1 && PredCond == PPC::PRED_GT)
2574 // We convert "greater than -1" into "greater than or equal to 0",
2575 // since we are assuming signed comparison by !equalityOnly
2576 Pred = PPC::getPredicate(PPC::PRED_GE, PredHint);
2577 else if (Immed == -1 && PredCond == PPC::PRED_LE)
2578 // We convert "less than or equal to -1" into "less than 0".
2579 Pred = PPC::getPredicate(PPC::PRED_LT, PredHint);
2580 else if (Immed == 1 && PredCond == PPC::PRED_LT)
2581 // We convert "less than 1" into "less than or equal to 0".
2582 Pred = PPC::getPredicate(PPC::PRED_LE, PredHint);
2583 else if (Immed == 1 && PredCond == PPC::PRED_GE)
2584 // We convert "greater than or equal to 1" into "greater than 0".
2585 Pred = PPC::getPredicate(PPC::PRED_GT, PredHint);
2586 else
2587 return false;
2588
2589 // Convert the comparison and its user to a compare against zero with the
2590 // appropriate predicate on the branch. Zero comparison might provide
2591 // optimization opportunities post-RA (see optimization in
2592 // PPCPreEmitPeephole.cpp).
2593 UseMI->getOperand(0).setImm(Pred);
2594 CmpInstr.getOperand(2).setImm(0);
2595 }
2596
2597 // Search for Sub.
2598 --I;
2599
2600 // Get ready to iterate backward from CmpInstr.
2601 MachineBasicBlock::iterator E = MI, B = CmpInstr.getParent()->begin();
2602
2603 for (; I != E && !noSub; --I) {
2604 const MachineInstr &Instr = *I;
2605 unsigned IOpC = Instr.getOpcode();
2606
2607 if (&*I != &CmpInstr && (Instr.modifiesRegister(PPC::CR0, TRI) ||
2608 Instr.readsRegister(PPC::CR0, TRI)))
2609 // This instruction modifies or uses the record condition register after
2610 // the one we want to change. While we could do this transformation, it
2611 // would likely not be profitable. This transformation removes one
2612 // instruction, and so even forcing RA to generate one move probably
2613 // makes it unprofitable.
2614 return false;
2615
2616 // Check whether CmpInstr can be made redundant by the current instruction.
2617 if ((OpC == PPC::CMPW || OpC == PPC::CMPLW ||
2618 OpC == PPC::CMPD || OpC == PPC::CMPLD) &&
2619 (IOpC == PPC::SUBF || IOpC == PPC::SUBF8) &&
2620 ((Instr.getOperand(1).getReg() == SrcReg &&
2621 Instr.getOperand(2).getReg() == SrcReg2) ||
2622 (Instr.getOperand(1).getReg() == SrcReg2 &&
2623 Instr.getOperand(2).getReg() == SrcReg))) {
2624 Sub = &*I;
2625 break;
2626 }
2627
2628 if (I == B)
2629 // The 'and' is below the comparison instruction.
2630 return false;
2631 }
2632
2633 // Return false if no candidates exist.
2634 if (!MI && !Sub)
2635 return false;
2636
2637 // The single candidate is called MI.
2638 if (!MI) MI = Sub;
2639
2640 int NewOpC = -1;
2641 int MIOpC = MI->getOpcode();
2642 if (MIOpC == PPC::ANDI_rec || MIOpC == PPC::ANDI8_rec ||
2643 MIOpC == PPC::ANDIS_rec || MIOpC == PPC::ANDIS8_rec)
2644 NewOpC = MIOpC;
2645 else {
2646 NewOpC = PPC::getRecordFormOpcode(MIOpC);
2647 if (NewOpC == -1 && PPC::getNonRecordFormOpcode(MIOpC) != -1)
2648 NewOpC = MIOpC;
2649 }
2650
2651 // FIXME: On the non-embedded POWER architectures, only some of the record
2652 // forms are fast, and we should use only the fast ones.
2653
2654 // The defining instruction has a record form (or is already a record
2655 // form). It is possible, however, that we'll need to reverse the condition
2656 // code of the users.
2657 if (NewOpC == -1)
2658 return false;
2659
2660 // This transformation should not be performed if `nsw` is missing and is not
2661 // `equalityOnly` comparison. Since if there is overflow, sub_lt, sub_gt in
2662 // CRReg do not reflect correct order. If `equalityOnly` is true, sub_eq in
2663 // CRReg can reflect if compared values are equal, this optz is still valid.
2664 if (!equalityOnly && (NewOpC == PPC::SUBF_rec || NewOpC == PPC::SUBF8_rec) &&
2665 Sub && !Sub->getFlag(MachineInstr::NoSWrap))
2666 return false;
2667
2668 // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based on CMP
2669 // needs to be updated to be based on SUB. Push the condition code
2670 // operands to OperandsToUpdate. If it is safe to remove CmpInstr, the
2671 // condition code of these operands will be modified.
2672 // Here, Value == 0 means we haven't converted comparison against 1 or -1 to
2673 // comparison against 0, which may modify predicate.
2674 bool ShouldSwap = false;
2675 if (Sub && Value == 0) {
2676 ShouldSwap = SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
2677 Sub->getOperand(2).getReg() == SrcReg;
2678
2679 // The operands to subf are the opposite of sub, so only in the fixed-point
2680 // case, invert the order.
2681 ShouldSwap = !ShouldSwap;
2682 }
2683
2684 if (ShouldSwap)
2686 I = MRI->use_instr_begin(CRReg), IE = MRI->use_instr_end();
2687 I != IE; ++I) {
2688 MachineInstr *UseMI = &*I;
2689 if (UseMI->getOpcode() == PPC::BCC) {
2690 PPC::Predicate Pred = (PPC::Predicate) UseMI->getOperand(0).getImm();
2691 unsigned PredCond = PPC::getPredicateCondition(Pred);
2692 assert((!equalityOnly ||
2693 PredCond == PPC::PRED_EQ || PredCond == PPC::PRED_NE) &&
2694 "Invalid predicate for equality-only optimization");
2695 (void)PredCond; // To suppress warning in release build.
2696 PredsToUpdate.push_back(std::make_pair(&(UseMI->getOperand(0)),
2698 } else if (UseMI->getOpcode() == PPC::ISEL ||
2699 UseMI->getOpcode() == PPC::ISEL8) {
2700 unsigned NewSubReg = UseMI->getOperand(3).getSubReg();
2701 assert((!equalityOnly || NewSubReg == PPC::sub_eq) &&
2702 "Invalid CR bit for equality-only optimization");
2703
2704 if (NewSubReg == PPC::sub_lt)
2705 NewSubReg = PPC::sub_gt;
2706 else if (NewSubReg == PPC::sub_gt)
2707 NewSubReg = PPC::sub_lt;
2708
2709 SubRegsToUpdate.push_back(std::make_pair(&(UseMI->getOperand(3)),
2710 NewSubReg));
2711 } else // We need to abort on a user we don't understand.
2712 return false;
2713 }
2714 assert(!(Value != 0 && ShouldSwap) &&
2715 "Non-zero immediate support and ShouldSwap"
2716 "may conflict in updating predicate");
2717
2718 // Create a new virtual register to hold the value of the CR set by the
2719 // record-form instruction. If the instruction was not previously in
2720 // record form, then set the kill flag on the CR.
2721 CmpInstr.eraseFromParent();
2722
2724 BuildMI(*MI->getParent(), std::next(MII), MI->getDebugLoc(),
2725 get(TargetOpcode::COPY), CRReg)
2726 .addReg(PPC::CR0, getKillRegState(MIOpC != NewOpC));
2727
2728 // Even if CR0 register were dead before, it is alive now since the
2729 // instruction we just built uses it.
2730 MI->clearRegisterDeads(PPC::CR0);
2731
2732 if (MIOpC != NewOpC) {
2733 // We need to be careful here: we're replacing one instruction with
2734 // another, and we need to make sure that we get all of the right
2735 // implicit uses and defs. On the other hand, the caller may be holding
2736 // an iterator to this instruction, and so we can't delete it (this is
2737 // specifically the case if this is the instruction directly after the
2738 // compare).
2739
2740 // Rotates are expensive instructions. If we're emitting a record-form
2741 // rotate that can just be an andi/andis, we should just emit that.
2742 if (MIOpC == PPC::RLWINM || MIOpC == PPC::RLWINM8) {
2743 Register GPRRes = MI->getOperand(0).getReg();
2744 int64_t SH = MI->getOperand(2).getImm();
2745 int64_t MB = MI->getOperand(3).getImm();
2746 int64_t ME = MI->getOperand(4).getImm();
2747 // We can only do this if both the start and end of the mask are in the
2748 // same halfword.
2749 bool MBInLoHWord = MB >= 16;
2750 bool MEInLoHWord = ME >= 16;
2751 uint64_t Mask = ~0LLU;
2752
2753 if (MB <= ME && MBInLoHWord == MEInLoHWord && SH == 0) {
2754 Mask = ((1LLU << (32 - MB)) - 1) & ~((1LLU << (31 - ME)) - 1);
2755 // The mask value needs to shift right 16 if we're emitting andis.
2756 Mask >>= MBInLoHWord ? 0 : 16;
2757 NewOpC = MIOpC == PPC::RLWINM
2758 ? (MBInLoHWord ? PPC::ANDI_rec : PPC::ANDIS_rec)
2759 : (MBInLoHWord ? PPC::ANDI8_rec : PPC::ANDIS8_rec);
2760 } else if (MRI->use_empty(GPRRes) && (ME == 31) &&
2761 (ME - MB + 1 == SH) && (MB >= 16)) {
2762 // If we are rotating by the exact number of bits as are in the mask
2763 // and the mask is in the least significant bits of the register,
2764 // that's just an andis. (as long as the GPR result has no uses).
2765 Mask = ((1LLU << 32) - 1) & ~((1LLU << (32 - SH)) - 1);
2766 Mask >>= 16;
2767 NewOpC = MIOpC == PPC::RLWINM ? PPC::ANDIS_rec : PPC::ANDIS8_rec;
2768 }
2769 // If we've set the mask, we can transform.
2770 if (Mask != ~0LLU) {
2771 MI->removeOperand(4);
2772 MI->removeOperand(3);
2773 MI->getOperand(2).setImm(Mask);
2774 NumRcRotatesConvertedToRcAnd++;
2775 }
2776 } else if (MIOpC == PPC::RLDICL && MI->getOperand(2).getImm() == 0) {
2777 int64_t MB = MI->getOperand(3).getImm();
2778 if (MB >= 48) {
2779 uint64_t Mask = (1LLU << (63 - MB + 1)) - 1;
2780 NewOpC = PPC::ANDI8_rec;
2781 MI->removeOperand(3);
2782 MI->getOperand(2).setImm(Mask);
2783 NumRcRotatesConvertedToRcAnd++;
2784 }
2785 }
2786
2787 const MCInstrDesc &NewDesc = get(NewOpC);
2788 MI->setDesc(NewDesc);
2789
2790 for (MCPhysReg ImpDef : NewDesc.implicit_defs()) {
2791 if (!MI->definesRegister(ImpDef, /*TRI=*/nullptr)) {
2792 MI->addOperand(*MI->getParent()->getParent(),
2793 MachineOperand::CreateReg(ImpDef, true, true));
2794 }
2795 }
2796 for (MCPhysReg ImpUse : NewDesc.implicit_uses()) {
2797 if (!MI->readsRegister(ImpUse, /*TRI=*/nullptr)) {
2798 MI->addOperand(*MI->getParent()->getParent(),
2799 MachineOperand::CreateReg(ImpUse, false, true));
2800 }
2801 }
2802 }
2803 assert(MI->definesRegister(PPC::CR0, /*TRI=*/nullptr) &&
2804 "Record-form instruction does not define cr0?");
2805
2806 // Modify the condition code of operands in OperandsToUpdate.
2807 // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
2808 // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
2809 for (unsigned i = 0, e = PredsToUpdate.size(); i < e; i++)
2810 PredsToUpdate[i].first->setImm(PredsToUpdate[i].second);
2811
2812 for (unsigned i = 0, e = SubRegsToUpdate.size(); i < e; i++)
2813 SubRegsToUpdate[i].first->setSubReg(SubRegsToUpdate[i].second);
2814
2815 return true;
2816}
2817
2819 MachineRegisterInfo *MRI = &CmpMI.getParent()->getParent()->getRegInfo();
2820 if (MRI->isSSA())
2821 return false;
2822
2823 Register SrcReg, SrcReg2;
2824 int64_t CmpMask, CmpValue;
2825 if (!analyzeCompare(CmpMI, SrcReg, SrcReg2, CmpMask, CmpValue))
2826 return false;
2827
2828 // Try to optimize the comparison against 0.
2829 if (CmpValue || !CmpMask || SrcReg2)
2830 return false;
2831
2832 // The record forms set the condition register based on a signed comparison
2833 // with zero (see comments in optimizeCompareInstr). Since we can't do the
2834 // equality checks in post-RA, we are more restricted on a unsigned
2835 // comparison.
2836 unsigned Opc = CmpMI.getOpcode();
2837 if (Opc == PPC::CMPLWI || Opc == PPC::CMPLDI)
2838 return false;
2839
2840 // The record forms are always based on a 64-bit comparison on PPC64
2841 // (similary, a 32-bit comparison on PPC32), while the CMPWI is a 32-bit
2842 // comparison. Since we can't do the equality checks in post-RA, we bail out
2843 // the case.
2844 if (Subtarget.isPPC64() && Opc == PPC::CMPWI)
2845 return false;
2846
2847 // CmpMI can't be deleted if it has implicit def.
2848 if (CmpMI.hasImplicitDef())
2849 return false;
2850
2851 bool SrcRegHasOtherUse = false;
2852 MachineInstr *SrcMI = getDefMIPostRA(SrcReg, CmpMI, SrcRegHasOtherUse);
2853 if (!SrcMI || !SrcMI->definesRegister(SrcReg, /*TRI=*/nullptr))
2854 return false;
2855
2856 MachineOperand RegMO = CmpMI.getOperand(0);
2857 Register CRReg = RegMO.getReg();
2858 if (CRReg != PPC::CR0)
2859 return false;
2860
2861 // Make sure there is no def/use of CRReg between SrcMI and CmpMI.
2862 bool SeenUseOfCRReg = false;
2863 bool IsCRRegKilled = false;
2864 if (!isRegElgibleForForwarding(RegMO, *SrcMI, CmpMI, false, IsCRRegKilled,
2865 SeenUseOfCRReg) ||
2866 SrcMI->definesRegister(CRReg, /*TRI=*/nullptr) || SeenUseOfCRReg)
2867 return false;
2868
2869 int SrcMIOpc = SrcMI->getOpcode();
2870 int NewOpC = PPC::getRecordFormOpcode(SrcMIOpc);
2871 if (NewOpC == -1)
2872 return false;
2873
2874 LLVM_DEBUG(dbgs() << "Replace Instr: ");
2875 LLVM_DEBUG(SrcMI->dump());
2876
2877 const MCInstrDesc &NewDesc = get(NewOpC);
2878 SrcMI->setDesc(NewDesc);
2879 MachineInstrBuilder(*SrcMI->getParent()->getParent(), SrcMI)
2881 SrcMI->clearRegisterDeads(CRReg);
2882
2883 assert(SrcMI->definesRegister(PPC::CR0, /*TRI=*/nullptr) &&
2884 "Record-form instruction does not define cr0?");
2885
2886 LLVM_DEBUG(dbgs() << "with: ");
2887 LLVM_DEBUG(SrcMI->dump());
2888 LLVM_DEBUG(dbgs() << "Delete dead instruction: ");
2889 LLVM_DEBUG(CmpMI.dump());
2890 return true;
2891}
2892
2895 int64_t &Offset, bool &OffsetIsScalable, LocationSize &Width,
2896 const TargetRegisterInfo *TRI) const {
2897 const MachineOperand *BaseOp;
2898 OffsetIsScalable = false;
2899 if (!getMemOperandWithOffsetWidth(LdSt, BaseOp, Offset, Width, TRI))
2900 return false;
2901 BaseOps.push_back(BaseOp);
2902 return true;
2903}
2904
2905static bool isLdStSafeToCluster(const MachineInstr &LdSt,
2906 const TargetRegisterInfo *TRI) {
2907 // If this is a volatile load/store, don't mess with it.
2908 if (LdSt.hasOrderedMemoryRef() || LdSt.getNumExplicitOperands() != 3)
2909 return false;
2910
2911 if (LdSt.getOperand(2).isFI())
2912 return true;
2913
2914 assert(LdSt.getOperand(2).isReg() && "Expected a reg operand.");
2915 // Can't cluster if the instruction modifies the base register
2916 // or it is update form. e.g. ld r2,3(r2)
2917 if (LdSt.modifiesRegister(LdSt.getOperand(2).getReg(), TRI))
2918 return false;
2919
2920 return true;
2921}
2922
2923// Only cluster instruction pair that have the same opcode, and they are
2924// clusterable according to PowerPC specification.
2925static bool isClusterableLdStOpcPair(unsigned FirstOpc, unsigned SecondOpc,
2926 const PPCSubtarget &Subtarget) {
2927 switch (FirstOpc) {
2928 default:
2929 return false;
2930 case PPC::STD:
2931 case PPC::STFD:
2932 case PPC::STXSD:
2933 case PPC::DFSTOREf64:
2934 return FirstOpc == SecondOpc;
2935 // PowerPC backend has opcode STW/STW8 for instruction "stw" to deal with
2936 // 32bit and 64bit instruction selection. They are clusterable pair though
2937 // they are different opcode.
2938 case PPC::STW:
2939 case PPC::STW8:
2940 return SecondOpc == PPC::STW || SecondOpc == PPC::STW8;
2941 }
2942}
2943
2945 ArrayRef<const MachineOperand *> BaseOps1, int64_t OpOffset1,
2946 bool OffsetIsScalable1, ArrayRef<const MachineOperand *> BaseOps2,
2947 int64_t OpOffset2, bool OffsetIsScalable2, unsigned ClusterSize,
2948 unsigned NumBytes) const {
2949
2950 assert(BaseOps1.size() == 1 && BaseOps2.size() == 1);
2951 const MachineOperand &BaseOp1 = *BaseOps1.front();
2952 const MachineOperand &BaseOp2 = *BaseOps2.front();
2953 assert((BaseOp1.isReg() || BaseOp1.isFI()) &&
2954 "Only base registers and frame indices are supported.");
2955
2956 // ClusterSize means the number of memory operations that will have been
2957 // clustered if this hook returns true.
2958 // Don't cluster memory op if there are already two ops clustered at least.
2959 if (ClusterSize > 2)
2960 return false;
2961
2962 // Cluster the load/store only when they have the same base
2963 // register or FI.
2964 if ((BaseOp1.isReg() != BaseOp2.isReg()) ||
2965 (BaseOp1.isReg() && BaseOp1.getReg() != BaseOp2.getReg()) ||
2966 (BaseOp1.isFI() && BaseOp1.getIndex() != BaseOp2.getIndex()))
2967 return false;
2968
2969 // Check if the load/store are clusterable according to the PowerPC
2970 // specification.
2971 const MachineInstr &FirstLdSt = *BaseOp1.getParent();
2972 const MachineInstr &SecondLdSt = *BaseOp2.getParent();
2973 unsigned FirstOpc = FirstLdSt.getOpcode();
2974 unsigned SecondOpc = SecondLdSt.getOpcode();
2976 // Cluster the load/store only when they have the same opcode, and they are
2977 // clusterable opcode according to PowerPC specification.
2978 if (!isClusterableLdStOpcPair(FirstOpc, SecondOpc, Subtarget))
2979 return false;
2980
2981 // Can't cluster load/store that have ordered or volatile memory reference.
2982 if (!isLdStSafeToCluster(FirstLdSt, TRI) ||
2983 !isLdStSafeToCluster(SecondLdSt, TRI))
2984 return false;
2985
2986 int64_t Offset1 = 0, Offset2 = 0;
2988 Width2 = LocationSize::precise(0);
2989 const MachineOperand *Base1 = nullptr, *Base2 = nullptr;
2990 if (!getMemOperandWithOffsetWidth(FirstLdSt, Base1, Offset1, Width1, TRI) ||
2991 !getMemOperandWithOffsetWidth(SecondLdSt, Base2, Offset2, Width2, TRI) ||
2992 Width1 != Width2)
2993 return false;
2994
2995 assert(Base1 == &BaseOp1 && Base2 == &BaseOp2 &&
2996 "getMemOperandWithOffsetWidth return incorrect base op");
2997 // The caller should already have ordered FirstMemOp/SecondMemOp by offset.
2998 assert(Offset1 <= Offset2 && "Caller should have ordered offsets.");
2999 return Offset1 + (int64_t)Width1.getValue() == Offset2;
3000}
3001
3002/// GetInstSize - Return the number of bytes of code the specified
3003/// instruction may be. This returns the maximum number of bytes.
3004///
3006 unsigned Opcode = MI.getOpcode();
3007
3008 switch (Opcode) {
3009 case PPC::INLINEASM:
3010 case PPC::INLINEASM_BR: {
3011 const MachineFunction *MF = MI.getParent()->getParent();
3012 const char *AsmStr = MI.getOperand(0).getSymbolName();
3013 return getInlineAsmLength(AsmStr, MF->getTarget().getMCAsmInfo());
3014 }
3015 case TargetOpcode::STACKMAP: {
3016 StackMapOpers Opers(&MI);
3017 return Opers.getNumPatchBytes();
3018 }
3019 case TargetOpcode::PATCHPOINT: {
3020 PatchPointOpers Opers(&MI);
3021 return Opers.getNumPatchBytes();
3022 }
3023 case TargetOpcode::PATCHABLE_FUNCTION_ENTER: {
3024 const MachineFunction *MF = MI.getParent()->getParent();
3025 const Function &F = MF->getFunction();
3026 unsigned Num = F.getFnAttributeAsParsedInteger("patchable-function-entry");
3027 if (Num || MF->getTarget().getTargetTriple().isOSAIX() ||
3029 return Num * 4;
3030 // Size of xray sled.
3031 return 7 * 4;
3032 }
3033 case TargetOpcode::PATCHABLE_RET: {
3034 // Size of xray sled.
3035 unsigned RetOpcode = MI.getOperand(0).getImm();
3036 bool IsConditional = RetOpcode == PPC::BCCLR;
3037 return (8 + IsConditional) * 4;
3038 }
3039 case TargetOpcode::BUNDLE:
3040 return getInstBundleSize(MI);
3041 default:
3042 return get(Opcode).getSize();
3043 }
3044}
3045
3048 // FIXME: The size of STACKMAP is currently over-estimated.
3049 return MI.getOpcode() == TargetOpcode::STACKMAP
3050 ? InstSizeVerifyMode::AllowOverEstimate
3051 : InstSizeVerifyMode::ExactSize;
3052}
3053
3054std::pair<unsigned, unsigned>
3056 // PPC always uses a direct mask.
3057 return std::make_pair(TF, 0u);
3058}
3059
3062 using namespace PPCII;
3063 static const std::pair<unsigned, const char *> TargetFlags[] = {
3064 {MO_PLT, "ppc-plt"},
3065 {MO_PIC_FLAG, "ppc-pic"},
3066 {MO_PCREL_FLAG, "ppc-pcrel"},
3067 {MO_GOT_FLAG, "ppc-got"},
3068 {MO_PCREL_OPT_FLAG, "ppc-opt-pcrel"},
3069 {MO_TLSGD_FLAG, "ppc-tlsgd"},
3070 {MO_TPREL_FLAG, "ppc-tprel"},
3071 {MO_TLSLDM_FLAG, "ppc-tlsldm"},
3072 {MO_TLSLD_FLAG, "ppc-tlsld"},
3073 {MO_TLSGDM_FLAG, "ppc-tlsgdm"},
3074 {MO_GOT_TLSGD_PCREL_FLAG, "ppc-got-tlsgd-pcrel"},
3075 {MO_GOT_TLSLD_PCREL_FLAG, "ppc-got-tlsld-pcrel"},
3076 {MO_GOT_TPREL_PCREL_FLAG, "ppc-got-tprel-pcrel"},
3077 {MO_LO, "ppc-lo"},
3078 {MO_HA, "ppc-ha"},
3079 {MO_TPREL_LO, "ppc-tprel-lo"},
3080 {MO_TPREL_HA, "ppc-tprel-ha"},
3081 {MO_DTPREL_LO, "ppc-dtprel-lo"},
3082 {MO_TLSLD_LO, "ppc-tlsld-lo"},
3083 {MO_TOC_LO, "ppc-toc-lo"},
3084 {MO_TLS, "ppc-tls"},
3085 {MO_PIC_HA_FLAG, "ppc-ha-pic"},
3086 {MO_PIC_LO_FLAG, "ppc-lo-pic"},
3087 {MO_TPREL_PCREL_FLAG, "ppc-tprel-pcrel"},
3088 {MO_TLS_PCREL_FLAG, "ppc-tls-pcrel"},
3089 {MO_GOT_PCREL_FLAG, "ppc-got-pcrel"},
3090 };
3091 return ArrayRef(TargetFlags);
3092}
3093
3094// Expand VSX Memory Pseudo instruction to either a VSX or a FP instruction.
3095// The VSX versions have the advantage of a full 64-register target whereas
3096// the FP ones have the advantage of lower latency and higher throughput. So
3097// what we are after is using the faster instructions in low register pressure
3098// situations and using the larger register file in high register pressure
3099// situations.
3101 unsigned UpperOpcode, LowerOpcode;
3102 switch (MI.getOpcode()) {
3103 case PPC::DFLOADf32:
3104 UpperOpcode = PPC::LXSSP;
3105 LowerOpcode = PPC::LFS;
3106 break;
3107 case PPC::DFLOADf64:
3108 UpperOpcode = PPC::LXSD;
3109 LowerOpcode = PPC::LFD;
3110 break;
3111 case PPC::DFSTOREf32:
3112 UpperOpcode = PPC::STXSSP;
3113 LowerOpcode = PPC::STFS;
3114 break;
3115 case PPC::DFSTOREf64:
3116 UpperOpcode = PPC::STXSD;
3117 LowerOpcode = PPC::STFD;
3118 break;
3119 case PPC::XFLOADf32:
3120 UpperOpcode = PPC::LXSSPX;
3121 LowerOpcode = PPC::LFSX;
3122 break;
3123 case PPC::XFLOADf64:
3124 UpperOpcode = PPC::LXSDX;
3125 LowerOpcode = PPC::LFDX;
3126 break;
3127 case PPC::XFSTOREf32:
3128 UpperOpcode = PPC::STXSSPX;
3129 LowerOpcode = PPC::STFSX;
3130 break;
3131 case PPC::XFSTOREf64:
3132 UpperOpcode = PPC::STXSDX;
3133 LowerOpcode = PPC::STFDX;
3134 break;
3135 case PPC::LIWAX:
3136 UpperOpcode = PPC::LXSIWAX;
3137 LowerOpcode = PPC::LFIWAX;
3138 break;
3139 case PPC::LIWZX:
3140 UpperOpcode = PPC::LXSIWZX;
3141 LowerOpcode = PPC::LFIWZX;
3142 break;
3143 case PPC::STIWX:
3144 UpperOpcode = PPC::STXSIWX;
3145 LowerOpcode = PPC::STFIWX;
3146 break;
3147 default:
3148 llvm_unreachable("Unknown Operation!");
3149 }
3150
3151 Register TargetReg = MI.getOperand(0).getReg();
3152 unsigned Opcode;
3153 if ((TargetReg >= PPC::F0 && TargetReg <= PPC::F31) ||
3154 (TargetReg >= PPC::VSL0 && TargetReg <= PPC::VSL31))
3155 Opcode = LowerOpcode;
3156 else
3157 Opcode = UpperOpcode;
3158 MI.setDesc(get(Opcode));
3159 return true;
3160}
3161
3162static bool isAnImmediateOperand(const MachineOperand &MO) {
3163 return MO.isCPI() || MO.isGlobal() || MO.isImm();
3164}
3165
3167 auto &MBB = *MI.getParent();
3168 auto DL = MI.getDebugLoc();
3169
3170 switch (MI.getOpcode()) {
3171 case PPC::BUILD_UACC: {
3172 MCRegister ACC = MI.getOperand(0).getReg();
3173 MCRegister UACC = MI.getOperand(1).getReg();
3174 if (ACC - PPC::ACC0 != UACC - PPC::UACC0) {
3175 MCRegister SrcVSR = PPC::VSL0 + (UACC - PPC::UACC0) * 4;
3176 MCRegister DstVSR = PPC::VSL0 + (ACC - PPC::ACC0) * 4;
3177 // FIXME: This can easily be improved to look up to the top of the MBB
3178 // to see if the inputs are XXLOR's. If they are and SrcReg is killed,
3179 // we can just re-target any such XXLOR's to DstVSR + offset.
3180 for (int VecNo = 0; VecNo < 4; VecNo++)
3181 BuildMI(MBB, MI, DL, get(PPC::XXLOR), DstVSR + VecNo)
3182 .addReg(SrcVSR + VecNo)
3183 .addReg(SrcVSR + VecNo);
3184 }
3185 // BUILD_UACC is expanded to 4 copies of the underlying vsx registers.
3186 // So after building the 4 copies, we can replace the BUILD_UACC instruction
3187 // with a NOP.
3188 [[fallthrough]];
3189 }
3190 case PPC::KILL_PAIR: {
3191 MI.setDesc(get(PPC::UNENCODED_NOP));
3192 MI.removeOperand(1);
3193 MI.removeOperand(0);
3194 return true;
3195 }
3196 case TargetOpcode::LOAD_STACK_GUARD: {
3197 auto M = MBB.getParent()->getFunction().getParent();
3198 assert(
3199 (Subtarget.isTargetLinux() || M->getStackProtectorGuard() == "tls") &&
3200 "Only Linux target or tls mode are expected to contain "
3201 "LOAD_STACK_GUARD");
3202 int64_t Offset;
3203 if (M->getStackProtectorGuard() == "tls")
3204 Offset = M->getStackProtectorGuardOffset();
3205 else
3206 Offset = Subtarget.isPPC64() ? -0x7010 : -0x7008;
3207 const unsigned Reg = Subtarget.isPPC64() ? PPC::X13 : PPC::R2;
3208 MI.setDesc(get(Subtarget.isPPC64() ? PPC::LD : PPC::LWZ));
3209 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
3210 .addImm(Offset)
3211 .addReg(Reg);
3212 return true;
3213 }
3214 case PPC::PPCLdFixedAddr: {
3215 assert((Subtarget.getTargetTriple().isOSGlibc() ||
3216 Subtarget.getTargetTriple().isMusl()) &&
3217 "Only targets with Glibc expected to contain PPCLdFixedAddr");
3218 int64_t Offset = 0;
3219 const unsigned Reg = Subtarget.isPPC64() ? PPC::X13 : PPC::R2;
3220 MI.setDesc(get(PPC::LWZ));
3221 uint64_t FAType = MI.getOperand(1).getImm();
3222#undef PPC_LNX_FEATURE
3223#undef PPC_CPU
3224#define PPC_LNX_DEFINE_OFFSETS
3225#include "llvm/TargetParser/PPCTargetParser.def"
3226 bool IsLE = Subtarget.isLittleEndian();
3227 bool Is64 = Subtarget.isPPC64();
3228 if (FAType == PPC_FAWORD_HWCAP) {
3229 if (IsLE)
3230 Offset = Is64 ? PPC_HWCAP_OFFSET_LE64 : PPC_HWCAP_OFFSET_LE32;
3231 else
3232 Offset = Is64 ? PPC_HWCAP_OFFSET_BE64 : PPC_HWCAP_OFFSET_BE32;
3233 } else if (FAType == PPC_FAWORD_HWCAP2) {
3234 if (IsLE)
3235 Offset = Is64 ? PPC_HWCAP2_OFFSET_LE64 : PPC_HWCAP2_OFFSET_LE32;
3236 else
3237 Offset = Is64 ? PPC_HWCAP2_OFFSET_BE64 : PPC_HWCAP2_OFFSET_BE32;
3238 } else if (FAType == PPC_FAWORD_CPUID) {
3239 if (IsLE)
3240 Offset = Is64 ? PPC_CPUID_OFFSET_LE64 : PPC_CPUID_OFFSET_LE32;
3241 else
3242 Offset = Is64 ? PPC_CPUID_OFFSET_BE64 : PPC_CPUID_OFFSET_BE32;
3243 }
3244 assert(Offset && "Do not know the offset for this fixed addr load");
3245 MI.removeOperand(1);
3246 Subtarget.getTargetMachine().setGlibcHWCAPAccess();
3247 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
3248 .addImm(Offset)
3249 .addReg(Reg);
3250 return true;
3251#define PPC_TGT_PARSER_UNDEF_MACROS
3252#include "llvm/TargetParser/PPCTargetParser.def"
3253#undef PPC_TGT_PARSER_UNDEF_MACROS
3254 }
3255 case PPC::DFLOADf32:
3256 case PPC::DFLOADf64:
3257 case PPC::DFSTOREf32:
3258 case PPC::DFSTOREf64: {
3259 assert(Subtarget.hasP9Vector() &&
3260 "Invalid D-Form Pseudo-ops on Pre-P9 target.");
3261 assert(MI.getOperand(2).isReg() &&
3262 isAnImmediateOperand(MI.getOperand(1)) &&
3263 "D-form op must have register and immediate operands");
3264 return expandVSXMemPseudo(MI);
3265 }
3266 case PPC::XFLOADf32:
3267 case PPC::XFSTOREf32:
3268 case PPC::LIWAX:
3269 case PPC::LIWZX:
3270 case PPC::STIWX: {
3271 assert(Subtarget.hasP8Vector() &&
3272 "Invalid X-Form Pseudo-ops on Pre-P8 target.");
3273 assert(MI.getOperand(2).isReg() && MI.getOperand(1).isReg() &&
3274 "X-form op must have register and register operands");
3275 return expandVSXMemPseudo(MI);
3276 }
3277 case PPC::XFLOADf64:
3278 case PPC::XFSTOREf64: {
3279 assert(Subtarget.hasVSX() &&
3280 "Invalid X-Form Pseudo-ops on target that has no VSX.");
3281 assert(MI.getOperand(2).isReg() && MI.getOperand(1).isReg() &&
3282 "X-form op must have register and register operands");
3283 return expandVSXMemPseudo(MI);
3284 }
3285 case PPC::SPILLTOVSR_LD: {
3286 Register TargetReg = MI.getOperand(0).getReg();
3287 if (PPC::VSFRCRegClass.contains(TargetReg)) {
3288 MI.setDesc(get(PPC::DFLOADf64));
3289 return expandPostRAPseudo(MI);
3290 }
3291 else
3292 MI.setDesc(get(PPC::LD));
3293 return true;
3294 }
3295 case PPC::SPILLTOVSR_ST: {
3296 Register SrcReg = MI.getOperand(0).getReg();
3297 if (PPC::VSFRCRegClass.contains(SrcReg)) {
3298 NumStoreSPILLVSRRCAsVec++;
3299 MI.setDesc(get(PPC::DFSTOREf64));
3300 return expandPostRAPseudo(MI);
3301 } else {
3302 NumStoreSPILLVSRRCAsGpr++;
3303 MI.setDesc(get(PPC::STD));
3304 }
3305 return true;
3306 }
3307 case PPC::SPILLTOVSR_LDX: {
3308 Register TargetReg = MI.getOperand(0).getReg();
3309 if (PPC::VSFRCRegClass.contains(TargetReg))
3310 MI.setDesc(get(PPC::LXSDX));
3311 else
3312 MI.setDesc(get(PPC::LDX));
3313 return true;
3314 }
3315 case PPC::SPILLTOVSR_STX: {
3316 Register SrcReg = MI.getOperand(0).getReg();
3317 if (PPC::VSFRCRegClass.contains(SrcReg)) {
3318 NumStoreSPILLVSRRCAsVec++;
3319 MI.setDesc(get(PPC::STXSDX));
3320 } else {
3321 NumStoreSPILLVSRRCAsGpr++;
3322 MI.setDesc(get(PPC::STDX));
3323 }
3324 return true;
3325 }
3326
3327 // FIXME: Maybe we can expand it in 'PowerPC Expand Atomic' pass.
3328 case PPC::CFENCE:
3329 case PPC::CFENCE8: {
3330 auto Val = MI.getOperand(0).getReg();
3331 unsigned CmpOp = Subtarget.isPPC64() ? PPC::CMPD : PPC::CMPW;
3332 BuildMI(MBB, MI, DL, get(CmpOp), PPC::CR7).addReg(Val).addReg(Val);
3333 BuildMI(MBB, MI, DL, get(PPC::CTRL_DEP))
3335 .addReg(PPC::CR7)
3336 .addImm(1);
3337 MI.setDesc(get(PPC::ISYNC));
3338 MI.removeOperand(0);
3339 return true;
3340 }
3341 case PPC::LWAT_CSNE_PSEUDO:
3342 case PPC::LDAT_CSNE_PSEUDO:
3343 return expandAMOCSNEPseudo(MI);
3344 }
3345 return false;
3346}
3347
3348// Essentially a compile-time implementation of a compare->isel sequence.
3349// It takes two constants to compare, along with the true/false registers
3350// and the comparison type (as a subreg to a CR field) and returns one
3351// of the true/false registers, depending on the comparison results.
3352static unsigned selectReg(int64_t Imm1, int64_t Imm2, unsigned CompareOpc,
3353 unsigned TrueReg, unsigned FalseReg,
3354 unsigned CRSubReg) {
3355 // Signed comparisons. The immediates are assumed to be sign-extended.
3356 if (CompareOpc == PPC::CMPWI || CompareOpc == PPC::CMPDI) {
3357 switch (CRSubReg) {
3358 default: llvm_unreachable("Unknown integer comparison type.");
3359 case PPC::sub_lt:
3360 return Imm1 < Imm2 ? TrueReg : FalseReg;
3361 case PPC::sub_gt:
3362 return Imm1 > Imm2 ? TrueReg : FalseReg;
3363 case PPC::sub_eq:
3364 return Imm1 == Imm2 ? TrueReg : FalseReg;
3365 }
3366 }
3367 // Unsigned comparisons.
3368 else if (CompareOpc == PPC::CMPLWI || CompareOpc == PPC::CMPLDI) {
3369 switch (CRSubReg) {
3370 default: llvm_unreachable("Unknown integer comparison type.");
3371 case PPC::sub_lt:
3372 return (uint64_t)Imm1 < (uint64_t)Imm2 ? TrueReg : FalseReg;
3373 case PPC::sub_gt:
3374 return (uint64_t)Imm1 > (uint64_t)Imm2 ? TrueReg : FalseReg;
3375 case PPC::sub_eq:
3376 return Imm1 == Imm2 ? TrueReg : FalseReg;
3377 }
3378 }
3379 return PPC::NoRegister;
3380}
3381
3383 unsigned OpNo,
3384 int64_t Imm) const {
3385 assert(MI.getOperand(OpNo).isReg() && "Operand must be a REG");
3386 // Replace the REG with the Immediate.
3387 Register InUseReg = MI.getOperand(OpNo).getReg();
3388 MI.getOperand(OpNo).ChangeToImmediate(Imm);
3389
3390 // We need to make sure that the MI didn't have any implicit use
3391 // of this REG any more. We don't call MI.implicit_operands().empty() to
3392 // return early, since MI's MCID might be changed in calling context, as a
3393 // result its number of explicit operands may be changed, thus the begin of
3394 // implicit operand is changed.
3396 int UseOpIdx = MI.findRegisterUseOperandIdx(InUseReg, TRI, false);
3397 if (UseOpIdx >= 0) {
3398 MachineOperand &MO = MI.getOperand(UseOpIdx);
3399 if (MO.isImplicit())
3400 // The operands must always be in the following order:
3401 // - explicit reg defs,
3402 // - other explicit operands (reg uses, immediates, etc.),
3403 // - implicit reg defs
3404 // - implicit reg uses
3405 // Therefore, removing the implicit operand won't change the explicit
3406 // operands layout.
3407 MI.removeOperand(UseOpIdx);
3408 }
3409}
3410
3411// Replace an instruction with one that materializes a constant (and sets
3412// CR0 if the original instruction was a record-form instruction).
3414 const LoadImmediateInfo &LII) const {
3415 // Remove existing operands.
3416 int OperandToKeep = LII.SetCR ? 1 : 0;
3417 for (int i = MI.getNumOperands() - 1; i > OperandToKeep; i--)
3418 MI.removeOperand(i);
3419
3420 // Replace the instruction.
3421 if (LII.SetCR) {
3422 MI.setDesc(get(LII.Is64Bit ? PPC::ANDI8_rec : PPC::ANDI_rec));
3423 // Set the immediate.
3424 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
3425 .addImm(LII.Imm).addReg(PPC::CR0, RegState::ImplicitDefine);
3426 return;
3427 }
3428 else
3429 MI.setDesc(get(LII.Is64Bit ? PPC::LI8 : PPC::LI));
3430
3431 // Set the immediate.
3432 MachineInstrBuilder(*MI.getParent()->getParent(), MI)
3433 .addImm(LII.Imm);
3434}
3435
3437 bool &SeenIntermediateUse) const {
3438 assert(!MI.getParent()->getParent()->getRegInfo().isSSA() &&
3439 "Should be called after register allocation.");
3441 MachineBasicBlock::reverse_iterator E = MI.getParent()->rend(), It = MI;
3442 It++;
3443 SeenIntermediateUse = false;
3444 for (; It != E; ++It) {
3445 if (It->modifiesRegister(Reg, TRI))
3446 return &*It;
3447 if (It->readsRegister(Reg, TRI))
3448 SeenIntermediateUse = true;
3449 }
3450 return nullptr;
3451}
3452
3455 const DebugLoc &DL, Register Reg,
3456 int64_t Imm) const {
3457 assert(!MBB.getParent()->getRegInfo().isSSA() &&
3458 "Register should be in non-SSA form after RA");
3459 bool isPPC64 = Subtarget.isPPC64();
3460 // FIXME: Materialization here is not optimal.
3461 // For some special bit patterns we can use less instructions.
3462 // See `selectI64ImmDirect` in PPCISelDAGToDAG.cpp.
3463 if (isInt<16>(Imm)) {
3464 BuildMI(MBB, MBBI, DL, get(isPPC64 ? PPC::LI8 : PPC::LI), Reg).addImm(Imm);
3465 } else if (isInt<32>(Imm)) {
3466 BuildMI(MBB, MBBI, DL, get(isPPC64 ? PPC::LIS8 : PPC::LIS), Reg)
3467 .addImm(Imm >> 16);
3468 if (Imm & 0xFFFF)
3469 BuildMI(MBB, MBBI, DL, get(isPPC64 ? PPC::ORI8 : PPC::ORI), Reg)
3470 .addReg(Reg, RegState::Kill)
3471 .addImm(Imm & 0xFFFF);
3472 } else {
3473 assert(isPPC64 && "Materializing 64-bit immediate to single register is "
3474 "only supported in PPC64");
3475 BuildMI(MBB, MBBI, DL, get(PPC::LIS8), Reg).addImm(Imm >> 48);
3476 if ((Imm >> 32) & 0xFFFF)
3477 BuildMI(MBB, MBBI, DL, get(PPC::ORI8), Reg)
3478 .addReg(Reg, RegState::Kill)
3479 .addImm((Imm >> 32) & 0xFFFF);
3480 BuildMI(MBB, MBBI, DL, get(PPC::RLDICR), Reg)
3481 .addReg(Reg, RegState::Kill)
3482 .addImm(32)
3483 .addImm(31);
3484 BuildMI(MBB, MBBI, DL, get(PPC::ORIS8), Reg)
3485 .addReg(Reg, RegState::Kill)
3486 .addImm((Imm >> 16) & 0xFFFF);
3487 if (Imm & 0xFFFF)
3488 BuildMI(MBB, MBBI, DL, get(PPC::ORI8), Reg)
3489 .addReg(Reg, RegState::Kill)
3490 .addImm(Imm & 0xFFFF);
3491 }
3492}
3493
3494MachineInstr *PPCInstrInfo::getForwardingDefMI(
3496 unsigned &OpNoForForwarding,
3497 bool &SeenIntermediateUse) const {
3498 OpNoForForwarding = ~0U;
3499 MachineInstr *DefMI = nullptr;
3500 MachineRegisterInfo *MRI = &MI.getParent()->getParent()->getRegInfo();
3502 // If we're in SSA, get the defs through the MRI. Otherwise, only look
3503 // within the basic block to see if the register is defined using an
3504 // LI/LI8/ADDI/ADDI8.
3505 if (MRI->isSSA()) {
3506 for (int i = 1, e = MI.getNumOperands(); i < e; i++) {
3507 if (!MI.getOperand(i).isReg())
3508 continue;
3509 Register Reg = MI.getOperand(i).getReg();
3510 if (!Reg.isVirtual())
3511 continue;
3512 Register TrueReg = TRI->lookThruCopyLike(Reg, MRI);
3513 if (TrueReg.isVirtual()) {
3514 MachineInstr *DefMIForTrueReg = MRI->getVRegDef(TrueReg);
3515 if (DefMIForTrueReg->getOpcode() == PPC::LI ||
3516 DefMIForTrueReg->getOpcode() == PPC::LI8 ||
3517 DefMIForTrueReg->getOpcode() == PPC::ADDI ||
3518 DefMIForTrueReg->getOpcode() == PPC::ADDI8) {
3519 OpNoForForwarding = i;
3520 DefMI = DefMIForTrueReg;
3521 // The ADDI and LI operand maybe exist in one instruction at same
3522 // time. we prefer to fold LI operand as LI only has one Imm operand
3523 // and is more possible to be converted. So if current DefMI is
3524 // ADDI/ADDI8, we continue to find possible LI/LI8.
3525 if (DefMI->getOpcode() == PPC::LI || DefMI->getOpcode() == PPC::LI8)
3526 break;
3527 }
3528 }
3529 }
3530 } else {
3531 // Looking back through the definition for each operand could be expensive,
3532 // so exit early if this isn't an instruction that either has an immediate
3533 // form or is already an immediate form that we can handle.
3534 ImmInstrInfo III;
3535 unsigned Opc = MI.getOpcode();
3536 bool ConvertibleImmForm =
3537 Opc == PPC::CMPWI || Opc == PPC::CMPLWI || Opc == PPC::CMPDI ||
3538 Opc == PPC::CMPLDI || Opc == PPC::ADDI || Opc == PPC::ADDI8 ||
3539 Opc == PPC::ORI || Opc == PPC::ORI8 || Opc == PPC::XORI ||
3540 Opc == PPC::XORI8 || Opc == PPC::RLDICL || Opc == PPC::RLDICL_rec ||
3541 Opc == PPC::RLDICL_32 || Opc == PPC::RLDICL_32_64 ||
3542 Opc == PPC::RLWINM || Opc == PPC::RLWINM_rec || Opc == PPC::RLWINM8 ||
3543 Opc == PPC::RLWINM8_rec;
3544 bool IsVFReg = (MI.getNumOperands() && MI.getOperand(0).isReg())
3545 ? PPC::isVFRegister(MI.getOperand(0).getReg())
3546 : false;
3547 if (!ConvertibleImmForm && !instrHasImmForm(Opc, IsVFReg, III, true))
3548 return nullptr;
3549
3550 // Don't convert or %X, %Y, %Y since that's just a register move.
3551 if ((Opc == PPC::OR || Opc == PPC::OR8) &&
3552 MI.getOperand(1).getReg() == MI.getOperand(2).getReg())
3553 return nullptr;
3554 for (int i = 1, e = MI.getNumOperands(); i < e; i++) {
3555 MachineOperand &MO = MI.getOperand(i);
3556 SeenIntermediateUse = false;
3557 if (MO.isReg() && MO.isUse() && !MO.isImplicit()) {
3558 Register Reg = MI.getOperand(i).getReg();
3559 // If we see another use of this reg between the def and the MI,
3560 // we want to flag it so the def isn't deleted.
3561 MachineInstr *DefMI = getDefMIPostRA(Reg, MI, SeenIntermediateUse);
3562 if (DefMI) {
3563 // Is this register defined by some form of add-immediate (including
3564 // load-immediate) within this basic block?
3565 switch (DefMI->getOpcode()) {
3566 default:
3567 break;
3568 case PPC::LI:
3569 case PPC::LI8:
3570 case PPC::ADDItocL8:
3571 case PPC::ADDI:
3572 case PPC::ADDI8:
3573 OpNoForForwarding = i;
3574 return DefMI;
3575 }
3576 }
3577 }
3578 }
3579 }
3580 return OpNoForForwarding == ~0U ? nullptr : DefMI;
3581}
3582
3583unsigned PPCInstrInfo::getSpillTarget() const {
3584 // With P10, we may need to spill paired vector registers or accumulator
3585 // registers. MMA implies paired vectors, so we can just check that.
3586 bool IsP10Variant = Subtarget.isISA3_1() || Subtarget.pairedVectorMemops();
3587 // P11 uses the P10 target.
3588 return Subtarget.isISAFuture() ? 3 : IsP10Variant ?
3589 2 : Subtarget.hasP9Vector() ?
3590 1 : 0;
3591}
3592
3593ArrayRef<unsigned> PPCInstrInfo::getStoreOpcodesForSpillArray() const {
3594 return {StoreSpillOpcodesArray[getSpillTarget()], SOK_LastOpcodeSpill};
3595}
3596
3597ArrayRef<unsigned> PPCInstrInfo::getLoadOpcodesForSpillArray() const {
3598 return {LoadSpillOpcodesArray[getSpillTarget()], SOK_LastOpcodeSpill};
3599}
3600
3601// This opt tries to convert the following imm form to an index form to save an
3602// add for stack variables.
3603// Return false if no such pattern found.
3604//
3605// ADDI instr: ToBeChangedReg = ADDI FrameBaseReg, OffsetAddi
3606// ADD instr: ToBeDeletedReg = ADD ToBeChangedReg(killed), ScaleReg
3607// Imm instr: Reg = op OffsetImm, ToBeDeletedReg(killed)
3608//
3609// can be converted to:
3610//
3611// new ADDI instr: ToBeChangedReg = ADDI FrameBaseReg, (OffsetAddi + OffsetImm)
3612// Index instr: Reg = opx ScaleReg, ToBeChangedReg(killed)
3613//
3614// In order to eliminate ADD instr, make sure that:
3615// 1: (OffsetAddi + OffsetImm) must be int16 since this offset will be used in
3616// new ADDI instr and ADDI can only take int16 Imm.
3617// 2: ToBeChangedReg must be killed in ADD instr and there is no other use
3618// between ADDI and ADD instr since its original def in ADDI will be changed
3619// in new ADDI instr. And also there should be no new def for it between
3620// ADD and Imm instr as ToBeChangedReg will be used in Index instr.
3621// 3: ToBeDeletedReg must be killed in Imm instr and there is no other use
3622// between ADD and Imm instr since ADD instr will be eliminated.
3623// 4: ScaleReg must not be redefined between ADD and Imm instr since it will be
3624// moved to Index instr.
3626 MachineFunction *MF = MI.getParent()->getParent();
3627 MachineRegisterInfo *MRI = &MF->getRegInfo();
3628 bool PostRA = !MRI->isSSA();
3629 // Do this opt after PEI which is after RA. The reason is stack slot expansion
3630 // in PEI may expose such opportunities since in PEI, stack slot offsets to
3631 // frame base(OffsetAddi) are determined.
3632 if (!PostRA)
3633 return false;
3634 unsigned ToBeDeletedReg = 0;
3635 int64_t OffsetImm = 0;
3636 unsigned XFormOpcode = 0;
3637 ImmInstrInfo III;
3638
3639 // Check if Imm instr meets requirement.
3640 if (!isImmInstrEligibleForFolding(MI, ToBeDeletedReg, XFormOpcode, OffsetImm,
3641 III))
3642 return false;
3643
3644 bool OtherIntermediateUse = false;
3645 MachineInstr *ADDMI = getDefMIPostRA(ToBeDeletedReg, MI, OtherIntermediateUse);
3646
3647 // Exit if there is other use between ADD and Imm instr or no def found.
3648 if (OtherIntermediateUse || !ADDMI)
3649 return false;
3650
3651 // Check if ADD instr meets requirement.
3652 if (!isADDInstrEligibleForFolding(*ADDMI))
3653 return false;
3654
3655 unsigned ScaleRegIdx = 0;
3656 int64_t OffsetAddi = 0;
3657 MachineInstr *ADDIMI = nullptr;
3658
3659 // Check if there is a valid ToBeChangedReg in ADDMI.
3660 // 1: It must be killed.
3661 // 2: Its definition must be a valid ADDIMI.
3662 // 3: It must satify int16 offset requirement.
3663 if (isValidToBeChangedReg(ADDMI, 1, ADDIMI, OffsetAddi, OffsetImm))
3664 ScaleRegIdx = 2;
3665 else if (isValidToBeChangedReg(ADDMI, 2, ADDIMI, OffsetAddi, OffsetImm))
3666 ScaleRegIdx = 1;
3667 else
3668 return false;
3669
3670 assert(ADDIMI && "There should be ADDIMI for valid ToBeChangedReg.");
3671 Register ToBeChangedReg = ADDIMI->getOperand(0).getReg();
3672 Register ScaleReg = ADDMI->getOperand(ScaleRegIdx).getReg();
3673 auto NewDefFor = [&](unsigned Reg, MachineBasicBlock::iterator Start,
3675 for (auto It = ++Start; It != End; It++)
3676 if (It->modifiesRegister(Reg, &getRegisterInfo()))
3677 return true;
3678 return false;
3679 };
3680
3681 // We are trying to replace the ImmOpNo with ScaleReg. Give up if it is
3682 // treated as special zero when ScaleReg is R0/X0 register.
3683 if (III.ZeroIsSpecialOrig == III.ImmOpNo &&
3684 (ScaleReg == PPC::R0 || ScaleReg == PPC::X0))
3685 return false;
3686
3687 // Make sure no other def for ToBeChangedReg and ScaleReg between ADD Instr
3688 // and Imm Instr.
3689 if (NewDefFor(ToBeChangedReg, *ADDMI, MI) || NewDefFor(ScaleReg, *ADDMI, MI))
3690 return false;
3691
3692 // Now start to do the transformation.
3693 LLVM_DEBUG(dbgs() << "Replace instruction: "
3694 << "\n");
3695 LLVM_DEBUG(ADDIMI->dump());
3696 LLVM_DEBUG(ADDMI->dump());
3697 LLVM_DEBUG(MI.dump());
3698 LLVM_DEBUG(dbgs() << "with: "
3699 << "\n");
3700
3701 // Update ADDI instr.
3702 ADDIMI->getOperand(2).setImm(OffsetAddi + OffsetImm);
3703
3704 // Update Imm instr.
3705 MI.setDesc(get(XFormOpcode));
3706 MI.getOperand(III.ImmOpNo)
3707 .ChangeToRegister(ScaleReg, false, false,
3708 ADDMI->getOperand(ScaleRegIdx).isKill());
3709
3710 MI.getOperand(III.OpNoForForwarding)
3711 .ChangeToRegister(ToBeChangedReg, false, false, true);
3712
3713 // Eliminate ADD instr.
3714 ADDMI->eraseFromParent();
3715
3716 LLVM_DEBUG(ADDIMI->dump());
3717 LLVM_DEBUG(MI.dump());
3718
3719 return true;
3720}
3721
3723 int64_t &Imm) const {
3724 unsigned Opc = ADDIMI.getOpcode();
3725
3726 // Exit if the instruction is not ADDI.
3727 if (Opc != PPC::ADDI && Opc != PPC::ADDI8)
3728 return false;
3729
3730 // The operand may not necessarily be an immediate - it could be a relocation.
3731 if (!ADDIMI.getOperand(2).isImm())
3732 return false;
3733
3734 Imm = ADDIMI.getOperand(2).getImm();
3735
3736 return true;
3737}
3738
3740 unsigned Opc = ADDMI.getOpcode();
3741
3742 // Exit if the instruction is not ADD.
3743 return Opc == PPC::ADD4 || Opc == PPC::ADD8;
3744}
3745
3747 unsigned &ToBeDeletedReg,
3748 unsigned &XFormOpcode,
3749 int64_t &OffsetImm,
3750 ImmInstrInfo &III) const {
3751 // Only handle load/store.
3752 if (!MI.mayLoadOrStore())
3753 return false;
3754
3755 unsigned Opc = MI.getOpcode();
3756
3757 XFormOpcode = RI.getMappedIdxOpcForImmOpc(Opc);
3758
3759 // Exit if instruction has no index form.
3760 if (XFormOpcode == PPC::INSTRUCTION_LIST_END)
3761 return false;
3762
3763 // TODO: sync the logic between instrHasImmForm() and ImmToIdxMap.
3764 if (!instrHasImmForm(XFormOpcode,
3765 PPC::isVFRegister(MI.getOperand(0).getReg()), III, true))
3766 return false;
3767
3768 if (!III.IsSummingOperands)
3769 return false;
3770
3771 MachineOperand ImmOperand = MI.getOperand(III.ImmOpNo);
3772 MachineOperand RegOperand = MI.getOperand(III.OpNoForForwarding);
3773 // Only support imm operands, not relocation slots or others.
3774 if (!ImmOperand.isImm())
3775 return false;
3776
3777 assert(RegOperand.isReg() && "Instruction format is not right");
3778
3779 // There are other use for ToBeDeletedReg after Imm instr, can not delete it.
3780 if (!RegOperand.isKill())
3781 return false;
3782
3783 ToBeDeletedReg = RegOperand.getReg();
3784 OffsetImm = ImmOperand.getImm();
3785
3786 return true;
3787}
3788
3790 MachineInstr *&ADDIMI,
3791 int64_t &OffsetAddi,
3792 int64_t OffsetImm) const {
3793 assert((Index == 1 || Index == 2) && "Invalid operand index for add.");
3794 MachineOperand &MO = ADDMI->getOperand(Index);
3795
3796 if (!MO.isKill())
3797 return false;
3798
3799 bool OtherIntermediateUse = false;
3800
3801 ADDIMI = getDefMIPostRA(MO.getReg(), *ADDMI, OtherIntermediateUse);
3802 // Currently handle only one "add + Imminstr" pair case, exit if other
3803 // intermediate use for ToBeChangedReg found.
3804 // TODO: handle the cases where there are other "add + Imminstr" pairs
3805 // with same offset in Imminstr which is like:
3806 //
3807 // ADDI instr: ToBeChangedReg = ADDI FrameBaseReg, OffsetAddi
3808 // ADD instr1: ToBeDeletedReg1 = ADD ToBeChangedReg, ScaleReg1
3809 // Imm instr1: Reg1 = op1 OffsetImm, ToBeDeletedReg1(killed)
3810 // ADD instr2: ToBeDeletedReg2 = ADD ToBeChangedReg(killed), ScaleReg2
3811 // Imm instr2: Reg2 = op2 OffsetImm, ToBeDeletedReg2(killed)
3812 //
3813 // can be converted to:
3814 //
3815 // new ADDI instr: ToBeChangedReg = ADDI FrameBaseReg,
3816 // (OffsetAddi + OffsetImm)
3817 // Index instr1: Reg1 = opx1 ScaleReg1, ToBeChangedReg
3818 // Index instr2: Reg2 = opx2 ScaleReg2, ToBeChangedReg(killed)
3819
3820 if (OtherIntermediateUse || !ADDIMI)
3821 return false;
3822 // Check if ADDI instr meets requirement.
3823 if (!isADDIInstrEligibleForFolding(*ADDIMI, OffsetAddi))
3824 return false;
3825
3826 if (isInt<16>(OffsetAddi + OffsetImm))
3827 return true;
3828 return false;
3829}
3830
3831// If this instruction has an immediate form and one of its operands is a
3832// result of a load-immediate or an add-immediate, convert it to
3833// the immediate form if the constant is in range.
3835 SmallSet<Register, 4> &RegsToUpdate,
3836 MachineInstr **KilledDef) const {
3837 MachineFunction *MF = MI.getParent()->getParent();
3838 MachineRegisterInfo *MRI = &MF->getRegInfo();
3839 bool PostRA = !MRI->isSSA();
3840 bool SeenIntermediateUse = true;
3841 unsigned ForwardingOperand = ~0U;
3842 MachineInstr *DefMI = getForwardingDefMI(MI, ForwardingOperand,
3843 SeenIntermediateUse);
3844 if (!DefMI)
3845 return false;
3846 assert(ForwardingOperand < MI.getNumOperands() &&
3847 "The forwarding operand needs to be valid at this point");
3848 bool IsForwardingOperandKilled = MI.getOperand(ForwardingOperand).isKill();
3849 bool KillFwdDefMI = !SeenIntermediateUse && IsForwardingOperandKilled;
3850 if (KilledDef && KillFwdDefMI)
3851 *KilledDef = DefMI;
3852
3853 // Conservatively add defs from DefMI and defs/uses from MI to the set of
3854 // registers that need their kill flags updated.
3855 for (const MachineOperand &MO : DefMI->operands())
3856 if (MO.isReg() && MO.isDef())
3857 RegsToUpdate.insert(MO.getReg());
3858 for (const MachineOperand &MO : MI.operands())
3859 if (MO.isReg())
3860 RegsToUpdate.insert(MO.getReg());
3861
3862 // If this is a imm instruction and its register operands is produced by ADDI,
3863 // put the imm into imm inst directly.
3864 if (RI.getMappedIdxOpcForImmOpc(MI.getOpcode()) !=
3865 PPC::INSTRUCTION_LIST_END &&
3866 transformToNewImmFormFedByAdd(MI, *DefMI, ForwardingOperand))
3867 return true;
3868
3869 ImmInstrInfo III;
3870 bool IsVFReg = MI.getOperand(0).isReg() &&
3871 MI.getOperand(0).getReg().isPhysical() &&
3872 PPC::isVFRegister(MI.getOperand(0).getReg());
3873 bool HasImmForm = instrHasImmForm(MI.getOpcode(), IsVFReg, III, PostRA);
3874 // If this is a reg+reg instruction that has a reg+imm form,
3875 // and one of the operands is produced by an add-immediate,
3876 // try to convert it.
3877 if (HasImmForm &&
3878 transformToImmFormFedByAdd(MI, III, ForwardingOperand, *DefMI,
3879 KillFwdDefMI))
3880 return true;
3881
3882 // If this is a reg+reg instruction that has a reg+imm form,
3883 // and one of the operands is produced by LI, convert it now.
3884 if (HasImmForm &&
3885 transformToImmFormFedByLI(MI, III, ForwardingOperand, *DefMI))
3886 return true;
3887
3888 // If this is not a reg+reg, but the DefMI is LI/LI8, check if its user MI
3889 // can be simpified to LI.
3890 if (!HasImmForm &&
3891 simplifyToLI(MI, *DefMI, ForwardingOperand, KilledDef, &RegsToUpdate))
3892 return true;
3893
3894 return false;
3895}
3896
3898 MachineInstr **ToErase) const {
3899 MachineRegisterInfo *MRI = &MI.getParent()->getParent()->getRegInfo();
3900 Register FoldingReg = MI.getOperand(1).getReg();
3901 if (!FoldingReg.isVirtual())
3902 return false;
3903 MachineInstr *SrcMI = MRI->getVRegDef(FoldingReg);
3904 if (SrcMI->getOpcode() != PPC::RLWINM &&
3905 SrcMI->getOpcode() != PPC::RLWINM_rec &&
3906 SrcMI->getOpcode() != PPC::RLWINM8 &&
3907 SrcMI->getOpcode() != PPC::RLWINM8_rec)
3908 return false;
3909 assert((MI.getOperand(2).isImm() && MI.getOperand(3).isImm() &&
3910 MI.getOperand(4).isImm() && SrcMI->getOperand(2).isImm() &&
3911 SrcMI->getOperand(3).isImm() && SrcMI->getOperand(4).isImm()) &&
3912 "Invalid PPC::RLWINM Instruction!");
3913 uint64_t SHSrc = SrcMI->getOperand(2).getImm();
3914 uint64_t SHMI = MI.getOperand(2).getImm();
3915 uint64_t MBSrc = SrcMI->getOperand(3).getImm();
3916 uint64_t MBMI = MI.getOperand(3).getImm();
3917 uint64_t MESrc = SrcMI->getOperand(4).getImm();
3918 uint64_t MEMI = MI.getOperand(4).getImm();
3919
3920 assert((MEMI < 32 && MESrc < 32 && MBMI < 32 && MBSrc < 32) &&
3921 "Invalid PPC::RLWINM Instruction!");
3922 // If MBMI is bigger than MEMI, we always can not get run of ones.
3923 // RotatedSrcMask non-wrap:
3924 // 0........31|32........63
3925 // RotatedSrcMask: B---E B---E
3926 // MaskMI: -----------|--E B------
3927 // Result: ----- --- (Bad candidate)
3928 //
3929 // RotatedSrcMask wrap:
3930 // 0........31|32........63
3931 // RotatedSrcMask: --E B----|--E B----
3932 // MaskMI: -----------|--E B------
3933 // Result: --- -----|--- ----- (Bad candidate)
3934 //
3935 // One special case is RotatedSrcMask is a full set mask.
3936 // RotatedSrcMask full:
3937 // 0........31|32........63
3938 // RotatedSrcMask: ------EB---|-------EB---
3939 // MaskMI: -----------|--E B------
3940 // Result: -----------|--- ------- (Good candidate)
3941
3942 // Mark special case.
3943 bool SrcMaskFull = (MBSrc - MESrc == 1) || (MBSrc == 0 && MESrc == 31);
3944
3945 // For other MBMI > MEMI cases, just return.
3946 if ((MBMI > MEMI) && !SrcMaskFull)
3947 return false;
3948
3949 // Handle MBMI <= MEMI cases.
3950 APInt MaskMI = APInt::getBitsSetWithWrap(32, 32 - MEMI - 1, 32 - MBMI);
3951 // In MI, we only need low 32 bits of SrcMI, just consider about low 32
3952 // bit of SrcMI mask. Note that in APInt, lowerest bit is at index 0,
3953 // while in PowerPC ISA, lowerest bit is at index 63.
3954 APInt MaskSrc = APInt::getBitsSetWithWrap(32, 32 - MESrc - 1, 32 - MBSrc);
3955
3956 APInt RotatedSrcMask = MaskSrc.rotl(SHMI);
3957 APInt FinalMask = RotatedSrcMask & MaskMI;
3958 uint32_t NewMB, NewME;
3959 bool Simplified = false;
3960
3961 // If final mask is 0, MI result should be 0 too.
3962 if (FinalMask.isZero()) {
3963 bool Is64Bit =
3964 (MI.getOpcode() == PPC::RLWINM8 || MI.getOpcode() == PPC::RLWINM8_rec);
3965 Simplified = true;
3966 LLVM_DEBUG(dbgs() << "Replace Instr: ");
3967 LLVM_DEBUG(MI.dump());
3968
3969 if (MI.getOpcode() == PPC::RLWINM || MI.getOpcode() == PPC::RLWINM8) {
3970 // Replace MI with "LI 0"
3971 MI.removeOperand(4);
3972 MI.removeOperand(3);
3973 MI.removeOperand(2);
3974 MI.getOperand(1).ChangeToImmediate(0);
3975 MI.setDesc(get(Is64Bit ? PPC::LI8 : PPC::LI));
3976 } else {
3977 // Replace MI with "ANDI_rec reg, 0"
3978 MI.removeOperand(4);
3979 MI.removeOperand(3);
3980 MI.getOperand(2).setImm(0);
3981 MI.setDesc(get(Is64Bit ? PPC::ANDI8_rec : PPC::ANDI_rec));
3982 MI.getOperand(1).setReg(SrcMI->getOperand(1).getReg());
3983 if (SrcMI->getOperand(1).isKill()) {
3984 MI.getOperand(1).setIsKill(true);
3985 SrcMI->getOperand(1).setIsKill(false);
3986 } else
3987 // About to replace MI.getOperand(1), clear its kill flag.
3988 MI.getOperand(1).setIsKill(false);
3989 }
3990
3991 LLVM_DEBUG(dbgs() << "With: ");
3992 LLVM_DEBUG(MI.dump());
3993
3994 } else if ((isRunOfOnes((unsigned)(FinalMask.getZExtValue()), NewMB, NewME) &&
3995 NewMB <= NewME) ||
3996 SrcMaskFull) {
3997 // Here we only handle MBMI <= MEMI case, so NewMB must be no bigger
3998 // than NewME. Otherwise we get a 64 bit value after folding, but MI
3999 // return a 32 bit value.
4000 Simplified = true;
4001 LLVM_DEBUG(dbgs() << "Converting Instr: ");
4002 LLVM_DEBUG(MI.dump());
4003
4004 uint16_t NewSH = (SHSrc + SHMI) % 32;
4005 MI.getOperand(2).setImm(NewSH);
4006 // If SrcMI mask is full, no need to update MBMI and MEMI.
4007 if (!SrcMaskFull) {
4008 MI.getOperand(3).setImm(NewMB);
4009 MI.getOperand(4).setImm(NewME);
4010 }
4011 MI.getOperand(1).setReg(SrcMI->getOperand(1).getReg());
4012 if (SrcMI->getOperand(1).isKill()) {
4013 MI.getOperand(1).setIsKill(true);
4014 SrcMI->getOperand(1).setIsKill(false);
4015 } else
4016 // About to replace MI.getOperand(1), clear its kill flag.
4017 MI.getOperand(1).setIsKill(false);
4018
4019 LLVM_DEBUG(dbgs() << "To: ");
4020 LLVM_DEBUG(MI.dump());
4021 }
4022 if (Simplified & MRI->use_nodbg_empty(FoldingReg) &&
4023 !SrcMI->hasImplicitDef()) {
4024 // If FoldingReg has no non-debug use and it has no implicit def (it
4025 // is not RLWINMO or RLWINM8o), it's safe to delete its def SrcMI.
4026 // Otherwise keep it.
4027 *ToErase = SrcMI;
4028 LLVM_DEBUG(dbgs() << "Delete dead instruction: ");
4029 LLVM_DEBUG(SrcMI->dump());
4030 }
4031 return Simplified;
4032}
4033
4034bool PPCInstrInfo::instrHasImmForm(unsigned Opc, bool IsVFReg,
4035 ImmInstrInfo &III, bool PostRA) const {
4036 // The vast majority of the instructions would need their operand 2 replaced
4037 // with an immediate when switching to the reg+imm form. A marked exception
4038 // are the update form loads/stores for which a constant operand 2 would need
4039 // to turn into a displacement and move operand 1 to the operand 2 position.
4040 III.ImmOpNo = 2;
4041 III.OpNoForForwarding = 2;
4042 III.ImmWidth = 16;
4043 III.ImmMustBeMultipleOf = 1;
4044 III.TruncateImmTo = 0;
4045 III.IsSummingOperands = false;
4046 switch (Opc) {
4047 default: return false;
4048 case PPC::ADD4:
4049 case PPC::ADD8:
4050 III.SignedImm = true;
4051 III.ZeroIsSpecialOrig = 0;
4052 III.ZeroIsSpecialNew = 1;
4053 III.IsCommutative = true;
4054 III.IsSummingOperands = true;
4055 III.ImmOpcode = Opc == PPC::ADD4 ? PPC::ADDI : PPC::ADDI8;
4056 break;
4057 case PPC::ADDC:
4058 case PPC::ADDC8:
4059 III.SignedImm = true;
4060 III.ZeroIsSpecialOrig = 0;
4061 III.ZeroIsSpecialNew = 0;
4062 III.IsCommutative = true;
4063 III.IsSummingOperands = true;
4064 III.ImmOpcode = Opc == PPC::ADDC ? PPC::ADDIC : PPC::ADDIC8;
4065 break;
4066 case PPC::ADDC_rec:
4067 III.SignedImm = true;
4068 III.ZeroIsSpecialOrig = 0;
4069 III.ZeroIsSpecialNew = 0;
4070 III.IsCommutative = true;
4071 III.IsSummingOperands = true;
4072 III.ImmOpcode = PPC::ADDIC_rec;
4073 break;
4074 case PPC::SUBFC:
4075 case PPC::SUBFC8:
4076 III.SignedImm = true;
4077 III.ZeroIsSpecialOrig = 0;
4078 III.ZeroIsSpecialNew = 0;
4079 III.IsCommutative = false;
4080 III.ImmOpcode = Opc == PPC::SUBFC ? PPC::SUBFIC : PPC::SUBFIC8;
4081 break;
4082 case PPC::CMPW:
4083 case PPC::CMPD:
4084 III.SignedImm = true;
4085 III.ZeroIsSpecialOrig = 0;
4086 III.ZeroIsSpecialNew = 0;
4087 III.IsCommutative = false;
4088 III.ImmOpcode = Opc == PPC::CMPW ? PPC::CMPWI : PPC::CMPDI;
4089 break;
4090 case PPC::CMPLW:
4091 case PPC::CMPLD:
4092 III.SignedImm = false;
4093 III.ZeroIsSpecialOrig = 0;
4094 III.ZeroIsSpecialNew = 0;
4095 III.IsCommutative = false;
4096 III.ImmOpcode = Opc == PPC::CMPLW ? PPC::CMPLWI : PPC::CMPLDI;
4097 break;
4098 case PPC::AND_rec:
4099 case PPC::AND8_rec:
4100 case PPC::OR:
4101 case PPC::OR8:
4102 case PPC::XOR:
4103 case PPC::XOR8:
4104 III.SignedImm = false;
4105 III.ZeroIsSpecialOrig = 0;
4106 III.ZeroIsSpecialNew = 0;
4107 III.IsCommutative = true;
4108 switch(Opc) {
4109 default: llvm_unreachable("Unknown opcode");
4110 case PPC::AND_rec:
4111 III.ImmOpcode = PPC::ANDI_rec;
4112 break;
4113 case PPC::AND8_rec:
4114 III.ImmOpcode = PPC::ANDI8_rec;
4115 break;
4116 case PPC::OR: III.ImmOpcode = PPC::ORI; break;
4117 case PPC::OR8: III.ImmOpcode = PPC::ORI8; break;
4118 case PPC::XOR: III.ImmOpcode = PPC::XORI; break;
4119 case PPC::XOR8: III.ImmOpcode = PPC::XORI8; break;
4120 }
4121 break;
4122 case PPC::RLWNM:
4123 case PPC::RLWNM8:
4124 case PPC::RLWNM_rec:
4125 case PPC::RLWNM8_rec:
4126 case PPC::SLW:
4127 case PPC::SLW8:
4128 case PPC::SLW_rec:
4129 case PPC::SLW8_rec:
4130 case PPC::SRW:
4131 case PPC::SRW8:
4132 case PPC::SRW_rec:
4133 case PPC::SRW8_rec:
4134 case PPC::SRAW:
4135 case PPC::SRAW_rec:
4136 III.SignedImm = false;
4137 III.ZeroIsSpecialOrig = 0;
4138 III.ZeroIsSpecialNew = 0;
4139 III.IsCommutative = false;
4140 // This isn't actually true, but the instructions ignore any of the
4141 // upper bits, so any immediate loaded with an LI is acceptable.
4142 // This does not apply to shift right algebraic because a value
4143 // out of range will produce a -1/0.
4144 III.ImmWidth = 16;
4145 if (Opc == PPC::RLWNM || Opc == PPC::RLWNM8 || Opc == PPC::RLWNM_rec ||
4146 Opc == PPC::RLWNM8_rec)
4147 III.TruncateImmTo = 5;
4148 else
4149 III.TruncateImmTo = 6;
4150 switch(Opc) {
4151 default: llvm_unreachable("Unknown opcode");
4152 case PPC::RLWNM: III.ImmOpcode = PPC::RLWINM; break;
4153 case PPC::RLWNM8: III.ImmOpcode = PPC::RLWINM8; break;
4154 case PPC::RLWNM_rec:
4155 III.ImmOpcode = PPC::RLWINM_rec;
4156 break;
4157 case PPC::RLWNM8_rec:
4158 III.ImmOpcode = PPC::RLWINM8_rec;
4159 break;
4160 case PPC::SLW: III.ImmOpcode = PPC::RLWINM; break;
4161 case PPC::SLW8: III.ImmOpcode = PPC::RLWINM8; break;
4162 case PPC::SLW_rec:
4163 III.ImmOpcode = PPC::RLWINM_rec;
4164 break;
4165 case PPC::SLW8_rec:
4166 III.ImmOpcode = PPC::RLWINM8_rec;
4167 break;
4168 case PPC::SRW: III.ImmOpcode = PPC::RLWINM; break;
4169 case PPC::SRW8: III.ImmOpcode = PPC::RLWINM8; break;
4170 case PPC::SRW_rec:
4171 III.ImmOpcode = PPC::RLWINM_rec;
4172 break;
4173 case PPC::SRW8_rec:
4174 III.ImmOpcode = PPC::RLWINM8_rec;
4175 break;
4176 case PPC::SRAW:
4177 III.ImmWidth = 5;
4178 III.TruncateImmTo = 0;
4179 III.ImmOpcode = PPC::SRAWI;
4180 break;
4181 case PPC::SRAW_rec:
4182 III.ImmWidth = 5;
4183 III.TruncateImmTo = 0;
4184 III.ImmOpcode = PPC::SRAWI_rec;
4185 break;
4186 }
4187 break;
4188 case PPC::RLDCL:
4189 case PPC::RLDCL_rec:
4190 case PPC::RLDCR:
4191 case PPC::RLDCR_rec:
4192 case PPC::SLD:
4193 case PPC::SLD_rec:
4194 case PPC::SRD:
4195 case PPC::SRD_rec:
4196 case PPC::SRAD:
4197 case PPC::SRAD_rec:
4198 III.SignedImm = false;
4199 III.ZeroIsSpecialOrig = 0;
4200 III.ZeroIsSpecialNew = 0;
4201 III.IsCommutative = false;
4202 // This isn't actually true, but the instructions ignore any of the
4203 // upper bits, so any immediate loaded with an LI is acceptable.
4204 // This does not apply to shift right algebraic because a value
4205 // out of range will produce a -1/0.
4206 III.ImmWidth = 16;
4207 if (Opc == PPC::RLDCL || Opc == PPC::RLDCL_rec || Opc == PPC::RLDCR ||
4208 Opc == PPC::RLDCR_rec)
4209 III.TruncateImmTo = 6;
4210 else
4211 III.TruncateImmTo = 7;
4212 switch(Opc) {
4213 default: llvm_unreachable("Unknown opcode");
4214 case PPC::RLDCL: III.ImmOpcode = PPC::RLDICL; break;
4215 case PPC::RLDCL_rec:
4216 III.ImmOpcode = PPC::RLDICL_rec;
4217 break;
4218 case PPC::RLDCR: III.ImmOpcode = PPC::RLDICR; break;
4219 case PPC::RLDCR_rec:
4220 III.ImmOpcode = PPC::RLDICR_rec;
4221 break;
4222 case PPC::SLD: III.ImmOpcode = PPC::RLDICR; break;
4223 case PPC::SLD_rec:
4224 III.ImmOpcode = PPC::RLDICR_rec;
4225 break;
4226 case PPC::SRD: III.ImmOpcode = PPC::RLDICL; break;
4227 case PPC::SRD_rec:
4228 III.ImmOpcode = PPC::RLDICL_rec;
4229 break;
4230 case PPC::SRAD:
4231 III.ImmWidth = 6;
4232 III.TruncateImmTo = 0;
4233 III.ImmOpcode = PPC::SRADI;
4234 break;
4235 case PPC::SRAD_rec:
4236 III.ImmWidth = 6;
4237 III.TruncateImmTo = 0;
4238 III.ImmOpcode = PPC::SRADI_rec;
4239 break;
4240 }
4241 break;
4242 // Loads and stores:
4243 case PPC::LBZX:
4244 case PPC::LBZX8:
4245 case PPC::LHZX:
4246 case PPC::LHZX8:
4247 case PPC::LHAX:
4248 case PPC::LHAX8:
4249 case PPC::LWZX:
4250 case PPC::LWZX8:
4251 case PPC::LWAX:
4252 case PPC::LDX:
4253 case PPC::LFSX:
4254 case PPC::LFDX:
4255 case PPC::STBX:
4256 case PPC::STBX8:
4257 case PPC::STHX:
4258 case PPC::STHX8:
4259 case PPC::STWX:
4260 case PPC::STWX8:
4261 case PPC::STDX:
4262 case PPC::STFSX:
4263 case PPC::STFDX:
4264 III.SignedImm = true;
4265 III.ZeroIsSpecialOrig = 1;
4266 III.ZeroIsSpecialNew = 2;
4267 III.IsCommutative = true;
4268 III.IsSummingOperands = true;
4269 III.ImmOpNo = 1;
4270 III.OpNoForForwarding = 2;
4271 switch(Opc) {
4272 default: llvm_unreachable("Unknown opcode");
4273 case PPC::LBZX: III.ImmOpcode = PPC::LBZ; break;
4274 case PPC::LBZX8: III.ImmOpcode = PPC::LBZ8; break;
4275 case PPC::LHZX: III.ImmOpcode = PPC::LHZ; break;
4276 case PPC::LHZX8: III.ImmOpcode = PPC::LHZ8; break;
4277 case PPC::LHAX: III.ImmOpcode = PPC::LHA; break;
4278 case PPC::LHAX8: III.ImmOpcode = PPC::LHA8; break;
4279 case PPC::LWZX: III.ImmOpcode = PPC::LWZ; break;
4280 case PPC::LWZX8: III.ImmOpcode = PPC::LWZ8; break;
4281 case PPC::LWAX:
4282 III.ImmOpcode = PPC::LWA;
4283 III.ImmMustBeMultipleOf = 4;
4284 break;
4285 case PPC::LDX: III.ImmOpcode = PPC::LD; III.ImmMustBeMultipleOf = 4; break;
4286 case PPC::LFSX: III.ImmOpcode = PPC::LFS; break;
4287 case PPC::LFDX: III.ImmOpcode = PPC::LFD; break;
4288 case PPC::STBX: III.ImmOpcode = PPC::STB; break;
4289 case PPC::STBX8: III.ImmOpcode = PPC::STB8; break;
4290 case PPC::STHX: III.ImmOpcode = PPC::STH; break;
4291 case PPC::STHX8: III.ImmOpcode = PPC::STH8; break;
4292 case PPC::STWX: III.ImmOpcode = PPC::STW; break;
4293 case PPC::STWX8: III.ImmOpcode = PPC::STW8; break;
4294 case PPC::STDX:
4295 III.ImmOpcode = PPC::STD;
4296 III.ImmMustBeMultipleOf = 4;
4297 break;
4298 case PPC::STFSX: III.ImmOpcode = PPC::STFS; break;
4299 case PPC::STFDX: III.ImmOpcode = PPC::STFD; break;
4300 }
4301 break;
4302 case PPC::LBZUX:
4303 case PPC::LBZUX8:
4304 case PPC::LHZUX:
4305 case PPC::LHZUX8:
4306 case PPC::LHAUX:
4307 case PPC::LHAUX8:
4308 case PPC::LWZUX:
4309 case PPC::LWZUX8:
4310 case PPC::LDUX:
4311 case PPC::LFSUX:
4312 case PPC::LFDUX:
4313 case PPC::STBUX:
4314 case PPC::STBUX8:
4315 case PPC::STHUX:
4316 case PPC::STHUX8:
4317 case PPC::STWUX:
4318 case PPC::STWUX8:
4319 case PPC::STDUX:
4320 case PPC::STFSUX:
4321 case PPC::STFDUX:
4322 III.SignedImm = true;
4323 III.ZeroIsSpecialOrig = 2;
4324 III.ZeroIsSpecialNew = 3;
4325 III.IsCommutative = false;
4326 III.IsSummingOperands = true;
4327 III.ImmOpNo = 2;
4328 III.OpNoForForwarding = 3;
4329 switch(Opc) {
4330 default: llvm_unreachable("Unknown opcode");
4331 case PPC::LBZUX: III.ImmOpcode = PPC::LBZU; break;
4332 case PPC::LBZUX8: III.ImmOpcode = PPC::LBZU8; break;
4333 case PPC::LHZUX: III.ImmOpcode = PPC::LHZU; break;
4334 case PPC::LHZUX8: III.ImmOpcode = PPC::LHZU8; break;
4335 case PPC::LHAUX: III.ImmOpcode = PPC::LHAU; break;
4336 case PPC::LHAUX8: III.ImmOpcode = PPC::LHAU8; break;
4337 case PPC::LWZUX: III.ImmOpcode = PPC::LWZU; break;
4338 case PPC::LWZUX8: III.ImmOpcode = PPC::LWZU8; break;
4339 case PPC::LDUX:
4340 III.ImmOpcode = PPC::LDU;
4341 III.ImmMustBeMultipleOf = 4;
4342 break;
4343 case PPC::LFSUX: III.ImmOpcode = PPC::LFSU; break;
4344 case PPC::LFDUX: III.ImmOpcode = PPC::LFDU; break;
4345 case PPC::STBUX: III.ImmOpcode = PPC::STBU; break;
4346 case PPC::STBUX8: III.ImmOpcode = PPC::STBU8; break;
4347 case PPC::STHUX: III.ImmOpcode = PPC::STHU; break;
4348 case PPC::STHUX8: III.ImmOpcode = PPC::STHU8; break;
4349 case PPC::STWUX: III.ImmOpcode = PPC::STWU; break;
4350 case PPC::STWUX8: III.ImmOpcode = PPC::STWU8; break;
4351 case PPC::STDUX:
4352 III.ImmOpcode = PPC::STDU;
4353 III.ImmMustBeMultipleOf = 4;
4354 break;
4355 case PPC::STFSUX: III.ImmOpcode = PPC::STFSU; break;
4356 case PPC::STFDUX: III.ImmOpcode = PPC::STFDU; break;
4357 }
4358 break;
4359 // Power9 and up only. For some of these, the X-Form version has access to all
4360 // 64 VSR's whereas the D-Form only has access to the VR's. We replace those
4361 // with pseudo-ops pre-ra and for post-ra, we check that the register loaded
4362 // into or stored from is one of the VR registers.
4363 case PPC::LXVX:
4364 case PPC::LXSSPX:
4365 case PPC::LXSDX:
4366 case PPC::STXVX:
4367 case PPC::STXSSPX:
4368 case PPC::STXSDX:
4369 case PPC::XFLOADf32:
4370 case PPC::XFLOADf64:
4371 case PPC::XFSTOREf32:
4372 case PPC::XFSTOREf64:
4373 if (!Subtarget.hasP9Vector())
4374 return false;
4375 III.SignedImm = true;
4376 III.ZeroIsSpecialOrig = 1;
4377 III.ZeroIsSpecialNew = 2;
4378 III.IsCommutative = true;
4379 III.IsSummingOperands = true;
4380 III.ImmOpNo = 1;
4381 III.OpNoForForwarding = 2;
4382 III.ImmMustBeMultipleOf = 4;
4383 switch(Opc) {
4384 default: llvm_unreachable("Unknown opcode");
4385 case PPC::LXVX:
4386 III.ImmOpcode = PPC::LXV;
4387 III.ImmMustBeMultipleOf = 16;
4388 break;
4389 case PPC::LXSSPX:
4390 if (PostRA) {
4391 if (IsVFReg)
4392 III.ImmOpcode = PPC::LXSSP;
4393 else {
4394 III.ImmOpcode = PPC::LFS;
4395 III.ImmMustBeMultipleOf = 1;
4396 }
4397 break;
4398 }
4399 [[fallthrough]];
4400 case PPC::XFLOADf32:
4401 III.ImmOpcode = PPC::DFLOADf32;
4402 break;
4403 case PPC::LXSDX:
4404 if (PostRA) {
4405 if (IsVFReg)
4406 III.ImmOpcode = PPC::LXSD;
4407 else {
4408 III.ImmOpcode = PPC::LFD;
4409 III.ImmMustBeMultipleOf = 1;
4410 }
4411 break;
4412 }
4413 [[fallthrough]];
4414 case PPC::XFLOADf64:
4415 III.ImmOpcode = PPC::DFLOADf64;
4416 break;
4417 case PPC::STXVX:
4418 III.ImmOpcode = PPC::STXV;
4419 III.ImmMustBeMultipleOf = 16;
4420 break;
4421 case PPC::STXSSPX:
4422 if (PostRA) {
4423 if (IsVFReg)
4424 III.ImmOpcode = PPC::STXSSP;
4425 else {
4426 III.ImmOpcode = PPC::STFS;
4427 III.ImmMustBeMultipleOf = 1;
4428 }
4429 break;
4430 }
4431 [[fallthrough]];
4432 case PPC::XFSTOREf32:
4433 III.ImmOpcode = PPC::DFSTOREf32;
4434 break;
4435 case PPC::STXSDX:
4436 if (PostRA) {
4437 if (IsVFReg)
4438 III.ImmOpcode = PPC::STXSD;
4439 else {
4440 III.ImmOpcode = PPC::STFD;
4441 III.ImmMustBeMultipleOf = 1;
4442 }
4443 break;
4444 }
4445 [[fallthrough]];
4446 case PPC::XFSTOREf64:
4447 III.ImmOpcode = PPC::DFSTOREf64;
4448 break;
4449 }
4450 break;
4451 }
4452 return true;
4453}
4454
4455// Utility function for swaping two arbitrary operands of an instruction.
4456static void swapMIOperands(MachineInstr &MI, unsigned Op1, unsigned Op2) {
4457 assert(Op1 != Op2 && "Cannot swap operand with itself.");
4458
4459 unsigned MaxOp = std::max(Op1, Op2);
4460 unsigned MinOp = std::min(Op1, Op2);
4461 MachineOperand MOp1 = MI.getOperand(MinOp);
4462 MachineOperand MOp2 = MI.getOperand(MaxOp);
4463 MI.removeOperand(std::max(Op1, Op2));
4464 MI.removeOperand(std::min(Op1, Op2));
4465
4466 // If the operands we are swapping are the two at the end (the common case)
4467 // we can just remove both and add them in the opposite order.
4468 if (MaxOp - MinOp == 1 && MI.getNumOperands() == MinOp) {
4469 MI.addOperand(MOp2);
4470 MI.addOperand(MOp1);
4471 } else {
4472 // Store all operands in a temporary vector, remove them and re-add in the
4473 // right order.
4475 unsigned TotalOps = MI.getNumOperands() + 2; // We've already removed 2 ops.
4476 for (unsigned i = MI.getNumOperands() - 1; i >= MinOp; i--) {
4477 MOps.push_back(MI.getOperand(i));
4478 MI.removeOperand(i);
4479 }
4480 // MOp2 needs to be added next.
4481 MI.addOperand(MOp2);
4482 // Now add the rest.
4483 for (unsigned i = MI.getNumOperands(); i < TotalOps; i++) {
4484 if (i == MaxOp)
4485 MI.addOperand(MOp1);
4486 else {
4487 MI.addOperand(MOps.back());
4488 MOps.pop_back();
4489 }
4490 }
4491 }
4492}
4493
4494// Check if the 'MI' that has the index OpNoForForwarding
4495// meets the requirement described in the ImmInstrInfo.
4496bool PPCInstrInfo::isUseMIElgibleForForwarding(MachineInstr &MI,
4497 const ImmInstrInfo &III,
4498 unsigned OpNoForForwarding
4499 ) const {
4500 // As the algorithm of checking for PPC::ZERO/PPC::ZERO8
4501 // would not work pre-RA, we can only do the check post RA.
4502 MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
4503 if (MRI.isSSA())
4504 return false;
4505
4506 // Cannot do the transform if MI isn't summing the operands.
4507 if (!III.IsSummingOperands)
4508 return false;
4509
4510 // The instruction we are trying to replace must have the ZeroIsSpecialOrig set.
4511 if (!III.ZeroIsSpecialOrig)
4512 return false;
4513
4514 // We cannot do the transform if the operand we are trying to replace
4515 // isn't the same as the operand the instruction allows.
4516 if (OpNoForForwarding != III.OpNoForForwarding)
4517 return false;
4518
4519 // Check if the instruction we are trying to transform really has
4520 // the special zero register as its operand.
4521 if (MI.getOperand(III.ZeroIsSpecialOrig).getReg() != PPC::ZERO &&
4522 MI.getOperand(III.ZeroIsSpecialOrig).getReg() != PPC::ZERO8)
4523 return false;
4524
4525 // This machine instruction is convertible if it is,
4526 // 1. summing the operands.
4527 // 2. one of the operands is special zero register.
4528 // 3. the operand we are trying to replace is allowed by the MI.
4529 return true;
4530}
4531
4532// Check if the DefMI is the add inst and set the ImmMO and RegMO
4533// accordingly.
4534bool PPCInstrInfo::isDefMIElgibleForForwarding(MachineInstr &DefMI,
4535 const ImmInstrInfo &III,
4536 MachineOperand *&ImmMO,
4537 MachineOperand *&RegMO) const {
4538 unsigned Opc = DefMI.getOpcode();
4539 if (Opc != PPC::ADDItocL8 && Opc != PPC::ADDI && Opc != PPC::ADDI8)
4540 return false;
4541
4542 // Skip the optimization of transformTo[NewImm|Imm]FormFedByAdd for ADDItocL8
4543 // on AIX which is used for toc-data access. TODO: Follow up to see if it can
4544 // apply for AIX toc-data as well.
4545 if (Opc == PPC::ADDItocL8 && Subtarget.isAIX())
4546 return false;
4547
4548 assert(DefMI.getNumOperands() >= 3 &&
4549 "Add inst must have at least three operands");
4550 RegMO = &DefMI.getOperand(1);
4551 ImmMO = &DefMI.getOperand(2);
4552
4553 // Before RA, ADDI first operand could be a frame index.
4554 if (!RegMO->isReg())
4555 return false;
4556
4557 // This DefMI is elgible for forwarding if it is:
4558 // 1. add inst
4559 // 2. one of the operands is Imm/CPI/Global.
4560 return isAnImmediateOperand(*ImmMO);
4561}
4562
4563bool PPCInstrInfo::isRegElgibleForForwarding(
4564 const MachineOperand &RegMO, const MachineInstr &DefMI,
4565 const MachineInstr &MI, bool KillDefMI,
4566 bool &IsFwdFeederRegKilled, bool &SeenIntermediateUse) const {
4567 // x = addi y, imm
4568 // ...
4569 // z = lfdx 0, x -> z = lfd imm(y)
4570 // The Reg "y" can be forwarded to the MI(z) only when there is no DEF
4571 // of "y" between the DEF of "x" and "z".
4572 // The query is only valid post RA.
4573 const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
4574 if (MRI.isSSA())
4575 return false;
4576
4577 Register Reg = RegMO.getReg();
4578
4579 // Walking the inst in reverse(MI-->DefMI) to get the last DEF of the Reg.
4581 MachineBasicBlock::const_reverse_iterator E = MI.getParent()->rend();
4582 It++;
4583 for (; It != E; ++It) {
4584 if (It->modifiesRegister(Reg, &getRegisterInfo()) && (&*It) != &DefMI)
4585 return false;
4586 else if (It->killsRegister(Reg, &getRegisterInfo()) && (&*It) != &DefMI)
4587 IsFwdFeederRegKilled = true;
4588 if (It->readsRegister(Reg, &getRegisterInfo()) && (&*It) != &DefMI)
4589 SeenIntermediateUse = true;
4590 // Made it to DefMI without encountering a clobber.
4591 if ((&*It) == &DefMI)
4592 break;
4593 }
4594 assert((&*It) == &DefMI && "DefMI is missing");
4595
4596 // If DefMI also defines the register to be forwarded, we can only forward it
4597 // if DefMI is being erased.
4598 if (DefMI.modifiesRegister(Reg, &getRegisterInfo()))
4599 return KillDefMI;
4600
4601 return true;
4602}
4603
4604bool PPCInstrInfo::isImmElgibleForForwarding(const MachineOperand &ImmMO,
4605 const MachineInstr &DefMI,
4606 const ImmInstrInfo &III,
4607 int64_t &Imm,
4608 int64_t BaseImm) const {
4609 assert(isAnImmediateOperand(ImmMO) && "ImmMO is NOT an immediate");
4610 if (DefMI.getOpcode() == PPC::ADDItocL8) {
4611 // The operand for ADDItocL8 is CPI, which isn't imm at compiling time,
4612 // However, we know that, it is 16-bit width, and has the alignment of 4.
4613 // Check if the instruction met the requirement.
4614 if (III.ImmMustBeMultipleOf > 4 ||
4615 III.TruncateImmTo || III.ImmWidth != 16)
4616 return false;
4617
4618 // Going from XForm to DForm loads means that the displacement needs to be
4619 // not just an immediate but also a multiple of 4, or 16 depending on the
4620 // load. A DForm load cannot be represented if it is a multiple of say 2.
4621 // XForm loads do not have this restriction.
4622 if (ImmMO.isGlobal()) {
4623 const DataLayout &DL = ImmMO.getGlobal()->getDataLayout();
4625 return false;
4626 }
4627
4628 return true;
4629 }
4630
4631 if (ImmMO.isImm()) {
4632 // It is Imm, we need to check if the Imm fit the range.
4633 // Sign-extend to 64-bits.
4634 // DefMI may be folded with another imm form instruction, the result Imm is
4635 // the sum of Imm of DefMI and BaseImm which is from imm form instruction.
4636 APInt ActualValue(64, ImmMO.getImm() + BaseImm, true);
4637 if (III.SignedImm && !ActualValue.isSignedIntN(III.ImmWidth))
4638 return false;
4639 if (!III.SignedImm && !ActualValue.isIntN(III.ImmWidth))
4640 return false;
4641 Imm = SignExtend64<16>(ImmMO.getImm() + BaseImm);
4642
4643 if (Imm % III.ImmMustBeMultipleOf)
4644 return false;
4645 if (III.TruncateImmTo)
4646 Imm &= ((1 << III.TruncateImmTo) - 1);
4647 }
4648 else
4649 return false;
4650
4651 // This ImmMO is forwarded if it meets the requriement describle
4652 // in ImmInstrInfo
4653 return true;
4654}
4655
4656bool PPCInstrInfo::simplifyToLI(MachineInstr &MI, MachineInstr &DefMI,
4657 unsigned OpNoForForwarding,
4658 MachineInstr **KilledDef,
4659 SmallSet<Register, 4> *RegsToUpdate) const {
4660 if ((DefMI.getOpcode() != PPC::LI && DefMI.getOpcode() != PPC::LI8) ||
4661 !DefMI.getOperand(1).isImm())
4662 return false;
4663
4664 MachineFunction *MF = MI.getParent()->getParent();
4665 MachineRegisterInfo *MRI = &MF->getRegInfo();
4666 bool PostRA = !MRI->isSSA();
4667
4668 int64_t Immediate = DefMI.getOperand(1).getImm();
4669 // Sign-extend to 64-bits.
4670 int64_t SExtImm = SignExtend64<16>(Immediate);
4671
4672 bool ReplaceWithLI = false;
4673 bool Is64BitLI = false;
4674 int64_t NewImm = 0;
4675 bool SetCR = false;
4676 unsigned Opc = MI.getOpcode();
4677 switch (Opc) {
4678 default:
4679 return false;
4680
4681 // FIXME: Any branches conditional on such a comparison can be made
4682 // unconditional. At this time, this happens too infrequently to be worth
4683 // the implementation effort, but if that ever changes, we could convert
4684 // such a pattern here.
4685 case PPC::CMPWI:
4686 case PPC::CMPLWI:
4687 case PPC::CMPDI:
4688 case PPC::CMPLDI: {
4689 // Doing this post-RA would require dataflow analysis to reliably find uses
4690 // of the CR register set by the compare.
4691 // No need to fixup killed/dead flag since this transformation is only valid
4692 // before RA.
4693 if (PostRA)
4694 return false;
4695 // If a compare-immediate is fed by an immediate and is itself an input of
4696 // an ISEL (the most common case) into a COPY of the correct register.
4697 bool Changed = false;
4698 Register DefReg = MI.getOperand(0).getReg();
4699 int64_t Comparand = MI.getOperand(2).getImm();
4700 int64_t SExtComparand = ((uint64_t)Comparand & ~0x7FFFuLL) != 0
4701 ? (Comparand | 0xFFFFFFFFFFFF0000)
4702 : Comparand;
4703
4704 for (auto &CompareUseMI : MRI->use_instructions(DefReg)) {
4705 unsigned UseOpc = CompareUseMI.getOpcode();
4706 if (UseOpc != PPC::ISEL && UseOpc != PPC::ISEL8)
4707 continue;
4708 unsigned CRSubReg = CompareUseMI.getOperand(3).getSubReg();
4709 Register TrueReg = CompareUseMI.getOperand(1).getReg();
4710 Register FalseReg = CompareUseMI.getOperand(2).getReg();
4711 unsigned RegToCopy =
4712 selectReg(SExtImm, SExtComparand, Opc, TrueReg, FalseReg, CRSubReg);
4713 if (RegToCopy == PPC::NoRegister)
4714 continue;
4715 // Can't use PPC::COPY to copy PPC::ZERO[8]. Convert it to LI[8] 0.
4716 if (RegToCopy == PPC::ZERO || RegToCopy == PPC::ZERO8) {
4717 CompareUseMI.setDesc(get(UseOpc == PPC::ISEL8 ? PPC::LI8 : PPC::LI));
4718 replaceInstrOperandWithImm(CompareUseMI, 1, 0);
4719 CompareUseMI.removeOperand(3);
4720 CompareUseMI.removeOperand(2);
4721 continue;
4722 }
4723 LLVM_DEBUG(
4724 dbgs() << "Found LI -> CMPI -> ISEL, replacing with a copy.\n");
4725 LLVM_DEBUG(DefMI.dump(); MI.dump(); CompareUseMI.dump());
4726 LLVM_DEBUG(dbgs() << "Is converted to:\n");
4727 if (RegsToUpdate) {
4728 for (const MachineOperand &MO : CompareUseMI.operands())
4729 if (MO.isReg())
4730 RegsToUpdate->insert(MO.getReg());
4731 }
4732 // Convert to copy and remove unneeded operands.
4733 CompareUseMI.setDesc(get(PPC::COPY));
4734 CompareUseMI.removeOperand(3);
4735 CompareUseMI.removeOperand(RegToCopy == TrueReg ? 2 : 1);
4736 CmpIselsConverted++;
4737 Changed = true;
4738 LLVM_DEBUG(CompareUseMI.dump());
4739 }
4740 if (Changed)
4741 return true;
4742 // This may end up incremented multiple times since this function is called
4743 // during a fixed-point transformation, but it is only meant to indicate the
4744 // presence of this opportunity.
4745 MissedConvertibleImmediateInstrs++;
4746 return false;
4747 }
4748
4749 // Immediate forms - may simply be convertable to an LI.
4750 case PPC::ADDI:
4751 case PPC::ADDI8: {
4752 // Does the sum fit in a 16-bit signed field?
4753 int64_t Addend = MI.getOperand(2).getImm();
4754 if (isInt<16>(Addend + SExtImm)) {
4755 ReplaceWithLI = true;
4756 Is64BitLI = Opc == PPC::ADDI8;
4757 NewImm = Addend + SExtImm;
4758 break;
4759 }
4760 return false;
4761 }
4762 case PPC::SUBFIC:
4763 case PPC::SUBFIC8: {
4764 // Only transform this if the CARRY implicit operand is dead.
4765 if (MI.getNumOperands() > 3 && !MI.getOperand(3).isDead())
4766 return false;
4767 int64_t Minuend = MI.getOperand(2).getImm();
4768 if (isInt<16>(Minuend - SExtImm)) {
4769 ReplaceWithLI = true;
4770 Is64BitLI = Opc == PPC::SUBFIC8;
4771 NewImm = Minuend - SExtImm;
4772 break;
4773 }
4774 return false;
4775 }
4776 case PPC::RLDICL:
4777 case PPC::RLDICL_rec:
4778 case PPC::RLDICL_32:
4779 case PPC::RLDICL_32_64: {
4780 // Use APInt's rotate function.
4781 int64_t SH = MI.getOperand(2).getImm();
4782 int64_t MB = MI.getOperand(3).getImm();
4783 APInt InVal((Opc == PPC::RLDICL || Opc == PPC::RLDICL_rec) ? 64 : 32,
4784 SExtImm, true);
4785 InVal = InVal.rotl(SH);
4786 uint64_t Mask = MB == 0 ? -1LLU : (1LLU << (63 - MB + 1)) - 1;
4787 InVal &= Mask;
4788 // Can't replace negative values with an LI as that will sign-extend
4789 // and not clear the left bits. If we're setting the CR bit, we will use
4790 // ANDI_rec which won't sign extend, so that's safe.
4791 if (isUInt<15>(InVal.getSExtValue()) ||
4792 (Opc == PPC::RLDICL_rec && isUInt<16>(InVal.getSExtValue()))) {
4793 ReplaceWithLI = true;
4794 Is64BitLI = Opc != PPC::RLDICL_32;
4795 NewImm = InVal.getSExtValue();
4796 SetCR = Opc == PPC::RLDICL_rec;
4797 break;
4798 }
4799 return false;
4800 }
4801 case PPC::RLWINM:
4802 case PPC::RLWINM8:
4803 case PPC::RLWINM_rec:
4804 case PPC::RLWINM8_rec: {
4805 int64_t SH = MI.getOperand(2).getImm();
4806 int64_t MB = MI.getOperand(3).getImm();
4807 int64_t ME = MI.getOperand(4).getImm();
4808 APInt InVal(32, SExtImm, true);
4809 InVal = InVal.rotl(SH);
4810 APInt Mask = APInt::getBitsSetWithWrap(32, 32 - ME - 1, 32 - MB);
4811 InVal &= Mask;
4812 // Can't replace negative values with an LI as that will sign-extend
4813 // and not clear the left bits. If we're setting the CR bit, we will use
4814 // ANDI_rec which won't sign extend, so that's safe.
4815 bool ValueFits = isUInt<15>(InVal.getSExtValue());
4816 ValueFits |= ((Opc == PPC::RLWINM_rec || Opc == PPC::RLWINM8_rec) &&
4817 isUInt<16>(InVal.getSExtValue()));
4818 if (ValueFits) {
4819 ReplaceWithLI = true;
4820 Is64BitLI = Opc == PPC::RLWINM8 || Opc == PPC::RLWINM8_rec;
4821 NewImm = InVal.getSExtValue();
4822 SetCR = Opc == PPC::RLWINM_rec || Opc == PPC::RLWINM8_rec;
4823 break;
4824 }
4825 return false;
4826 }
4827 case PPC::ORI:
4828 case PPC::ORI8:
4829 case PPC::XORI:
4830 case PPC::XORI8: {
4831 int64_t LogicalImm = MI.getOperand(2).getImm();
4832 int64_t Result = 0;
4833 if (Opc == PPC::ORI || Opc == PPC::ORI8)
4834 Result = LogicalImm | SExtImm;
4835 else
4836 Result = LogicalImm ^ SExtImm;
4837 if (isInt<16>(Result)) {
4838 ReplaceWithLI = true;
4839 Is64BitLI = Opc == PPC::ORI8 || Opc == PPC::XORI8;
4840 NewImm = Result;
4841 break;
4842 }
4843 return false;
4844 }
4845 }
4846
4847 if (ReplaceWithLI) {
4848 // We need to be careful with CR-setting instructions we're replacing.
4849 if (SetCR) {
4850 // We don't know anything about uses when we're out of SSA, so only
4851 // replace if the new immediate will be reproduced.
4852 bool ImmChanged = (SExtImm & NewImm) != NewImm;
4853 if (PostRA && ImmChanged)
4854 return false;
4855
4856 if (!PostRA) {
4857 // If the defining load-immediate has no other uses, we can just replace
4858 // the immediate with the new immediate.
4859 if (MRI->hasOneUse(DefMI.getOperand(0).getReg()))
4860 DefMI.getOperand(1).setImm(NewImm);
4861
4862 // If we're not using the GPR result of the CR-setting instruction, we
4863 // just need to and with zero/non-zero depending on the new immediate.
4864 else if (MRI->use_empty(MI.getOperand(0).getReg())) {
4865 if (NewImm) {
4866 assert(Immediate && "Transformation converted zero to non-zero?");
4867 NewImm = Immediate;
4868 }
4869 } else if (ImmChanged)
4870 return false;
4871 }
4872 }
4873
4874 LLVM_DEBUG(dbgs() << "Replacing constant instruction:\n");
4875 LLVM_DEBUG(MI.dump());
4876 LLVM_DEBUG(dbgs() << "Fed by:\n");
4877 LLVM_DEBUG(DefMI.dump());
4878 LoadImmediateInfo LII;
4879 LII.Imm = NewImm;
4880 LII.Is64Bit = Is64BitLI;
4881 LII.SetCR = SetCR;
4882 // If we're setting the CR, the original load-immediate must be kept (as an
4883 // operand to ANDI_rec/ANDI8_rec).
4884 if (KilledDef && SetCR)
4885 *KilledDef = nullptr;
4886 replaceInstrWithLI(MI, LII);
4887
4888 if (PostRA)
4889 recomputeLivenessFlags(*MI.getParent());
4890
4891 LLVM_DEBUG(dbgs() << "With:\n");
4892 LLVM_DEBUG(MI.dump());
4893 return true;
4894 }
4895 return false;
4896}
4897
4898bool PPCInstrInfo::transformToNewImmFormFedByAdd(
4899 MachineInstr &MI, MachineInstr &DefMI, unsigned OpNoForForwarding) const {
4900 MachineRegisterInfo *MRI = &MI.getParent()->getParent()->getRegInfo();
4901 bool PostRA = !MRI->isSSA();
4902 // FIXME: extend this to post-ra. Need to do some change in getForwardingDefMI
4903 // for post-ra.
4904 if (PostRA)
4905 return false;
4906
4907 // Only handle load/store.
4908 if (!MI.mayLoadOrStore())
4909 return false;
4910
4911 unsigned XFormOpcode = RI.getMappedIdxOpcForImmOpc(MI.getOpcode());
4912
4913 assert((XFormOpcode != PPC::INSTRUCTION_LIST_END) &&
4914 "MI must have x-form opcode");
4915
4916 // get Imm Form info.
4917 ImmInstrInfo III;
4918 bool IsVFReg = MI.getOperand(0).isReg() &&
4919 MI.getOperand(0).getReg().isPhysical() &&
4920 PPC::isVFRegister(MI.getOperand(0).getReg());
4921
4922 if (!instrHasImmForm(XFormOpcode, IsVFReg, III, PostRA))
4923 return false;
4924
4925 if (!III.IsSummingOperands)
4926 return false;
4927
4928 if (OpNoForForwarding != III.OpNoForForwarding)
4929 return false;
4930
4931 MachineOperand ImmOperandMI = MI.getOperand(III.ImmOpNo);
4932 if (!ImmOperandMI.isImm())
4933 return false;
4934
4935 // Check DefMI.
4936 MachineOperand *ImmMO = nullptr;
4937 MachineOperand *RegMO = nullptr;
4938 if (!isDefMIElgibleForForwarding(DefMI, III, ImmMO, RegMO))
4939 return false;
4940 assert(ImmMO && RegMO && "Imm and Reg operand must have been set");
4941
4942 // Check Imm.
4943 // Set ImmBase from imm instruction as base and get new Imm inside
4944 // isImmElgibleForForwarding.
4945 int64_t ImmBase = ImmOperandMI.getImm();
4946 int64_t Imm = 0;
4947 if (!isImmElgibleForForwarding(*ImmMO, DefMI, III, Imm, ImmBase))
4948 return false;
4949
4950 // Do the transform
4951 LLVM_DEBUG(dbgs() << "Replacing existing reg+imm instruction:\n");
4952 LLVM_DEBUG(MI.dump());
4953 LLVM_DEBUG(dbgs() << "Fed by:\n");
4954 LLVM_DEBUG(DefMI.dump());
4955
4956 MI.getOperand(III.OpNoForForwarding).setReg(RegMO->getReg());
4957 MI.getOperand(III.ImmOpNo).setImm(Imm);
4958
4959 LLVM_DEBUG(dbgs() << "With:\n");
4960 LLVM_DEBUG(MI.dump());
4961 return true;
4962}
4963
4964// If an X-Form instruction is fed by an add-immediate and one of its operands
4965// is the literal zero, attempt to forward the source of the add-immediate to
4966// the corresponding D-Form instruction with the displacement coming from
4967// the immediate being added.
4968bool PPCInstrInfo::transformToImmFormFedByAdd(
4969 MachineInstr &MI, const ImmInstrInfo &III, unsigned OpNoForForwarding,
4970 MachineInstr &DefMI, bool KillDefMI) const {
4971 // RegMO ImmMO
4972 // | |
4973 // x = addi reg, imm <----- DefMI
4974 // y = op 0 , x <----- MI
4975 // |
4976 // OpNoForForwarding
4977 // Check if the MI meet the requirement described in the III.
4978 if (!isUseMIElgibleForForwarding(MI, III, OpNoForForwarding))
4979 return false;
4980
4981 // Check if the DefMI meet the requirement
4982 // described in the III. If yes, set the ImmMO and RegMO accordingly.
4983 MachineOperand *ImmMO = nullptr;
4984 MachineOperand *RegMO = nullptr;
4985 if (!isDefMIElgibleForForwarding(DefMI, III, ImmMO, RegMO))
4986 return false;
4987 assert(ImmMO && RegMO && "Imm and Reg operand must have been set");
4988
4989 // As we get the Imm operand now, we need to check if the ImmMO meet
4990 // the requirement described in the III. If yes set the Imm.
4991 int64_t Imm = 0;
4992 if (!isImmElgibleForForwarding(*ImmMO, DefMI, III, Imm))
4993 return false;
4994
4995 bool IsFwdFeederRegKilled = false;
4996 bool SeenIntermediateUse = false;
4997 // Check if the RegMO can be forwarded to MI.
4998 if (!isRegElgibleForForwarding(*RegMO, DefMI, MI, KillDefMI,
4999 IsFwdFeederRegKilled, SeenIntermediateUse))
5000 return false;
5001
5002 MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
5003 bool PostRA = !MRI.isSSA();
5004
5005 // We know that, the MI and DefMI both meet the pattern, and
5006 // the Imm also meet the requirement with the new Imm-form.
5007 // It is safe to do the transformation now.
5008 LLVM_DEBUG(dbgs() << "Replacing indexed instruction:\n");
5009 LLVM_DEBUG(MI.dump());
5010 LLVM_DEBUG(dbgs() << "Fed by:\n");
5011 LLVM_DEBUG(DefMI.dump());
5012
5013 // Update the base reg first.
5014 MI.getOperand(III.OpNoForForwarding).ChangeToRegister(RegMO->getReg(),
5015 false, false,
5016 RegMO->isKill());
5017
5018 // Then, update the imm.
5019 if (ImmMO->isImm()) {
5020 // If the ImmMO is Imm, change the operand that has ZERO to that Imm
5021 // directly.
5023 }
5024 else {
5025 // Otherwise, it is Constant Pool Index(CPI) or Global,
5026 // which is relocation in fact. We need to replace the special zero
5027 // register with ImmMO.
5028 // Before that, we need to fixup the target flags for imm.
5029 // For some reason, we miss to set the flag for the ImmMO if it is CPI.
5030 if (DefMI.getOpcode() == PPC::ADDItocL8)
5032
5033 // MI didn't have the interface such as MI.setOperand(i) though
5034 // it has MI.getOperand(i). To repalce the ZERO MachineOperand with
5035 // ImmMO, we need to remove ZERO operand and all the operands behind it,
5036 // and, add the ImmMO, then, move back all the operands behind ZERO.
5038 for (unsigned i = MI.getNumOperands() - 1; i >= III.ZeroIsSpecialOrig; i--) {
5039 MOps.push_back(MI.getOperand(i));
5040 MI.removeOperand(i);
5041 }
5042
5043 // Remove the last MO in the list, which is ZERO operand in fact.
5044 MOps.pop_back();
5045 // Add the imm operand.
5046 MI.addOperand(*ImmMO);
5047 // Now add the rest back.
5048 for (auto &MO : MOps)
5049 MI.addOperand(MO);
5050 }
5051
5052 // Update the opcode.
5053 MI.setDesc(get(III.ImmOpcode));
5054
5055 if (PostRA)
5056 recomputeLivenessFlags(*MI.getParent());
5057 LLVM_DEBUG(dbgs() << "With:\n");
5058 LLVM_DEBUG(MI.dump());
5059
5060 return true;
5061}
5062
5063bool PPCInstrInfo::transformToImmFormFedByLI(MachineInstr &MI,
5064 const ImmInstrInfo &III,
5065 unsigned ConstantOpNo,
5066 MachineInstr &DefMI) const {
5067 // DefMI must be LI or LI8.
5068 if ((DefMI.getOpcode() != PPC::LI && DefMI.getOpcode() != PPC::LI8) ||
5069 !DefMI.getOperand(1).isImm())
5070 return false;
5071
5072 // Get Imm operand and Sign-extend to 64-bits.
5073 int64_t Imm = SignExtend64<16>(DefMI.getOperand(1).getImm());
5074
5075 MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
5076 bool PostRA = !MRI.isSSA();
5077 // Exit early if we can't convert this.
5078 if ((ConstantOpNo != III.OpNoForForwarding) && !III.IsCommutative)
5079 return false;
5080 if (Imm % III.ImmMustBeMultipleOf)
5081 return false;
5082 if (III.TruncateImmTo)
5083 Imm &= ((1 << III.TruncateImmTo) - 1);
5084 if (III.SignedImm) {
5085 APInt ActualValue(64, Imm, true);
5086 if (!ActualValue.isSignedIntN(III.ImmWidth))
5087 return false;
5088 } else {
5089 uint64_t UnsignedMax = (1 << III.ImmWidth) - 1;
5090 if ((uint64_t)Imm > UnsignedMax)
5091 return false;
5092 }
5093
5094 // If we're post-RA, the instructions don't agree on whether register zero is
5095 // special, we can transform this as long as the register operand that will
5096 // end up in the location where zero is special isn't R0.
5097 if (PostRA && III.ZeroIsSpecialOrig != III.ZeroIsSpecialNew) {
5098 unsigned PosForOrigZero = III.ZeroIsSpecialOrig ? III.ZeroIsSpecialOrig :
5099 III.ZeroIsSpecialNew + 1;
5100 Register OrigZeroReg = MI.getOperand(PosForOrigZero).getReg();
5101 Register NewZeroReg = MI.getOperand(III.ZeroIsSpecialNew).getReg();
5102 // If R0 is in the operand where zero is special for the new instruction,
5103 // it is unsafe to transform if the constant operand isn't that operand.
5104 if ((NewZeroReg == PPC::R0 || NewZeroReg == PPC::X0) &&
5105 ConstantOpNo != III.ZeroIsSpecialNew)
5106 return false;
5107 if ((OrigZeroReg == PPC::R0 || OrigZeroReg == PPC::X0) &&
5108 ConstantOpNo != PosForOrigZero)
5109 return false;
5110 }
5111
5112 unsigned Opc = MI.getOpcode();
5113 bool SpecialShift32 = Opc == PPC::SLW || Opc == PPC::SLW_rec ||
5114 Opc == PPC::SRW || Opc == PPC::SRW_rec ||
5115 Opc == PPC::SLW8 || Opc == PPC::SLW8_rec ||
5116 Opc == PPC::SRW8 || Opc == PPC::SRW8_rec;
5117 bool SpecialShift64 = Opc == PPC::SLD || Opc == PPC::SLD_rec ||
5118 Opc == PPC::SRD || Opc == PPC::SRD_rec;
5119 bool SetCR = Opc == PPC::SLW_rec || Opc == PPC::SRW_rec ||
5120 Opc == PPC::SLD_rec || Opc == PPC::SRD_rec;
5121 bool RightShift = Opc == PPC::SRW || Opc == PPC::SRW_rec || Opc == PPC::SRD ||
5122 Opc == PPC::SRD_rec;
5123
5124 LLVM_DEBUG(dbgs() << "Replacing reg+reg instruction: ");
5125 LLVM_DEBUG(MI.dump());
5126 LLVM_DEBUG(dbgs() << "Fed by load-immediate: ");
5127 LLVM_DEBUG(DefMI.dump());
5128 MI.setDesc(get(III.ImmOpcode));
5129 if (ConstantOpNo == III.OpNoForForwarding) {
5130 // Converting shifts to immediate form is a bit tricky since they may do
5131 // one of three things:
5132 // 1. If the shift amount is between OpSize and 2*OpSize, the result is zero
5133 // 2. If the shift amount is zero, the result is unchanged (save for maybe
5134 // setting CR0)
5135 // 3. If the shift amount is in [1, OpSize), it's just a shift
5136 if (SpecialShift32 || SpecialShift64) {
5137 LoadImmediateInfo LII;
5138 LII.Imm = 0;
5139 LII.SetCR = SetCR;
5140 LII.Is64Bit = SpecialShift64;
5141 uint64_t ShAmt = Imm & (SpecialShift32 ? 0x1F : 0x3F);
5142 if (Imm & (SpecialShift32 ? 0x20 : 0x40))
5143 replaceInstrWithLI(MI, LII);
5144 // Shifts by zero don't change the value. If we don't need to set CR0,
5145 // just convert this to a COPY. Can't do this post-RA since we've already
5146 // cleaned up the copies.
5147 else if (!SetCR && ShAmt == 0 && !PostRA) {
5148 MI.removeOperand(2);
5149 MI.setDesc(get(PPC::COPY));
5150 } else {
5151 // The 32 bit and 64 bit instructions are quite different.
5152 if (SpecialShift32) {
5153 // Left shifts use (N, 0, 31-N).
5154 // Right shifts use (32-N, N, 31) if 0 < N < 32.
5155 // use (0, 0, 31) if N == 0.
5156 uint64_t SH = ShAmt == 0 ? 0 : RightShift ? 32 - ShAmt : ShAmt;
5157 uint64_t MB = RightShift ? ShAmt : 0;
5158 uint64_t ME = RightShift ? 31 : 31 - ShAmt;
5160 MachineInstrBuilder(*MI.getParent()->getParent(), MI).addImm(MB)
5161 .addImm(ME);
5162 } else {
5163 // Left shifts use (N, 63-N).
5164 // Right shifts use (64-N, N) if 0 < N < 64.
5165 // use (0, 0) if N == 0.
5166 uint64_t SH = ShAmt == 0 ? 0 : RightShift ? 64 - ShAmt : ShAmt;
5167 uint64_t ME = RightShift ? ShAmt : 63 - ShAmt;
5169 MachineInstrBuilder(*MI.getParent()->getParent(), MI).addImm(ME);
5170 }
5171 }
5172 } else
5173 replaceInstrOperandWithImm(MI, ConstantOpNo, Imm);
5174 }
5175 // Convert commutative instructions (switch the operands and convert the
5176 // desired one to an immediate.
5177 else if (III.IsCommutative) {
5178 replaceInstrOperandWithImm(MI, ConstantOpNo, Imm);
5179 swapMIOperands(MI, ConstantOpNo, III.OpNoForForwarding);
5180 } else
5181 llvm_unreachable("Should have exited early!");
5182
5183 // For instructions for which the constant register replaces a different
5184 // operand than where the immediate goes, we need to swap them.
5185 if (III.OpNoForForwarding != III.ImmOpNo)
5187
5188 // If the special R0/X0 register index are different for original instruction
5189 // and new instruction, we need to fix up the register class in new
5190 // instruction.
5191 if (!PostRA && III.ZeroIsSpecialOrig != III.ZeroIsSpecialNew) {
5192 if (III.ZeroIsSpecialNew) {
5193 // If operand at III.ZeroIsSpecialNew is physical reg(eg: ZERO/ZERO8), no
5194 // need to fix up register class.
5195 Register RegToModify = MI.getOperand(III.ZeroIsSpecialNew).getReg();
5196 if (RegToModify.isVirtual()) {
5197 const TargetRegisterClass *NewRC =
5198 MRI.getRegClass(RegToModify)->hasSuperClassEq(&PPC::GPRCRegClass) ?
5199 &PPC::GPRC_and_GPRC_NOR0RegClass : &PPC::G8RC_and_G8RC_NOX0RegClass;
5200 MRI.setRegClass(RegToModify, NewRC);
5201 }
5202 }
5203 }
5204
5205 if (PostRA)
5206 recomputeLivenessFlags(*MI.getParent());
5207
5208 LLVM_DEBUG(dbgs() << "With: ");
5209 LLVM_DEBUG(MI.dump());
5210 LLVM_DEBUG(dbgs() << "\n");
5211 return true;
5212}
5213
5214const TargetRegisterClass *
5216 if (Subtarget.hasVSX() && RC == &PPC::VRRCRegClass)
5217 return &PPC::VSRCRegClass;
5218 return RC;
5219}
5220
5222 return PPC::getRecordFormOpcode(Opcode);
5223}
5224
5225static bool isOpZeroOfSubwordPreincLoad(int Opcode) {
5226 return (Opcode == PPC::LBZU || Opcode == PPC::LBZUX || Opcode == PPC::LBZU8 ||
5227 Opcode == PPC::LBZUX8 || Opcode == PPC::LHZU ||
5228 Opcode == PPC::LHZUX || Opcode == PPC::LHZU8 ||
5229 Opcode == PPC::LHZUX8);
5230}
5231
5232// This function checks for sign extension from 32 bits to 64 bits.
5233static bool definedBySignExtendingOp(const unsigned Reg,
5234 const MachineRegisterInfo *MRI) {
5236 return false;
5237
5238 MachineInstr *MI = MRI->getVRegDef(Reg);
5239 if (!MI)
5240 return false;
5241
5242 int Opcode = MI->getOpcode();
5243 const PPCInstrInfo *TII =
5244 MI->getMF()->getSubtarget<PPCSubtarget>().getInstrInfo();
5245 if (TII->isSExt32To64(Opcode))
5246 return true;
5247
5248 // The first def of LBZU/LHZU is sign extended.
5249 if (isOpZeroOfSubwordPreincLoad(Opcode) && MI->getOperand(0).getReg() == Reg)
5250 return true;
5251
5252 // RLDICL generates sign-extended output if it clears at least
5253 // 33 bits from the left (MSB).
5254 if (Opcode == PPC::RLDICL && MI->getOperand(3).getImm() >= 33)
5255 return true;
5256
5257 // If at least one bit from left in a lower word is masked out,
5258 // all of 0 to 32-th bits of the output are cleared.
5259 // Hence the output is already sign extended.
5260 if ((Opcode == PPC::RLWINM || Opcode == PPC::RLWINM_rec ||
5261 Opcode == PPC::RLWNM || Opcode == PPC::RLWNM_rec) &&
5262 MI->getOperand(3).getImm() > 0 &&
5263 MI->getOperand(3).getImm() <= MI->getOperand(4).getImm())
5264 return true;
5265
5266 // If the most significant bit of immediate in ANDIS is zero,
5267 // all of 0 to 32-th bits are cleared.
5268 if (Opcode == PPC::ANDIS_rec || Opcode == PPC::ANDIS8_rec) {
5269 uint16_t Imm = MI->getOperand(2).getImm();
5270 if ((Imm & 0x8000) == 0)
5271 return true;
5272 }
5273
5274 return false;
5275}
5276
5277// This function checks the machine instruction that defines the input register
5278// Reg. If that machine instruction always outputs a value that has only zeros
5279// in the higher 32 bits then this function will return true.
5280static bool definedByZeroExtendingOp(const unsigned Reg,
5281 const MachineRegisterInfo *MRI) {
5283 return false;
5284
5285 MachineInstr *MI = MRI->getVRegDef(Reg);
5286 if (!MI)
5287 return false;
5288
5289 int Opcode = MI->getOpcode();
5290 const PPCInstrInfo *TII =
5291 MI->getMF()->getSubtarget<PPCSubtarget>().getInstrInfo();
5292 if (TII->isZExt32To64(Opcode))
5293 return true;
5294
5295 // The first def of LBZU/LHZU/LWZU are zero extended.
5296 if ((isOpZeroOfSubwordPreincLoad(Opcode) || Opcode == PPC::LWZU ||
5297 Opcode == PPC::LWZUX || Opcode == PPC::LWZU8 || Opcode == PPC::LWZUX8) &&
5298 MI->getOperand(0).getReg() == Reg)
5299 return true;
5300
5301 // The 16-bit immediate is sign-extended in li/lis.
5302 // If the most significant bit is zero, all higher bits are zero.
5303 if (Opcode == PPC::LI || Opcode == PPC::LI8 ||
5304 Opcode == PPC::LIS || Opcode == PPC::LIS8) {
5305 int64_t Imm = MI->getOperand(1).getImm();
5306 if (((uint64_t)Imm & ~0x7FFFuLL) == 0)
5307 return true;
5308 }
5309
5310 // We have some variations of rotate-and-mask instructions
5311 // that clear higher 32-bits.
5312 if ((Opcode == PPC::RLDICL || Opcode == PPC::RLDICL_rec ||
5313 Opcode == PPC::RLDCL || Opcode == PPC::RLDCL_rec ||
5314 Opcode == PPC::RLDICL_32_64) &&
5315 MI->getOperand(3).getImm() >= 32)
5316 return true;
5317
5318 if ((Opcode == PPC::RLDIC || Opcode == PPC::RLDIC_rec) &&
5319 MI->getOperand(3).getImm() >= 32 &&
5320 MI->getOperand(3).getImm() <= 63 - MI->getOperand(2).getImm())
5321 return true;
5322
5323 if ((Opcode == PPC::RLWINM || Opcode == PPC::RLWINM_rec ||
5324 Opcode == PPC::RLWNM || Opcode == PPC::RLWNM_rec ||
5325 Opcode == PPC::RLWINM8 || Opcode == PPC::RLWNM8) &&
5326 MI->getOperand(3).getImm() <= MI->getOperand(4).getImm())
5327 return true;
5328
5329 return false;
5330}
5331
5332// This function returns true if the input MachineInstr is a TOC save
5333// instruction.
5335 if (!MI.getOperand(1).isImm() || !MI.getOperand(2).isReg())
5336 return false;
5337 unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
5338 unsigned StackOffset = MI.getOperand(1).getImm();
5339 Register StackReg = MI.getOperand(2).getReg();
5340 Register SPReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1;
5341 if (StackReg == SPReg && StackOffset == TOCSaveOffset)
5342 return true;
5343
5344 return false;
5345}
5346
5347// We limit the max depth to track incoming values of PHIs or binary ops
5348// (e.g. AND) to avoid excessive cost.
5349const unsigned MAX_BINOP_DEPTH = 1;
5350
5351// This function will promote the instruction which defines the register `Reg`
5352// in the parameter from a 32-bit to a 64-bit instruction if needed. The logic
5353// used to check whether an instruction needs to be promoted or not is similar
5354// to the logic used to check whether or not a defined register is sign or zero
5355// extended within the function PPCInstrInfo::isSignOrZeroExtended.
5356// Additionally, the `promoteInstr32To64ForElimEXTSW` function is recursive.
5357// BinOpDepth does not count all of the recursions. The parameter BinOpDepth is
5358// incremented only when `promoteInstr32To64ForElimEXTSW` calls itself more
5359// than once. This is done to prevent exponential recursion.
5362 unsigned BinOpDepth,
5363 LiveVariables *LV) const {
5364 if (!Reg.isVirtual())
5365 return;
5366
5367 MachineInstr *MI = MRI->getVRegDef(Reg);
5368 if (!MI)
5369 return;
5370
5371 unsigned Opcode = MI->getOpcode();
5372
5373 switch (Opcode) {
5374 case PPC::OR:
5375 case PPC::ISEL:
5376 case PPC::OR8:
5377 case PPC::PHI: {
5378 if (BinOpDepth >= MAX_BINOP_DEPTH)
5379 break;
5380 unsigned OperandEnd = 3, OperandStride = 1;
5381 if (Opcode == PPC::PHI) {
5382 OperandEnd = MI->getNumOperands();
5383 OperandStride = 2;
5384 }
5385
5386 for (unsigned I = 1; I < OperandEnd; I += OperandStride) {
5387 assert(MI->getOperand(I).isReg() && "Operand must be register");
5388 promoteInstr32To64ForElimEXTSW(MI->getOperand(I).getReg(), MRI,
5389 BinOpDepth + 1, LV);
5390 }
5391
5392 break;
5393 }
5394 case PPC::COPY: {
5395 // Refers to the logic of the `case PPC::COPY` statement in the function
5396 // PPCInstrInfo::isSignOrZeroExtended().
5397
5398 Register SrcReg = MI->getOperand(1).getReg();
5399 // In both ELFv1 and v2 ABI, method parameters and the return value
5400 // are sign- or zero-extended.
5401 const MachineFunction *MF = MI->getMF();
5402 if (!MF->getSubtarget<PPCSubtarget>().isSVR4ABI()) {
5403 // If this is a copy from another register, we recursively promote the
5404 // source.
5405 promoteInstr32To64ForElimEXTSW(SrcReg, MRI, BinOpDepth, LV);
5406 return;
5407 }
5408
5409 // From here on everything is SVR4ABI. COPY will be eliminated in the other
5410 // pass, we do not need promote the COPY pseudo opcode.
5411
5412 if (SrcReg != PPC::X3)
5413 // If this is a copy from another register, we recursively promote the
5414 // source.
5415 promoteInstr32To64ForElimEXTSW(SrcReg, MRI, BinOpDepth, LV);
5416 return;
5417 }
5418 case PPC::ORI:
5419 case PPC::XORI:
5420 case PPC::ORIS:
5421 case PPC::XORIS:
5422 case PPC::ORI8:
5423 case PPC::XORI8:
5424 case PPC::ORIS8:
5425 case PPC::XORIS8:
5426 promoteInstr32To64ForElimEXTSW(MI->getOperand(1).getReg(), MRI, BinOpDepth,
5427 LV);
5428 break;
5429 case PPC::AND:
5430 case PPC::AND8:
5431 if (BinOpDepth >= MAX_BINOP_DEPTH)
5432 break;
5433
5434 promoteInstr32To64ForElimEXTSW(MI->getOperand(1).getReg(), MRI,
5435 BinOpDepth + 1, LV);
5436 promoteInstr32To64ForElimEXTSW(MI->getOperand(2).getReg(), MRI,
5437 BinOpDepth + 1, LV);
5438 break;
5439 }
5440
5441 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
5442 if (RC == &PPC::G8RCRegClass || RC == &PPC::G8RC_and_G8RC_NOX0RegClass)
5443 return;
5444
5445 const PPCInstrInfo *TII =
5446 MI->getMF()->getSubtarget<PPCSubtarget>().getInstrInfo();
5447
5448 // Map the 32bit to 64bit opcodes for instructions that are not signed or zero
5449 // extended themselves, but may have operands who's destination registers of
5450 // signed or zero extended instructions.
5451 std::unordered_map<unsigned, unsigned> OpcodeMap = {
5452 {PPC::OR, PPC::OR8}, {PPC::ISEL, PPC::ISEL8},
5453 {PPC::ORI, PPC::ORI8}, {PPC::XORI, PPC::XORI8},
5454 {PPC::ORIS, PPC::ORIS8}, {PPC::XORIS, PPC::XORIS8},
5455 {PPC::AND, PPC::AND8}};
5456
5457 int NewOpcode = -1;
5458 auto It = OpcodeMap.find(Opcode);
5459 if (It != OpcodeMap.end()) {
5460 // Set the new opcode to the mapped 64-bit version.
5461 NewOpcode = It->second;
5462 } else {
5463 if (!TII->isSExt32To64(Opcode))
5464 return;
5465
5466 // The TableGen function `get64BitInstrFromSignedExt32BitInstr` is used to
5467 // map the 32-bit instruction with the `SExt32To64` flag to the 64-bit
5468 // instruction with the same opcode.
5469 NewOpcode = PPC::get64BitInstrFromSignedExt32BitInstr(Opcode);
5470 }
5471
5472 assert(NewOpcode != -1 &&
5473 "Must have a 64-bit opcode to map the 32-bit opcode!");
5474
5476 const MCInstrDesc &MCID = TII->get(NewOpcode);
5477 const TargetRegisterClass *NewRC =
5478 TRI->getRegClass(MCID.operands()[0].RegClass);
5479
5480 Register SrcReg = MI->getOperand(0).getReg();
5481 const TargetRegisterClass *SrcRC = MRI->getRegClass(SrcReg);
5482
5483 // If the register class of the defined register in the 32-bit instruction
5484 // is the same as the register class of the defined register in the promoted
5485 // 64-bit instruction, we do not need to promote the instruction.
5486 if (NewRC == SrcRC)
5487 return;
5488
5489 DebugLoc DL = MI->getDebugLoc();
5490 auto MBB = MI->getParent();
5491
5492 // Since the pseudo-opcode of the instruction is promoted from 32-bit to
5493 // 64-bit, if the source reg class of the original instruction belongs to
5494 // PPC::GRCRegClass or PPC::GPRC_and_GPRC_NOR0RegClass, we need to promote
5495 // the operand to PPC::G8CRegClass or PPC::G8RC_and_G8RC_NOR0RegClass,
5496 // respectively.
5497 DenseMap<unsigned, Register> PromoteRegs;
5498 for (unsigned i = 1; i < MI->getNumOperands(); i++) {
5499 MachineOperand &Operand = MI->getOperand(i);
5500 if (!Operand.isReg())
5501 continue;
5502
5503 Register OperandReg = Operand.getReg();
5504 if (!OperandReg.isVirtual())
5505 continue;
5506
5507 const TargetRegisterClass *NewUsedRegRC =
5508 TRI->getRegClass(MCID.operands()[i].RegClass);
5509 const TargetRegisterClass *OrgRC = MRI->getRegClass(OperandReg);
5510 if (NewUsedRegRC != OrgRC && (OrgRC == &PPC::GPRCRegClass ||
5511 OrgRC == &PPC::GPRC_and_GPRC_NOR0RegClass)) {
5512 // Promote the used 32-bit register to 64-bit register.
5513 Register TmpReg = MRI->createVirtualRegister(NewUsedRegRC);
5514 Register DstTmpReg = MRI->createVirtualRegister(NewUsedRegRC);
5515 BuildMI(*MBB, MI, DL, TII->get(PPC::IMPLICIT_DEF), TmpReg);
5516 BuildMI(*MBB, MI, DL, TII->get(PPC::INSERT_SUBREG), DstTmpReg)
5517 .addReg(TmpReg)
5518 .addReg(OperandReg)
5519 .addImm(PPC::sub_32);
5520 PromoteRegs[i] = DstTmpReg;
5521 }
5522 }
5523
5524 Register NewDefinedReg = MRI->createVirtualRegister(NewRC);
5525
5526 BuildMI(*MBB, MI, DL, TII->get(NewOpcode), NewDefinedReg);
5528 --Iter;
5529 MachineInstrBuilder MIBuilder(*Iter->getMF(), Iter);
5530 for (unsigned i = 1; i < MI->getNumOperands(); i++) {
5531 if (auto It = PromoteRegs.find(i); It != PromoteRegs.end())
5532 MIBuilder.addReg(It->second, RegState::Kill);
5533 else
5534 Iter->addOperand(MI->getOperand(i));
5535 }
5536
5537 for (unsigned i = 1; i < Iter->getNumOperands(); i++) {
5538 MachineOperand &Operand = Iter->getOperand(i);
5539 if (!Operand.isReg())
5540 continue;
5541 Register OperandReg = Operand.getReg();
5542 if (!OperandReg.isVirtual())
5543 continue;
5544 LV->recomputeForSingleDefVirtReg(OperandReg);
5545 }
5546
5547 MI->eraseFromParent();
5548
5549 // A defined register may be used by other instructions that are 32-bit.
5550 // After the defined register is promoted to 64-bit for the promoted
5551 // instruction, we need to demote the 64-bit defined register back to a
5552 // 32-bit register
5553 BuildMI(*MBB, ++Iter, DL, TII->get(PPC::COPY), SrcReg)
5554 .addReg(NewDefinedReg, RegState::Kill, PPC::sub_32);
5555 LV->recomputeForSingleDefVirtReg(NewDefinedReg);
5556}
5557
5558// The isSignOrZeroExtended function is recursive. The parameter BinOpDepth
5559// does not count all of the recursions. The parameter BinOpDepth is incremented
5560// only when isSignOrZeroExtended calls itself more than once. This is done to
5561// prevent expontential recursion. There is no parameter to track linear
5562// recursion.
5563std::pair<bool, bool>
5565 const unsigned BinOpDepth,
5566 const MachineRegisterInfo *MRI) const {
5568 return std::pair<bool, bool>(false, false);
5569
5570 MachineInstr *MI = MRI->getVRegDef(Reg);
5571 if (!MI)
5572 return std::pair<bool, bool>(false, false);
5573
5574 bool IsSExt = definedBySignExtendingOp(Reg, MRI);
5575 bool IsZExt = definedByZeroExtendingOp(Reg, MRI);
5576
5577 // If we know the instruction always returns sign- and zero-extended result,
5578 // return here.
5579 if (IsSExt && IsZExt)
5580 return std::pair<bool, bool>(IsSExt, IsZExt);
5581
5582 switch (MI->getOpcode()) {
5583 case PPC::COPY: {
5584 Register SrcReg = MI->getOperand(1).getReg();
5585
5586 // In both ELFv1 and v2 ABI, method parameters and the return value
5587 // are sign- or zero-extended.
5588 const MachineFunction *MF = MI->getMF();
5589
5590 if (!MF->getSubtarget<PPCSubtarget>().isSVR4ABI()) {
5591 // If this is a copy from another register, we recursively check source.
5592 auto SrcExt = isSignOrZeroExtended(SrcReg, BinOpDepth, MRI);
5593 return std::pair<bool, bool>(SrcExt.first || IsSExt,
5594 SrcExt.second || IsZExt);
5595 }
5596
5597 // From here on everything is SVR4ABI
5598 const PPCFunctionInfo *FuncInfo = MF->getInfo<PPCFunctionInfo>();
5599 // We check the ZExt/SExt flags for a method parameter.
5600 if (MI->getParent()->getBasicBlock() ==
5601 &MF->getFunction().getEntryBlock()) {
5602 Register VReg = MI->getOperand(0).getReg();
5603 if (MF->getRegInfo().isLiveIn(VReg)) {
5604 IsSExt |= FuncInfo->isLiveInSExt(VReg);
5605 IsZExt |= FuncInfo->isLiveInZExt(VReg);
5606 return std::pair<bool, bool>(IsSExt, IsZExt);
5607 }
5608 }
5609
5610 if (SrcReg != PPC::X3) {
5611 // If this is a copy from another register, we recursively check source.
5612 auto SrcExt = isSignOrZeroExtended(SrcReg, BinOpDepth, MRI);
5613 return std::pair<bool, bool>(SrcExt.first || IsSExt,
5614 SrcExt.second || IsZExt);
5615 }
5616
5617 // For a method return value, we check the ZExt/SExt flags in attribute.
5618 // We assume the following code sequence for method call.
5619 // ADJCALLSTACKDOWN 32, implicit dead %r1, implicit %r1
5620 // BL8_NOP @func,...
5621 // ADJCALLSTACKUP 32, 0, implicit dead %r1, implicit %r1
5622 // %5 = COPY %x3; G8RC:%5
5623 const MachineBasicBlock *MBB = MI->getParent();
5624 std::pair<bool, bool> IsExtendPair = std::pair<bool, bool>(IsSExt, IsZExt);
5627 if (II == MBB->instr_begin() || (--II)->getOpcode() != PPC::ADJCALLSTACKUP)
5628 return IsExtendPair;
5629
5630 const MachineInstr &CallMI = *(--II);
5631 if (!CallMI.isCall() || !CallMI.getOperand(0).isGlobal())
5632 return IsExtendPair;
5633
5634 const Function *CalleeFn =
5636 if (!CalleeFn)
5637 return IsExtendPair;
5638 const IntegerType *IntTy = dyn_cast<IntegerType>(CalleeFn->getReturnType());
5639 if (IntTy && IntTy->getBitWidth() <= 32) {
5640 const AttributeSet &Attrs = CalleeFn->getAttributes().getRetAttrs();
5641 IsSExt |= Attrs.hasAttribute(Attribute::SExt);
5642 IsZExt |= Attrs.hasAttribute(Attribute::ZExt);
5643 return std::pair<bool, bool>(IsSExt, IsZExt);
5644 }
5645
5646 return IsExtendPair;
5647 }
5648
5649 // OR, XOR with 16-bit immediate does not change the upper 48 bits.
5650 // So, we track the operand register as we do for register copy.
5651 case PPC::ORI:
5652 case PPC::XORI:
5653 case PPC::ORI8:
5654 case PPC::XORI8: {
5655 Register SrcReg = MI->getOperand(1).getReg();
5656 auto SrcExt = isSignOrZeroExtended(SrcReg, BinOpDepth, MRI);
5657 return std::pair<bool, bool>(SrcExt.first || IsSExt,
5658 SrcExt.second || IsZExt);
5659 }
5660
5661 // OR, XOR with shifted 16-bit immediate does not change the upper
5662 // 32 bits. So, we track the operand register for zero extension.
5663 // For sign extension when the MSB of the immediate is zero, we also
5664 // track the operand register since the upper 33 bits are unchanged.
5665 case PPC::ORIS:
5666 case PPC::XORIS:
5667 case PPC::ORIS8:
5668 case PPC::XORIS8: {
5669 Register SrcReg = MI->getOperand(1).getReg();
5670 auto SrcExt = isSignOrZeroExtended(SrcReg, BinOpDepth, MRI);
5671 uint16_t Imm = MI->getOperand(2).getImm();
5672 if (Imm & 0x8000)
5673 return std::pair<bool, bool>(false, SrcExt.second || IsZExt);
5674 else
5675 return std::pair<bool, bool>(SrcExt.first || IsSExt,
5676 SrcExt.second || IsZExt);
5677 }
5678
5679 // If all incoming values are sign-/zero-extended,
5680 // the output of OR, ISEL or PHI is also sign-/zero-extended.
5681 case PPC::OR:
5682 case PPC::OR8:
5683 case PPC::ISEL:
5684 case PPC::PHI: {
5685 if (BinOpDepth >= MAX_BINOP_DEPTH)
5686 return std::pair<bool, bool>(false, false);
5687
5688 // The input registers for PHI are operand 1, 3, ...
5689 // The input registers for others are operand 1 and 2.
5690 unsigned OperandEnd = 3, OperandStride = 1;
5691 if (MI->getOpcode() == PPC::PHI) {
5692 OperandEnd = MI->getNumOperands();
5693 OperandStride = 2;
5694 }
5695
5696 IsSExt = true;
5697 IsZExt = true;
5698 for (unsigned I = 1; I != OperandEnd; I += OperandStride) {
5699 if (!MI->getOperand(I).isReg())
5700 return std::pair<bool, bool>(false, false);
5701
5702 Register SrcReg = MI->getOperand(I).getReg();
5703 auto SrcExt = isSignOrZeroExtended(SrcReg, BinOpDepth + 1, MRI);
5704 IsSExt &= SrcExt.first;
5705 IsZExt &= SrcExt.second;
5706 }
5707 return std::pair<bool, bool>(IsSExt, IsZExt);
5708 }
5709
5710 // If at least one of the incoming values of an AND is zero extended
5711 // then the output is also zero-extended. If both of the incoming values
5712 // are sign-extended then the output is also sign extended.
5713 case PPC::AND:
5714 case PPC::AND8: {
5715 if (BinOpDepth >= MAX_BINOP_DEPTH)
5716 return std::pair<bool, bool>(false, false);
5717
5718 Register SrcReg1 = MI->getOperand(1).getReg();
5719 Register SrcReg2 = MI->getOperand(2).getReg();
5720 auto Src1Ext = isSignOrZeroExtended(SrcReg1, BinOpDepth + 1, MRI);
5721 auto Src2Ext = isSignOrZeroExtended(SrcReg2, BinOpDepth + 1, MRI);
5722 return std::pair<bool, bool>(Src1Ext.first && Src2Ext.first,
5723 Src1Ext.second || Src2Ext.second);
5724 }
5725
5726 default:
5727 break;
5728 }
5729 return std::pair<bool, bool>(IsSExt, IsZExt);
5730}
5731
5732bool PPCInstrInfo::isBDNZ(unsigned Opcode) const {
5733 return (Opcode == (Subtarget.isPPC64() ? PPC::BDNZ8 : PPC::BDNZ));
5734}
5735
5736namespace {
5737class PPCPipelinerLoopInfo : public TargetInstrInfo::PipelinerLoopInfo {
5738 MachineInstr *Loop, *EndLoop, *LoopCount;
5739 MachineFunction *MF;
5740 const TargetInstrInfo *TII;
5741 int64_t TripCount;
5742
5743public:
5744 PPCPipelinerLoopInfo(MachineInstr *Loop, MachineInstr *EndLoop,
5745 MachineInstr *LoopCount)
5746 : Loop(Loop), EndLoop(EndLoop), LoopCount(LoopCount),
5747 MF(Loop->getParent()->getParent()),
5748 TII(MF->getSubtarget().getInstrInfo()) {
5749 // Inspect the Loop instruction up-front, as it may be deleted when we call
5750 // createTripCountGreaterCondition.
5751 if (LoopCount->getOpcode() == PPC::LI8 || LoopCount->getOpcode() == PPC::LI)
5752 TripCount = LoopCount->getOperand(1).getImm();
5753 else
5754 TripCount = -1;
5755 }
5756
5757 bool shouldIgnoreForPipelining(const MachineInstr *MI) const override {
5758 // Only ignore the terminator.
5759 return MI == EndLoop;
5760 }
5761
5762 std::optional<bool> createTripCountGreaterCondition(
5763 int TC, MachineBasicBlock &MBB,
5764 SmallVectorImpl<MachineOperand> &Cond) override {
5765 if (TripCount == -1) {
5766 // Since BDZ/BDZ8 that we will insert will also decrease the ctr by 1,
5767 // so we don't need to generate any thing here.
5768 Cond.push_back(MachineOperand::CreateImm(0));
5770 MF->getSubtarget<PPCSubtarget>().isPPC64() ? PPC::CTR8 : PPC::CTR,
5771 true));
5772 return {};
5773 }
5774
5775 return TripCount > TC;
5776 }
5777
5778 void setPreheader(MachineBasicBlock *NewPreheader) override {
5779 // Do nothing. We want the LOOP setup instruction to stay in the *old*
5780 // preheader, so we can use BDZ in the prologs to adapt the loop trip count.
5781 }
5782
5783 void adjustTripCount(int TripCountAdjust) override {
5784 // If the loop trip count is a compile-time value, then just change the
5785 // value.
5786 if (LoopCount->getOpcode() == PPC::LI8 ||
5787 LoopCount->getOpcode() == PPC::LI) {
5788 int64_t TripCount = LoopCount->getOperand(1).getImm() + TripCountAdjust;
5789 LoopCount->getOperand(1).setImm(TripCount);
5790 return;
5791 }
5792
5793 // Since BDZ/BDZ8 that we will insert will also decrease the ctr by 1,
5794 // so we don't need to generate any thing here.
5795 }
5796
5797 void disposed(LiveIntervals *LIS) override {
5798 if (LIS) {
5799 LIS->RemoveMachineInstrFromMaps(*Loop);
5800 LIS->RemoveMachineInstrFromMaps(*LoopCount);
5801 }
5802 Loop->eraseFromParent();
5803 // Ensure the loop setup instruction is deleted too.
5804 LoopCount->eraseFromParent();
5805 }
5806};
5807} // namespace
5808
5809std::unique_ptr<TargetInstrInfo::PipelinerLoopInfo>
5811 // We really "analyze" only hardware loops right now.
5813 MachineBasicBlock *Preheader = *LoopBB->pred_begin();
5814 if (Preheader == LoopBB)
5815 Preheader = *std::next(LoopBB->pred_begin());
5816 MachineFunction *MF = Preheader->getParent();
5817
5818 if (I != LoopBB->end() && isBDNZ(I->getOpcode())) {
5820 if (MachineInstr *LoopInst = findLoopInstr(*Preheader, Visited)) {
5821 Register LoopCountReg = LoopInst->getOperand(0).getReg();
5822 MachineRegisterInfo &MRI = MF->getRegInfo();
5823 MachineInstr *LoopCount = MRI.getUniqueVRegDef(LoopCountReg);
5824 return std::make_unique<PPCPipelinerLoopInfo>(LoopInst, &*I, LoopCount);
5825 }
5826 }
5827 return nullptr;
5828}
5829
5831 MachineBasicBlock &PreHeader,
5832 SmallPtrSet<MachineBasicBlock *, 8> &Visited) const {
5833
5834 unsigned LOOPi = (Subtarget.isPPC64() ? PPC::MTCTR8loop : PPC::MTCTRloop);
5835
5836 // The loop set-up instruction should be in preheader
5837 for (auto &I : PreHeader.instrs())
5838 if (I.getOpcode() == LOOPi)
5839 return &I;
5840 return nullptr;
5841}
5842
5843// Return true if get the base operand, byte offset of an instruction and the
5844// memory width. Width is the size of memory that is being loaded/stored.
5846 const MachineInstr &LdSt, const MachineOperand *&BaseReg, int64_t &Offset,
5847 LocationSize &Width, const TargetRegisterInfo *TRI) const {
5848 if (!LdSt.mayLoadOrStore() || LdSt.getNumExplicitOperands() != 3)
5849 return false;
5850
5851 // Handle only loads/stores with base register followed by immediate offset.
5852 if (!LdSt.getOperand(1).isImm() ||
5853 (!LdSt.getOperand(2).isReg() && !LdSt.getOperand(2).isFI()))
5854 return false;
5855
5856 if (!LdSt.hasOneMemOperand())
5857 return false;
5858
5859 Width = (*LdSt.memoperands_begin())->getSize();
5860 Offset = LdSt.getOperand(1).getImm();
5861 BaseReg = &LdSt.getOperand(2);
5862 return true;
5863}
5864
5866 const MachineInstr &MIa, const MachineInstr &MIb) const {
5867 assert(MIa.mayLoadOrStore() && "MIa must be a load or store.");
5868 assert(MIb.mayLoadOrStore() && "MIb must be a load or store.");
5869
5872 return false;
5873
5874 // Retrieve the base register, offset from the base register and width. Width
5875 // is the size of memory that is being loaded/stored (e.g. 1, 2, 4). If
5876 // base registers are identical, and the offset of a lower memory access +
5877 // the width doesn't overlap the offset of a higher memory access,
5878 // then the memory accesses are different.
5880 const MachineOperand *BaseOpA = nullptr, *BaseOpB = nullptr;
5881 int64_t OffsetA = 0, OffsetB = 0;
5883 WidthB = LocationSize::precise(0);
5884 if (getMemOperandWithOffsetWidth(MIa, BaseOpA, OffsetA, WidthA, TRI) &&
5885 getMemOperandWithOffsetWidth(MIb, BaseOpB, OffsetB, WidthB, TRI)) {
5886 if (BaseOpA->isIdenticalTo(*BaseOpB)) {
5887 int LowOffset = std::min(OffsetA, OffsetB);
5888 int HighOffset = std::max(OffsetA, OffsetB);
5889 LocationSize LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
5890 if (LowWidth.hasValue() &&
5891 LowOffset + (int)LowWidth.getValue() <= HighOffset)
5892 return true;
5893 }
5894 }
5895 return false;
5896}
5897
5898// Expands LWAT_CSNE_PSEUDO/LDAT_CSNE_PSEUDO post register allocation.
5899// lwat/ldat FC=16 requires 3 consecutive registers. X8/X9/X10 are
5900// hardcoded post-RA to satisfy this constraint without a dedicated
5901// register class.
5903 MachineBasicBlock &MBB = *MI.getParent();
5904 DebugLoc DL = MI.getDebugLoc();
5905 bool IsLDAT = MI.getOpcode() == PPC::LDAT_CSNE_PSEUDO;
5906
5907 Register DstReg = MI.getOperand(0).getReg();
5908 Register PtrReg = MI.getOperand(1).getReg();
5909
5910 Register ScratchReg = PtrReg;
5911 if (PtrReg == PPC::X8 || PtrReg == PPC::X9 || PtrReg == PPC::X10) {
5912 // If ptr is in X8/X9/X10, use $dst as scratch to move ptr away from
5913 // X8/X9/X10 since lwat FC=16 always writes its result to X8. After lwat
5914 // copy X8 into $dst.
5915 Register DstReg64 = IsLDAT ? DstReg
5916 : Register(getRegisterInfo().getMatchingSuperReg(
5917 DstReg, PPC::sub_32, &PPC::G8RCRegClass));
5918 BuildMI(MBB, MI, DL, get(PPC::OR8), DstReg64).addReg(PtrReg).addReg(PtrReg);
5919 ScratchReg = DstReg64;
5920 }
5921
5922 BuildMI(MBB, MI, DL, get(IsLDAT ? PPC::LDAT_CSNE : PPC::LWAT_CSNE), PPC::X8)
5923 .addReg(ScratchReg)
5924 .addImm(16)
5925 .addReg(PPC::X9, RegState::Implicit)
5926 .addReg(PPC::X10, RegState::Implicit);
5927
5928 if (DstReg != (IsLDAT ? PPC::X8 : PPC::R8)) {
5929 BuildMI(MBB, MI, DL, get(IsLDAT ? PPC::OR8 : PPC::OR), DstReg)
5930 .addReg(IsLDAT ? PPC::X8 : PPC::R8)
5931 .addReg(IsLDAT ? PPC::X8 : PPC::R8);
5932 }
5933 MI.eraseFromParent();
5934 return true;
5935}
MachineInstrBuilder & UseMI
MachineInstrBuilder MachineInstrBuilder & DefMI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
Function Alias Analysis false
static const Function * getParent(const Value *V)
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
Module.h This file contains the declarations for the Module class.
This file implements the LivePhysRegs utility for tracking liveness of physical registers.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
This file declares the MachineConstantPool class which is an abstract constant pool to keep track of ...
Register Reg
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
static MCRegister getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
uint64_t IntrinsicInst * II
static bool isOpZeroOfSubwordPreincLoad(int Opcode)
static bool MBBDefinesCTR(MachineBasicBlock &MBB)
static bool definedByZeroExtendingOp(const unsigned Reg, const MachineRegisterInfo *MRI)
static cl::opt< float > FMARPFactor("ppc-fma-rp-factor", cl::Hidden, cl::init(1.5), cl::desc("register pressure factor for the transformations."))
#define InfoArrayIdxMULOpIdx
static unsigned selectReg(int64_t Imm1, int64_t Imm2, unsigned CompareOpc, unsigned TrueReg, unsigned FalseReg, unsigned CRSubReg)
static unsigned getCRBitValue(unsigned CRBit)
static bool isAnImmediateOperand(const MachineOperand &MO)
static const uint16_t FMAOpIdxInfo[][6]
static cl::opt< bool > DisableCTRLoopAnal("disable-ppc-ctrloop-analysis", cl::Hidden, cl::desc("Disable analysis for CTR loops"))
#define InfoArrayIdxAddOpIdx
static cl::opt< bool > UseOldLatencyCalc("ppc-old-latency-calc", cl::Hidden, cl::desc("Use the old (incorrect) instruction latency calculation"))
#define InfoArrayIdxFMAInst
static bool isClusterableLdStOpcPair(unsigned FirstOpc, unsigned SecondOpc, const PPCSubtarget &Subtarget)
static cl::opt< bool > EnableFMARegPressureReduction("ppc-fma-rp-reduction", cl::Hidden, cl::init(true), cl::desc("enable register pressure reduce in machine combiner pass."))
static bool isLdStSafeToCluster(const MachineInstr &LdSt, const TargetRegisterInfo *TRI)
const unsigned MAX_BINOP_DEPTH
static cl::opt< bool > DisableCmpOpt("disable-ppc-cmp-opt", cl::desc("Disable compare instruction optimization"), cl::Hidden)
#define InfoArrayIdxFSubInst
#define InfoArrayIdxFAddInst
#define InfoArrayIdxFMULInst
static bool definedBySignExtendingOp(const unsigned Reg, const MachineRegisterInfo *MRI)
static cl::opt< bool > VSXSelfCopyCrash("crash-on-ppc-vsx-self-copy", cl::desc("Causes the backend to crash instead of generating a nop VSX copy"), cl::Hidden)
static void swapMIOperands(MachineInstr &MI, unsigned Op1, unsigned Op2)
static constexpr MCPhysReg SPReg
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
static bool isPhysical(const MachineOperand &MO)
This file declares the machine register scavenger class.
This file contains some templates that are useful if you are working with the STL at all.
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
Definition Value.cpp:483
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition Statistic.h:171
#define LLVM_DEBUG(...)
Definition Debug.h:114
void changeSign()
Definition APFloat.h:1352
Class for arbitrary precision integers.
Definition APInt.h:78
uint64_t getZExtValue() const
Get zero extended value.
Definition APInt.h:1563
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
Definition APInt.h:381
LLVM_ABI APInt rotl(unsigned rotateAmt) const
Rotate left by rotateAmt.
Definition APInt.cpp:1183
static APInt getBitsSetWithWrap(unsigned numBits, unsigned loBit, unsigned hiBit)
Wrap version of getBitsSet.
Definition APInt.h:271
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
const T & front() const
front - Get the first element.
Definition ArrayRef.h:145
size_t size() const
size - Get the array size.
Definition ArrayRef.h:142
This class holds the attributes for a particular argument, parameter, function, or return value.
Definition Attributes.h:407
This is an important base class in LLVM.
Definition Constant.h:43
LLVM_ABI Align getPrefTypeAlign(Type *Ty) const
Returns the preferred stack/global alignment for the specified type.
A debug info location.
Definition DebugLoc.h:123
iterator find(const_arg_type_t< KeyT > Val)
Definition DenseMap.h:178
iterator end()
Definition DenseMap.h:81
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition DenseMap.h:241
const BasicBlock & getEntryBlock() const
Definition Function.h:809
AttributeList getAttributes() const
Return the attribute list for this Function.
Definition Function.h:354
Type * getReturnType() const
Returns the type of the ret val.
Definition Function.h:216
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this global belongs to.
Definition Globals.cpp:141
Itinerary data supplied by a subtarget to be used by a target.
std::optional< unsigned > getOperandCycle(unsigned ItinClassIndx, unsigned OperandIdx) const
Return the cycle for the given class and operand.
Class to represent integer types.
void RemoveMachineInstrFromMaps(MachineInstr &MI)
LLVM_ABI void recomputeForSingleDefVirtReg(Register Reg)
Recompute liveness from scratch for a virtual register Reg that is known to have a single def that do...
bool hasValue() const
static LocationSize precise(uint64_t Value)
TypeSize getValue() const
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
Instances of this class represent a single low-level machine instruction.
Definition MCInst.h:188
void setOpcode(unsigned Op)
Definition MCInst.h:201
Describe properties that are true of each instruction in the target description file.
unsigned getNumOperands() const
Return the number of declared MachineOperands for this MachineInstruction.
ArrayRef< MCOperandInfo > operands() const
ArrayRef< MCPhysReg > implicit_defs() const
Return a list of registers that are potentially written by any instance of this machine instruction.
ArrayRef< MCPhysReg > implicit_uses() const
Return a list of registers that are potentially read by any instance of this machine instruction.
bool isPseudo() const
Return true if this is a pseudo instruction that doesn't correspond to a real machine instruction.
This holds information about one operand of a machine instruction, indicating the register class for ...
Definition MCInstrDesc.h:86
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
LLVM_ABI iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
Instructions::iterator instr_iterator
MachineInstrBundleIterator< MachineInstr, true > reverse_iterator
Instructions::const_iterator const_instr_iterator
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
MachineInstrBundleIterator< MachineInstr > iterator
MachineInstrBundleIterator< const MachineInstr, true > const_reverse_iterator
The MachineConstantPool class keeps track of constants referenced by a function which must be spilled...
const std::vector< MachineConstantPoolEntry > & getConstants() const
unsigned getConstantPoolIndex(const Constant *C, Align Alignment)
getConstantPoolIndex - Create a new entry in the constant pool or return an existing one.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy, Align base_alignment, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const DataLayout & getDataLayout() const
Return the DataLayout attached to the Module associated to this MF.
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
MachineConstantPool * getConstantPool()
getConstantPool - Return the constant pool object for the current function.
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
Register getReg(unsigned Idx) const
Get the register for the operand index.
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addConstantPoolIndex(unsigned Idx, int Offset=0, unsigned TargetFlags=0) const
const MachineInstrBuilder & addMBB(MachineBasicBlock *MBB, unsigned TargetFlags=0) const
const MachineInstrBuilder & addMemOperand(MachineMemOperand *MMO) const
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
bool mayLoadOrStore(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read or modify memory.
const MachineBasicBlock * getParent() const
bool isCall(QueryType Type=AnyInBundle) const
bool getFlag(MIFlag Flag) const
Return whether an MI flag is set.
LLVM_ABI void addOperand(MachineFunction &MF, const MachineOperand &Op)
Add the specified operand to the instruction.
LLVM_ABI unsigned getNumExplicitOperands() const
Returns the number of non-implicit operands.
bool hasImplicitDef() const
Returns true if the instruction has implicit definition.
bool modifiesRegister(Register Reg, const TargetRegisterInfo *TRI) const
Return true if the MachineInstr modifies (fully define or partially define) the specified register.
LLVM_ABI bool hasUnmodeledSideEffects() const
Return true if this instruction has side effects that are not modeled by mayLoad / mayStore,...
bool definesRegister(Register Reg, const TargetRegisterInfo *TRI) const
Return true if the MachineInstr fully defines the specified register.
LLVM_ABI void setDesc(const MCInstrDesc &TID)
Replace the instruction descriptor (thus opcode) of the current instruction with a new one.
bool hasOneMemOperand() const
Return true if this instruction has exactly one MachineMemOperand.
mmo_iterator memoperands_begin() const
Access to memory operands of the instruction.
LLVM_ABI bool hasOrderedMemoryRef() const
Return true if this instruction may have an ordered or volatile memory reference, or if the informati...
LLVM_ABI const MachineFunction * getMF() const
Return the function that contains the basic block that this instruction belongs to.
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
LLVM_ABI void dump() const
LLVM_ABI void clearRegisterDeads(Register Reg)
Clear all dead flags on operands defining register Reg.
const MachineOperand & getOperand(unsigned i) const
uint32_t getFlags() const
Return the MI flags bitvector.
LLVM_ABI MachineInstrBundleIterator< MachineInstr > eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
A description of a memory reference used in the backend.
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
void setImm(int64_t immVal)
int64_t getImm() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
MachineBasicBlock * getMBB() const
bool isCPI() const
isCPI - Tests if this is a MO_ConstantPoolIndex operand.
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
void setIsKill(bool Val=true)
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
static MachineOperand CreateImm(int64_t Val)
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
Register getReg() const
getReg - Returns the register number.
void setTargetFlags(unsigned F)
bool isFI() const
isFI - Tests if this is a MO_FrameIndex operand.
LLVM_ABI bool isIdenticalTo(const MachineOperand &Other) const
Returns true if this operand is identical to the specified operand except for liveness related flags ...
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
bool isMBB() const
isMBB - Tests if this is a MO_MachineBasicBlock operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLVM_ABI bool hasOneNonDBGUse(Register RegNo) const
hasOneNonDBGUse - Return true if there is exactly one non-Debug use of the specified register.
defusechain_instr_iterator< true, false, false, true > use_instr_iterator
use_instr_iterator/use_instr_begin/use_instr_end - Walk all uses of the specified register,...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
LLVM_ABI MachineInstr * getVRegDef(Register Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
use_instr_iterator use_instr_begin(Register RegNo) const
bool use_nodbg_empty(Register RegNo) const
use_nodbg_empty - Return true if there are no non-Debug instructions using the specified register.
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
bool hasOneUse(Register RegNo) const
hasOneUse - Return true if there is exactly one instruction using the specified register.
LLVM_ABI bool isLiveIn(Register Reg) const
static use_instr_iterator use_instr_end()
LLVM_ABI void setRegClass(Register Reg, const TargetRegisterClass *RC)
setRegClass - Set the register class of the specified virtual register.
iterator_range< use_instr_iterator > use_instructions(Register Reg) const
const TargetRegisterInfo * getTargetRegisterInfo() const
LLVM_ABI const TargetRegisterClass * constrainRegClass(Register Reg, const TargetRegisterClass *RC, unsigned MinNumRegs=0)
constrainRegClass - Constrain the register class of the specified virtual register to be a common sub...
bool use_empty(Register RegNo) const
use_empty - Return true if there are no instructions using the specified register.
LLVM_ABI MachineInstr * getUniqueVRegDef(Register Reg) const
getUniqueVRegDef - Return the unique machine instr that defines the specified virtual register or nul...
PPCDispatchGroupSBHazardRecognizer - This class implements a scoreboard-based hazard recognizer for P...
PPCFunctionInfo - This class is derived from MachineFunction private PowerPC target-specific informat...
bool isLiveInSExt(Register VReg) const
This function returns true if the specified vreg is a live-in register and sign-extended.
bool isLiveInZExt(Register VReg) const
This function returns true if the specified vreg is a live-in register and zero-extended.
PPCHazardRecognizer970 - This class defines a finite state automata that models the dispatch logic on...
Register isLoadFromStackSlot(const MachineInstr &MI, int &FrameIndex) const override
Register isStoreToStackSlot(const MachineInstr &MI, int &FrameIndex) const override
bool isSchedulingBoundary(const MachineInstr &MI, const MachineBasicBlock *MBB, const MachineFunction &MF) const override
bool getFMAPatterns(MachineInstr &Root, SmallVectorImpl< unsigned > &Patterns, bool DoRegPressureReduce) const
Return true when there is potentially a faster code sequence for a fma chain ending in Root.
bool combineRLWINM(MachineInstr &MI, MachineInstr **ToErase=nullptr) const
bool isReMaterializableImpl(const MachineInstr &MI) const override
PPCInstrInfo(const PPCSubtarget &STI)
const TargetRegisterClass * updatedRC(const TargetRegisterClass *RC) const
bool isPredicated(const MachineInstr &MI) const override
bool expandVSXMemPseudo(MachineInstr &MI) const
bool onlyFoldImmediate(MachineInstr &UseMI, MachineInstr &DefMI, Register Reg) const
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register DestReg, Register SrcReg, bool KillSrc, bool RenamableDest=false, bool RenamableSrc=false) const override
void finalizeInsInstrs(MachineInstr &Root, unsigned &Pattern, SmallVectorImpl< MachineInstr * > &InsInstrs) const override
Fixup the placeholders we put in genAlternativeCodeSequence() for MachineCombiner.
MCInst getNop() const override
Return the noop instruction to use for a noop.
void storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, Register SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC, Register VReg, MachineInstr::MIFlag Flags=MachineInstr::NoFlags) const override
static int getRecordFormOpcode(unsigned Opcode)
MachineInstr * commuteInstructionImpl(MachineInstr &MI, bool NewMI, unsigned OpIdx1, unsigned OpIdx2) const override
Commutes the operands in the given instruction.
bool isXFormMemOp(unsigned Opcode) const
const PPCRegisterInfo & getRegisterInfo() const
getRegisterInfo - TargetInstrInfo is a superset of MRegister info.
CombinerObjective getCombinerObjective(unsigned Pattern) const override
void loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, Register DestReg, int FrameIndex, const TargetRegisterClass *RC, Register VReg, unsigned SubReg=0, MachineInstr::MIFlag Flags=MachineInstr::NoFlags) const override
unsigned getStoreOpcodeForSpill(const TargetRegisterClass *RC) const
unsigned getLoadOpcodeForSpill(const TargetRegisterClass *RC) const
bool expandAMOCSNEPseudo(MachineInstr &MI) const
void promoteInstr32To64ForElimEXTSW(const Register &Reg, MachineRegisterInfo *MRI, unsigned BinOpDepth, LiveVariables *LV) const
bool isTOCSaveMI(const MachineInstr &MI) const
ScheduleHazardRecognizer * CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II, const ScheduleDAG *DAG) const override
CreateTargetPostRAHazardRecognizer - Return the postRA hazard recognizer to use for this target when ...
bool foldImmediate(MachineInstr &UseMI, MachineInstr &DefMI, Register Reg, MachineRegisterInfo *MRI) const override
bool isBDNZ(unsigned Opcode) const
Check Opcode is BDNZ (Decrement CTR and branch if it is still nonzero).
bool reverseBranchCondition(SmallVectorImpl< MachineOperand > &Cond) const override
bool isZeroExtended(const unsigned Reg, const MachineRegisterInfo *MRI) const
std::pair< unsigned, unsigned > decomposeMachineOperandsTargetFlags(unsigned TF) const override
std::pair< bool, bool > isSignOrZeroExtended(const unsigned Reg, const unsigned BinOpDepth, const MachineRegisterInfo *MRI) const
bool expandPostRAPseudo(MachineInstr &MI) const override
bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, BranchProbability Probability) const override
void insertNoop(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI) const override
bool isValidToBeChangedReg(MachineInstr *ADDMI, unsigned Index, MachineInstr *&ADDIMI, int64_t &OffsetAddi, int64_t OffsetImm) const
bool optimizeCompareInstr(MachineInstr &CmpInstr, Register SrcReg, Register SrcReg2, int64_t Mask, int64_t Value, const MachineRegisterInfo *MRI) const override
ArrayRef< std::pair< unsigned, const char * > > getSerializableDirectMachineOperandTargetFlags() const override
std::optional< unsigned > getOperandLatency(const InstrItineraryData *ItinData, const MachineInstr &DefMI, unsigned DefIdx, const MachineInstr &UseMI, unsigned UseIdx) const override
void materializeImmPostRA(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, Register Reg, int64_t Imm) const
bool isADDInstrEligibleForFolding(MachineInstr &ADDMI) const
bool areMemAccessesTriviallyDisjoint(const MachineInstr &MIa, const MachineInstr &MIb) const override
Return true if two MIs access different memory addresses and false otherwise.
bool SubsumesPredicate(ArrayRef< MachineOperand > Pred1, ArrayRef< MachineOperand > Pred2) const override
ScheduleHazardRecognizer * CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI, const ScheduleDAG *DAG) const override
CreateTargetHazardRecognizer - Return the hazard recognizer to use for this target when scheduling th...
bool canInsertSelect(const MachineBasicBlock &, ArrayRef< MachineOperand > Cond, Register, Register, Register, int &, int &, int &) const override
bool getMemOperandsWithOffsetWidth(const MachineInstr &LdSt, SmallVectorImpl< const MachineOperand * > &BaseOps, int64_t &Offset, bool &OffsetIsScalable, LocationSize &Width, const TargetRegisterInfo *TRI) const override
Get the base operand and byte offset of an instruction that reads/writes memory.
void setSpecialOperandAttr(MachineInstr &MI, uint32_t Flags) const
bool isADDIInstrEligibleForFolding(MachineInstr &ADDIMI, int64_t &Imm) const
void loadRegFromStackSlotNoUpd(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, unsigned DestReg, int FrameIndex, const TargetRegisterClass *RC) const
bool foldFrameOffset(MachineInstr &MI) const
bool isLoadFromConstantPool(MachineInstr *I) const
MachineInstr * findLoopInstr(MachineBasicBlock &PreHeader, SmallPtrSet< MachineBasicBlock *, 8 > &Visited) const
Find the hardware loop instruction used to set-up the specified loop.
unsigned removeBranch(MachineBasicBlock &MBB, int *BytesRemoved=nullptr) const override
unsigned getInstrLatency(const InstrItineraryData *ItinData, const MachineInstr &MI, unsigned *PredCost=nullptr) const override
void storeRegToStackSlotNoUpd(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, unsigned SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC) const
bool isCoalescableExtInstr(const MachineInstr &MI, Register &SrcReg, Register &DstReg, unsigned &SubIdx) const override
bool convertToImmediateForm(MachineInstr &MI, SmallSet< Register, 4 > &RegsToUpdate, MachineInstr **KilledDef=nullptr) const
bool isAssociativeAndCommutative(const MachineInstr &Inst, bool Invert) const override
bool analyzeCompare(const MachineInstr &MI, Register &SrcReg, Register &SrcReg2, int64_t &Mask, int64_t &Value) const override
bool getMemOperandWithOffsetWidth(const MachineInstr &LdSt, const MachineOperand *&BaseOp, int64_t &Offset, LocationSize &Width, const TargetRegisterInfo *TRI) const
Return true if get the base operand, byte offset of an instruction and the memory width.
unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, ArrayRef< MachineOperand > Cond, const DebugLoc &DL, int *BytesAdded=nullptr) const override
bool shouldReduceRegisterPressure(const MachineBasicBlock *MBB, const RegisterClassInfo *RegClassInfo) const override
On PowerPC, we leverage machine combiner pass to reduce register pressure when the register pressure ...
void genAlternativeCodeSequence(MachineInstr &Root, unsigned Pattern, SmallVectorImpl< MachineInstr * > &InsInstrs, SmallVectorImpl< MachineInstr * > &DelInstrs, DenseMap< Register, unsigned > &InstrIdxForVirtReg) const override
When getMachineCombinerPatterns() finds patterns, this function generates the instructions that could...
InstSizeVerifyMode getInstSizeVerifyMode(const MachineInstr &MI) const override
bool isSignExtended(const unsigned Reg, const MachineRegisterInfo *MRI) const
void replaceInstrOperandWithImm(MachineInstr &MI, unsigned OpNo, int64_t Imm) const
unsigned getInstSizeInBytes(const MachineInstr &MI) const override
GetInstSize - Return the number of bytes of code the specified instruction may be.
std::unique_ptr< TargetInstrInfo::PipelinerLoopInfo > analyzeLoopForPipelining(MachineBasicBlock *LoopBB) const override
Analyze loop L, which must be a single-basic-block loop, and if the conditions can be understood enou...
bool shouldClusterMemOps(ArrayRef< const MachineOperand * > BaseOps1, int64_t Offset1, bool OffsetIsScalable1, ArrayRef< const MachineOperand * > BaseOps2, int64_t Offset2, bool OffsetIsScalable2, unsigned ClusterSize, unsigned NumBytes) const override
Returns true if the two given memory operations should be scheduled adjacent.
void replaceInstrWithLI(MachineInstr &MI, const LoadImmediateInfo &LII) const
bool isImmInstrEligibleForFolding(MachineInstr &MI, unsigned &BaseReg, unsigned &XFormOpcode, int64_t &OffsetOfImmInstr, ImmInstrInfo &III) const
bool PredicateInstruction(MachineInstr &MI, ArrayRef< MachineOperand > Pred) const override
bool getMachineCombinerPatterns(MachineInstr &Root, SmallVectorImpl< unsigned > &Patterns, bool DoRegPressureReduce) const override
Return true when there is potentially a faster code sequence for an instruction chain ending in <Root...
bool optimizeCmpPostRA(MachineInstr &MI) const
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify) const override
const Constant * getConstantFromConstantPool(MachineInstr *I) const
bool ClobbersPredicate(MachineInstr &MI, std::vector< MachineOperand > &Pred, bool SkipDead) const override
void insertSelect(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, Register DstReg, ArrayRef< MachineOperand > Cond, Register TrueReg, Register FalseReg) const override
bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1, unsigned &SrcOpIdx2) const override
bool instrHasImmForm(unsigned Opc, bool IsVFReg, ImmInstrInfo &III, bool PostRA) const
MachineInstr * getDefMIPostRA(unsigned Reg, MachineInstr &MI, bool &SeenIntermediateUse) const
static void emitAccCopyInfo(MachineBasicBlock &MBB, MCRegister DestReg, MCRegister SrcReg)
bool isSVR4ABI() const
const PPCTargetMachine & getTargetMachine() const
void dump() const
Definition Pass.cpp:146
MI-level patchpoint operands.
Definition StackMaps.h:77
uint32_t getNumPatchBytes() const
Return the number of patchable bytes the given patchpoint should emit.
Definition StackMaps.h:105
Track the current register pressure at some position in the instruction stream, and remember the high...
LLVM_ABI void closeRegion()
Finalize the region boundaries and recored live ins and live outs.
LLVM_ABI void recede(SmallVectorImpl< VRegMaskOrUnit > *LiveUses=nullptr)
Recede across the previous instruction.
RegisterPressure & getPressure()
Get the resulting register pressure over the traversed region.
LLVM_ABI void recedeSkipDebugValues()
Recede until we find an instruction which is not a DebugValue.
LLVM_ABI void init(const MachineFunction *mf, const RegisterClassInfo *rci, const LiveIntervals *lis, const MachineBasicBlock *mbb, MachineBasicBlock::const_iterator pos, bool TrackLaneMasks, bool TrackUntiedDefs)
Setup the RegPressureTracker.
MachineBasicBlock::const_iterator getPos() const
Get the MI position corresponding to this register pressure.
unsigned getRegPressureSetLimit(unsigned Idx) const
Get the register unit limit for the given pressure set index.
List of registers defined and used by a machine instruction.
LLVM_ABI void collect(const MachineInstr &MI, const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI, bool TrackLaneMasks, bool IgnoreDead)
Analyze the given instruction MI and fill in the Uses, Defs and DeadDefs list based on the MachineOpe...
Wrapper class representing virtual and physical registers.
Definition Register.h:20
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
Definition Register.h:79
static constexpr bool isVirtualRegister(unsigned Reg)
Return true if the specified register number is in the virtual register namespace.
Definition Register.h:66
const TargetInstrInfo * TII
Target instruction information.
MachineFunction & MF
Machine function.
HazardRecognizer - This determines whether or not an instruction can be issued this cycle,...
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
Definition SmallSet.h:134
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
Definition SmallSet.h:184
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
MI-level stackmap operands.
Definition StackMaps.h:36
uint32_t getNumPatchBytes() const
Return the number of patchable bytes the given stackmap should emit.
Definition StackMaps.h:51
StackOffset holds a fixed and a scalable offset in bytes.
Definition TypeSize.h:30
Object returned by analyzeLoopForPipelining.
TargetInstrInfo - Interface to description of machine instruction set.
virtual bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1, unsigned &SrcOpIdx2) const
Returns true iff the routine could find two commutable operands in the given machine instruction.
virtual void genAlternativeCodeSequence(MachineInstr &Root, unsigned Pattern, SmallVectorImpl< MachineInstr * > &InsInstrs, SmallVectorImpl< MachineInstr * > &DelInstrs, DenseMap< Register, unsigned > &InstIdxForVirtReg) const
When getMachineCombinerPatterns() finds patterns, this function generates the instructions that could...
virtual ScheduleHazardRecognizer * CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI, const ScheduleDAG *DAG) const
Allocate and return a hazard recognizer to use for this target when scheduling the machine instructio...
virtual bool getMachineCombinerPatterns(MachineInstr &Root, SmallVectorImpl< unsigned > &Patterns, bool DoRegPressureReduce) const
Return true when there is potentially a faster code sequence for an instruction chain ending in Root.
virtual bool isReMaterializableImpl(const MachineInstr &MI) const
For instructions with opcodes for which the M_REMATERIALIZABLE flag is set, this hook lets the target...
virtual bool isSchedulingBoundary(const MachineInstr &MI, const MachineBasicBlock *MBB, const MachineFunction &MF) const
Test if the given instruction should be considered a scheduling boundary.
virtual CombinerObjective getCombinerObjective(unsigned Pattern) const
Return the objective of a combiner pattern.
virtual MachineInstr * commuteInstructionImpl(MachineInstr &MI, bool NewMI, unsigned OpIdx1, unsigned OpIdx2) const
This method commutes the operands of the given machine instruction MI.
const Triple & getTargetTriple() const
const MCAsmInfo & getMCAsmInfo() const
Return target specific asm information.
CodeModel::Model getCodeModel() const
Returns the code model.
bool contains(Register Reg) const
Return true if the specified register is included in this register class.
bool hasSuperClassEq(const TargetRegisterClass *RC) const
Returns true if RC is a super-class of or equal to this class.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
LLVM_ABI bool isLittleEndian() const
Tests whether the target triple is little endian.
Definition Triple.cpp:2439
bool isOSAIX() const
Tests whether the OS is AIX.
Definition Triple.h:770
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
LLVM Value Representation.
Definition Value.h:75
LLVM_ABI Align getPointerAlignment(const DataLayout &DL) const
Returns an alignment of the pointer value.
Definition Value.cpp:964
Changed
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
PPCII - This namespace holds all of the PowerPC target-specific per-instruction flags.
@ MO_TOC_LO
Definition PPC.h:187
Define some predicates that are used for node matching.
Predicate getSwappedPredicate(Predicate Opcode)
Assume the condition register is set by MI(a,b), return the predicate if we modify the instructions s...
Predicate
Predicate - These are "(BI << 5) | BO" for various predicates.
unsigned getPredicateCondition(Predicate Opcode)
Return the condition without hint bits.
Predicate getPredicate(unsigned Condition, unsigned Hint)
Return predicate consisting of specified condition and hint bits.
unsigned getPredicateHint(Predicate Opcode)
Return the hint bits of the predicate.
Predicate InvertPredicate(Predicate Opcode)
Invert the specified predicate. != -> ==, < -> >=.
int32_t getNonRecordFormOpcode(uint32_t)
int32_t getAltVSXFMAOpcode(uint32_t Opcode)
static bool isVFRegister(MCRegister Reg)
template class LLVM_TEMPLATE_ABI opt< bool >
initializer< Ty > init(const Ty &Val)
NodeAddr< InstrNode * > Instr
Definition RDFGraph.h:389
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:557
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
Definition MathExtras.h:165
@ Implicit
Not emitted register (e.g. carry, or temporary result).
@ Kill
The last use of a register.
@ Define
Register definition.
constexpr RegState getKillRegState(bool B)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
Definition Casting.h:732
static const MachineInstrBuilder & addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset=0, bool mem=true)
addFrameReference - This function is used to add a reference to the base of an abstract object on the...
static unsigned getCRFromCRBit(unsigned SrcReg)
constexpr RegState getDeadRegState(bool B)
CycleInfo::CycleT Cycle
Definition CycleInfo.h:26
auto reverse(ContainerTy &&C)
Definition STLExtras.h:407
MachineInstr * getImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:207
CombinerObjective
The combiner's goal may differ based on which pattern it is attempting to optimize.
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
Definition MathExtras.h:189
@ REASSOC_XY_BCA
@ REASSOC_XY_BAC
@ REASSOC_XY_AMM_BMM
@ REASSOC_XMM_AMM_BMM
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
void recomputeLivenessFlags(MachineBasicBlock &MBB)
Recomputes dead and kill flags in MBB.
@ Sub
Subtraction of integers.
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
Definition MCRegister.h:21
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
@ SOK_CRBitSpill
@ SOK_VSXVectorSpill
@ SOK_SpillToVSR
@ SOK_Int4Spill
@ SOK_PairedVecSpill
@ SOK_VectorFloat8Spill
@ SOK_UAccumulatorSpill
@ SOK_PairedG8Spill
@ SOK_DMRSpill
@ SOK_VectorFloat4Spill
@ SOK_Float8Spill
@ SOK_Float4Spill
@ SOK_VRVectorSpill
@ SOK_WAccumulatorSpill
@ SOK_SPESpill
@ SOK_CRSpill
@ SOK_AccumulatorSpill
@ SOK_Int8Spill
@ SOK_LastOpcodeSpill
@ SOK_DMRpSpill
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1946
constexpr int64_t SignExtend64(uint64_t x)
Sign-extend the number in the bottom B bits of X to a 64-bit integer.
Definition MathExtras.h:572
static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME)
Returns true iff Val consists of one contiguous run of 1s with any number of 0s on either side.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
uint64_t IsSummingOperands
uint64_t OpNoForForwarding
uint64_t ImmMustBeMultipleOf
uint64_t ZeroIsSpecialNew
uint64_t ZeroIsSpecialOrig
static LLVM_ABI MachinePointerInfo getConstantPool(MachineFunction &MF)
Return a MachinePointerInfo record that refers to the constant pool.
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
RegisterPressure computed within a region of instructions delimited by TopPos and BottomPos.
std::vector< unsigned > MaxSetPressure
Map of max reg pressure indexed by pressure set ID, not class ID.