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.
36 lines
653 B
36 lines
653 B
#include "ExecutionEngine.h"
|
|
|
|
extern "C"
|
|
{
|
|
|
|
using namespace dev::eth::jit;
|
|
|
|
void* evmjit_create() noexcept
|
|
{
|
|
return new(std::nothrow) ExecutionEngine;
|
|
}
|
|
|
|
void evmjit_destroy(ExecutionEngine* _engine) noexcept
|
|
{
|
|
delete _engine;
|
|
}
|
|
|
|
int evmjit_run(ExecutionEngine* _engine, RuntimeData* _data, Env* _env) noexcept
|
|
{
|
|
try
|
|
{
|
|
auto codePtr = _data->code;
|
|
auto codeSize = _data->codeSize;
|
|
bytes bytecode;
|
|
bytecode.insert(bytecode.end(), codePtr, codePtr + codeSize);
|
|
|
|
auto returnCode = _engine->run(bytecode, _data, _env);
|
|
return static_cast<int>(returnCode);
|
|
}
|
|
catch(...)
|
|
{
|
|
return static_cast<int>(ReturnCode::UnexpectedException);
|
|
}
|
|
}
|
|
|
|
}
|
|
|