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.
48 lines
620 B
48 lines
620 B
#pragma once
|
|
|
|
#include "Utils.h"
|
|
|
|
|
|
namespace dev
|
|
{
|
|
namespace eth
|
|
{
|
|
namespace jit
|
|
{
|
|
|
|
struct RuntimeData
|
|
{
|
|
enum Index
|
|
{
|
|
Gas,
|
|
Address,
|
|
Caller,
|
|
Origin,
|
|
CallValue,
|
|
CallDataSize,
|
|
GasPrice,
|
|
CoinBase,
|
|
TimeStamp,
|
|
Number,
|
|
Difficulty,
|
|
GasLimit,
|
|
CodeSize,
|
|
|
|
_size,
|
|
|
|
ReturnDataOffset = CallValue, // Reuse 2 fields for return data reference
|
|
ReturnDataSize = CallDataSize,
|
|
SuicideDestAddress = Address, ///< Suicide balance destination address
|
|
};
|
|
|
|
i256 elems[_size] = {};
|
|
byte const* callData = nullptr;
|
|
byte const* code = nullptr;
|
|
};
|
|
|
|
/// VM Environment (ExtVM) opaque type
|
|
struct Env;
|
|
|
|
}
|
|
}
|
|
}
|
|
|