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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2020-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include "Probe/Assertion.h"
#include "Compiler/Optimizer/OpenCLPasses/PrivateMemory/PrivateMemoryToSLM.hpp"
#include "AdaptorCommon/ImplicitArgs.hpp"
#include "Compiler/IGCPassSupport.h"
#include "Compiler/CodeGenPublic.h"
#include "Compiler/CISACodeGen/GenCodeGenModule.h"
#include "Compiler/ModuleAllocaAnalysis.hpp"
#include "common/debug/Debug.hpp"
#include "llvmWrapper/IR/DataLayout.h"
#include "llvmWrapper/Support/Alignment.h"
#include "llvmWrapper/IR/IRBuilder.h"
#include <fstream>
#include <sstream>
using namespace IGC;
using namespace IGC::IGCMD;
using namespace IGC::Debug;
#define PASS_FLAG "igc-move-private-memory-to-slm"
#define PASS_DESCRIPTION "Move private memory allocations to SLM"
#define PASS_CFG_ONLY true
#define PASS_ANALYSIS false
IGC_INITIALIZE_PASS_BEGIN(PrivateMemoryToSLM, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
IGC_INITIALIZE_PASS_DEPENDENCY(ModuleAllocaAnalysis)
IGC_INITIALIZE_PASS_END(PrivateMemoryToSLM, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
namespace IGC
{
char PrivateMemoryToSLM::ID = 0;
const unsigned int PrivateMemoryToSLM::VALID_LOCAL_HIGH_BITS = 0x10000000;
const unsigned int PrivateMemoryToSLM::SLM_LOCAL_VARIABLE_ALIGNMENT = 4;
const unsigned int PrivateMemoryToSLM::SLM_LOCAL_SIZE_ALIGNMENT = 32;
// Empty constructor to force moving of all eligible allocations.
PrivateMemoryToSLM::PrivateMemoryToSLM(bool enableOptReport /* = false */) :
ModulePass(ID),
m_ForceAll(true),
m_EnableOptReport(enableOptReport)
{
initializePrivateMemoryToSLMPass(*PassRegistry::getPassRegistry());
}
PrivateMemoryToSLM::PrivateMemoryToSLM(std::string forcedBuffers,
bool enableOptReport) :
ModulePass(ID),
m_ForceAll(false),
m_EnableOptReport(enableOptReport)
{
// Parse semocolon-separated list of forced buffers.
const char* SEPARATORS = ";";
std::size_t pos = 0;
std::size_t found;
while ((found = forcedBuffers.find_first_of(SEPARATORS, pos)) != std::string::npos) {
if (found != pos) {
m_ForcedBuffers.push_back(forcedBuffers.substr(pos, found - pos));
pos = found;
}
++pos;
}
if (pos < forcedBuffers.length()) m_ForcedBuffers.push_back(forcedBuffers.substr(pos));
initializePrivateMemoryToSLMPass(*PassRegistry::getPassRegistry());
}
void emitOptReport(std::string report)
{
std::stringstream optReportFile;
optReportFile << IGC::Debug::GetShaderOutputFolder() << "PrivateMemoryToSLM.opt";
std::ofstream optReportStream;
optReportStream.open(optReportFile.str(), std::ios::app);
optReportStream << report;
}
// TODO: Unify with the original predicate from InlineLocalsResolution.cpp
static bool useAsPointerOnly(Value* V) {
IGC_ASSERT_MESSAGE(V->getType()->isPointerTy(), "Expect the input value is a pointer!");
SmallSet<PHINode*, 8> VisitedPHIs;
SmallVector<Value*, 16> WorkList;
WorkList.push_back(V);
StoreInst* ST = nullptr;
PHINode* PN = nullptr;
while (!WorkList.empty()) {
Value* Val = WorkList.pop_back_val();
for (auto* U : Val->users()) {
Operator* Op = dyn_cast<Operator>(U);
if (!Op)
continue;
switch (Op->getOpcode()) {
default:
// Bail out for unknown operations.
return false;
case Instruction::Store:
ST = cast<StoreInst>(U);
// Bail out if it's used as the value operand.
if (ST->getValueOperand() == Val)
return false;
// FALL THROUGH
case Instruction::Load:
// Safe use in LD/ST as pointer only.
continue;
case Instruction::PHI:
PN = cast<PHINode>(U);
// Skip if it's already visited.
if (VisitedPHIs.count(PN))
continue;
VisitedPHIs.insert(PN);
// FALL THROUGH
case Instruction::BitCast:
case Instruction::Select:
case Instruction::GetElementPtr:
// Need to check their usage further.
break;
}
WorkList.push_back(U);
}
}
return true;
}
bool PrivateMemoryToSLM::runOnModule(Module& M)
{
auto* CodeGenCtx = getAnalysis<CodeGenContextWrapper>().getCodeGenContext();
auto* MD = getAnalysis<MetaDataUtilsWrapper>().getMetaDataUtils();
auto* ModuleMD = getAnalysis<MetaDataUtilsWrapper>().getModuleMetaData();
auto DL = M.getDataLayout();
bool modified = false;
for (Module::iterator I = M.begin(); I != M.end(); ++I)
{
Function* F = &*I;
if (F->isDeclaration())
{
continue;
}
SmallVector<AllocaInst*, 8>& allocaInsts = getAnalysis<ModuleAllocaAnalysis>().getAllocaInsts(F);
if (allocaInsts.empty())
{
// No alloca instructions to process.
continue;
}
FunctionInfoMetaDataHandle funcMD = MD->getFunctionsInfoItem(F);
uint64_t xDim = 0;
uint64_t yDim = 0;
uint64_t zDim = 0;
if (CodeGenCtx->type == ShaderType::OPENCL_SHADER)
{
ThreadGroupSizeMetaDataHandle threadGroupSize = funcMD->getThreadGroupSize();
xDim = threadGroupSize->getXDim();
yDim = threadGroupSize->getYDim();
zDim = threadGroupSize->getZDim();
}
else if (CodeGenCtx->type == ShaderType::COMPUTE_SHADER)
{
GlobalVariable* pGlobal = M.getGlobalVariable("ThreadGroupSize_X");
xDim = int_cast<unsigned>(llvm::cast<llvm::ConstantInt>(pGlobal->getInitializer())->getZExtValue());
pGlobal = M.getGlobalVariable("ThreadGroupSize_Y");
yDim = int_cast<unsigned>(llvm::cast<llvm::ConstantInt>(pGlobal->getInitializer())->getZExtValue());
pGlobal = M.getGlobalVariable("ThreadGroupSize_Z");
zDim = int_cast<unsigned>(llvm::cast<llvm::ConstantInt>(pGlobal->getInitializer())->getZExtValue());
}
uint64_t threadsNum = xDim * yDim * zDim;
if (threadsNum == 0)
{
continue;
}
// TODO: Is there an API to request SLM size in the case of OpenCL shader?
// For now implement it the same way as for a compute shader.
ComputeShaderContext* computeCtx = (ComputeShaderContext*)CodeGenCtx;
uint64_t slmSizePerSubslice = computeCtx->GetSlmSizePerSubslice();
// Calculate an offset for new SLM variables.
unsigned int offset = 0;
for (auto offsets : ModuleMD->FuncMD[F].localOffsets)
{
PointerType* ptrType = dyn_cast<PointerType>(offsets.m_Var->getType());
Type* varType = ptrType->getPointerElementType();
offset = iSTD::Align(offset, IGCLLVM::getPreferredAlignValue(&DL, offsets.m_Var));
offset += (unsigned int) DL.getTypeAllocSize(varType);
}
if (m_EnableOptReport)
{
std::stringstream report;
report << "Function" << F->getName().str() << std::endl
<< "Workgroup size: " << threadsNum << ", X: " << xDim << ", Y:" << yDim << ", Z:" << zDim << std::endl
<< "SLM size per subslice: " << slmSizePerSubslice << ", used " << offset << " bytes" << std::endl;
ods() << report.str();
emitOptReport(report.str());
}
// This declaration will invoke constructor of DebugLoc class
// and result in an empty DebugLoc instance, ie with line and scope set to 0.
DebugLoc emptyDebugLoc;
LLVMContext& llvmCtx = F->getContext();
IntegerType* typeInt32 = Type::getInt32Ty(llvmCtx);
ImplicitArgs implicitArgs(*F, MD);
Instruction* pEntryPoint = &(*F->getEntryBlock().getFirstInsertionPt());
for (auto pAI : allocaInsts)
{
bool isForcedBuffer =
std::find(m_ForcedBuffers.begin(),
m_ForcedBuffers.end(),
pAI->getName()) != m_ForcedBuffers.end();
if (m_ForceAll || isForcedBuffer)
{
Type* origType = pAI->getType()->getPointerElementType();
bool isArray = origType->isArrayTy();
Type* eltType = isArray ? origType->getArrayElementType() : origType;
uint64_t numEltsPerThread = isArray ? origType->getArrayNumElements() : 1;
uint64_t numEltsPerWorkgroup = numEltsPerThread * threadsNum;
Type* newType = ArrayType::get(eltType, numEltsPerWorkgroup);
unsigned int allocSize = (unsigned int)DL.getTypeAllocSize(newType);
unsigned int newOffset = offset;
newOffset = iSTD::Align(newOffset, SLM_LOCAL_VARIABLE_ALIGNMENT);
newOffset += allocSize;
newOffset = iSTD::Align(newOffset, SLM_LOCAL_SIZE_ALIGNMENT);
if (newOffset > slmSizePerSubslice)
{
if (m_EnableOptReport)
{
std::stringstream report;
report << "Skip moving a memory allocation " << pAI->getName().str()
<< " of " << allocSize << " bytes"
<< " to SLM, not enough available SLM" << std::endl;
ods() << report.str();
emitOptReport(report.str());
}
continue;
}
if (m_EnableOptReport)
{
std::stringstream report;
report << "Moving a memory allocation " << pAI->getName().str()
<< " of " << allocSize << " bytes"
<< " to SLM, new SLM usage " << newOffset << " bytes" << std::endl;
ods() << report.str();
emitOptReport(report.str());
}
auto slmVar = new GlobalVariable(
M,
newType,
/* isConstant */ false,
GlobalValue::ExternalLinkage,
UndefValue::get(newType),
F->getName() + "." + pAI->getName(),
/* InsertBefore */ nullptr,
GlobalVariable::ThreadLocalMode::NotThreadLocal,
ADDRESS_SPACE_LOCAL);
slmVar->setAlignment(IGCLLVM::getCorrectAlign(SLM_LOCAL_VARIABLE_ALIGNMENT));
slmVar->setDSOLocal(false);
slmVar->setSection("localSLM");
// TODO: optimize on x-y-z values
IGCLLVM::IRBuilder<> builder(pAI);
builder.SetCurrentDebugLocation(emptyDebugLoc);
// totalOffset = localIdX +
// localIdY * dimX +
// localIdZ * dimX * dimY;
Value* dimX = ConstantInt::get(typeInt32, xDim);
Value* dimXY = ConstantInt::get(typeInt32, xDim * yDim);
Value* localIdX = nullptr;
Value* localIdY = nullptr;
Value* localIdZ = nullptr;
if (CodeGenCtx->type == ShaderType::OPENCL_SHADER)
{
localIdX =
ZExtInst::CreateIntegerCast(
implicitArgs.getImplicitArgValue(*F, ImplicitArg::LOCAL_ID_X, MD),
typeInt32,
false,
VALUE_NAME("localIdX"),
pEntryPoint);
localIdY =
ZExtInst::CreateIntegerCast(
implicitArgs.getImplicitArgValue(*F, ImplicitArg::LOCAL_ID_Y, MD),
typeInt32,
false,
VALUE_NAME("localIdY"),
pEntryPoint);
localIdZ =
ZExtInst::CreateIntegerCast(
implicitArgs.getImplicitArgValue(*F, ImplicitArg::LOCAL_ID_Z, MD),
typeInt32,
false,
VALUE_NAME("localIdZ"),
pEntryPoint);
}
else if (CodeGenCtx->type == ShaderType::COMPUTE_SHADER)
{
// * R0
// DWord Bit Description
// R0.1 31:0 Thread Group ID X
// R0.6 31:0 Thread Group ID Y
// R0.7 31:0 Thread Group ID Z
Value* r0Val = implicitArgs.getImplicitArgValue(*F, ImplicitArg::R0, MD);
localIdX =
builder.CreateExtractElement(
r0Val,
ConstantInt::get(typeInt32, 1),
VALUE_NAME("localIdX"));
localIdY =
builder.CreateExtractElement(
r0Val,
ConstantInt::get(typeInt32, 6),
VALUE_NAME("localIdY"));
localIdZ =
builder.CreateExtractElement(
r0Val,
ConstantInt::get(typeInt32, 7),
VALUE_NAME("localIdZ"));
}
Value* xOffset = localIdX;
Value* yOffset =
builder.CreateMul(
dimX,
localIdY,
VALUE_NAME(pAI->getName() + ".yOffset"));
Value* zOffset =
builder.CreateMul(
dimXY,
localIdZ,
VALUE_NAME(pAI->getName() + ".zOffset"));
Value* totalOffset =
builder.CreateAdd(
xOffset,
builder.CreateAdd(
yOffset,
zOffset),
VALUE_NAME(pAI->getName() + ".totalOffset"));
Value* cast = ConstantExpr::getAddrSpaceCast(slmVar, pAI->getType());
Value* ptr = builder.CreateGEP(cast, totalOffset);
pAI->replaceAllUsesWith(ptr);
pAI->eraseFromParent();
// Add new SLM variable offset to MD.
LocalOffsetMD localOffset;
localOffset.m_Var = slmVar;
localOffset.m_Offset = useAsPointerOnly(slmVar) ? (offset & 0xFFFF) : ((offset & 0xFFFF) | VALID_LOCAL_HIGH_BITS);
ModuleMD->FuncMD[F].localOffsets.push_back(localOffset);
// Update total SLM usage MD.
offset = newOffset;
ModuleMD->FuncMD[F].localSize = newOffset;
modified = true;
}
}
}
return modified;
}
}
|