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
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
//
/// GenXRematerialization
/// ---------------------
///
/// This pass performs rematerialization to reduce register pressure.
///
//===----------------------------------------------------------------------===//
#include "GenX.h"
#include "GenXBaling.h"
#include "GenXLiveness.h"
#include "GenXModule.h"
#include "GenXNumbering.h"
#include "GenXPressureTracker.h"
#include "GenXUtil.h"
#include "llvm/Pass.h"
#include "Probe/Assertion.h"
using namespace llvm;
using namespace genx;
namespace {
class GenXRematerialization : public FGPassImplInterface,
public IDMixin<GenXRematerialization> {
GenXBaling *Baling = nullptr;
GenXLiveness *Liveness = nullptr;
GenXNumbering *Numbering = nullptr;
bool Modified = false;
public:
explicit GenXRematerialization() {}
static StringRef getPassName() { return "GenX rematerialization pass"; }
static void getAnalysisUsage(AnalysisUsage &AU);
bool runOnFunctionGroup(FunctionGroup &FG) override;
private:
void remat(Function *F, PressureTracker &RP);
};
} // namespace
namespace llvm {
void initializeGenXRematerializationWrapperPass(PassRegistry &);
using GenXRematerializationWrapper =
FunctionGroupWrapperPass<GenXRematerialization>;
} // namespace llvm
INITIALIZE_PASS_BEGIN(GenXRematerializationWrapper,
"GenXRematerializationWrapper",
"GenXRematerializationWrapper", false, false)
INITIALIZE_PASS_DEPENDENCY(GenXGroupBalingWrapper)
INITIALIZE_PASS_DEPENDENCY(GenXLivenessWrapper)
INITIALIZE_PASS_DEPENDENCY(GenXNumberingWrapper)
INITIALIZE_PASS_END(GenXRematerializationWrapper,
"GenXRematerializationWrapper",
"GenXRematerializationWrapper", false, false)
ModulePass *llvm::createGenXRematerializationWrapperPass() {
initializeGenXRematerializationWrapperPass(*PassRegistry::getPassRegistry());
return new GenXRematerializationWrapper;
}
void GenXRematerialization::getAnalysisUsage(AnalysisUsage &AU) {
AU.addRequired<GenXGroupBaling>();
AU.addRequired<GenXLiveness>();
AU.addRequired<GenXNumbering>();
AU.addPreserved<GenXModule>();
AU.addPreserved<FunctionGroupAnalysis>();
AU.setPreservesCFG();
}
bool GenXRematerialization::runOnFunctionGroup(FunctionGroup &FG) {
if (skipOptWithLargeBlock(FG))
return false;
Modified = false;
Baling = &getAnalysis<GenXGroupBaling>();
Liveness = &getAnalysis<GenXLiveness>();
Numbering = &getAnalysis<GenXNumbering>();
const auto &DL = FG.getModule()->getDataLayout();
PressureTracker RP(DL, FG, Liveness);
for (auto fgi = FG.begin(), fge = FG.end(); fgi != fge; ++fgi)
remat(*fgi, RP);
return Modified;
}
void GenXRematerialization::remat(Function *F, PressureTracker &RP) {
// Collect rematerialization candidates.
std::vector<Use *> Candidates;
for (auto &BB : F->getBasicBlockList()) {
for (auto &Inst : BB.getInstList()) {
// (1) upward cast
if (auto CI = dyn_cast<CastInst>(&Inst)) {
if (CI->getOpcode() != Instruction::UIToFP &&
CI->getOpcode() != Instruction::SIToFP)
continue;
if (!CI->getType()->isVectorTy())
continue;
if (CI->getSrcTy()->getScalarSizeInBits() >=
CI->getDestTy()->getScalarSizeInBits())
continue;
if (Inst.isUsedOutsideOfBlock(&BB) || !Inst.hasNUsesOrMore(3))
continue;
LiveRange *LR = Liveness->getLiveRangeOrNull(CI);
if (!LR || LR->value_size() != 1)
continue;
IGC_ASSERT(LR->value_begin()->getValue() == CI);
unsigned B = Numbering->getNumber(CI);
for (auto &U : CI->uses()) {
auto UI = U.getUser();
unsigned E = Numbering->getNumber(UI);
if (E > B && RP.intersectWithRedRegion(B, E))
Candidates.push_back(&U);
}
}
}
}
// Do rematerialization.
for (auto U : Candidates) {
Instruction *Inst = cast<Instruction>(U->get());
Instruction *UI = cast<Instruction>(U->getUser());
Instruction *Clone = Inst->clone();
Clone->insertBefore(UI);
U->set(Clone);
Modified = true;
}
}
|