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
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2018-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include "Compiler/Optimizer/OpenCLPasses/ErrorCheckPass.h"
#include "Compiler/Optimizer/OpenCLPasses/KernelArgs.hpp"
#include "Compiler/IGCPassSupport.h"
#include "common/LLVMWarningsPush.hpp"
#include <llvm/Pass.h>
#include <llvm/IR/InstVisitor.h>
#include <llvm/IR/Function.h>
#include <llvm/IR/Instructions.h>
#include "common/LLVMWarningsPop.hpp"
using namespace llvm;
using namespace IGC;
char ErrorCheck::ID = 0;
// Register pass to igc-opt
#define PASS_FLAG "igc-error-check"
#define PASS_DESCRIPTION "Check for input errors"
#define PASS_CFG_ONLY false
#define PASS_ANALYSIS false
IGC_INITIALIZE_PASS_BEGIN(ErrorCheck, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
IGC_INITIALIZE_PASS_DEPENDENCY(CodeGenContextWrapper)
IGC_INITIALIZE_PASS_DEPENDENCY(MetaDataUtilsWrapper)
IGC_INITIALIZE_PASS_END(ErrorCheck, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
ErrorCheck::ErrorCheck(void) : FunctionPass(ID)
{
initializeErrorCheckPass(*PassRegistry::getPassRegistry());
}
bool ErrorCheck::runOnFunction(Function& F)
{
// add more checks as needed later
visit(F);
if (isEntryFunc(getAnalysis<MetaDataUtilsWrapper>().getMetaDataUtils(), &F))
{
checkArgsSize(F);
}
return m_hasError;
}
void ErrorCheck::checkArgsSize(Function& F)
{
auto Ctx = getAnalysis<CodeGenContextWrapper>().getCodeGenContext();
auto MdUtils = getAnalysis<MetaDataUtilsWrapper>().getMetaDataUtils();
auto ModMD = getAnalysis<MetaDataUtilsWrapper>().getModuleMetaData();
auto DL = F.getParent()->getDataLayout();
KernelArgs KernelArgs(F, &DL, MdUtils, ModMD, Ctx->platform.getGRFSize());
auto MaxParamSize = Ctx->platform.getMaxOCLParameteSize();
uint64_t TotalSize = 0;
if (KernelArgs.empty())
{
return;
}
for (auto& KernelArg : KernelArgs)
{
auto Arg = KernelArg.getArg();
Type* ArgType = Arg->getType();
ArgType = Arg->hasByValAttr() ? ArgType->getPointerElementType() : ArgType;
if (!KernelArg.isImplicitArg())
{
TotalSize += DL.getTypeAllocSize(ArgType);
}
}
if (TotalSize > MaxParamSize)
{
std::string ErrorMsg = "Total size of kernel arguments exceeds limit! Total arguments size: "
+ std::to_string(TotalSize) + ", limit: " + std::to_string(MaxParamSize);
Ctx->EmitError(ErrorMsg.c_str(), &F);
m_hasError = true;
}
}
static bool isFP64Operation(llvm::Instruction *I) {
if (I->getType()->isDoubleTy())
return true;
for (int i = 0, numOpnd = (int)I->getNumOperands(); i < numOpnd; ++i)
if (I->getOperand(i)->getType()->isDoubleTy())
return true;
return false;
}
void ErrorCheck::visitInstruction(llvm::Instruction& I)
{
auto ctx = getAnalysis<CodeGenContextWrapper>().getCodeGenContext();
bool poisonFP64KernelsEnabled = false;
if (ctx->type == ShaderType::OPENCL_SHADER)
{
OpenCLProgramContext *OCLContext = static_cast<OpenCLProgramContext*>(ctx);
poisonFP64KernelsEnabled = OCLContext->m_InternalOptions.EnableUnsupportedFP64Poisoning;
}
if (!ctx->m_DriverInfo.NeedFP64(ctx->platform.getPlatformInfo().eProductFamily) && ctx->platform.hasNoFP64Inst()
&& IGC_IS_FLAG_DISABLED(ForceDPEmulation))
{
// check that input does not use double
// For testing purpose, this check is skipped if ForceDPEmulation is on.
const bool usesDouble = isFP64Operation(&I);
if (!usesDouble)
return;
if (!poisonFP64KernelsEnabled) {
ctx->EmitError("Double type is not supported on this platform.", &I);
m_hasError = true;
return;
}
Function *F = I.getParent()->getParent();
F->addFnAttr("uses-fp64-math");
}
}
void ErrorCheck::visitCallInst(CallInst& CI)
{
if (auto* GII = dyn_cast<GenIntrinsicInst>(&CI))
{
switch (GII->getIntrinsicID()) {
case GenISAIntrinsic::GenISA_dp4a_ss:
case GenISAIntrinsic::GenISA_dp4a_su:
case GenISAIntrinsic::GenISA_dp4a_us:
case GenISAIntrinsic::GenISA_dp4a_uu:
{
CodeGenContext* Ctx =
getAnalysis<CodeGenContextWrapper>().getCodeGenContext();
if (!Ctx->platform.hasHWDp4AddSupport())
{
std::string Msg = "Unsupported call to ";
Msg += CI.getCalledFunction() ?
CI.getCalledFunction()->getName() : "indirect function";
Ctx->EmitError(Msg.c_str(), &CI);
m_hasError = true;
}
break;
}
default:
// Intrinsic supported.
break;
}
}
}
|