mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
d08c2fabb8
Wrapper function call and dispatch handler helpers are moved to ExecutionSession, and existing EPC-based tools are re-written to take an ExecutionSession argument instead. Requiring an ExecutorProcessControl instance simplifies existing EPC based utilities (which only need to take an ES now), and should encourage more utilities to use the EPC interface. It also simplifies process termination, since the session can automatically call ExecutorProcessControl::disconnect (previously this had to be done manually, and carefully ordered with the rest of JIT tear-down to work correctly).
165 lines
5.1 KiB
C++
165 lines
5.1 KiB
C++
//===------ OrcTestCommon.h - Utilities for Orc Unit Tests ------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Common utilities for the Orc unit tests.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
#ifndef LLVM_UNITTESTS_EXECUTIONENGINE_ORC_ORCTESTCOMMON_H
|
|
#define LLVM_UNITTESTS_EXECUTIONENGINE_ORC_ORCTESTCOMMON_H
|
|
|
|
#include "llvm/ExecutionEngine/JITSymbol.h"
|
|
#include "llvm/ExecutionEngine/Orc/Core.h"
|
|
#include "llvm/ExecutionEngine/Orc/ExecutorProcessControl.h"
|
|
#include "llvm/ExecutionEngine/Orc/IndirectionUtils.h"
|
|
#include "llvm/IR/Function.h"
|
|
#include "llvm/IR/IRBuilder.h"
|
|
#include "llvm/IR/LLVMContext.h"
|
|
#include "llvm/IR/Module.h"
|
|
#include "llvm/Object/ObjectFile.h"
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
#include "llvm/Support/TargetSelect.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace llvm {
|
|
|
|
namespace orc {
|
|
// CoreAPIsStandardTest that saves a bunch of boilerplate by providing the
|
|
// following:
|
|
//
|
|
// (1) ES -- An ExecutionSession
|
|
// (2) Foo, Bar, Baz, Qux -- SymbolStringPtrs for strings "foo", "bar", "baz",
|
|
// and "qux" respectively.
|
|
// (3) FooAddr, BarAddr, BazAddr, QuxAddr -- Dummy addresses. Guaranteed
|
|
// distinct and non-null.
|
|
// (4) FooSym, BarSym, BazSym, QuxSym -- JITEvaluatedSymbols with FooAddr,
|
|
// BarAddr, BazAddr, and QuxAddr respectively. All with default strong,
|
|
// linkage and non-hidden visibility.
|
|
// (5) V -- A JITDylib associated with ES.
|
|
class CoreAPIsBasedStandardTest : public testing::Test {
|
|
public:
|
|
~CoreAPIsBasedStandardTest() {
|
|
if (auto Err = ES.endSession())
|
|
ES.reportError(std::move(Err));
|
|
}
|
|
|
|
protected:
|
|
std::shared_ptr<SymbolStringPool> SSP = std::make_shared<SymbolStringPool>();
|
|
ExecutionSession ES{std::make_unique<UnsupportedExecutorProcessControl>(SSP)};
|
|
JITDylib &JD = ES.createBareJITDylib("JD");
|
|
SymbolStringPtr Foo = ES.intern("foo");
|
|
SymbolStringPtr Bar = ES.intern("bar");
|
|
SymbolStringPtr Baz = ES.intern("baz");
|
|
SymbolStringPtr Qux = ES.intern("qux");
|
|
static const JITTargetAddress FooAddr = 1U;
|
|
static const JITTargetAddress BarAddr = 2U;
|
|
static const JITTargetAddress BazAddr = 3U;
|
|
static const JITTargetAddress QuxAddr = 4U;
|
|
JITEvaluatedSymbol FooSym =
|
|
JITEvaluatedSymbol(FooAddr, JITSymbolFlags::Exported);
|
|
JITEvaluatedSymbol BarSym =
|
|
JITEvaluatedSymbol(BarAddr, JITSymbolFlags::Exported);
|
|
JITEvaluatedSymbol BazSym =
|
|
JITEvaluatedSymbol(BazAddr, JITSymbolFlags::Exported);
|
|
JITEvaluatedSymbol QuxSym =
|
|
JITEvaluatedSymbol(QuxAddr, JITSymbolFlags::Exported);
|
|
};
|
|
|
|
} // end namespace orc
|
|
|
|
class OrcNativeTarget {
|
|
public:
|
|
static void initialize() {
|
|
if (!NativeTargetInitialized) {
|
|
InitializeNativeTarget();
|
|
InitializeNativeTargetAsmParser();
|
|
InitializeNativeTargetAsmPrinter();
|
|
NativeTargetInitialized = true;
|
|
}
|
|
}
|
|
|
|
private:
|
|
static bool NativeTargetInitialized;
|
|
};
|
|
|
|
class SimpleMaterializationUnit : public orc::MaterializationUnit {
|
|
public:
|
|
using MaterializeFunction =
|
|
std::function<void(std::unique_ptr<orc::MaterializationResponsibility>)>;
|
|
using DiscardFunction =
|
|
std::function<void(const orc::JITDylib &, orc::SymbolStringPtr)>;
|
|
using DestructorFunction = std::function<void()>;
|
|
|
|
SimpleMaterializationUnit(
|
|
orc::SymbolFlagsMap SymbolFlags, MaterializeFunction Materialize,
|
|
orc::SymbolStringPtr InitSym = nullptr,
|
|
DiscardFunction Discard = DiscardFunction(),
|
|
DestructorFunction Destructor = DestructorFunction())
|
|
: MaterializationUnit(std::move(SymbolFlags), std::move(InitSym)),
|
|
Materialize(std::move(Materialize)), Discard(std::move(Discard)),
|
|
Destructor(std::move(Destructor)) {}
|
|
|
|
~SimpleMaterializationUnit() override {
|
|
if (Destructor)
|
|
Destructor();
|
|
}
|
|
|
|
StringRef getName() const override { return "<Simple>"; }
|
|
|
|
void
|
|
materialize(std::unique_ptr<orc::MaterializationResponsibility> R) override {
|
|
Materialize(std::move(R));
|
|
}
|
|
|
|
void discard(const orc::JITDylib &JD,
|
|
const orc::SymbolStringPtr &Name) override {
|
|
if (Discard)
|
|
Discard(JD, std::move(Name));
|
|
else
|
|
llvm_unreachable("Discard not supported");
|
|
}
|
|
|
|
private:
|
|
MaterializeFunction Materialize;
|
|
DiscardFunction Discard;
|
|
DestructorFunction Destructor;
|
|
};
|
|
|
|
class ModuleBuilder {
|
|
public:
|
|
ModuleBuilder(LLVMContext &Context, StringRef Triple,
|
|
StringRef Name);
|
|
|
|
Function *createFunctionDecl(FunctionType *FTy, StringRef Name) {
|
|
return Function::Create(FTy, GlobalValue::ExternalLinkage, Name, M.get());
|
|
}
|
|
|
|
Module* getModule() { return M.get(); }
|
|
const Module* getModule() const { return M.get(); }
|
|
std::unique_ptr<Module> takeModule() { return std::move(M); }
|
|
|
|
private:
|
|
std::unique_ptr<Module> M;
|
|
};
|
|
|
|
// Dummy struct type.
|
|
struct DummyStruct {
|
|
int X[256];
|
|
};
|
|
|
|
inline StructType *getDummyStructTy(LLVMContext &Context) {
|
|
return StructType::get(ArrayType::get(Type::getInt32Ty(Context), 256));
|
|
}
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|