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.
 
 
 
 
 

34 lines
554 B

#include "Runtime.h"
#include <cassert>
namespace dev
{
namespace eth
{
namespace jit
{
Runtime::Runtime(RuntimeData* _data, Env* _env) :
m_data(*_data),
m_env(*_env)
{}
bytes_ref Runtime::getReturnData() const
{
auto data = m_data.callData;
auto size = static_cast<size_t>(m_data.callDataSize);
if (data < m_memory.data() || data >= m_memory.data() + m_memory.size() || 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};
}
}
}
}