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.
30 lines
484 B
30 lines
484 B
#pragma once
|
|
|
|
#include "RuntimeData.h"
|
|
|
|
namespace dev
|
|
{
|
|
namespace eth
|
|
{
|
|
namespace jit
|
|
{
|
|
|
|
class Runtime
|
|
{
|
|
public:
|
|
void init(RuntimeData* _data, Env* _env);
|
|
EXPORT ~Runtime();
|
|
|
|
bytes_ref getReturnData() const;
|
|
|
|
private:
|
|
RuntimeData* m_data = nullptr; ///< Pointer to data. Expected by compiled contract.
|
|
Env* m_env = nullptr; ///< Pointer to environment proxy. Expected by compiled contract.
|
|
byte* m_memData = nullptr;
|
|
uint64_t m_memSize = 0;
|
|
uint64_t m_memCap = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|