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
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include "Compiler/FixInvalidFuncNamePass.hpp"
#include "IGCPassSupport.h"
#include "GenISAIntrinsics/GenIntrinsicInst.h"
#include "AdaptorCommon/ImplicitArgs.hpp"
#include "common/LLVMWarningsPush.hpp"
#include "llvm/IR/Function.h"
#include "common/LLVMWarningsPop.hpp"
using namespace llvm;
using namespace IGC;
// LLVM sometimes creates the function with characters which are incorrect for vISA (e.g. with ".")
// Here we check the LLVM names and replace incorrect characters for vISA to "_"
// We need to check call instruction. If contains invalid char, we change func name called by this instruction
class FixInvalidFuncName : public FunctionPass
{
public:
FixInvalidFuncName() : FunctionPass(ID) {}
virtual bool runOnFunction(Function& F) override;
virtual llvm::StringRef getPassName() const override
{
return "Fix Invalid Func Name";
}
static char ID;
private:
// Replace invalid char to underscore
static std::string replaceInvalidCharToUnderline(std::string str);
};
char FixInvalidFuncName::ID = 0;
bool FixInvalidFuncName::runOnFunction(Function& F)
{
bool modified = false;
for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
{
if (CallInst* callInst = dyn_cast<CallInst>(&(*I)))
{
if (callInst->getCallingConv() == CallingConv::SPIR_FUNC)
{
Function* func = callInst->getCalledFunction();
if (func)
{
StringRef original = func->getName();
std::string changed = replaceInvalidCharToUnderline(original.str());
if (original != changed)
{
func->setName(changed);
modified = true;
}
}
}
}
}
return modified;
}
std::string FixInvalidFuncName::replaceInvalidCharToUnderline(std::string str)
{
std::replace(str.begin(), str.end(), '.', '_');
std::replace(str.begin(), str.end(), '$', '_');
return str;
}
namespace IGC
{
#define PASS_FLAG "fix-invalid-func-name"
#define PASS_DESCRIPTION "Fix Invalid Func Name Pass"
#define PASS_CFG_ONLY false
#define PASS_ANALYSIS false
IGC_INITIALIZE_PASS_BEGIN(FixInvalidFuncName, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
IGC_INITIALIZE_PASS_END(FixInvalidFuncName, PASS_FLAG, PASS_DESCRIPTION, PASS_CFG_ONLY, PASS_ANALYSIS)
FunctionPass* createFixInvalidFuncNamePass()
{
return new FixInvalidFuncName();
}
}
|