mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
Revert "[JITLink] Add JITLinkDylib type, thread through JITLinkMemoryManager APIs."
This reverts commit 8904ee8ac7ebcc50a60de0914abc6862e28b6664. Didn't `git add` llvm/ExecutionEngine/JITLink/JITLinkDylib.h and hence doesn't build anywhere.
This commit is contained in:
parent
c16030181f
commit
2ecd062c06
@ -1270,15 +1270,9 @@ class JITLinkContext {
|
||||
public:
|
||||
using LookupMap = DenseMap<StringRef, SymbolLookupFlags>;
|
||||
|
||||
/// Create a JITLinkContext.
|
||||
JITLinkContext(const JITLinkDylib *JD) : JD(JD) {}
|
||||
|
||||
/// Destroy a JITLinkContext.
|
||||
virtual ~JITLinkContext();
|
||||
|
||||
/// Return the JITLinkDylib that this link is targeting, if any.
|
||||
const JITLinkDylib *getJITLinkDylib() const { return JD; }
|
||||
|
||||
/// Return the MemoryManager to be used for this link.
|
||||
virtual JITLinkMemoryManager &getMemoryManager() = 0;
|
||||
|
||||
@ -1330,9 +1324,6 @@ public:
|
||||
/// Called by JITLink to modify the pass pipeline prior to linking.
|
||||
/// The default version performs no modification.
|
||||
virtual Error modifyPassConfig(const Triple &TT, PassConfiguration &Config);
|
||||
|
||||
private:
|
||||
const JITLinkDylib *JD = nullptr;
|
||||
};
|
||||
|
||||
/// Marks all symbols in a graph live. This can be used as a default,
|
||||
|
@ -14,11 +14,10 @@
|
||||
#define LLVM_EXECUTIONENGINE_JITLINK_JITLINKMEMORYMANAGER_H
|
||||
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ExecutionEngine/JITLink/JITLinkDylib.h"
|
||||
#include "llvm/ExecutionEngine/JITSymbol.h"
|
||||
#include "llvm/Support/Error.h"
|
||||
#include "llvm/Support/MSVCErrorWorkarounds.h"
|
||||
#include "llvm/Support/Memory.h"
|
||||
#include "llvm/Support/MSVCErrorWorkarounds.h"
|
||||
|
||||
#include <cstdint>
|
||||
#include <future>
|
||||
@ -94,25 +93,15 @@ public:
|
||||
virtual ~JITLinkMemoryManager();
|
||||
|
||||
/// Create an Allocation object.
|
||||
///
|
||||
/// The JD argument represents the target JITLinkDylib, and can be used by
|
||||
/// JITLinkMemoryManager implementers to manage per-dylib allocation pools
|
||||
/// (e.g. one pre-reserved address space slab per dylib to ensure that all
|
||||
/// allocations for the dylib are within a certain range). The JD argument
|
||||
/// may be null (representing an allocation not associated with any
|
||||
/// JITDylib.
|
||||
///
|
||||
/// The request argument describes the segment sizes and permisssions being
|
||||
/// requested.
|
||||
virtual Expected<std::unique_ptr<Allocation>>
|
||||
allocate(const JITLinkDylib *JD, const SegmentsRequestMap &Request) = 0;
|
||||
allocate(const SegmentsRequestMap &Request) = 0;
|
||||
};
|
||||
|
||||
/// A JITLinkMemoryManager that allocates in-process memory.
|
||||
class InProcessMemoryManager : public JITLinkMemoryManager {
|
||||
public:
|
||||
Expected<std::unique_ptr<Allocation>>
|
||||
allocate(const JITLinkDylib *JD, const SegmentsRequestMap &Request) override;
|
||||
allocate(const SegmentsRequestMap &Request) override;
|
||||
};
|
||||
|
||||
} // end namespace jitlink
|
||||
|
@ -17,7 +17,6 @@
|
||||
#include "llvm/ADT/DenseSet.h"
|
||||
#include "llvm/ADT/FunctionExtras.h"
|
||||
#include "llvm/ADT/IntrusiveRefCntPtr.h"
|
||||
#include "llvm/ExecutionEngine/JITLink/JITLinkDylib.h"
|
||||
#include "llvm/ExecutionEngine/JITSymbol.h"
|
||||
#include "llvm/ExecutionEngine/Orc/SymbolStringPool.h"
|
||||
#include "llvm/ExecutionEngine/OrcV1Deprecation.h"
|
||||
@ -888,8 +887,7 @@ public:
|
||||
/// their addresses may be used as keys for resource management.
|
||||
/// JITDylib state changes must be made via an ExecutionSession to guarantee
|
||||
/// that they are synchronized with respect to other JITDylib operations.
|
||||
class JITDylib : public ThreadSafeRefCountedBase<JITDylib>,
|
||||
public jitlink::JITLinkDylib {
|
||||
class JITDylib : public ThreadSafeRefCountedBase<JITDylib> {
|
||||
friend class AsynchronousSymbolQuery;
|
||||
friend class ExecutionSession;
|
||||
friend class Platform;
|
||||
|
@ -148,8 +148,7 @@ public:
|
||||
OrcRPCTPCJITLinkMemoryManager(OrcRPCTPCImplT &Parent) : Parent(Parent) {}
|
||||
|
||||
Expected<std::unique_ptr<Allocation>>
|
||||
allocate(const jitlink::JITLinkDylib *JD,
|
||||
const SegmentsRequestMap &Request) override {
|
||||
allocate(const SegmentsRequestMap &Request) override {
|
||||
orcrpctpc::ReserveMemRequest RMR;
|
||||
HostAllocMap HostAllocs;
|
||||
|
||||
|
@ -535,8 +535,7 @@ public:
|
||||
}
|
||||
|
||||
Expected<std::unique_ptr<Allocation>>
|
||||
allocate(const jitlink::JITLinkDylib *JD,
|
||||
const SegmentsRequestMap &Request) override {
|
||||
allocate(const SegmentsRequestMap &Request) override {
|
||||
return RPCMMAlloc::Create(Client, Id, Request);
|
||||
}
|
||||
|
||||
|
@ -266,8 +266,7 @@ Error JITLinkerBase::allocateSegments(const SegmentLayoutMap &Layout) {
|
||||
}
|
||||
LLVM_DEBUG(dbgs() << " }\n");
|
||||
|
||||
if (auto AllocOrErr =
|
||||
Ctx->getMemoryManager().allocate(Ctx->getJITLinkDylib(), Segments))
|
||||
if (auto AllocOrErr = Ctx->getMemoryManager().allocate(Segments))
|
||||
Alloc = std::move(*AllocOrErr);
|
||||
else
|
||||
return AllocOrErr.takeError();
|
||||
|
@ -17,8 +17,7 @@ JITLinkMemoryManager::~JITLinkMemoryManager() = default;
|
||||
JITLinkMemoryManager::Allocation::~Allocation() = default;
|
||||
|
||||
Expected<std::unique_ptr<JITLinkMemoryManager::Allocation>>
|
||||
InProcessMemoryManager::allocate(const JITLinkDylib *JD,
|
||||
const SegmentsRequestMap &Request) {
|
||||
InProcessMemoryManager::allocate(const SegmentsRequestMap &Request) {
|
||||
|
||||
using AllocationMap = DenseMap<unsigned, sys::MemoryBlock>;
|
||||
|
||||
|
@ -28,8 +28,7 @@ public:
|
||||
ObjectLinkingLayer &Layer,
|
||||
std::unique_ptr<MaterializationResponsibility> MR,
|
||||
std::unique_ptr<MemoryBuffer> ObjBuffer)
|
||||
: JITLinkContext(&MR->getTargetJITDylib()), Layer(Layer),
|
||||
MR(std::move(MR)), ObjBuffer(std::move(ObjBuffer)) {}
|
||||
: Layer(Layer), MR(std::move(MR)), ObjBuffer(std::move(ObjBuffer)) {}
|
||||
|
||||
~ObjectLinkingLayerJITLinkContext() {
|
||||
// If there is an object buffer return function then use it to
|
||||
|
@ -109,7 +109,7 @@ Error TPCTrampolinePool::grow() {
|
||||
jitlink::JITLinkMemoryManager::SegmentsRequestMap Request;
|
||||
Request[TrampolinePagePermissions] = {PageSize, static_cast<size_t>(PageSize),
|
||||
0};
|
||||
auto Alloc = TPC.getMemMgr().allocate(nullptr, Request);
|
||||
auto Alloc = TPC.getMemMgr().allocate(Request);
|
||||
|
||||
if (!Alloc)
|
||||
return Alloc.takeError();
|
||||
@ -294,7 +294,7 @@ TPCIndirectionUtils::writeResolverBlock(JITTargetAddress ReentryFnAddr,
|
||||
jitlink::JITLinkMemoryManager::SegmentsRequestMap Request;
|
||||
Request[ResolverBlockPermissions] = {TPC.getPageSize(),
|
||||
static_cast<size_t>(ResolverSize), 0};
|
||||
auto Alloc = TPC.getMemMgr().allocate(nullptr, Request);
|
||||
auto Alloc = TPC.getMemMgr().allocate(Request);
|
||||
if (!Alloc)
|
||||
return Alloc.takeError();
|
||||
|
||||
@ -364,7 +364,7 @@ TPCIndirectionUtils::getIndirectStubs(unsigned NumStubs) {
|
||||
Request[StubPagePermissions] = {PageSize, static_cast<size_t>(StubBytes),
|
||||
0};
|
||||
Request[PointerPagePermissions] = {PageSize, 0, PointerBytes};
|
||||
auto Alloc = TPC.getMemMgr().allocate(nullptr, Request);
|
||||
auto Alloc = TPC.getMemMgr().allocate(Request);
|
||||
if (!Alloc)
|
||||
return Alloc.takeError();
|
||||
|
||||
|
@ -330,7 +330,7 @@ public:
|
||||
}
|
||||
|
||||
Expected<std::unique_ptr<JITLinkMemoryManager::Allocation>>
|
||||
allocate(const JITLinkDylib *JD, const SegmentsRequestMap &Request) override {
|
||||
allocate(const SegmentsRequestMap &Request) override {
|
||||
|
||||
using AllocationMap = DenseMap<unsigned, sys::MemoryBlock>;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user