LLVM 22.0.0git
AArch64StorePairSuppress.cpp
Go to the documentation of this file.
1//===--- AArch64StorePairSuppress.cpp --- Suppress store pair formation ---===//
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 pass identifies floating point stores that should not be combined into
10// store pairs. Later we may do the same for floating point loads.
11// ===---------------------------------------------------------------------===//
12
13#include "AArch64InstrInfo.h"
14#include "AArch64Subtarget.h"
21#include "llvm/Support/Debug.h"
23
24using namespace llvm;
25
26#define DEBUG_TYPE "aarch64-stp-suppress"
27
28#define STPSUPPRESS_PASS_NAME "AArch64 Store Pair Suppression"
29
30namespace {
31class AArch64StorePairSuppress : public MachineFunctionPass {
32 const AArch64InstrInfo *TII;
35 TargetSchedModel SchedModel;
36 MachineTraceMetrics *Traces;
38
39public:
40 static char ID;
41 AArch64StorePairSuppress() : MachineFunctionPass(ID) {}
42
43 StringRef getPassName() const override { return STPSUPPRESS_PASS_NAME; }
44
45 bool runOnMachineFunction(MachineFunction &F) override;
46
47private:
48 bool shouldAddSTPToBlock(const MachineBasicBlock *BB);
49
50 bool isNarrowFPStore(const MachineInstr &MI);
51
52 void getAnalysisUsage(AnalysisUsage &AU) const override {
53 AU.setPreservesCFG();
57 }
58};
59char AArch64StorePairSuppress::ID = 0;
60} // anonymous
61
62INITIALIZE_PASS(AArch64StorePairSuppress, "aarch64-stp-suppress",
63 STPSUPPRESS_PASS_NAME, false, false)
64
66 return new AArch64StorePairSuppress();
67}
68
69/// Return true if an STP can be added to this block without increasing the
70/// critical resource height. STP is good to form in Ld/St limited blocks and
71/// bad to form in float-point limited blocks. This is true independent of the
72/// critical path. If the critical path is longer than the resource height, the
73/// extra vector ops can limit physreg renaming. Otherwise, it could simply
74/// oversaturate the vector units.
75bool AArch64StorePairSuppress::shouldAddSTPToBlock(const MachineBasicBlock *BB) {
76 if (!MinInstr)
77 MinInstr = Traces->getEnsemble(MachineTraceStrategy::TS_MinInstrCount);
78
79 MachineTraceMetrics::Trace BBTrace = MinInstr->getTrace(BB);
80 unsigned ResLength = BBTrace.getResourceLength();
81
82 // Get the machine model's scheduling class for STPDi and STRDui.
83 // Bypass TargetSchedule's SchedClass resolution since we only have an opcode.
84 unsigned SCIdx = TII->get(AArch64::STPDi).getSchedClass();
85 const MCSchedClassDesc *PairSCDesc =
86 SchedModel.getMCSchedModel()->getSchedClassDesc(SCIdx);
87
88 unsigned SCIdx2 = TII->get(AArch64::STRDui).getSchedClass();
89 const MCSchedClassDesc *SingleSCDesc =
90 SchedModel.getMCSchedModel()->getSchedClassDesc(SCIdx2);
91
92 // If a subtarget does not define resources for STPDi, bail here.
93 if (PairSCDesc->isValid() && !PairSCDesc->isVariant() &&
94 SingleSCDesc->isValid() && !SingleSCDesc->isVariant()) {
95 // Compute the new critical resource length after replacing 2 separate
96 // STRDui with one STPDi.
97 unsigned ResLenWithSTP =
98 BBTrace.getResourceLength({}, PairSCDesc, {SingleSCDesc, SingleSCDesc});
99 if (ResLenWithSTP > ResLength) {
100 LLVM_DEBUG(dbgs() << " Suppress STP in BB: " << BB->getNumber()
101 << " resources " << ResLength << " -> " << ResLenWithSTP
102 << "\n");
103 return false;
104 }
105 }
106 return true;
107}
108
109/// Return true if this is a floating-point store smaller than the V reg. On
110/// cyclone, these require a vector shuffle before storing a pair.
111/// Ideally we would call getMatchingPairOpcode() and have the machine model
112/// tell us if it's profitable with no cpu knowledge here.
113///
114/// FIXME: We plan to develop a decent Target abstraction for simple loads and
115/// stores. Until then use a nasty switch similar to AArch64LoadStoreOptimizer.
116bool AArch64StorePairSuppress::isNarrowFPStore(const MachineInstr &MI) {
117 switch (MI.getOpcode()) {
118 default:
119 return false;
120 case AArch64::STRSui:
121 case AArch64::STRDui:
122 case AArch64::STURSi:
123 case AArch64::STURDi:
124 return true;
125 }
126}
127
128bool AArch64StorePairSuppress::runOnMachineFunction(MachineFunction &MF) {
129 if (skipFunction(MF.getFunction()) || MF.getFunction().hasOptSize())
130 return false;
131
132 const AArch64Subtarget &ST = MF.getSubtarget<AArch64Subtarget>();
133 if (!ST.enableStorePairSuppress())
134 return false;
135
136 TII = ST.getInstrInfo();
137 TRI = ST.getRegisterInfo();
138 MRI = &MF.getRegInfo();
139 SchedModel.init(&ST);
140 Traces = &getAnalysis<MachineTraceMetricsWrapperPass>().getMTM();
141 MinInstr = nullptr;
142
143 LLVM_DEBUG(dbgs() << "*** " << getPassName() << ": " << MF.getName() << '\n');
144
145 if (!SchedModel.hasInstrSchedModel()) {
146 LLVM_DEBUG(dbgs() << " Skipping pass: no machine model present.\n");
147 return false;
148 }
149
150 // Check for a sequence of stores to the same base address. We don't need to
151 // precisely determine whether a store pair can be formed. But we do want to
152 // filter out most situations where we can't form store pairs to avoid
153 // computing trace metrics in those cases.
154 for (auto &MBB : MF) {
155 bool SuppressSTP = false;
156 unsigned PrevBaseReg = 0;
157 for (auto &MI : MBB) {
158 if (!isNarrowFPStore(MI))
159 continue;
160 const MachineOperand *BaseOp;
161 int64_t Offset;
162 bool OffsetIsScalable;
163 if (TII->getMemOperandWithOffset(MI, BaseOp, Offset, OffsetIsScalable,
164 TRI) &&
165 BaseOp->isReg()) {
166 Register BaseReg = BaseOp->getReg();
167 if (PrevBaseReg == BaseReg) {
168 // If this block can take STPs, skip ahead to the next block.
169 if (!SuppressSTP && shouldAddSTPToBlock(MI.getParent()))
170 break;
171 // Otherwise, continue unpairing the stores in this block.
172 LLVM_DEBUG(dbgs() << "Unpairing store " << MI << "\n");
173 SuppressSTP = true;
174 TII->suppressLdStPair(MI);
175 }
176 PrevBaseReg = BaseReg;
177 } else
178 PrevBaseReg = 0;
179 }
180 }
181 // This pass just sets some internal MachineMemOperand flags. It can't really
182 // invalidate anything.
183 return false;
184}
unsigned const MachineRegisterInfo * MRI
#define STPSUPPRESS_PASS_NAME
MachineBasicBlock & MBB
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
#define F(x, y, z)
Definition MD5.cpp:55
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
#define LLVM_DEBUG(...)
Definition Debug.h:114
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition Pass.cpp:270
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
bool hasOptSize() const
Optimize this function for size (-Os) or minimum size (-Oz).
Definition Function.h:706
int getNumber() const
MachineBasicBlocks are uniquely numbered at the function level, unless they're not in a MachineFuncti...
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
Representation of each machine instruction.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
A trace ensemble is a collection of traces selected using the same strategy, for example 'minimum res...
Trace getTrace(const MachineBasicBlock *MBB)
Get the trace that passes through MBB.
unsigned getResourceLength(ArrayRef< const MachineBasicBlock * > Extrablocks={}, ArrayRef< const MCSchedClassDesc * > ExtraInstrs={}, ArrayRef< const MCSchedClassDesc * > RemoveInstrs={}) const
Return the resource length of the trace.
Ensemble * getEnsemble(MachineTraceStrategy)
Get the trace ensemble representing the given trace selection strategy.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
Provide an instruction scheduling machine model to CodeGen passes.
const MCSchedModel * getMCSchedModel() const
LLVM_ABI bool hasInstrSchedModel() const
Return true if this machine model includes an instruction-level scheduling model.
LLVM_ABI void init(const TargetSubtargetInfo *TSInfo, bool EnableSModel=true, bool EnableSItins=true)
Initialize the machine model for instruction scheduling.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
BaseReg
Stack frame base register. Bit 0 of FREInfo.Info.
Definition SFrame.h:77
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:477
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:207
FunctionPass * createAArch64StorePairSuppressPass()
bool isVariant() const
Definition MCSchedule.h:144
const MCSchedClassDesc * getSchedClassDesc(unsigned SchedClassIdx) const
Definition MCSchedule.h:366