2017-08-08 02:47:13 +02:00
|
|
|
//===- SIAnnotateControlFlow.cpp ------------------------------------------===//
|
2012-12-19 23:10:31 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// \file
|
|
|
|
/// Annotates the control flow with hardware specific intrinsics.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "AMDGPU.h"
|
2013-01-02 11:22:59 +01:00
|
|
|
#include "llvm/ADT/DepthFirstIterator.h"
|
2017-08-08 02:47:13 +02:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2016-02-13 00:45:29 +01:00
|
|
|
#include "llvm/Analysis/DivergenceAnalysis.h"
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
2018-06-04 23:23:21 +02:00
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
2017-08-08 02:47:13 +02:00
|
|
|
#include "llvm/IR/BasicBlock.h"
|
|
|
|
#include "llvm/IR/CFG.h"
|
|
|
|
#include "llvm/IR/Constant.h"
|
2013-06-07 22:28:43 +02:00
|
|
|
#include "llvm/IR/Constants.h"
|
2017-08-08 02:47:13 +02:00
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
2014-01-13 10:26:24 +01:00
|
|
|
#include "llvm/IR/Dominators.h"
|
2017-08-08 02:47:13 +02:00
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/Instruction.h"
|
2013-06-07 22:28:43 +02:00
|
|
|
#include "llvm/IR/Instructions.h"
|
2017-08-08 02:47:13 +02:00
|
|
|
#include "llvm/IR/Intrinsics.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Module.h"
|
2017-08-08 02:47:13 +02:00
|
|
|
#include "llvm/IR/Type.h"
|
|
|
|
#include "llvm/IR/ValueHandle.h"
|
2013-01-02 11:22:59 +01:00
|
|
|
#include "llvm/Pass.h"
|
2017-08-08 02:47:13 +02:00
|
|
|
#include "llvm/Support/Casting.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2012-12-19 23:10:31 +01:00
|
|
|
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
|
2017-08-08 02:47:13 +02:00
|
|
|
#include <cassert>
|
|
|
|
#include <utility>
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 04:41:26 +02:00
|
|
|
#define DEBUG_TYPE "si-annotate-control-flow"
|
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Complex types used in this pass
|
2017-08-08 02:47:13 +02:00
|
|
|
using StackEntry = std::pair<BasicBlock *, Value *>;
|
|
|
|
using StackVector = SmallVector<StackEntry, 16>;
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
class SIAnnotateControlFlow : public FunctionPass {
|
2016-02-13 00:45:29 +01:00
|
|
|
DivergenceAnalysis *DA;
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
Type *Boolean;
|
|
|
|
Type *Void;
|
|
|
|
Type *Int64;
|
|
|
|
Type *ReturnStruct;
|
|
|
|
|
|
|
|
ConstantInt *BoolTrue;
|
|
|
|
ConstantInt *BoolFalse;
|
|
|
|
UndefValue *BoolUndef;
|
|
|
|
Constant *Int64Zero;
|
|
|
|
|
2017-03-17 21:41:45 +01:00
|
|
|
Function *If;
|
|
|
|
Function *Else;
|
|
|
|
Function *Break;
|
|
|
|
Function *IfBreak;
|
|
|
|
Function *ElseBreak;
|
|
|
|
Function *Loop;
|
|
|
|
Function *EndCf;
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
DominatorTree *DT;
|
|
|
|
StackVector Stack;
|
|
|
|
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
LoopInfo *LI;
|
|
|
|
|
2016-04-14 19:42:35 +02:00
|
|
|
bool isUniform(BranchInst *T);
|
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
bool isTopOfStack(BasicBlock *BB);
|
|
|
|
|
|
|
|
Value *popSaved();
|
|
|
|
|
|
|
|
void push(BasicBlock *BB, Value *Saved);
|
|
|
|
|
|
|
|
bool isElse(PHINode *Phi);
|
|
|
|
|
|
|
|
void eraseIfUnused(PHINode *Phi);
|
|
|
|
|
|
|
|
void openIf(BranchInst *Term);
|
|
|
|
|
|
|
|
void insertElse(BranchInst *Term);
|
|
|
|
|
2017-05-01 19:07:49 +02:00
|
|
|
Value *
|
|
|
|
handleLoopCondition(Value *Cond, PHINode *Broken, llvm::Loop *L,
|
|
|
|
BranchInst *Term,
|
|
|
|
SmallVectorImpl<WeakTrackingVH> &LoopPhiConditions);
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
void handleLoop(BranchInst *Term);
|
|
|
|
|
|
|
|
void closeControlFlow(BasicBlock *BB);
|
|
|
|
|
|
|
|
public:
|
2016-01-20 16:48:27 +01:00
|
|
|
static char ID;
|
|
|
|
|
2017-08-08 02:47:13 +02:00
|
|
|
SIAnnotateControlFlow() : FunctionPass(ID) {}
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2014-04-29 09:57:24 +02:00
|
|
|
bool doInitialization(Module &M) override;
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2014-04-29 09:57:24 +02:00
|
|
|
bool runOnFunction(Function &F) override;
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2016-10-01 04:56:57 +02:00
|
|
|
StringRef getPassName() const override { return "SI annotate control flow"; }
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2014-04-29 09:57:24 +02:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
AU.addRequired<LoopInfoWrapperPass>();
|
2014-01-13 14:07:17 +01:00
|
|
|
AU.addRequired<DominatorTreeWrapperPass>();
|
2016-02-13 00:45:29 +01:00
|
|
|
AU.addRequired<DivergenceAnalysis>();
|
2014-01-13 14:07:17 +01:00
|
|
|
AU.addPreserved<DominatorTreeWrapperPass>();
|
2012-12-19 23:10:31 +01:00
|
|
|
FunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2016-01-20 16:48:27 +01:00
|
|
|
INITIALIZE_PASS_BEGIN(SIAnnotateControlFlow, DEBUG_TYPE,
|
|
|
|
"Annotate SI Control Flow", false, false)
|
2017-03-03 00:50:51 +01:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
2016-02-13 00:45:29 +01:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(DivergenceAnalysis)
|
2016-01-20 16:48:27 +01:00
|
|
|
INITIALIZE_PASS_END(SIAnnotateControlFlow, DEBUG_TYPE,
|
|
|
|
"Annotate SI Control Flow", false, false)
|
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
char SIAnnotateControlFlow::ID = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Initialize all the types and constants used in the pass
|
2012-12-19 23:10:31 +01:00
|
|
|
bool SIAnnotateControlFlow::doInitialization(Module &M) {
|
|
|
|
LLVMContext &Context = M.getContext();
|
|
|
|
|
|
|
|
Void = Type::getVoidTy(Context);
|
|
|
|
Boolean = Type::getInt1Ty(Context);
|
|
|
|
Int64 = Type::getInt64Ty(Context);
|
2017-05-11 10:46:02 +02:00
|
|
|
ReturnStruct = StructType::get(Boolean, Int64);
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
BoolTrue = ConstantInt::getTrue(Context);
|
|
|
|
BoolFalse = ConstantInt::getFalse(Context);
|
|
|
|
BoolUndef = UndefValue::get(Boolean);
|
|
|
|
Int64Zero = ConstantInt::get(Int64, 0);
|
|
|
|
|
2017-03-17 21:41:45 +01:00
|
|
|
If = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_if);
|
|
|
|
Else = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_else);
|
|
|
|
Break = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_break);
|
|
|
|
IfBreak = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_if_break);
|
|
|
|
ElseBreak = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_else_break);
|
|
|
|
Loop = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_loop);
|
|
|
|
EndCf = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_end_cf);
|
2012-12-19 23:10:31 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Is the branch condition uniform or did the StructurizeCFG pass
|
2016-04-14 19:42:35 +02:00
|
|
|
/// consider it as such?
|
|
|
|
bool SIAnnotateControlFlow::isUniform(BranchInst *T) {
|
|
|
|
return DA->isUniform(T->getCondition()) ||
|
|
|
|
T->getMetadata("structurizecfg.uniform") != nullptr;
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Is BB the last block saved on the stack ?
|
2012-12-19 23:10:31 +01:00
|
|
|
bool SIAnnotateControlFlow::isTopOfStack(BasicBlock *BB) {
|
2013-02-14 09:00:33 +01:00
|
|
|
return !Stack.empty() && Stack.back().first == BB;
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Pop the last saved value from the control flow stack
|
2012-12-19 23:10:31 +01:00
|
|
|
Value *SIAnnotateControlFlow::popSaved() {
|
|
|
|
return Stack.pop_back_val().second;
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Push a BB and saved value to the control flow stack
|
2012-12-19 23:10:31 +01:00
|
|
|
void SIAnnotateControlFlow::push(BasicBlock *BB, Value *Saved) {
|
|
|
|
Stack.push_back(std::make_pair(BB, Saved));
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Can the condition represented by this PHI node treated like
|
2012-12-19 23:10:31 +01:00
|
|
|
/// an "Else" block?
|
|
|
|
bool SIAnnotateControlFlow::isElse(PHINode *Phi) {
|
|
|
|
BasicBlock *IDom = DT->getNode(Phi->getParent())->getIDom()->getBlock();
|
|
|
|
for (unsigned i = 0, e = Phi->getNumIncomingValues(); i != e; ++i) {
|
|
|
|
if (Phi->getIncomingBlock(i) == IDom) {
|
|
|
|
|
|
|
|
if (Phi->getIncomingValue(i) != BoolTrue)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (Phi->getIncomingValue(i) != BoolFalse)
|
|
|
|
return false;
|
2014-06-20 19:06:02 +02:00
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
// Erase "Phi" if it is not used any more
|
2012-12-19 23:10:31 +01:00
|
|
|
void SIAnnotateControlFlow::eraseIfUnused(PHINode *Phi) {
|
2017-08-08 02:47:13 +02:00
|
|
|
if (RecursivelyDeleteDeadPHINode(Phi)) {
|
2018-05-14 14:53:11 +02:00
|
|
|
LLVM_DEBUG(dbgs() << "Erased unused condition phi\n");
|
2017-03-24 21:57:10 +01:00
|
|
|
}
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Open a new "If" block
|
2012-12-19 23:10:31 +01:00
|
|
|
void SIAnnotateControlFlow::openIf(BranchInst *Term) {
|
2017-03-15 19:00:12 +01:00
|
|
|
if (isUniform(Term))
|
2016-02-13 00:45:29 +01:00
|
|
|
return;
|
2017-03-15 19:00:12 +01:00
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term);
|
|
|
|
Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term));
|
|
|
|
push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term));
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Close the last "If" block and open a new "Else" block
|
2012-12-19 23:10:31 +01:00
|
|
|
void SIAnnotateControlFlow::insertElse(BranchInst *Term) {
|
2016-04-14 19:42:35 +02:00
|
|
|
if (isUniform(Term)) {
|
2016-02-13 00:45:29 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-12-19 23:10:31 +01:00
|
|
|
Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
|
|
|
|
Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term));
|
|
|
|
push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term));
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Recursively handle the condition leading to a loop
|
2017-03-24 21:57:10 +01:00
|
|
|
Value *SIAnnotateControlFlow::handleLoopCondition(
|
2017-05-01 19:07:49 +02:00
|
|
|
Value *Cond, PHINode *Broken, llvm::Loop *L, BranchInst *Term,
|
|
|
|
SmallVectorImpl<WeakTrackingVH> &LoopPhiConditions) {
|
2015-05-01 05:44:08 +02:00
|
|
|
// Only search through PHI nodes which are inside the loop. If we try this
|
|
|
|
// with PHI nodes that are outside of the loop, we end up inserting new PHI
|
|
|
|
// nodes outside of the loop which depend on values defined inside the loop.
|
|
|
|
// This will break the module with
|
|
|
|
// 'Instruction does not dominate all users!' errors.
|
|
|
|
PHINode *Phi = nullptr;
|
|
|
|
if ((Phi = dyn_cast<PHINode>(Cond)) && L->contains(Phi)) {
|
2014-06-20 19:06:02 +02:00
|
|
|
BasicBlock *Parent = Phi->getParent();
|
2017-03-17 21:52:21 +01:00
|
|
|
PHINode *NewPhi = PHINode::Create(Int64, 0, "loop.phi", &Parent->front());
|
2014-06-20 19:06:02 +02:00
|
|
|
Value *Ret = NewPhi;
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2013-12-05 06:44:44 +01:00
|
|
|
// Handle all non-constant incoming values first
|
2012-12-19 23:10:31 +01:00
|
|
|
for (unsigned i = 0, e = Phi->getNumIncomingValues(); i != e; ++i) {
|
|
|
|
Value *Incoming = Phi->getIncomingValue(i);
|
2014-06-20 19:06:02 +02:00
|
|
|
BasicBlock *From = Phi->getIncomingBlock(i);
|
|
|
|
if (isa<ConstantInt>(Incoming)) {
|
|
|
|
NewPhi->addIncoming(Broken, From);
|
2012-12-19 23:10:31 +01:00
|
|
|
continue;
|
2014-06-20 19:06:02 +02:00
|
|
|
}
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
Phi->setIncomingValue(i, BoolFalse);
|
2017-03-24 21:57:10 +01:00
|
|
|
Value *PhiArg = handleLoopCondition(Incoming, Broken, L,
|
|
|
|
Term, LoopPhiConditions);
|
2014-06-20 19:06:02 +02:00
|
|
|
NewPhi->addIncoming(PhiArg, From);
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BasicBlock *IDom = DT->getNode(Parent)->getIDom()->getBlock();
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = Phi->getNumIncomingValues(); i != e; ++i) {
|
|
|
|
Value *Incoming = Phi->getIncomingValue(i);
|
|
|
|
if (Incoming != BoolTrue)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
BasicBlock *From = Phi->getIncomingBlock(i);
|
|
|
|
if (From == IDom) {
|
2016-04-12 18:10:38 +02:00
|
|
|
// We're in the following situation:
|
|
|
|
// IDom/From
|
|
|
|
// | \
|
|
|
|
// | If-block
|
|
|
|
// | /
|
|
|
|
// Parent
|
|
|
|
// where we want to break out of the loop if the If-block is not taken.
|
|
|
|
// Due to the depth-first traversal, there should be an end.cf
|
|
|
|
// intrinsic in Parent, and we insert an else.break before it.
|
|
|
|
//
|
|
|
|
// Note that the end.cf need not be the first non-phi instruction
|
|
|
|
// of parent, particularly when we're dealing with a multi-level
|
|
|
|
// break, but it should occur within a group of intrinsic calls
|
|
|
|
// at the beginning of the block.
|
2012-12-19 23:10:31 +01:00
|
|
|
CallInst *OldEnd = dyn_cast<CallInst>(Parent->getFirstInsertionPt());
|
2016-04-12 18:10:38 +02:00
|
|
|
while (OldEnd && OldEnd->getCalledFunction() != EndCf)
|
|
|
|
OldEnd = dyn_cast<CallInst>(OldEnd->getNextNode());
|
2012-12-19 23:10:31 +01:00
|
|
|
if (OldEnd && OldEnd->getCalledFunction() == EndCf) {
|
2014-06-20 19:06:02 +02:00
|
|
|
Value *Args[] = { OldEnd->getArgOperand(0), NewPhi };
|
|
|
|
Ret = CallInst::Create(ElseBreak, Args, "", OldEnd);
|
2012-12-19 23:10:31 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2017-03-15 19:00:12 +01:00
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
TerminatorInst *Insert = From->getTerminator();
|
2014-06-20 19:06:02 +02:00
|
|
|
Value *PhiArg = CallInst::Create(Break, Broken, "", Insert);
|
|
|
|
NewPhi->setIncomingValue(i, PhiArg);
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
2017-03-15 19:00:12 +01:00
|
|
|
|
2017-05-01 19:07:49 +02:00
|
|
|
LoopPhiConditions.push_back(WeakTrackingVH(Phi));
|
2014-06-20 19:06:02 +02:00
|
|
|
return Ret;
|
2017-03-15 19:00:12 +01:00
|
|
|
}
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2017-03-15 19:00:12 +01:00
|
|
|
if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
|
2012-12-19 23:10:31 +01:00
|
|
|
BasicBlock *Parent = Inst->getParent();
|
2015-04-14 16:36:45 +02:00
|
|
|
Instruction *Insert;
|
|
|
|
if (L->contains(Inst)) {
|
|
|
|
Insert = Parent->getTerminator();
|
|
|
|
} else {
|
|
|
|
Insert = L->getHeader()->getFirstNonPHIOrDbgOrLifetime();
|
|
|
|
}
|
2017-03-15 19:00:12 +01:00
|
|
|
|
2014-06-20 19:06:02 +02:00
|
|
|
Value *Args[] = { Cond, Broken };
|
|
|
|
return CallInst::Create(IfBreak, Args, "", Insert);
|
2017-03-15 19:00:12 +01:00
|
|
|
}
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2017-03-17 21:52:21 +01:00
|
|
|
// Insert IfBreak in the loop header TERM for constant COND other than true.
|
|
|
|
if (isa<Constant>(Cond)) {
|
|
|
|
Instruction *Insert = Cond == BoolTrue ?
|
|
|
|
Term : L->getHeader()->getTerminator();
|
|
|
|
|
2016-02-12 18:11:04 +01:00
|
|
|
Value *Args[] = { Cond, Broken };
|
2017-03-17 21:52:21 +01:00
|
|
|
return CallInst::Create(IfBreak, Args, "", Insert);
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
2017-03-15 19:00:12 +01:00
|
|
|
|
|
|
|
llvm_unreachable("Unhandled loop condition!");
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Handle a back edge (loop)
|
2012-12-19 23:10:31 +01:00
|
|
|
void SIAnnotateControlFlow::handleLoop(BranchInst *Term) {
|
2017-03-15 19:00:12 +01:00
|
|
|
if (isUniform(Term))
|
2016-02-13 00:45:29 +01:00
|
|
|
return;
|
|
|
|
|
2015-04-14 16:36:45 +02:00
|
|
|
BasicBlock *BB = Term->getParent();
|
|
|
|
llvm::Loop *L = LI->getLoopFor(BB);
|
2016-07-29 01:01:45 +02:00
|
|
|
if (!L)
|
|
|
|
return;
|
2017-03-15 19:00:12 +01:00
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
BasicBlock *Target = Term->getSuccessor(1);
|
2017-03-17 21:52:21 +01:00
|
|
|
PHINode *Broken = PHINode::Create(Int64, 0, "phi.broken", &Target->front());
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2017-05-01 19:07:49 +02:00
|
|
|
SmallVector<WeakTrackingVH, 8> LoopPhiConditions;
|
2012-12-19 23:10:31 +01:00
|
|
|
Value *Cond = Term->getCondition();
|
|
|
|
Term->setCondition(BoolTrue);
|
2017-03-24 21:57:10 +01:00
|
|
|
Value *Arg = handleLoopCondition(Cond, Broken, L, Term, LoopPhiConditions);
|
2012-12-19 23:10:31 +01:00
|
|
|
|
2017-03-15 19:00:12 +01:00
|
|
|
for (BasicBlock *Pred : predecessors(Target))
|
|
|
|
Broken->addIncoming(Pred == BB ? Arg : Int64Zero, Pred);
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
Term->setCondition(CallInst::Create(Loop, Arg, "", Term));
|
2017-03-24 21:57:10 +01:00
|
|
|
|
2017-08-08 02:47:13 +02:00
|
|
|
for (WeakTrackingVH Val : llvm::reverse(LoopPhiConditions)) {
|
2017-03-24 21:57:10 +01:00
|
|
|
if (PHINode *Cond = cast_or_null<PHINode>(Val))
|
|
|
|
eraseIfUnused(Cond);
|
|
|
|
}
|
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
push(Term->getSuccessor(0), Arg);
|
2017-03-15 19:00:12 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Close the last opened control flow
|
2012-12-19 23:10:31 +01:00
|
|
|
void SIAnnotateControlFlow::closeControlFlow(BasicBlock *BB) {
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
llvm::Loop *L = LI->getLoopFor(BB);
|
|
|
|
|
2016-04-14 19:42:18 +02:00
|
|
|
assert(Stack.back().first == BB);
|
2016-02-13 00:45:29 +01:00
|
|
|
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
if (L && L->getHeader() == BB) {
|
|
|
|
// We can't insert an EndCF call into a loop header, because it will
|
|
|
|
// get executed on every iteration of the loop, when it should be
|
|
|
|
// executed only once before the loop.
|
2017-03-15 19:00:12 +01:00
|
|
|
SmallVector <BasicBlock *, 8> Latches;
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
L->getLoopLatches(Latches);
|
|
|
|
|
2017-03-15 19:00:12 +01:00
|
|
|
SmallVector<BasicBlock *, 2> Preds;
|
|
|
|
for (BasicBlock *Pred : predecessors(BB)) {
|
|
|
|
if (!is_contained(Latches, Pred))
|
|
|
|
Preds.push_back(Pred);
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
}
|
2017-03-15 19:00:12 +01:00
|
|
|
|
2018-08-22 01:32:03 +02:00
|
|
|
BB = SplitBlockPredecessors(BB, Preds, "endcf.split", DT, LI, nullptr,
|
|
|
|
false);
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
}
|
|
|
|
|
2016-02-13 00:45:29 +01:00
|
|
|
Value *Exec = popSaved();
|
2017-03-08 00:29:36 +01:00
|
|
|
Instruction *FirstInsertionPt = &*BB->getFirstInsertionPt();
|
|
|
|
if (!isa<UndefValue>(Exec) && !isa<UnreachableInst>(FirstInsertionPt))
|
|
|
|
CallInst::Create(EndCf, Exec, "", FirstInsertionPt);
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Annotate the control flow with intrinsics so the backend can
|
2012-12-19 23:10:31 +01:00
|
|
|
/// recognize if/then/else and loops.
|
|
|
|
bool SIAnnotateControlFlow::runOnFunction(Function &F) {
|
2014-01-13 14:07:17 +01:00
|
|
|
DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
|
R600/SI: Fix bug from insertion of llvm.SI.end.cf into loop headers
The llvm.SI.end.cf intrinsic is used to mark the end of if-then blocks,
if-then-else blocks, and loops. It is responsible for updating the
exec mask to re-enable threads that had been masked during the preceding
control flow block. For example:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf
The bug fixed by this patch was one where the llvm.SI.end.cf intrinsic
was being inserted into the header of loops. This would happen when
an if block terminated in a loop header and we would end up with
code like this:
s_mov_b64 exec, 0x3 ; Initial exec mask
s_mov_b64 s[0:1], exec ; Saved exec mask
v_cmpx_gt_u32 exec, s[2:3], v0, 0 ; llvm.SI.if
do_stuff()
LOOP: ; Start of loop header
s_or_b64 exec, exec, s[0:1] ; llvm.SI.end.cf <-BUG: The exec mask has the
same value at the beginning of each loop
iteration.
do_stuff();
s_cbranch_execnz LOOP
The fix is to create a new basic block before the loop and insert the
llvm.SI.end.cf there. This way the exec mask is restored before the
start of the loop instead of at the beginning of each iteration.
llvm-svn: 228302
2015-02-05 16:32:15 +01:00
|
|
|
LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
|
2016-02-13 00:45:29 +01:00
|
|
|
DA = &getAnalysis<DivergenceAnalysis>();
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
for (df_iterator<BasicBlock *> I = df_begin(&F.getEntryBlock()),
|
|
|
|
E = df_end(&F.getEntryBlock()); I != E; ++I) {
|
2017-03-15 19:00:12 +01:00
|
|
|
BasicBlock *BB = *I;
|
|
|
|
BranchInst *Term = dyn_cast<BranchInst>(BB->getTerminator());
|
2012-12-19 23:10:31 +01:00
|
|
|
|
|
|
|
if (!Term || Term->isUnconditional()) {
|
2017-03-15 19:00:12 +01:00
|
|
|
if (isTopOfStack(BB))
|
|
|
|
closeControlFlow(BB);
|
2016-02-13 00:45:29 +01:00
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (I.nodeVisited(Term->getSuccessor(1))) {
|
2017-03-15 19:00:12 +01:00
|
|
|
if (isTopOfStack(BB))
|
|
|
|
closeControlFlow(BB);
|
2016-02-13 00:45:29 +01:00
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
handleLoop(Term);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-03-15 19:00:12 +01:00
|
|
|
if (isTopOfStack(BB)) {
|
2012-12-19 23:10:31 +01:00
|
|
|
PHINode *Phi = dyn_cast<PHINode>(Term->getCondition());
|
2017-03-15 19:00:12 +01:00
|
|
|
if (Phi && Phi->getParent() == BB && isElse(Phi)) {
|
2012-12-19 23:10:31 +01:00
|
|
|
insertElse(Term);
|
|
|
|
eraseIfUnused(Phi);
|
|
|
|
continue;
|
|
|
|
}
|
2017-03-15 19:00:12 +01:00
|
|
|
|
|
|
|
closeControlFlow(BB);
|
2012-12-19 23:10:31 +01:00
|
|
|
}
|
2017-03-15 19:00:12 +01:00
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
openIf(Term);
|
|
|
|
}
|
|
|
|
|
2018-01-17 17:30:01 +01:00
|
|
|
if (!Stack.empty()) {
|
|
|
|
// CFG was probably not structured.
|
|
|
|
report_fatal_error("failed to annotate CFG");
|
|
|
|
}
|
|
|
|
|
2012-12-19 23:10:31 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Create the annotation pass
|
2012-12-19 23:10:31 +01:00
|
|
|
FunctionPass *llvm::createSIAnnotateControlFlowPass() {
|
|
|
|
return new SIAnnotateControlFlow();
|
|
|
|
}
|