2020-09-24 03:21:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <llvm/ADT/SmallVector.h>
|
|
|
|
#include <llvm/ADT/Twine.h>
|
|
|
|
#include <llvm/ADT/Triple.h>
|
2021-11-30 09:10:14 +00:00
|
|
|
#include <llvm/Analysis/TargetTransformInfo.h>
|
|
|
|
#include <llvm/CodeGen/TargetPassConfig.h>
|
2020-09-24 03:21:20 +00:00
|
|
|
#include <llvm/ExecutionEngine/ExecutionEngine.h>
|
|
|
|
#include <llvm/MC/MCSubtargetInfo.h>
|
|
|
|
#include <llvm/Support/TargetSelect.h>
|
|
|
|
#include <llvm/Target/TargetMachine.h>
|
|
|
|
#include <llvm-c/Core.h>
|
|
|
|
#include <llvm-c/ExecutionEngine.h>
|
2021-11-30 09:10:14 +00:00
|
|
|
#include <llvm-c/Initialization.h>
|
2020-09-24 03:21:20 +00:00
|
|
|
#include <llvm/ExecutionEngine/GenericValue.h>
|
|
|
|
#include <llvm/ExecutionEngine/JITEventListener.h>
|
|
|
|
#include <llvm/ExecutionEngine/RTDyldMemoryManager.h>
|
|
|
|
#include <llvm/IR/DerivedTypes.h>
|
|
|
|
#include <llvm/IR/Module.h>
|
2021-11-30 09:10:14 +00:00
|
|
|
#include <llvm/IR/Instructions.h>
|
|
|
|
#include <llvm/IR/IntrinsicInst.h>
|
|
|
|
#include <llvm/IR/LegacyPassManager.h>
|
|
|
|
#include <llvm/Support/CommandLine.h>
|
2020-09-24 03:21:20 +00:00
|
|
|
#include <llvm/Support/ErrorHandling.h>
|
|
|
|
#include <llvm/Target/CodeGenCWrappers.h>
|
2021-11-30 09:10:14 +00:00
|
|
|
#include <llvm/Target/TargetMachine.h>
|
2020-09-24 03:21:20 +00:00
|
|
|
#include <llvm/Target/TargetOptions.h>
|
2021-11-30 09:10:14 +00:00
|
|
|
#include <llvm/Transforms/Utils/LowerMemIntrinsics.h>
|
2020-09-24 03:21:20 +00:00
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
extern "C" LLVMBool
|
|
|
|
WAMRCreateMCJITCompilerForModule(LLVMExecutionEngineRef *OutJIT,
|
|
|
|
LLVMModuleRef M,
|
|
|
|
LLVMMCJITCompilerOptions *PassedOptions,
|
2021-10-13 07:13:00 +00:00
|
|
|
size_t SizeOfPassedOptions, char **OutError);
|
2020-09-24 03:21:20 +00:00
|
|
|
|
|
|
|
extern "C" bool
|
|
|
|
aot_check_simd_compatibility(const char *arch_c_str, const char *cpu_c_str);
|
|
|
|
|
2021-11-30 09:10:14 +00:00
|
|
|
extern "C" void
|
|
|
|
aot_add_expand_memory_op_pass(LLVMPassManagerRef pass);
|
|
|
|
|
2021-11-13 08:59:35 +00:00
|
|
|
extern "C" void
|
|
|
|
aot_func_disable_tce(LLVMValueRef func);
|
|
|
|
|
2020-09-24 03:21:20 +00:00
|
|
|
LLVMBool
|
|
|
|
WAMRCreateMCJITCompilerForModule(LLVMExecutionEngineRef *OutJIT,
|
|
|
|
LLVMModuleRef M,
|
|
|
|
LLVMMCJITCompilerOptions *PassedOptions,
|
2021-10-13 07:13:00 +00:00
|
|
|
size_t SizeOfPassedOptions, char **OutError)
|
2020-09-24 03:21:20 +00:00
|
|
|
{
|
|
|
|
LLVMMCJITCompilerOptions options;
|
|
|
|
// If the user passed a larger sized options struct, then they were compiled
|
|
|
|
// against a newer LLVM. Tell them that something is wrong.
|
|
|
|
if (SizeOfPassedOptions > sizeof(options)) {
|
2021-10-13 07:13:00 +00:00
|
|
|
*OutError = strdup("Refusing to use options struct that is larger than "
|
|
|
|
"my own; assuming LLVM library mismatch.");
|
2020-09-24 03:21:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Defend against the user having an old version of the API by ensuring that
|
2021-10-13 07:13:00 +00:00
|
|
|
// any fields they didn't see are cleared. We must defend against fields
|
|
|
|
// being set to the bitwise equivalent of zero, and assume that this means
|
|
|
|
// "do the default" as if that option hadn't been available.
|
2020-09-24 03:21:20 +00:00
|
|
|
LLVMInitializeMCJITCompilerOptions(&options, sizeof(options));
|
|
|
|
memcpy(&options, PassedOptions, SizeOfPassedOptions);
|
|
|
|
|
|
|
|
TargetOptions targetOptions;
|
|
|
|
targetOptions.EnableFastISel = options.EnableFastISel;
|
|
|
|
std::unique_ptr<Module> Mod(unwrap(M));
|
|
|
|
|
|
|
|
if (Mod) {
|
|
|
|
// Set function attribute "frame-pointer" based on
|
|
|
|
// NoFramePointerElim.
|
|
|
|
for (auto &F : *Mod) {
|
|
|
|
auto Attrs = F.getAttributes();
|
|
|
|
StringRef Value = options.NoFramePointerElim ? "all" : "none";
|
2021-10-13 07:13:00 +00:00
|
|
|
Attrs =
|
|
|
|
Attrs.addAttribute(F.getContext(), AttributeList::FunctionIndex,
|
|
|
|
"frame-pointer", Value);
|
2020-09-24 03:21:20 +00:00
|
|
|
F.setAttributes(Attrs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Error;
|
|
|
|
bool JIT;
|
|
|
|
char *host_cpu = LLVMGetHostCPUName();
|
|
|
|
|
|
|
|
if (!host_cpu) {
|
|
|
|
*OutError = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string mcpu(host_cpu);
|
|
|
|
LLVMDisposeMessage(host_cpu);
|
|
|
|
|
|
|
|
EngineBuilder builder(std::move(Mod));
|
|
|
|
builder.setEngineKind(EngineKind::JIT)
|
2021-10-13 07:13:00 +00:00
|
|
|
.setErrorStr(&Error)
|
|
|
|
.setMCPU(mcpu)
|
|
|
|
.setOptLevel((CodeGenOpt::Level)options.OptLevel)
|
|
|
|
.setTargetOptions(targetOptions);
|
2020-09-24 03:21:20 +00:00
|
|
|
if (Optional<CodeModel::Model> CM = unwrap(options.CodeModel, JIT))
|
|
|
|
builder.setCodeModel(*CM);
|
|
|
|
if (options.MCJMM)
|
|
|
|
builder.setMCJITMemoryManager(
|
2021-10-13 07:13:00 +00:00
|
|
|
std::unique_ptr<RTDyldMemoryManager>(unwrap(options.MCJMM)));
|
2020-09-24 03:21:20 +00:00
|
|
|
if (ExecutionEngine *JIT = builder.create()) {
|
|
|
|
*OutJIT = wrap(JIT);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*OutError = strdup(Error.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-11-30 09:10:14 +00:00
|
|
|
class ExpandMemoryOpPass : public llvm::ModulePass
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
|
|
|
|
ExpandMemoryOpPass()
|
|
|
|
: ModulePass(ID)
|
|
|
|
{}
|
|
|
|
|
|
|
|
bool runOnModule(Module &M) override;
|
|
|
|
|
|
|
|
bool expandMemIntrinsicUses(Function &F);
|
|
|
|
StringRef getPassName() const override
|
|
|
|
{
|
|
|
|
return "Expand memory operation intrinsics";
|
|
|
|
}
|
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override
|
|
|
|
{
|
|
|
|
AU.addRequired<TargetTransformInfoWrapperPass>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
char ExpandMemoryOpPass::ID = 0;
|
|
|
|
|
|
|
|
bool
|
|
|
|
ExpandMemoryOpPass::expandMemIntrinsicUses(Function &F)
|
|
|
|
{
|
|
|
|
Intrinsic::ID ID = F.getIntrinsicID();
|
|
|
|
bool Changed = false;
|
|
|
|
|
|
|
|
for (auto I = F.user_begin(), E = F.user_end(); I != E;) {
|
|
|
|
Instruction *Inst = cast<Instruction>(*I);
|
|
|
|
++I;
|
|
|
|
|
|
|
|
switch (ID) {
|
|
|
|
case Intrinsic::memcpy:
|
|
|
|
{
|
|
|
|
auto *Memcpy = cast<MemCpyInst>(Inst);
|
|
|
|
Function *ParentFunc = Memcpy->getParent()->getParent();
|
|
|
|
const TargetTransformInfo &TTI =
|
|
|
|
getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
|
|
|
|
*ParentFunc);
|
|
|
|
expandMemCpyAsLoop(Memcpy, TTI);
|
|
|
|
Changed = true;
|
|
|
|
Memcpy->eraseFromParent();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Intrinsic::memmove:
|
|
|
|
{
|
|
|
|
auto *Memmove = cast<MemMoveInst>(Inst);
|
|
|
|
expandMemMoveAsLoop(Memmove);
|
|
|
|
Changed = true;
|
|
|
|
Memmove->eraseFromParent();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Intrinsic::memset:
|
|
|
|
{
|
|
|
|
auto *Memset = cast<MemSetInst>(Inst);
|
|
|
|
expandMemSetAsLoop(Memset);
|
|
|
|
Changed = true;
|
|
|
|
Memset->eraseFromParent();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ExpandMemoryOpPass::runOnModule(Module &M)
|
|
|
|
{
|
|
|
|
bool Changed = false;
|
|
|
|
|
|
|
|
for (Function &F : M) {
|
|
|
|
if (!F.isDeclaration())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch (F.getIntrinsicID()) {
|
|
|
|
case Intrinsic::memcpy:
|
|
|
|
case Intrinsic::memmove:
|
|
|
|
case Intrinsic::memset:
|
|
|
|
if (expandMemIntrinsicUses(F))
|
|
|
|
Changed = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
aot_add_expand_memory_op_pass(LLVMPassManagerRef pass)
|
|
|
|
{
|
|
|
|
unwrap(pass)->add(new ExpandMemoryOpPass());
|
|
|
|
}
|
|
|
|
|
2020-09-24 03:21:20 +00:00
|
|
|
bool
|
|
|
|
aot_check_simd_compatibility(const char *arch_c_str, const char *cpu_c_str)
|
|
|
|
{
|
|
|
|
#if WASM_ENABLE_SIMD != 0
|
|
|
|
if (!arch_c_str || !cpu_c_str) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::SmallVector<std::string, 1> targetAttributes;
|
|
|
|
llvm::Triple targetTriple(arch_c_str, "", "");
|
2020-12-15 05:05:39 +00:00
|
|
|
auto targetMachine =
|
2021-10-13 07:13:00 +00:00
|
|
|
std::unique_ptr<llvm::TargetMachine>(llvm::EngineBuilder().selectTarget(
|
|
|
|
targetTriple, "", std::string(cpu_c_str), targetAttributes));
|
2020-12-15 05:05:39 +00:00
|
|
|
if (!targetMachine) {
|
2020-09-24 03:21:20 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const llvm::Triple::ArchType targetArch =
|
2021-10-13 07:13:00 +00:00
|
|
|
targetMachine->getTargetTriple().getArch();
|
2020-09-24 03:21:20 +00:00
|
|
|
const llvm::MCSubtargetInfo *subTargetInfo =
|
2021-10-13 07:13:00 +00:00
|
|
|
targetMachine->getMCSubtargetInfo();
|
2020-09-24 03:21:20 +00:00
|
|
|
if (subTargetInfo == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (targetArch == llvm::Triple::x86_64) {
|
|
|
|
return subTargetInfo->checkFeatures("+sse4.1");
|
|
|
|
}
|
|
|
|
else if (targetArch == llvm::Triple::aarch64) {
|
|
|
|
return subTargetInfo->checkFeatures("+neon");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
(void)arch_c_str;
|
|
|
|
(void)cpu_c_str;
|
|
|
|
return true;
|
|
|
|
#endif /* WASM_ENABLE_SIMD */
|
|
|
|
}
|
2021-11-13 08:59:35 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
aot_func_disable_tce(LLVMValueRef func)
|
|
|
|
{
|
|
|
|
Function *F = unwrap<Function>(func);
|
|
|
|
auto Attrs = F->getAttributes();
|
|
|
|
|
|
|
|
Attrs = Attrs.addAttribute(F->getContext(), AttributeList::FunctionIndex,
|
|
|
|
"disable-tail-calls", "true");
|
|
|
|
F->setAttributes(Attrs);
|
|
|
|
}
|