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.
240 lines
6.1 KiB
240 lines
6.1 KiB
#include "evmjit/JIT.h"
|
|
|
|
#include <array>
|
|
|
|
#include "preprocessor/llvm_includes_start.h"
|
|
#include <llvm/IR/Module.h>
|
|
#include <llvm/ADT/Triple.h>
|
|
#include <llvm/ExecutionEngine/MCJIT.h>
|
|
#include <llvm/Support/TargetSelect.h>
|
|
#include <llvm/Support/Host.h>
|
|
#include <llvm/Support/CommandLine.h>
|
|
#include <llvm/Support/ManagedStatic.h>
|
|
#include "preprocessor/llvm_includes_end.h"
|
|
|
|
#include "Compiler.h"
|
|
#include "Optimizer.h"
|
|
#include "Cache.h"
|
|
#include "ExecStats.h"
|
|
#include "Utils.h"
|
|
#include "BuildInfo.gen.h"
|
|
|
|
namespace dev
|
|
{
|
|
namespace evmjit
|
|
{
|
|
using namespace eth::jit;
|
|
|
|
namespace
|
|
{
|
|
using ExecFunc = ReturnCode(*)(ExecutionContext*);
|
|
|
|
std::string hash2str(i256 const& _hash)
|
|
{
|
|
static const auto size = sizeof(_hash);
|
|
static const auto hexChars = "0123456789abcdef";
|
|
std::string str;
|
|
str.resize(size * 2);
|
|
auto outIt = str.rbegin(); // reverse for BE
|
|
auto& arr = *(std::array<byte, size>*)&_hash;
|
|
for (auto b : arr)
|
|
{
|
|
*(outIt++) = hexChars[b & 0xf];
|
|
*(outIt++) = hexChars[b >> 4];
|
|
}
|
|
return str;
|
|
}
|
|
|
|
void printVersion()
|
|
{
|
|
std::cout << "Ethereum EVM JIT Compiler (http://github.com/ethereum/evmjit):\n"
|
|
<< " EVMJIT version " << EVMJIT_VERSION << "\n"
|
|
#ifdef NDEBUG
|
|
<< " Optimized build, " EVMJIT_VERSION_FULL "\n"
|
|
#else
|
|
<< " DEBUG build, " EVMJIT_VERSION_FULL "\n"
|
|
#endif
|
|
<< " Built " << __DATE__ << " (" << __TIME__ << ")\n"
|
|
<< std::endl;
|
|
}
|
|
|
|
namespace cl = llvm::cl;
|
|
cl::opt<bool> g_optimize{"O", cl::desc{"Optimize"}};
|
|
cl::opt<CacheMode> g_cache{"cache", cl::desc{"Cache compiled EVM code on disk"},
|
|
cl::values(
|
|
clEnumValN(CacheMode::on, "1", "Enabled"),
|
|
clEnumValN(CacheMode::off, "0", "Disabled"),
|
|
clEnumValN(CacheMode::read, "r", "Read only. No new objects are added to cache."),
|
|
clEnumValN(CacheMode::write, "w", "Write only. No objects are loaded from cache."),
|
|
clEnumValN(CacheMode::clear, "c", "Clear the cache storage. Cache is disabled."),
|
|
clEnumValN(CacheMode::preload, "p", "Preload all cached objects."),
|
|
clEnumValEnd)};
|
|
cl::opt<bool> g_stats{"st", cl::desc{"Statistics"}};
|
|
cl::opt<bool> g_dump{"dump", cl::desc{"Dump LLVM IR module"}};
|
|
|
|
void parseOptions()
|
|
{
|
|
static llvm::llvm_shutdown_obj shutdownObj{};
|
|
cl::AddExtraVersionPrinter(printVersion);
|
|
cl::ParseEnvironmentOptions("evmjit", "EVMJIT", "Ethereum EVM JIT Compiler");
|
|
}
|
|
|
|
class JITImpl
|
|
{
|
|
std::unique_ptr<llvm::ExecutionEngine> m_engine;
|
|
std::unordered_map<h256, ExecFunc> m_codeMap;
|
|
|
|
public:
|
|
static JITImpl& instance()
|
|
{
|
|
static JITImpl s_instance;
|
|
return s_instance;
|
|
}
|
|
|
|
JITImpl();
|
|
|
|
llvm::ExecutionEngine& engine() { return *m_engine; }
|
|
|
|
ExecFunc getExecFunc(h256 const& _codeHash) const;
|
|
void mapExecFunc(h256 _codeHash, ExecFunc _funcAddr);
|
|
};
|
|
|
|
JITImpl::JITImpl()
|
|
{
|
|
parseOptions();
|
|
|
|
bool preloadCache = g_cache == CacheMode::preload;
|
|
if (preloadCache)
|
|
g_cache = CacheMode::on;
|
|
|
|
llvm::InitializeNativeTarget();
|
|
llvm::InitializeNativeTargetAsmPrinter();
|
|
|
|
auto module = std::unique_ptr<llvm::Module>(new llvm::Module({}, llvm::getGlobalContext()));
|
|
|
|
// FIXME: LLVM 3.7: test on Windows
|
|
auto triple = llvm::Triple(llvm::sys::getProcessTriple());
|
|
if (triple.getOS() == llvm::Triple::OSType::Win32)
|
|
triple.setObjectFormat(llvm::Triple::ObjectFormatType::ELF); // MCJIT does not support COFF format
|
|
module->setTargetTriple(triple.str());
|
|
|
|
llvm::EngineBuilder builder(std::move(module));
|
|
builder.setEngineKind(llvm::EngineKind::JIT);
|
|
builder.setOptLevel(g_optimize ? llvm::CodeGenOpt::Default : llvm::CodeGenOpt::None);
|
|
|
|
m_engine.reset(builder.create());
|
|
|
|
// TODO: Update cache listener
|
|
m_engine->setObjectCache(Cache::init(g_cache, nullptr));
|
|
|
|
// FIXME: Disabled during API changes
|
|
//if (preloadCache)
|
|
// Cache::preload(*m_engine, funcCache);
|
|
}
|
|
|
|
ExecFunc JITImpl::getExecFunc(h256 const& _codeHash) const
|
|
{
|
|
auto it = m_codeMap.find(_codeHash);
|
|
if (it != m_codeMap.end())
|
|
return it->second;
|
|
return nullptr;
|
|
}
|
|
|
|
void JITImpl::mapExecFunc(h256 _codeHash, ExecFunc _funcAddr)
|
|
{
|
|
m_codeMap.emplace(std::move(_codeHash), _funcAddr);
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
bool JIT::isCodeReady(h256 const& _codeHash)
|
|
{
|
|
return JITImpl::instance().getExecFunc(_codeHash) != nullptr;
|
|
}
|
|
|
|
ReturnCode JIT::exec(ExecutionContext& _context)
|
|
{
|
|
auto& jit = JITImpl::instance();
|
|
|
|
std::unique_ptr<ExecStats> listener{new ExecStats};
|
|
listener->stateChanged(ExecState::Started);
|
|
|
|
auto code = _context.code();
|
|
auto codeSize = _context.codeSize();
|
|
auto codeHash = _context.codeHash();
|
|
|
|
static StatsCollector statsCollector;
|
|
|
|
auto mainFuncName = hash2str(codeHash);
|
|
|
|
// TODO: Remove cast
|
|
auto execFunc = jit.getExecFunc(codeHash);
|
|
if (!execFunc)
|
|
{
|
|
auto module = Cache::getObject(mainFuncName);
|
|
if (!module)
|
|
{
|
|
listener->stateChanged(ExecState::Compilation);
|
|
assert(code || !codeSize); //TODO: Is it good idea to execute empty code?
|
|
module = Compiler{{}}.compile(code, code + codeSize, mainFuncName);
|
|
|
|
if (g_optimize)
|
|
{
|
|
listener->stateChanged(ExecState::Optimization);
|
|
optimize(*module);
|
|
}
|
|
|
|
prepare(*module);
|
|
}
|
|
if (g_dump)
|
|
module->dump();
|
|
|
|
jit.engine().addModule(std::move(module));
|
|
listener->stateChanged(ExecState::CodeGen);
|
|
execFunc = (ExecFunc)jit.engine().getFunctionAddress(mainFuncName);
|
|
if (!CHECK(execFunc))
|
|
return ReturnCode::LLVMLinkError;
|
|
jit.mapExecFunc(codeHash, execFunc);
|
|
}
|
|
|
|
listener->stateChanged(ExecState::Execution);
|
|
auto returnCode = execFunc(&_context);
|
|
listener->stateChanged(ExecState::Return);
|
|
|
|
if (returnCode == ReturnCode::Return)
|
|
_context.returnData = _context.getReturnData(); // Save reference to return data
|
|
|
|
listener->stateChanged(ExecState::Finished);
|
|
|
|
if (g_stats)
|
|
statsCollector.stats.push_back(std::move(listener));
|
|
|
|
return returnCode;
|
|
}
|
|
|
|
|
|
extern "C" void ext_free(void* _data) noexcept;
|
|
|
|
ExecutionContext::~ExecutionContext()
|
|
{
|
|
if (m_memData)
|
|
ext_free(m_memData); // Use helper free to check memory leaks
|
|
}
|
|
|
|
bytes_ref ExecutionContext::getReturnData() const
|
|
{
|
|
auto data = m_data->callData;
|
|
auto size = static_cast<size_t>(m_data->callDataSize);
|
|
|
|
if (data < m_memData || data >= m_memData + m_memSize || size == 0)
|
|
{
|
|
assert(size == 0); // data can be an invalid pointer only if size is 0
|
|
m_data->callData = nullptr;
|
|
return {};
|
|
}
|
|
|
|
return bytes_ref{data, size};
|
|
}
|
|
|
|
}
|
|
}
|
|
|