LLVM 19.0.0git
SIAnnotateControlFlow.cpp
Go to the documentation of this file.
1//===- SIAnnotateControlFlow.cpp ------------------------------------------===//
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/// \file
10/// Annotates the control flow with hardware specific intrinsics.
11//
12//===----------------------------------------------------------------------===//
13
14#include "AMDGPU.h"
15#include "GCNSubtarget.h"
19#include "llvm/IR/BasicBlock.h"
20#include "llvm/IR/Constants.h"
21#include "llvm/IR/Dominators.h"
22#include "llvm/IR/IRBuilder.h"
23#include "llvm/IR/IntrinsicsAMDGPU.h"
28
29using namespace llvm;
30
31#define DEBUG_TYPE "si-annotate-control-flow"
32
33namespace {
34
35// Complex types used in this pass
36using StackEntry = std::pair<BasicBlock *, Value *>;
37using StackVector = SmallVector<StackEntry, 16>;
38
39class SIAnnotateControlFlow : public FunctionPass {
41
43 Type *Void;
44 Type *IntMask;
45 Type *ReturnStruct;
46
47 ConstantInt *BoolTrue;
48 ConstantInt *BoolFalse;
49 UndefValue *BoolUndef;
50 Constant *IntMaskZero;
51
52 Function *If;
53 Function *Else;
54 Function *IfBreak;
56 Function *EndCf;
57
58 DominatorTree *DT;
59 StackVector Stack;
60
61 LoopInfo *LI;
62
63 void initialize(Module &M, const GCNSubtarget &ST);
64
65 bool isUniform(BranchInst *T);
66
67 bool isTopOfStack(BasicBlock *BB);
68
69 Value *popSaved();
70
71 void push(BasicBlock *BB, Value *Saved);
72
73 bool isElse(PHINode *Phi);
74
75 bool hasKill(const BasicBlock *BB);
76
77 bool eraseIfUnused(PHINode *Phi);
78
79 bool openIf(BranchInst *Term);
80
81 bool insertElse(BranchInst *Term);
82
83 Value *
84 handleLoopCondition(Value *Cond, PHINode *Broken, llvm::Loop *L,
85 BranchInst *Term);
86
87 bool handleLoop(BranchInst *Term);
88
89 bool closeControlFlow(BasicBlock *BB);
90
91public:
92 static char ID;
93
94 SIAnnotateControlFlow() : FunctionPass(ID) {}
95
96 bool runOnFunction(Function &F) override;
97
98 StringRef getPassName() const override { return "SI annotate control flow"; }
99
100 void getAnalysisUsage(AnalysisUsage &AU) const override {
108 }
109};
110
111} // end anonymous namespace
112
113INITIALIZE_PASS_BEGIN(SIAnnotateControlFlow, DEBUG_TYPE,
114 "Annotate SI Control Flow", false, false)
118INITIALIZE_PASS_END(SIAnnotateControlFlow, DEBUG_TYPE,
119 "Annotate SI Control Flow", false, false)
120
121char SIAnnotateControlFlow::ID = 0;
122
123/// Initialize all the types and constants used in the pass
124void SIAnnotateControlFlow::initialize(Module &M, const GCNSubtarget &ST) {
125 LLVMContext &Context = M.getContext();
126
129 IntMask = ST.isWave32() ? Type::getInt32Ty(Context)
131 ReturnStruct = StructType::get(Boolean, IntMask);
132
133 BoolTrue = ConstantInt::getTrue(Context);
134 BoolFalse = ConstantInt::getFalse(Context);
135 BoolUndef = PoisonValue::get(Boolean);
136 IntMaskZero = ConstantInt::get(IntMask, 0);
137
138 If = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_if, { IntMask });
139 Else = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_else,
140 { IntMask, IntMask });
141 IfBreak = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_if_break,
142 { IntMask });
143 Loop = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_loop, { IntMask });
144 EndCf = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_end_cf, { IntMask });
145}
146
147/// Is the branch condition uniform or did the StructurizeCFG pass
148/// consider it as such?
149bool SIAnnotateControlFlow::isUniform(BranchInst *T) {
150 return UA->isUniform(T) || T->hasMetadata("structurizecfg.uniform");
151}
152
153/// Is BB the last block saved on the stack ?
154bool SIAnnotateControlFlow::isTopOfStack(BasicBlock *BB) {
155 return !Stack.empty() && Stack.back().first == BB;
156}
157
158/// Pop the last saved value from the control flow stack
159Value *SIAnnotateControlFlow::popSaved() {
160 return Stack.pop_back_val().second;
161}
162
163/// Push a BB and saved value to the control flow stack
164void SIAnnotateControlFlow::push(BasicBlock *BB, Value *Saved) {
165 Stack.push_back(std::pair(BB, Saved));
166}
167
168/// Can the condition represented by this PHI node treated like
169/// an "Else" block?
170bool SIAnnotateControlFlow::isElse(PHINode *Phi) {
171 BasicBlock *IDom = DT->getNode(Phi->getParent())->getIDom()->getBlock();
172 for (unsigned i = 0, e = Phi->getNumIncomingValues(); i != e; ++i) {
173 if (Phi->getIncomingBlock(i) == IDom) {
174
175 if (Phi->getIncomingValue(i) != BoolTrue)
176 return false;
177
178 } else {
179 if (Phi->getIncomingValue(i) != BoolFalse)
180 return false;
181
182 }
183 }
184 return true;
185}
186
187bool SIAnnotateControlFlow::hasKill(const BasicBlock *BB) {
188 for (const Instruction &I : *BB) {
189 if (const CallInst *CI = dyn_cast<CallInst>(&I))
190 if (CI->getIntrinsicID() == Intrinsic::amdgcn_kill)
191 return true;
192 }
193 return false;
194}
195
196// Erase "Phi" if it is not used any more. Return true if any change was made.
197bool SIAnnotateControlFlow::eraseIfUnused(PHINode *Phi) {
198 bool Changed = RecursivelyDeleteDeadPHINode(Phi);
199 if (Changed)
200 LLVM_DEBUG(dbgs() << "Erased unused condition phi\n");
201 return Changed;
202}
203
204/// Open a new "If" block
205bool SIAnnotateControlFlow::openIf(BranchInst *Term) {
206 if (isUniform(Term))
207 return false;
208
209 IRBuilder<> IRB(Term);
210 Value *IfCall = IRB.CreateCall(If, {Term->getCondition()});
211 Value *Cond = IRB.CreateExtractValue(IfCall, {0});
212 Value *Mask = IRB.CreateExtractValue(IfCall, {1});
213 Term->setCondition(Cond);
214 push(Term->getSuccessor(1), Mask);
215 return true;
216}
217
218/// Close the last "If" block and open a new "Else" block
219bool SIAnnotateControlFlow::insertElse(BranchInst *Term) {
220 if (isUniform(Term)) {
221 return false;
222 }
223
224 IRBuilder<> IRB(Term);
225 Value *ElseCall = IRB.CreateCall(Else, {popSaved()});
226 Value *Cond = IRB.CreateExtractValue(ElseCall, {0});
227 Value *Mask = IRB.CreateExtractValue(ElseCall, {1});
228 Term->setCondition(Cond);
229 push(Term->getSuccessor(1), Mask);
230 return true;
231}
232
233/// Recursively handle the condition leading to a loop
234Value *SIAnnotateControlFlow::handleLoopCondition(
235 Value *Cond, PHINode *Broken, llvm::Loop *L, BranchInst *Term) {
236
237 auto CreateBreak = [this, Cond, Broken](Instruction *I) -> CallInst * {
238 return IRBuilder<>(I).CreateCall(IfBreak, {Cond, Broken});
239 };
240
241 if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
242 BasicBlock *Parent = Inst->getParent();
244 if (L->contains(Inst)) {
245 Insert = Parent->getTerminator();
246 } else {
247 Insert = L->getHeader()->getFirstNonPHIOrDbgOrLifetime();
248 }
249
250 return CreateBreak(Insert);
251 }
252
253 // Insert IfBreak in the loop header TERM for constant COND other than true.
254 if (isa<Constant>(Cond)) {
255 Instruction *Insert = Cond == BoolTrue ?
256 Term : L->getHeader()->getTerminator();
257
258 return CreateBreak(Insert);
259 }
260
261 if (isa<Argument>(Cond)) {
262 Instruction *Insert = L->getHeader()->getFirstNonPHIOrDbgOrLifetime();
263 return CreateBreak(Insert);
264 }
265
266 llvm_unreachable("Unhandled loop condition!");
267}
268
269/// Handle a back edge (loop)
270bool SIAnnotateControlFlow::handleLoop(BranchInst *Term) {
271 if (isUniform(Term))
272 return false;
273
274 BasicBlock *BB = Term->getParent();
275 llvm::Loop *L = LI->getLoopFor(BB);
276 if (!L)
277 return false;
278
279 BasicBlock *Target = Term->getSuccessor(1);
280 PHINode *Broken = PHINode::Create(IntMask, 0, "phi.broken");
281 Broken->insertBefore(Target->begin());
282
283 Value *Cond = Term->getCondition();
284 Term->setCondition(BoolTrue);
285 Value *Arg = handleLoopCondition(Cond, Broken, L, Term);
286
287 for (BasicBlock *Pred : predecessors(Target)) {
288 Value *PHIValue = IntMaskZero;
289 if (Pred == BB) // Remember the value of the previous iteration.
290 PHIValue = Arg;
291 // If the backedge from Pred to Target could be executed before the exit
292 // of the loop at BB, it should not reset or change "Broken", which keeps
293 // track of the number of threads exited the loop at BB.
294 else if (L->contains(Pred) && DT->dominates(Pred, BB))
295 PHIValue = Broken;
296 Broken->addIncoming(PHIValue, Pred);
297 }
298
299 CallInst *LoopCall = IRBuilder<>(Term).CreateCall(Loop, {Arg});
300 Term->setCondition(LoopCall);
301
302 push(Term->getSuccessor(0), Arg);
303
304 return true;
305}
306
307/// Close the last opened control flow
308bool SIAnnotateControlFlow::closeControlFlow(BasicBlock *BB) {
309 llvm::Loop *L = LI->getLoopFor(BB);
310
311 assert(Stack.back().first == BB);
312
313 if (L && L->getHeader() == BB) {
314 // We can't insert an EndCF call into a loop header, because it will
315 // get executed on every iteration of the loop, when it should be
316 // executed only once before the loop.
317 SmallVector <BasicBlock *, 8> Latches;
318 L->getLoopLatches(Latches);
319
321 for (BasicBlock *Pred : predecessors(BB)) {
322 if (!is_contained(Latches, Pred))
323 Preds.push_back(Pred);
324 }
325
326 BB = SplitBlockPredecessors(BB, Preds, "endcf.split", DT, LI, nullptr,
327 false);
328 }
329
330 Value *Exec = popSaved();
331 BasicBlock::iterator FirstInsertionPt = BB->getFirstInsertionPt();
332 if (!isa<UndefValue>(Exec) && !isa<UnreachableInst>(FirstInsertionPt)) {
333 Instruction *ExecDef = cast<Instruction>(Exec);
334 BasicBlock *DefBB = ExecDef->getParent();
335 if (!DT->dominates(DefBB, BB)) {
336 // Split edge to make Def dominate Use
337 FirstInsertionPt = SplitEdge(DefBB, BB, DT, LI)->getFirstInsertionPt();
338 }
339 IRBuilder<>(FirstInsertionPt->getParent(), FirstInsertionPt)
340 .CreateCall(EndCf, {Exec});
341 }
342
343 return true;
344}
345
346/// Annotate the control flow with intrinsics so the backend can
347/// recognize if/then/else and loops.
348bool SIAnnotateControlFlow::runOnFunction(Function &F) {
349 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
350 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
351 UA = &getAnalysis<UniformityInfoWrapperPass>().getUniformityInfo();
352 TargetPassConfig &TPC = getAnalysis<TargetPassConfig>();
353 const TargetMachine &TM = TPC.getTM<TargetMachine>();
354
355 bool Changed = false;
356 initialize(*F.getParent(), TM.getSubtarget<GCNSubtarget>(F));
357 for (df_iterator<BasicBlock *> I = df_begin(&F.getEntryBlock()),
358 E = df_end(&F.getEntryBlock()); I != E; ++I) {
359 BasicBlock *BB = *I;
360 BranchInst *Term = dyn_cast<BranchInst>(BB->getTerminator());
361
362 if (!Term || Term->isUnconditional()) {
363 if (isTopOfStack(BB))
364 Changed |= closeControlFlow(BB);
365
366 continue;
367 }
368
369 if (I.nodeVisited(Term->getSuccessor(1))) {
370 if (isTopOfStack(BB))
371 Changed |= closeControlFlow(BB);
372
373 if (DT->dominates(Term->getSuccessor(1), BB))
374 Changed |= handleLoop(Term);
375 continue;
376 }
377
378 if (isTopOfStack(BB)) {
379 PHINode *Phi = dyn_cast<PHINode>(Term->getCondition());
380 if (Phi && Phi->getParent() == BB && isElse(Phi) && !hasKill(BB)) {
381 Changed |= insertElse(Term);
382 Changed |= eraseIfUnused(Phi);
383 continue;
384 }
385
386 Changed |= closeControlFlow(BB);
387 }
388
389 Changed |= openIf(Term);
390 }
391
392 if (!Stack.empty()) {
393 // CFG was probably not structured.
394 report_fatal_error("failed to annotate CFG");
395 }
396
397 return Changed;
398}
399
400/// Create the annotation pass
402 return new SIAnnotateControlFlow();
403}
aarch64 promote const
static void push(SmallVectorImpl< uint64_t > &R, StringRef Str)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
#define LLVM_DEBUG(X)
Definition: Debug.h:101
Fixup Statepoint Caller Saved
AMD GCN specific subclass of TargetSubtarget.
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
LLVMContext & Context
const char LLVMTargetMachineRef TM
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:55
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:59
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:52
const SmallVectorImpl< MachineOperand > & Cond
Annotate SI Control Flow
#define DEBUG_TYPE
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static void initialize(TargetLibraryInfoImpl &TLI, const Triple &T, ArrayRef< StringLiteral > StandardNames)
Initialize the set of available library functions based on the specified target triple.
Target-Independent Code Generator Pass Configuration Options pass.
LLVM IR instance of the generic uniformity analysis.
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 Basic Block Representation.
Definition: BasicBlock.h:60
const_iterator getFirstInsertionPt() const
Returns an iterator to the first instruction in this block that is suitable for inserting a non-PHI i...
Definition: BasicBlock.cpp:409
const Function * getParent() const
Return the enclosing method, or null if none.
Definition: BasicBlock.h:206
InstListType::iterator iterator
Instruction iterators...
Definition: BasicBlock.h:165
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
Definition: BasicBlock.h:221
Conditional or Unconditional Branch instruction.
This class represents a function call, abstracting a target machine's calling convention.
This is the shared class of boolean and integer constants.
Definition: Constants.h:80
static ConstantInt * getTrue(LLVMContext &Context)
Definition: Constants.cpp:849
static ConstantInt * getFalse(LLVMContext &Context)
Definition: Constants.cpp:856
This is an important base class in LLVM.
Definition: Constant.h:41
Legacy analysis pass which computes a DominatorTree.
Definition: Dominators.h:317
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition: Dominators.h:162
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
virtual bool runOnFunction(Function &F)=0
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args=std::nullopt, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2412
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:2666
void insertBefore(Instruction *InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified instruction.
const BasicBlock * getParent() const
Definition: Instruction.h:152
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
The legacy pass manager's analysis pass to compute loop information.
Definition: LoopInfo.h:593
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:44
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr, BasicBlock::iterator InsertBefore)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
virtual void getAnalysisUsage(AnalysisUsage &) const
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
Definition: Pass.cpp:98
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:81
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Definition: Constants.cpp:1827
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
static StructType * get(LLVMContext &Context, ArrayRef< Type * > Elements, bool isPacked=false)
This static method is the primary way to create a literal StructType.
Definition: Type.cpp:373
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:76
Target-Independent Code Generator Pass Configuration Options.
TMC & getTM() const
Get the right type of TargetMachine for this target.
Target - Wrapper for Target specific information.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
static IntegerType * getInt1Ty(LLVMContext &C)
static Type * getVoidTy(LLVMContext &C)
static IntegerType * getInt32Ty(LLVMContext &C)
static IntegerType * getInt64Ty(LLVMContext &C)
'undef' values are things that do not have specified contents.
Definition: Constants.h:1348
Legacy analysis pass which computes a CycleInfo.
LLVM Value Representation.
Definition: Value.h:74
#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.
Definition: BitmaskEnum.h:121
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
Function * getDeclaration(Module *M, ID id, ArrayRef< Type * > Tys=std::nullopt)
Create or insert an LLVM Function declaration for an intrinsic, and return it.
Definition: Function.cpp:1461
NodeAddr< PhiNode * > Phi
Definition: RDFGraph.h:390
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
df_iterator< T > df_begin(const T &G)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:156
unsigned char Boolean
Definition: ConvertUTF.h:131
BasicBlock * SplitBlockPredecessors(BasicBlock *BB, ArrayRef< BasicBlock * > Preds, const char *Suffix, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, bool PreserveLCSSA=false)
This method introduces at least one new basic block into the function and moves some of the predecess...
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition: STLExtras.h:1879
bool RecursivelyDeleteDeadPHINode(PHINode *PN, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr)
If the specified value is an effectively dead PHI node, due to being a def-use chain of single-use no...
Definition: Local.cpp:650
df_iterator< T > df_end(const T &G)
BasicBlock * SplitEdge(BasicBlock *From, BasicBlock *To, DominatorTree *DT=nullptr, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="")
Split the edge connecting the specified blocks, and return the newly created basic block between From...
FunctionPass * createSIAnnotateControlFlowPass()
Create the annotation pass.