1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
/*========================== begin_copyright_notice ============================
This file is distributed under the University of Illinois Open Source License.
See LICENSE.TXT for details.
============================= end_copyright_notice ===========================*/
#pragma once
#include "common/LLVMWarningsPush.hpp"
#include <llvm/Analysis/PostDominators.h>
#include <llvm/Analysis/LoopInfo.h>
#include "common/LLVMWarningsPop.hpp"
namespace IGC {
#define CODE_SINKING_MIN_SIZE 32
class CodeSinking : public llvm::FunctionPass {
llvm::DominatorTree* DT;
llvm::PostDominatorTree* PDT;
llvm::LoopInfo* LI;
const llvm::DataLayout* DL; // to estimate register pressure
CodeGenContext* CTX;
public:
static char ID; // Pass identification
CodeSinking(bool generalSinking = false);
virtual bool runOnFunction(llvm::Function& F) override;
virtual void getAnalysisUsage(llvm::AnalysisUsage& AU) const override {
AU.setPreservesCFG();
AU.addRequired<llvm::DominatorTreeWrapperPass>();
AU.addRequired<llvm::PostDominatorTreeWrapperPass>();
AU.addRequired<llvm::LoopInfoWrapperPass>();
AU.addRequired<CodeGenContextWrapper>();
AU.addPreserved<llvm::DominatorTreeWrapperPass>();
AU.addPreserved<llvm::PostDominatorTreeWrapperPass>();
AU.addPreserved<llvm::LoopInfoWrapperPass>();
}
private:
bool ProcessBlock(llvm::BasicBlock& blk);
bool SinkInstruction(llvm::Instruction* I,
llvm::SmallPtrSetImpl<llvm::Instruction*>& Stores,
bool ForceToReducePressure);
bool AllUsesDominatedByBlock(llvm::Instruction* inst,
llvm::BasicBlock* blk,
llvm::SmallPtrSetImpl<llvm::Instruction*>& usesInBlk) const;
bool FindLowestSinkTarget(llvm::Instruction* inst,
llvm::BasicBlock*& blk,
llvm::SmallPtrSetImpl<llvm::Instruction*>& usesInBlk, bool& outerLoop,
bool doLoopSink);
bool isSafeToMove(llvm::Instruction* inst,
bool& reducePressure, bool& hasAliasConcern,
llvm::SmallPtrSetImpl<llvm::Instruction*>& Stores);
/// local processing
bool LocalSink(llvm::BasicBlock* blk);
/// data members for local-sinking
llvm::SmallPtrSet<llvm::BasicBlock*, 8> localBlkSet;
llvm::SmallPtrSet<llvm::Instruction*, 8> localInstSet;
/// data members for undo
std::vector<llvm::Instruction*> movedInsts;
std::vector<llvm::Instruction*> undoLocas;
/// counting the number of gradient/sample operation sinked into CF
unsigned totalGradientMoved;
unsigned numGradientMovedOutBB;
bool generalCodeSinking;
// diagnosis variable: int numChanges;
// Keep track of fat loop. Might need to reverse LICM if
// a loop has excessive register-pressure at its preheader because
// there are a lot of loop-invariant insts that have been moved
// out of the loop.
std::vector<llvm::Loop*> m_fatLoops;
std::vector<uint32_t> m_fatLoopPressures;
// try to hoist phi nodes with congruent incoming values
typedef std::pair<llvm::Instruction*, llvm::Instruction*> InstPair;
typedef smallvector<llvm::Instruction*, 4> InstVec;
void appendIfNotExist(InstPair src, std::vector<InstPair> &instMap)
{
if (std::find(instMap.begin(), instMap.end(), src) == instMap.end())
{
instMap.push_back(src);
}
}
void appendIfNotExist(InstVec& dst, llvm::Instruction* inst)
{
if (std::find(dst.begin(), dst.end(), inst) == dst.end())
{
dst.push_back(inst);
}
}
void appendIfNotExist(InstVec& dst, InstVec& src)
{
for (auto* I : src)
{
appendIfNotExist(dst, I);
}
}
// check if two values are congruent (derived from same values), and
// record all intermediate results in vector.
bool checkCongruent(std::vector<InstPair> &instMap, const InstPair& values, InstVec& leaves, unsigned depth);
/**
* Detech phi with congruent incoming values, and try to hoist them to
* dominator. In some cases, GVN may leave code like this and increase
* register pressure.
*/
bool hoistCongruentPhi(llvm::PHINode* phi);
bool hoistCongruentPhi(llvm::Function& F);
llvm::Loop* findLoopAsPreheader(llvm::BasicBlock& blk);
// move LI back into loops
bool loopSink(llvm::Loop* LoopWithPressure, bool SinkMultipleLevel);
// pre-condition to sink an instruction into a loop
bool canLoopSink(llvm::Instruction* I, llvm::Loop* L);
bool LoopSinkInstructions(
llvm::SmallVector<llvm::Instruction*, 64> sinkCandidates, llvm::Loop* L);
// Move referencing DbgValueInst intrinsics calls after defining instructions
void ProcessDbgValueInst(llvm::BasicBlock& blk);
};
void initializeCodeSinkingPass(llvm::PassRegistry&);
}
|