LLVM 19.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) {
43 }
44
45 StringRef getPassName() const override { return STPSUPPRESS_PASS_NAME; }
46
48
49private:
50 bool shouldAddSTPToBlock(const MachineBasicBlock *BB);
51
52 bool isNarrowFPStore(const MachineInstr &MI);
53
54 void getAnalysisUsage(AnalysisUsage &AU) const override {
55 AU.setPreservesCFG();
59 }
60};
61char AArch64StorePairSuppress::ID = 0;
62} // anonymous
63
64INITIALIZE_PASS(AArch64StorePairSuppress, "aarch64-stp-suppress",
65 STPSUPPRESS_PASS_NAME, false, false)
66
68 return new AArch64StorePairSuppress();
69}
70
71/// Return true if an STP can be added to this block without increasing the
72/// critical resource height. STP is good to form in Ld/St limited blocks and
73/// bad to form in float-point limited blocks. This is true independent of the
74/// critical path. If the critical path is longer than the resource height, the
75/// extra vector ops can limit physreg renaming. Otherwise, it could simply
76/// oversaturate the vector units.
77bool AArch64StorePairSuppress::shouldAddSTPToBlock(const MachineBasicBlock *BB) {
78 if (!MinInstr)
79 MinInstr = Traces->getEnsemble(MachineTraceStrategy::TS_MinInstrCount);
80
81 MachineTraceMetrics::Trace BBTrace = MinInstr->getTrace(BB);
82 unsigned ResLength = BBTrace.getResourceLength();
83
84 // Get the machine model's scheduling class for STPDi and STRDui.
85 // Bypass TargetSchedule's SchedClass resolution since we only have an opcode.
86 unsigned SCIdx = TII->get(AArch64::STPDi).getSchedClass();
87 const MCSchedClassDesc *PairSCDesc =
88 SchedModel.getMCSchedModel()->getSchedClassDesc(SCIdx);
89
90 unsigned SCIdx2 = TII->get(AArch64::STRDui).getSchedClass();
91 const MCSchedClassDesc *SingleSCDesc =
92 SchedModel.getMCSchedModel()->getSchedClassDesc(SCIdx2);
93
94 // If a subtarget does not define resources for STPDi, bail here.
95 if (PairSCDesc->isValid() && !PairSCDesc->isVariant() &&
96 SingleSCDesc->isValid() && !SingleSCDesc->isVariant()) {
97 // Compute the new critical resource length after replacing 2 separate
98 // STRDui with one STPDi.
99 unsigned ResLenWithSTP = BBTrace.getResourceLength(
100 std::nullopt, PairSCDesc, {SingleSCDesc, SingleSCDesc});
101 if (ResLenWithSTP > ResLength) {
102 LLVM_DEBUG(dbgs() << " Suppress STP in BB: " << BB->getNumber()
103 << " resources " << ResLength << " -> " << ResLenWithSTP
104 << "\n");
105 return false;
106 }
107 }
108 return true;
109}
110
111/// Return true if this is a floating-point store smaller than the V reg. On
112/// cyclone, these require a vector shuffle before storing a pair.
113/// Ideally we would call getMatchingPairOpcode() and have the machine model
114/// tell us if it's profitable with no cpu knowledge here.
115///
116/// FIXME: We plan to develop a decent Target abstraction for simple loads and
117/// stores. Until then use a nasty switch similar to AArch64LoadStoreOptimizer.
118bool AArch64StorePairSuppress::isNarrowFPStore(const MachineInstr &MI) {
119 switch (MI.getOpcode()) {
120 default:
121 return false;
122 case AArch64::STRSui:
123 case AArch64::STRDui:
124 case AArch64::STURSi:
125 case AArch64::STURDi:
126 return true;
127 }
128}
129
130bool AArch64StorePairSuppress::runOnMachineFunction(MachineFunction &MF) {
131 if (skipFunction(MF.getFunction()) || MF.getFunction().hasOptSize())
132 return false;
133
135 if (!ST.enableStorePairSuppress())
136 return false;
137
138 TII = static_cast<const AArch64InstrInfo *>(ST.getInstrInfo());
139 TRI = ST.getRegisterInfo();
140 MRI = &MF.getRegInfo();
141 SchedModel.init(&ST);
142 Traces = &getAnalysis<MachineTraceMetrics>();
143 MinInstr = nullptr;
144
145 LLVM_DEBUG(dbgs() << "*** " << getPassName() << ": " << MF.getName() << '\n');
146
147 if (!SchedModel.hasInstrSchedModel()) {
148 LLVM_DEBUG(dbgs() << " Skipping pass: no machine model present.\n");
149 return false;
150 }
151
152 // Check for a sequence of stores to the same base address. We don't need to
153 // precisely determine whether a store pair can be formed. But we do want to
154 // filter out most situations where we can't form store pairs to avoid
155 // computing trace metrics in those cases.
156 for (auto &MBB : MF) {
157 bool SuppressSTP = false;
158 unsigned PrevBaseReg = 0;
159 for (auto &MI : MBB) {
160 if (!isNarrowFPStore(MI))
161 continue;
162 const MachineOperand *BaseOp;
163 int64_t Offset;
164 bool OffsetIsScalable;
165 if (TII->getMemOperandWithOffset(MI, BaseOp, Offset, OffsetIsScalable,
166 TRI) &&
167 BaseOp->isReg()) {
168 Register BaseReg = BaseOp->getReg();
169 if (PrevBaseReg == BaseReg) {
170 // If this block can take STPs, skip ahead to the next block.
171 if (!SuppressSTP && shouldAddSTPToBlock(MI.getParent()))
172 break;
173 // Otherwise, continue unpairing the stores in this block.
174 LLVM_DEBUG(dbgs() << "Unpairing store " << MI << "\n");
175 SuppressSTP = true;
176 TII->suppressLdStPair(MI);
177 }
178 PrevBaseReg = BaseReg;
179 } else
180 PrevBaseReg = 0;
181 }
182 }
183 // This pass just sets some internal MachineMemOperand flags. It can't really
184 // invalidate anything.
185 return false;
186}
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock & MBB
#define STPSUPPRESS_PASS_NAME
#define LLVM_DEBUG(X)
Definition: Debug.h:101
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
#define F(x, y, z)
Definition: MD5.cpp:55
unsigned const TargetRegisterInfo * TRI
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
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.
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:269
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
bool hasOptSize() const
Optimize this function for size (-Os) or minimum size (-Oz).
Definition: Function.h:681
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.
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
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.
Definition: MachineInstr.h:69
MachineOperand class - Representation of each machine instruction operand.
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...
A trace represents a plausible sequence of executed basic blocks that passes through the current basi...
unsigned getResourceLength(ArrayRef< const MachineBasicBlock * > Extrablocks=std::nullopt, ArrayRef< const MCSchedClassDesc * > ExtraInstrs=std::nullopt, ArrayRef< const MCSchedClassDesc * > RemoveInstrs=std::nullopt) const
Return the resource length of the trace.
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:81
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
Provide an instruction scheduling machine model to CodeGen passes.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
FunctionPass * createAArch64StorePairSuppressPass()
void initializeAArch64StorePairSuppressPass(PassRegistry &)
Summarize the scheduling resources required for an instruction of a particular scheduling class.
Definition: MCSchedule.h:118
bool isValid() const
Definition: MCSchedule.h:136
bool isVariant() const
Definition: MCSchedule.h:139