You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
942 B
38 lines
942 B
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include <llvm/ExecutionEngine/ObjectCache.h>
|
|
|
|
namespace dev
|
|
{
|
|
namespace eth
|
|
{
|
|
namespace jit
|
|
{
|
|
class ExecutionEngineListener;
|
|
|
|
class ObjectCache : public llvm::ObjectCache
|
|
{
|
|
public:
|
|
/// notifyObjectCompiled - Provides a pointer to compiled code for Module M.
|
|
virtual void notifyObjectCompiled(llvm::Module const* _module, llvm::MemoryBuffer const* _object) final override;
|
|
|
|
/// getObjectCopy - Returns a pointer to a newly allocated MemoryBuffer that
|
|
/// contains the object which corresponds with Module M, or 0 if an object is
|
|
/// not available. The caller owns both the MemoryBuffer returned by this
|
|
/// and the memory it references.
|
|
virtual llvm::MemoryBuffer* getObject(llvm::Module const* _module) final override;
|
|
};
|
|
|
|
|
|
class Cache
|
|
{
|
|
public:
|
|
static ObjectCache* getObjectCache(ExecutionEngineListener* _listener);
|
|
static std::unique_ptr<llvm::Module> getObject(std::string const& id);
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|