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
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include "PreprocessSPVIR.h"
#include "Compiler/IGCPassSupport.h"
#include "common/LLVMWarningsPush.hpp"
#include "llvmWrapper/IR/DerivedTypes.h"
#include "llvmWrapper/IR/Instructions.h"
#include <llvm/IR/Module.h>
#include <llvm/IR/Function.h>
#include <llvm/IR/Instructions.h>
#include <llvm/Demangle/Demangle.h>
#include <llvm/IR/Mangler.h>
#include <llvm/Support/Regex.h>
#include "common/LLVMWarningsPop.hpp"
#include "common/BuiltinTypes.h"
#include <regex>
#include <unordered_set>
using namespace llvm;
using namespace IGC;
// Register pass to igc-opt
#define PASS_FLAG "igc-preprocess-spvir"
#define PASS_DESCRIPTION "Adjust SPV-IR produced by Khronos SPIRV-LLVM Translator to be consumable by IGC BiFModule"
#define PASS_CFG_ONLY false
#define PASS_ANALYSIS false
IGC_INITIALIZE_PASS_BEGIN(PreprocessSPVIR, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
IGC_INITIALIZE_PASS_END(PreprocessSPVIR, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
char PreprocessSPVIR::ID = 0;
PreprocessSPVIR::PreprocessSPVIR() : ModulePass(ID) { initializePreprocessSPVIRPass(*PassRegistry::getPassRegistry()); }
void PreprocessSPVIR::createCallAndReplace(CallInst &oldCallInst, StringRef newFuncName, std::vector<Value *> &args) {
Function *F = oldCallInst.getCalledFunction();
IGC_ASSERT(F);
std::vector<Type *> argTypes;
for (auto arg : args)
argTypes.push_back(arg->getType());
FunctionType *FT = FunctionType::get(oldCallInst.getType(), argTypes, false);
auto *newFunction = cast<Function>(m_Module->getOrInsertFunction(newFuncName, FT, F->getAttributes()));
newFunction->setCallingConv(F->getCallingConv());
CallInst *newCall = CallInst::Create(newFunction, args, "", &oldCallInst);
newCall->setCallingConv(oldCallInst.getCallingConv());
newCall->setAttributes(oldCallInst.getAttributes());
oldCallInst.replaceAllUsesWith(newCall);
}
// Replace functions like:
// i32 @_Z18__spirv_ocl_printfPU3AS2c(i8 addrspace(2)*)
// i32 @_Z18__spirv_ocl_printfPU3AS2ci(i8 addrspace(2)*, i32)
// With:
// i32 @printf(i8 addrspace(2)*, ...)
//
// Khronos SPV-IR represents printf function as a non-variadic one. Since
// IGC supports clang-consistent representation of printf (which is unmangled,
// variadic function), all printf calls must get replaced.
void PreprocessSPVIR::visitOpenCLEISPrintf(llvm::CallInst &CI) {
FunctionType *FT = FunctionType::get(CI.getType(), Type::getInt8PtrTy(m_Module->getContext(), 2), true);
Function *newPrintf = cast<Function>(m_Module->getOrInsertFunction("printf", FT));
CI.setCalledFunction(newPrintf);
m_changed = true;
}
bool PreprocessSPVIR::isSPVIR(StringRef funcName) {
bool is_regular_pattern = Regex("_Z[0-9]+__spirv_[A-Z].*").match(funcName);
bool is_eis_pattern = Regex("_Z[0-9]+__spirv_ocl_[a-z].*").match(funcName);
return is_regular_pattern || is_eis_pattern;
}
bool PreprocessSPVIR::hasArrayArg(llvm::Function &F) {
for (auto &Arg : F.args()) {
if (Arg.getType()->isArrayTy())
return true;
}
return false;
}
void PreprocessSPVIR::processBuiltinsWithArrayArguments(llvm::Function &F) {
if (F.user_empty())
return;
IGC_ASSERT(F.hasName());
StringRef origName = F.getName();
// add postfix to original function name, since new function with original
// name and different arguments types is going to be created
F.setName(origName + ".old");
std::unordered_set<CallInst *> callInstsToErase;
for (auto *user : F.users()) {
if (auto *CI = dyn_cast<CallInst>(user)) {
std::vector<Value *> newArgs;
for (auto &arg : CI->args()) {
auto *T = arg->getType();
if (!T->isArrayTy()) {
// leave non-array arguments unchanged
newArgs.push_back(arg);
continue;
}
auto FBegin = CI->getFunction()->begin()->getFirstInsertionPt();
auto *Alloca = new AllocaInst(T, 0, "", &(*FBegin));
new StoreInst(arg, Alloca, false, CI);
auto *Zero = ConstantInt::getNullValue(Type::getInt32Ty(T->getContext()));
Value *Index[] = {Zero, Zero};
auto *GEP = GetElementPtrInst::CreateInBounds(T, Alloca, Index, "", CI);
newArgs.push_back(GEP);
}
createCallAndReplace(*CI, origName, newArgs);
callInstsToErase.insert(CI);
}
}
for (auto *CI : callInstsToErase)
CI->eraseFromParent();
F.eraseFromParent();
m_changed = true;
}
void PreprocessSPVIR::processBuiltinsWithArrayArguments() {
for (auto &F : make_early_inc_range(m_Module->functions())) {
if (F.hasName() && F.isDeclaration()) {
StringRef Name = F.getName();
if (hasArrayArg(F) && isSPVIR(Name)) {
if (Name.contains("BuildNDRange")) {
processBuiltinsWithArrayArguments(F);
}
}
}
}
}
void PreprocessSPVIR::visitCallInst(CallInst &CI) {
Function *F = CI.getCalledFunction();
if (!F)
return;
StringRef Name = F->getName();
if (!isSPVIR(Name))
return;
if (Name.contains("printf")) {
visitOpenCLEISPrintf(CI);
}
}
static void fixKernelArgBaseTypes(Module &M) {
LLVMContext &Ctx = M.getContext();
for (Function &F : M) {
if (F.isDeclaration())
continue;
MDNode *TyMD = F.getMetadata("kernel_arg_type");
MDNode *BaseMD = F.getMetadata("kernel_arg_base_type");
if (!TyMD)
continue;
if (!BaseMD) {
// OpenCL base type node missing, copy all.
F.setMetadata("kernel_arg_base_type", TyMD);
continue;
}
unsigned N = TyMD->getNumOperands();
if (BaseMD->getNumOperands() != N) {
// Mismatched sizes.
continue;
}
bool NeedPatch = false;
SmallVector<Metadata *, 8> NewBase;
NewBase.reserve(N);
for (unsigned i = 0; i < N; ++i) {
auto *TyStr = dyn_cast<MDString>(TyMD->getOperand(i));
auto *BaseStr = dyn_cast<MDString>(BaseMD->getOperand(i));
// Keep original if found non‑MDString.
if (!TyStr || !BaseStr) {
NewBase.push_back(BaseMD->getOperand(i));
continue;
}
StringRef Ty = TyStr->getString();
StringRef Base = BaseStr->getString();
if (Ty.endswith("_t") && Ty != Base) {
NeedPatch = true;
NewBase.push_back(MDString::get(Ctx, Ty));
} else {
NewBase.push_back(BaseStr);
}
}
if (NeedPatch) {
MDNode *Patched = MDNode::get(Ctx, NewBase);
F.setMetadata("kernel_arg_base_type", Patched);
}
}
}
bool PreprocessSPVIR::runOnModule(Module &M) {
m_Module = static_cast<IGCLLVM::Module *>(&M);
IRBuilder<> builder(M.getContext());
m_Builder = &builder;
// Change arguments with array type to pointer type to match signature
// produced by Clang.
processBuiltinsWithArrayArguments();
visit(M);
// Ensure that every OpenCL builtin type (*_t) listed in !kernel_arg_type is
// also present in !kernel_arg_base_type at the same position. Some
// frontends with partial TargetExtTy support emit pointer types in
// !kernel_arg_base_type (instead of an actual OpenCL builtin type), this is
// incorrect and inconsistent with the prior behavior.
fixKernelArgBaseTypes(M);
// Retype function arguments of OpenCL types represented as TargetExtTy to
// use opaque pointers instead. This is necessary to match function
// signatures generated by Clang, given that it only has partial TargetExtTy
// support.
#if LLVM_VERSION_MAJOR >= 16
retypeOpenCLTargetExtTyArgs(&M);
#endif
return m_changed;
}
|