1 //==- llvm/CodeGen/BreakFalseDeps.cpp - Break False Dependency Fix -*- C++ -*==//
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
7 //===----------------------------------------------------------------------===//
9 /// \file Break False Dependency pass.
11 /// Some instructions have false dependencies which cause unnecessary stalls.
12 /// For example, instructions may write part of a register and implicitly
13 /// need to read the other parts of the register. This may cause unwanted
14 /// stalls preventing otherwise unrelated instructions from executing in
15 /// parallel in an out-of-order CPU.
16 /// This pass is aimed at identifying and avoiding these dependencies.
18 //===----------------------------------------------------------------------===//
20 #include "llvm/CodeGen/LivePhysRegs.h"
21 #include "llvm/CodeGen/MachineFunctionPass.h"
22 #include "llvm/CodeGen/ReachingDefAnalysis.h"
23 #include "llvm/CodeGen/RegisterClassInfo.h"
24 #include "llvm/CodeGen/MachineRegisterInfo.h"
25 #include "llvm/CodeGen/TargetInstrInfo.h"
32 class BreakFalseDeps
: public MachineFunctionPass
{
35 const TargetInstrInfo
*TII
;
36 const TargetRegisterInfo
*TRI
;
37 RegisterClassInfo RegClassInfo
;
39 /// List of undefined register reads in this block in forward order.
40 std::vector
<std::pair
<MachineInstr
*, unsigned>> UndefReads
;
42 /// Storage for register unit liveness.
43 LivePhysRegs LiveRegSet
;
45 ReachingDefAnalysis
*RDA
;
48 static char ID
; // Pass identification, replacement for typeid
50 BreakFalseDeps() : MachineFunctionPass(ID
) {
51 initializeBreakFalseDepsPass(*PassRegistry::getPassRegistry());
54 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
56 AU
.addRequired
<ReachingDefAnalysis
>();
57 MachineFunctionPass::getAnalysisUsage(AU
);
60 bool runOnMachineFunction(MachineFunction
&MF
) override
;
62 MachineFunctionProperties
getRequiredProperties() const override
{
63 return MachineFunctionProperties().set(
64 MachineFunctionProperties::Property::NoVRegs
);
68 /// Process he given basic block.
69 void processBasicBlock(MachineBasicBlock
*MBB
);
71 /// Update def-ages for registers defined by MI.
72 /// Also break dependencies on partial defs and undef uses.
73 void processDefs(MachineInstr
*MI
);
75 /// Helps avoid false dependencies on undef registers by updating the
76 /// machine instructions' undef operand to use a register that the instruction
77 /// is truly dependent on, or use a register with clearance higher than Pref.
78 /// Returns true if it was able to find a true dependency, thus not requiring
79 /// a dependency breaking instruction regardless of clearance.
80 bool pickBestRegisterForUndef(MachineInstr
*MI
, unsigned OpIdx
,
83 /// Return true to if it makes sense to break dependence on a partial
85 bool shouldBreakDependence(MachineInstr
*, unsigned OpIdx
, unsigned Pref
);
87 /// Break false dependencies on undefined register reads.
88 /// Walk the block backward computing precise liveness. This is expensive, so
89 /// we only do it on demand. Note that the occurrence of undefined register
90 /// reads that should be broken is very rare, but when they occur we may have
91 /// many in a single block.
92 void processUndefReads(MachineBasicBlock
*);
97 #define DEBUG_TYPE "break-false-deps"
99 char BreakFalseDeps::ID
= 0;
100 INITIALIZE_PASS_BEGIN(BreakFalseDeps
, DEBUG_TYPE
, "BreakFalseDeps", false, false)
101 INITIALIZE_PASS_DEPENDENCY(ReachingDefAnalysis
)
102 INITIALIZE_PASS_END(BreakFalseDeps
, DEBUG_TYPE
, "BreakFalseDeps", false, false)
104 FunctionPass
*llvm::createBreakFalseDeps() { return new BreakFalseDeps(); }
106 bool BreakFalseDeps::pickBestRegisterForUndef(MachineInstr
*MI
, unsigned OpIdx
,
108 MachineOperand
&MO
= MI
->getOperand(OpIdx
);
109 assert(MO
.isUndef() && "Expected undef machine operand");
111 Register OriginalReg
= MO
.getReg();
113 // Update only undef operands that have reg units that are mapped to one root.
114 for (MCRegUnitIterator
Unit(OriginalReg
, TRI
); Unit
.isValid(); ++Unit
) {
115 unsigned NumRoots
= 0;
116 for (MCRegUnitRootIterator
Root(*Unit
, TRI
); Root
.isValid(); ++Root
) {
123 // Get the undef operand's register class
124 const TargetRegisterClass
*OpRC
=
125 TII
->getRegClass(MI
->getDesc(), OpIdx
, TRI
, *MF
);
127 // If the instruction has a true dependency, we can hide the false depdency
129 for (MachineOperand
&CurrMO
: MI
->operands()) {
130 if (!CurrMO
.isReg() || CurrMO
.isDef() || CurrMO
.isUndef() ||
131 !OpRC
->contains(CurrMO
.getReg()))
133 // We found a true dependency - replace the undef register with the true
135 MO
.setReg(CurrMO
.getReg());
139 // Go over all registers in the register class and find the register with
140 // max clearance or clearance higher than Pref.
141 unsigned MaxClearance
= 0;
142 unsigned MaxClearanceReg
= OriginalReg
;
143 ArrayRef
<MCPhysReg
> Order
= RegClassInfo
.getOrder(OpRC
);
144 for (MCPhysReg Reg
: Order
) {
145 unsigned Clearance
= RDA
->getClearance(MI
, Reg
);
146 if (Clearance
<= MaxClearance
)
148 MaxClearance
= Clearance
;
149 MaxClearanceReg
= Reg
;
151 if (MaxClearance
> Pref
)
155 // Update the operand if we found a register with better clearance.
156 if (MaxClearanceReg
!= OriginalReg
)
157 MO
.setReg(MaxClearanceReg
);
162 bool BreakFalseDeps::shouldBreakDependence(MachineInstr
*MI
, unsigned OpIdx
,
164 Register reg
= MI
->getOperand(OpIdx
).getReg();
165 unsigned Clearance
= RDA
->getClearance(MI
, reg
);
166 LLVM_DEBUG(dbgs() << "Clearance: " << Clearance
<< ", want " << Pref
);
168 if (Pref
> Clearance
) {
169 LLVM_DEBUG(dbgs() << ": Break dependency.\n");
172 LLVM_DEBUG(dbgs() << ": OK .\n");
176 void BreakFalseDeps::processDefs(MachineInstr
*MI
) {
177 assert(!MI
->isDebugInstr() && "Won't process debug values");
179 // Break dependence on undef uses. Do this before updating LiveRegs below.
181 unsigned Pref
= TII
->getUndefRegClearance(*MI
, OpNum
, TRI
);
183 bool HadTrueDependency
= pickBestRegisterForUndef(MI
, OpNum
, Pref
);
184 // We don't need to bother trying to break a dependency if this
185 // instruction has a true dependency on that register through another
186 // operand - we'll have to wait for it to be available regardless.
187 if (!HadTrueDependency
&& shouldBreakDependence(MI
, OpNum
, Pref
))
188 UndefReads
.push_back(std::make_pair(MI
, OpNum
));
191 const MCInstrDesc
&MCID
= MI
->getDesc();
193 e
= MI
->isVariadic() ? MI
->getNumOperands() : MCID
.getNumDefs();
195 MachineOperand
&MO
= MI
->getOperand(i
);
196 if (!MO
.isReg() || !MO
.getReg())
200 // Check clearance before partial register updates.
201 unsigned Pref
= TII
->getPartialRegUpdateClearance(*MI
, i
, TRI
);
202 if (Pref
&& shouldBreakDependence(MI
, i
, Pref
))
203 TII
->breakPartialRegDependency(*MI
, i
, TRI
);
207 void BreakFalseDeps::processUndefReads(MachineBasicBlock
*MBB
) {
208 if (UndefReads
.empty())
211 // Collect this block's live out register units.
212 LiveRegSet
.init(*TRI
);
213 // We do not need to care about pristine registers as they are just preserved
214 // but not actually used in the function.
215 LiveRegSet
.addLiveOutsNoPristines(*MBB
);
217 MachineInstr
*UndefMI
= UndefReads
.back().first
;
218 unsigned OpIdx
= UndefReads
.back().second
;
220 for (MachineInstr
&I
: make_range(MBB
->rbegin(), MBB
->rend())) {
221 // Update liveness, including the current instruction's defs.
222 LiveRegSet
.stepBackward(I
);
225 if (!LiveRegSet
.contains(UndefMI
->getOperand(OpIdx
).getReg()))
226 TII
->breakPartialRegDependency(*UndefMI
, OpIdx
, TRI
);
228 UndefReads
.pop_back();
229 if (UndefReads
.empty())
232 UndefMI
= UndefReads
.back().first
;
233 OpIdx
= UndefReads
.back().second
;
238 void BreakFalseDeps::processBasicBlock(MachineBasicBlock
*MBB
) {
240 // If this block is not done, it makes little sense to make any decisions
241 // based on clearance information. We need to make a second pass anyway,
242 // and by then we'll have better information, so we can avoid doing the work
243 // to try and break dependencies now.
244 for (MachineInstr
&MI
: *MBB
) {
245 if (!MI
.isDebugInstr())
248 processUndefReads(MBB
);
251 bool BreakFalseDeps::runOnMachineFunction(MachineFunction
&mf
) {
252 if (skipFunction(mf
.getFunction()))
255 TII
= MF
->getSubtarget().getInstrInfo();
256 TRI
= MF
->getSubtarget().getRegisterInfo();
257 RDA
= &getAnalysis
<ReachingDefAnalysis
>();
259 RegClassInfo
.runOnMachineFunction(mf
);
261 LLVM_DEBUG(dbgs() << "********** BREAK FALSE DEPENDENCIES **********\n");
263 // Traverse the basic blocks.
264 for (MachineBasicBlock
&MBB
: mf
) {
265 processBasicBlock(&MBB
);