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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2019-2024 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include "Compiler/Optimizer/OpenCLPasses/Decompose2DBlockFuncs/Decompose2DBlockFuncs.hpp"
#include <llvm/Analysis/LoopInfo.h>
#include <llvm/IR/Function.h>
#include <llvm/IR/InstVisitor.h>
#include <llvm/IR/Instructions.h>
#include <llvm/Pass.h>
#include <algorithm>
#include <limits>
#include <sstream>
#include <string>
#include "Compiler/CodeGenPublic.h"
#include "Compiler/IGCPassSupport.h"
#include "Compiler/MetaDataUtilsWrapper.h"
#include "Compiler/Optimizer/OCLBIUtils.h"
#include "IGC/common/StringMacros.hpp"
#include "IGC/common/Types.hpp"
#include "Probe/Assertion.h"
#include "visa_igc_common_header.h"
using namespace llvm;
using namespace IGC;
#define DEBUG_TYPE "decompose-2d-block-funcs"
namespace {
/// @brief IOBlock2DFuncsTranslation pass : translate IGC 2D block intrinsics
/// into several intrinsics which can be optimized further. More
/// specifically, this pass turns LSC2DBlock{Read, Write, Prefetch} into
/// 1. LSC2DBlockCreateAddrPayload: The payload initialization
/// 2. LSC2DBlockSetAddrPayloadField x 2: Set payload X and Y offsets
/// 3. LSC2DBlock{Read, Write, Prefetch}AddrPayload: Perform the
/// read/write/prefetch operation
class Decompose2DBlockFuncs : public FunctionPass,
public InstVisitor<Decompose2DBlockFuncs> {
public:
// Pass identification, replacement for typeid
static char ID;
Decompose2DBlockFuncs();
/// @brief Provides name of pass
virtual StringRef getPassName() const override {
return "Decompose2DBlockFuncs";
}
void getAnalysisUsage(AnalysisUsage& AU) const override {
AU.addRequired<CodeGenContextWrapper>();
AU.addRequired<LoopInfoWrapperPass>();
AU.addRequired<MetaDataUtilsWrapper>();
// AU.addRequired<ScalarEvolutionWrapperPass>();
}
virtual bool runOnFunction(Function& F) override;
void visitCallInst(CallInst& CI);
private:
///////////////////////////////////////////////////////////////////////
/// Helpers
///////////////////////////////////////////////////////////////////////
//// Gets an i32 with a given value
Constant* getConstantInt32(int Value, CallInst& CI) const {
Type* i32{Type::getInt32Ty(CI.getContext())};
return ConstantInt::get(i32, Value, true);
}
/// Indicates if the pass changed the processed function
bool m_changed{};
CodeGenContext* CGC{};
LoopInfo* LI{};
// Store the values of the IGC I/O builtins in this class
class InputValues {
public:
Value* ImOffset;
Value* ImWidth;
Value* ImHeight;
Value* ImPitch;
Value* OffsetX;
Value* OffsetY;
Value* ElemSize;
Value* TileWidth;
Value* TileHeight;
Value* VNumBlocks;
Value* Transpose;
Value* VNNITrans;
Value* CacheControls;
Value* Data;
Value* IsAddend;
InputValues() = default;
InputValues(const GenIntrinsicInst& GII) {
const auto GIISize{GII.arg_size()};
IGC_ASSERT_MESSAGE(GIISize == 13 || GIISize == 14,
"LSC blocks have 13 or 14 params.");
ImOffset = GII.getArgOperand(0);
ImWidth = GII.getArgOperand(1);
ImHeight = GII.getArgOperand(2);
ImPitch = GII.getArgOperand(3);
OffsetX = GII.getArgOperand(4);
OffsetY = GII.getArgOperand(5);
ElemSize = GII.getArgOperand(6);
TileWidth = GII.getArgOperand(7);
TileHeight = GII.getArgOperand(8);
VNumBlocks = GII.getArgOperand(9);
Transpose = GII.getArgOperand(10);
VNNITrans = GII.getArgOperand(11);
CacheControls = GII.getArgOperand(12);
if (GIISize == 14) {
Data = GII.getArgOperand(13);
}
// FIXME: Support using addend in the future
IsAddend = ConstantInt::get(Type::getInt1Ty(GII.getContext()), false);
}
};
CallBase* createPayload(GenIntrinsicInst& GII, const InputValues& IV,
const SmallVector<Loop*, 4>& ParentLoops) const;
template <IGC::BlockField Field>
CallInst* createSetAdd(GenIntrinsicInst& GII, const InputValues& IV,
Instruction* Payload) const;
Instruction* createPayloadIO(GenIntrinsicInst& GII, const InputValues& IV,
Instruction* Payload) const;
const SmallVector<Loop*, 4> innerToOuterLoops(const BasicBlock& BB) const;
};
} // namespace
char Decompose2DBlockFuncs::ID{0};
// Register pass to igc-opt
#define PASS_FLAG "decompose-2d-block-funcs"
#define PASS_DESCRIPTION \
"Decompose 2D block IO intrinsics into smaller chunks to increase " \
"optimization opportunities"
#define PASS_CFG_ONLY false
#define PASS_ANALYSIS false
IGC_INITIALIZE_PASS_BEGIN(Decompose2DBlockFuncs, PASS_FLAG, PASS_DESCRIPTION,
PASS_CFG_ONLY, PASS_ANALYSIS)
IGC_INITIALIZE_PASS_DEPENDENCY(CodeGenContextWrapper)
IGC_INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
IGC_INITIALIZE_PASS_DEPENDENCY(MetaDataUtilsWrapper)
IGC_INITIALIZE_PASS_END(Decompose2DBlockFuncs, PASS_FLAG, PASS_DESCRIPTION,
PASS_CFG_ONLY, PASS_ANALYSIS)
Decompose2DBlockFuncs::Decompose2DBlockFuncs() : FunctionPass(ID) {
initializeDecompose2DBlockFuncsPass(*PassRegistry::getPassRegistry());
}
bool Decompose2DBlockFuncs::runOnFunction(Function& F) {
LLVM_DEBUG(dbgs() << "Running " << getPassName() << "\n");
CGC = getAnalysis<CodeGenContextWrapper>().getCodeGenContext();
LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
m_changed = false;
visit(F);
return m_changed;
}
CallBase* Decompose2DBlockFuncs::createPayload(
GenIntrinsicInst& GII, const InputValues& IV,
const SmallVector<Loop*, 4>& ParentLoops) const {
LLVM_DEBUG(dbgs() << "Creating payload.\n");
std::array<Value*, 9> BlockCreateAddrPayloadArgs;
BlockCreateAddrPayloadArgs[0] = IV.ImOffset;
BlockCreateAddrPayloadArgs[1] = IV.ImWidth;
BlockCreateAddrPayloadArgs[2] = IV.ImHeight;
BlockCreateAddrPayloadArgs[3] = IV.ImPitch;
BlockCreateAddrPayloadArgs[4] =
getConstantInt32(0, GII); // FIXME: Could be better X offset
BlockCreateAddrPayloadArgs[5] =
getConstantInt32(0, GII); // FIXME: Could be better Y offset
BlockCreateAddrPayloadArgs[6] = IV.TileWidth;
BlockCreateAddrPayloadArgs[7] = IV.TileHeight;
BlockCreateAddrPayloadArgs[8] = IV.VNumBlocks;
// Check that innermost loop with GII does not affect the parameters of the
// payload
for (auto V : BlockCreateAddrPayloadArgs) {
if (!ParentLoops[0]->isLoopInvariant(V)) {
LLVM_DEBUG(dbgs() << "Early exit creation of payload, since there is a "
"loop-variant operation.\n");
return nullptr;
}
}
// FIXME: Unify calls with identical parameters using the BlockCopyAddrPayload
// intrinsic
Function* BlockCreateFunc{GenISAIntrinsic::getDeclaration(
GII.getCalledFunction()->getParent(),
GenISAIntrinsic::GenISA_LSC2DBlockCreateAddrPayload,
Type::getInt32Ty(GII.getContext())->getPointerTo())};
// FIXME
// We can only set this since we know with certainty that the associated
// LSC2DBlockSetAddrPayloadField are not in the mode true : AP[arg1] += arg2
// (i.e., arg3 = false)
if (cast<llvm::ConstantInt>(IV.IsAddend)->isZero()) {
BlockCreateFunc->removeFnAttr(llvm::Attribute::WriteOnly);
BlockCreateFunc->removeFnAttr(llvm::Attribute::InaccessibleMemOnly);
BlockCreateFunc->addFnAttr(llvm::Attribute::Speculatable);
BlockCreateFunc->addFnAttr(
llvm::Attribute::ReadNone); // = setDoesNotAccessMemory();
}
return CallInst::Create(BlockCreateFunc, BlockCreateAddrPayloadArgs,
"Block2D_AddrPayload", &GII);
}
template <IGC::BlockField Field>
CallInst* Decompose2DBlockFuncs::createSetAdd(GenIntrinsicInst& GII,
const InputValues& IV,
Instruction* Payload) const {
static_assert(Field == IGC::BlockField::BLOCKX ||
Field == IGC::BlockField::BLOCKY);
constexpr bool IsBlockX{Field == IGC::BlockField::BLOCKX};
LLVM_DEBUG(
dbgs() << "Creating LSC2DBlockSetAddrPayloadField intrinsic for block "
<< (IsBlockX ? "x" : "y") << "\n");
Value* OffsetVal{nullptr};
if constexpr (IsBlockX)
OffsetVal = IV.OffsetX;
else
OffsetVal = IV.OffsetY;
std::array<Value*, 4> SetAddrPayloadArgs;
SetAddrPayloadArgs[0] = Payload;
SetAddrPayloadArgs[1] = ConstantInt::get(Type::getInt32Ty(GII.getContext()),
static_cast<int>(Field));
SetAddrPayloadArgs[2] = OffsetVal;
SetAddrPayloadArgs[3] = IV.IsAddend;
std::array Tys{Payload->getType(), OffsetVal->getType()};
Function* BlockSetAddrFunc{GenISAIntrinsic::getDeclaration(
GII.getCalledFunction()->getParent(),
GenISAIntrinsic::GenISA_LSC2DBlockSetAddrPayloadField, Tys)};
// We can only set this since we know with certainty that the associated
// LSC2DBlockSetAddrPayloadField are not in the mode true : AP[arg1] += arg2
// (i.e., arg3 = false)
if (cast<llvm::ConstantInt>(IV.IsAddend)->isZero()) {
BlockSetAddrFunc->removeFnAttr(llvm::Attribute::ReadOnly);
BlockSetAddrFunc->addFnAttr(
llvm::Attribute::WriteOnly); // = setOnlyWritesMemory();
}
return CallInst::Create(BlockSetAddrFunc, SetAddrPayloadArgs, "", &GII);
}
// Create read, write, prefetch
Instruction* Decompose2DBlockFuncs::createPayloadIO(
GenIntrinsicInst& GII, const InputValues& IV, Instruction* Payload) const {
SmallVector<Value*, 10> BlockAddrPayloadArgs;
BlockAddrPayloadArgs.push_back(Payload);
// FIXME: This can be more optimal by not always setting these to zero
BlockAddrPayloadArgs.push_back(getConstantInt32(0, GII));
BlockAddrPayloadArgs.push_back(getConstantInt32(0, GII));
BlockAddrPayloadArgs.push_back(IV.ElemSize);
BlockAddrPayloadArgs.push_back(IV.TileWidth);
BlockAddrPayloadArgs.push_back(IV.TileHeight);
BlockAddrPayloadArgs.push_back(IV.VNumBlocks);
BlockAddrPayloadArgs.push_back(IV.Transpose);
BlockAddrPayloadArgs.push_back(IV.VNNITrans);
BlockAddrPayloadArgs.push_back(IV.CacheControls);
auto IT{GII.getIntrinsicID()};
// Write intrinsic also takes a "data" parameter
if (IT == GenISAIntrinsic::GenISA_LSC2DBlockWrite)
BlockAddrPayloadArgs.push_back(IV.Data);
CallInst* IOCallInst{};
switch (IT) {
case GenISAIntrinsic::GenISA_LSC2DBlockRead: {
LLVM_DEBUG(dbgs() << "Creating read intrinsic\n");
std::array<Type*, 2> Tys{
GII.getType(), Type::getInt32Ty(GII.getContext())->getPointerTo()};
Function* BlockAddrFunc{GenISAIntrinsic::getDeclaration(
GII.getCalledFunction()->getParent(),
GenISAIntrinsic::GenISA_LSC2DBlockReadAddrPayload, Tys)};
IOCallInst = CallInst::Create(BlockAddrFunc, BlockAddrPayloadArgs,
"Block2D_ReadAddrPayload", &GII);
break;
}
case GenISAIntrinsic::GenISA_LSC2DBlockWrite: {
LLVM_DEBUG(dbgs() << "Creating write intrinsic\n");
std::array<Type*, 2> Tys{Payload->getType(), IV.Data->getType()};
Function* BlockAddrFunc{GenISAIntrinsic::getDeclaration(
GII.getCalledFunction()->getParent(),
GenISAIntrinsic::GenISA_LSC2DBlockWriteAddrPayload, Tys)};
IOCallInst =
CallInst::Create(BlockAddrFunc, BlockAddrPayloadArgs, "", &GII);
break;
}
case GenISAIntrinsic::GenISA_LSC2DBlockPrefetch: {
LLVM_DEBUG(dbgs() << "Creating prefetch intrinsic\n");
Function* BlockAddrFunc{GenISAIntrinsic::getDeclaration(
GII.getCalledFunction()->getParent(),
GenISAIntrinsic::GenISA_LSC2DBlockPrefetchAddrPayload,
Payload->getType())};
IOCallInst =
CallInst::Create(BlockAddrFunc, BlockAddrPayloadArgs, "", &GII);
break;
}
default:
llvm_unreachable("Not read, write, or prefetch!");
}
return IOCallInst;
}
const SmallVector<Loop*, 4> Decompose2DBlockFuncs::innerToOuterLoops(
const BasicBlock& BB) const {
SmallVector<Loop*, 4> Loops;
Loop* ParentLoop{LI->getLoopFor(&BB)};
while (ParentLoop != nullptr) {
Loops.push_back(ParentLoop);
ParentLoop = ParentLoop->getParentLoop();
}
return Loops;
}
void Decompose2DBlockFuncs::visitCallInst(CallInst& CI) {
// LSC is not supported/enabled
if (!CGC->platform.hasLSC()) {
LLVM_DEBUG(dbgs() << "LSC not supported on this platform.\n");
return;
}
/// Process LCS intrinsics
Function* CurrInstFunc{CI.getCalledFunction()};
if (!CurrInstFunc) return;
LLVM_DEBUG(dbgs() << "Encountered CI " << CurrInstFunc->getName() << ".\n");
const auto Loops{innerToOuterLoops(*CI.getParent())};
if (Loops.empty()) {
LLVM_DEBUG(dbgs() << "CI not in loop.\n");
return;
}
auto* GII{dyn_cast<GenIntrinsicInst>(&CI)};
if (!GII) {
LLVM_DEBUG(dbgs() << "CI not a GenIntrinsicInst.\n");
return;
}
auto ID{GII->getIntrinsicID()};
// FIXME: Currently disabling expanding prefetch instructions, since there
// are performance drops associated with it.
if (ID != GenISAIntrinsic::GenISA_LSC2DBlockRead &&
ID != GenISAIntrinsic::GenISA_LSC2DBlockWrite /*&&
ID != GenISAIntrinsic::GenISA_LSC2DBlockPrefetch*/) {
// Not a read, write, or prefetch command so there is nothing to do with
// this GII
LLVM_DEBUG(dbgs() << "GenIntrinsicInst not a read, write, or prefetch.\n");
return;
}
// Grab the args of GII, add to IV
InputValues IV(*GII);
// All reads, writes or prefetches have a payload, so we can build one. If the
// payload would be loop dependent, we should give up at this point. In this
// case, we return a nullptr.
CallBase* Payload{createPayload(*GII, IV, Loops)};
if (!Payload) {
LLVM_DEBUG(dbgs() << "Payload intrinsic would not be loop invariant; no "
"need to decompose original intrinsic.\n");
return;
}
CallInst* SetAddX{createSetAdd<IGC::BlockField::BLOCKX>(*GII, IV, Payload)};
CallInst* SetAddY{createSetAdd<IGC::BlockField::BLOCKY>(*GII, IV, Payload)};
Instruction* IOInst{createPayloadIO(*GII, IV, Payload)};
const DebugLoc& DL{GII->getDebugLoc()};
Payload->setDebugLoc(DL);
if (SetAddX) SetAddX->setDebugLoc(DL);
if (SetAddY) SetAddY->setDebugLoc(DL);
IOInst->setDebugLoc(DL);
GII->replaceAllUsesWith(IOInst);
GII->eraseFromParent();
LLVM_DEBUG(dbgs() << "Done.\n");
m_changed = true;
}
FunctionPass* IGC::createDecompose2DBlockFuncsPass() {
return new Decompose2DBlockFuncs();
}
|