Ethereum  PoC-8
The C++ Implementation of Ethereum
dev::eth::InstructionInfo Struct Reference

Information structure for a particular instruction. More...

#include <Instruction.h>

Public Attributes

char const *const name
 The name of the instruction. More...
 
int const args
 Number of items required on the stack for this instruction (and, for the purposes of ret, the number taken from the stack). More...
 
int const ret
 Number of items placed (back) on the stack by this instruction, assuming args items were removed. More...
 
Tier const gasPriceTier
 Tier for gas pricing. More...
 

Detailed Description

Information structure for a particular instruction.

Definition at line 248 of file Instruction.h.

Member Data Documentation

◆ args

int const dev::eth::InstructionInfo::args

Number of items required on the stack for this instruction (and, for the purposes of ret, the number taken from the stack).

Definition at line 251 of file Instruction.h.

◆ gasPriceTier

Tier const dev::eth::InstructionInfo::gasPriceTier

Tier for gas pricing.

Definition at line 253 of file Instruction.h.

◆ name

char const* const dev::eth::InstructionInfo::name

The name of the instruction.

Definition at line 250 of file Instruction.h.

◆ ret

int const dev::eth::InstructionInfo::ret

Number of items placed (back) on the stack by this instruction, assuming args items were removed.

Definition at line 252 of file Instruction.h.


The documentation for this struct was generated from the following file: