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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2019-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
//===----------------------------------------------------------------------===//
///
/// This is a simple pass intended to do any final transformations before going
/// to the OptimizeIR stage.
///
//===----------------------------------------------------------------------===//
#include "IGC/common/StringMacros.hpp"
#include "RTBuilder.h"
#include "Compiler/IGCPassSupport.h"
#include "iStdLib/utility.h"
#include "common/LLVMUtils.h"
#include "common/LLVMWarningsPush.hpp"
#include <llvm/Transforms/Utils/Local.h>
#include <llvm/IR/InstIterator.h>
#include <llvm/IR/Dominators.h>
#include <llvmWrapper/Support/Alignment.h>
#include "common/LLVMWarningsPop.hpp"
using namespace llvm;
using namespace IGC;
class RayTracingFinalizePass : public ModulePass
{
public:
RayTracingFinalizePass() : ModulePass(ID)
{
initializeRayTracingFinalizePassPass(*PassRegistry::getPassRegistry());
}
bool runOnModule(Module &M) override;
StringRef getPassName() const override
{
return "RayTracingFinalizePass";
}
void getAnalysisUsage(llvm::AnalysisUsage &AU) const override
{
AU.setPreservesCFG();
AU.addRequired<CodeGenContextWrapper>();
AU.addRequired<DominatorTreeWrapperPass>();
}
static char ID;
};
char RayTracingFinalizePass::ID = 0;
// Register pass to igc-opt
#define PASS_FLAG "raytracing-finalize"
#define PASS_DESCRIPTION "Final transformations prior to optimization"
#define PASS_CFG_ONLY false
#define PASS_ANALYSIS false
IGC_INITIALIZE_PASS_BEGIN(RayTracingFinalizePass, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
IGC_INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
IGC_INITIALIZE_PASS_DEPENDENCY(CodeGenContextWrapper)
IGC_INITIALIZE_PASS_END(RayTracingFinalizePass, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
static void removeDups(Value *&V, Instruction* I, BasicBlock& EntryBB)
{
if (V)
{
I->replaceAllUsesWith(V);
I->eraseFromParent();
}
else
{
I->moveBefore(&*EntryBB.getFirstInsertionPt());
V = I;
}
}
bool RayTracingFinalizePass::runOnModule(Module &M)
{
auto *Ctx = static_cast<RayDispatchShaderContext*>(
getAnalysis<CodeGenContextWrapper>().getCodeGenContext());
for (auto& F : M)
{
if (F.isDeclaration())
continue;
Ctx->setShaderHash(&F);
auto& EntryBB = F.getEntryBlock();
auto& DL = M.getDataLayout();
auto& DT = getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
BasicBlock* AsyncBB = nullptr;
SmallVector<Instruction*, 8> Asyncs;
BasicBlock* HotZoneBB = nullptr;
SmallVector<Instruction*, 8> HotZones;
Value* AsyncStackID = nullptr;
Value* GlobalBufferPointer = nullptr;
Value* LocalBufferPointer = nullptr;
for (auto II = inst_begin(&F), IE = inst_end(&F); II != IE; /* empty */)
{
Instruction& I = *II++;
if (auto * LI = dyn_cast<LoadInst>(&I))
{
// Temporary WA to ensure we don't page fault on unaligned
// acceses.
uint32_t Align = (uint32_t)LI->getAlignment();
if (Align == 0)
Align = (uint32_t)DL.getTypeAllocSize(LI->getType());
if (Align >= 8)
LI->setAlignment(IGCLLVM::getCorrectAlign(4));
}
else if (auto * SI = dyn_cast<StoreInst>(&I))
{
// Temporary WA to ensure we don't page fault on unaligned
// acceses.
uint32_t Align = (uint32_t)SI->getAlignment();
if (Align == 0)
Align = (uint32_t)DL.getTypeAllocSize(
SI->getValueOperand()->getType());
if (Align >= 8)
SI->setAlignment(IGCLLVM::getCorrectAlign(4));
}
else if (auto * GII = dyn_cast<GenIntrinsicInst>(&I))
{
// These will be part of the payload. Move them to the entry
// to guarantee they are CSE'd to a single call each.
switch (GII->getIntrinsicID())
{
case GenISAIntrinsic::GenISA_ContinuationSignpost:
{
auto* Signpost = cast<ContinuationSignpostIntrinsic>(GII);
Signpost->replaceAllUsesWith(Signpost->getFrameAddr());
Signpost->eraseFromParent();
break;
}
case GenISAIntrinsic::GenISA_PayloadPtr:
{
auto* Payload = cast<PayloadPtrIntrinsic>(GII);
Payload->replaceAllUsesWith(Payload->getPayloadPtr());
Payload->eraseFromParent();
break;
}
case GenISAIntrinsic::GenISA_AsyncStackID:
removeDups(AsyncStackID, GII, EntryBB);
break;
case GenISAIntrinsic::GenISA_GlobalBufferPointer:
removeDups(GlobalBufferPointer, GII, EntryBB);
break;
case GenISAIntrinsic::GenISA_LocalBufferPointer:
removeDups(LocalBufferPointer, GII, EntryBB);
break;
case GenISAIntrinsic::GenISA_AsyncStackPtr:
Asyncs.push_back(GII);
if (!AsyncBB)
{
AsyncBB = GII->getParent();
}
else
{
AsyncBB = DT.findNearestCommonDominator(
AsyncBB, GII->getParent());
}
break;
case GenISAIntrinsic::GenISA_SWHotZonePtr:
HotZones.push_back(GII);
if (!HotZoneBB)
{
HotZoneBB = GII->getParent();
}
else
{
HotZoneBB = DT.findNearestCommonDominator(
HotZoneBB, GII->getParent());
}
break;
default:
break;
}
}
}
if (AsyncBB)
{
RTBuilder RTB(&*AsyncBB->getFirstInsertionPt(), *Ctx);
Value* AsyncStackPtr =
RTB.getAsyncStackPointer(true);
for (auto* I : Asyncs)
{
I->replaceAllUsesWith(AsyncStackPtr);
I->eraseFromParent();
}
}
if (HotZoneBB)
{
RTBuilder RTB(&*HotZoneBB->getFirstInsertionPt(), *Ctx);
Value* SWHotZonePtr = RTB.getSWHotZonePointer(true);
for (auto* I : HotZones)
{
I->replaceAllUsesWith(SWHotZonePtr);
I->eraseFromParent();
}
}
}
return true;
}
namespace IGC
{
Pass* createRayTracingFinalizePass(void)
{
return new RayTracingFinalizePass();
}
} // namespace IGC
|