ethereum.arrow_glacier.vm.instructionsethereum.gray_glacier.vm.instructions

EVM Instruction Encoding (Opcodes) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. contents:: Table of Contents :backlinks: none :local:

Introduction

Machine readable representations of EVM instructions, and a mapping to their implementations.

Ops

Enum for EVM Opcodes

class Ops:

ADD

39
    ADD = 0x01

MUL

40
    MUL = 0x02

SUB

41
    SUB = 0x03

DIV

42
    DIV = 0x04

SDIV

43
    SDIV = 0x05

MOD

44
    MOD = 0x06

SMOD

45
    SMOD = 0x07

ADDMOD

46
    ADDMOD = 0x08

MULMOD

47
    MULMOD = 0x09

EXP

48
    EXP = 0x0A

SIGNEXTEND

49
    SIGNEXTEND = 0x0B

LT

52
    LT = 0x10

GT

53
    GT = 0x11

SLT

54
    SLT = 0x12

SGT

55
    SGT = 0x13

EQ

56
    EQ = 0x14

ISZERO

57
    ISZERO = 0x15

AND

60
    AND = 0x16

OR

61
    OR = 0x17

XOR

62
    XOR = 0x18

NOT

63
    NOT = 0x19

BYTE

64
    BYTE = 0x1A

SHL

65
    SHL = 0x1B

SHR

66
    SHR = 0x1C

SAR

67
    SAR = 0x1D

KECCAK

70
    KECCAK = 0x20

ADDRESS

73
    ADDRESS = 0x30

BALANCE

74
    BALANCE = 0x31

ORIGIN

75
    ORIGIN = 0x32

CALLER

76
    CALLER = 0x33

CALLVALUE

77
    CALLVALUE = 0x34

CALLDATALOAD

78
    CALLDATALOAD = 0x35

CALLDATASIZE

79
    CALLDATASIZE = 0x36

CALLDATACOPY

80
    CALLDATACOPY = 0x37

CODESIZE

81
    CODESIZE = 0x38

CODECOPY

82
    CODECOPY = 0x39

GASPRICE

83
    GASPRICE = 0x3A

EXTCODESIZE

84
    EXTCODESIZE = 0x3B

EXTCODECOPY

85
    EXTCODECOPY = 0x3C

RETURNDATASIZE

86
    RETURNDATASIZE = 0x3D

RETURNDATACOPY

87
    RETURNDATACOPY = 0x3E

EXTCODEHASH

88
    EXTCODEHASH = 0x3F

BLOCKHASH

91
    BLOCKHASH = 0x40

COINBASE

92
    COINBASE = 0x41

TIMESTAMP

93
    TIMESTAMP = 0x42

NUMBER

94
    NUMBER = 0x43

DIFFICULTY

95
    DIFFICULTY = 0x44

GASLIMIT

96
    GASLIMIT = 0x45

CHAINID

97
    CHAINID = 0x46

SELFBALANCE

98
    SELFBALANCE = 0x47

BASEFEE

99
    BASEFEE = 0x48

STOP

102
    STOP = 0x00

JUMP

103
    JUMP = 0x56

JUMPI

104
    JUMPI = 0x57

PC

105
    PC = 0x58

GAS

106
    GAS = 0x5A

JUMPDEST

107
    JUMPDEST = 0x5B

SLOAD

110
    SLOAD = 0x54

SSTORE

111
    SSTORE = 0x55

POP

114
    POP = 0x50

PUSH1

117
    PUSH1 = 0x60

PUSH2

118
    PUSH2 = 0x61

PUSH3

119
    PUSH3 = 0x62

PUSH4

120
    PUSH4 = 0x63

PUSH5

121
    PUSH5 = 0x64

PUSH6

122
    PUSH6 = 0x65

PUSH7

123
    PUSH7 = 0x66

PUSH8

124
    PUSH8 = 0x67

PUSH9

125
    PUSH9 = 0x68

PUSH10

126
    PUSH10 = 0x69

PUSH11

127
    PUSH11 = 0x6A

PUSH12

128
    PUSH12 = 0x6B

PUSH13

129
    PUSH13 = 0x6C

PUSH14

130
    PUSH14 = 0x6D

PUSH15

131
    PUSH15 = 0x6E

PUSH16

132
    PUSH16 = 0x6F

PUSH17

133
    PUSH17 = 0x70

PUSH18

134
    PUSH18 = 0x71

PUSH19

135
    PUSH19 = 0x72

PUSH20

136
    PUSH20 = 0x73

PUSH21

137
    PUSH21 = 0x74

PUSH22

138
    PUSH22 = 0x75

PUSH23

139
    PUSH23 = 0x76

PUSH24

140
    PUSH24 = 0x77

PUSH25

141
    PUSH25 = 0x78

PUSH26

142
    PUSH26 = 0x79

PUSH27

143
    PUSH27 = 0x7A

PUSH28

144
    PUSH28 = 0x7B

PUSH29

145
    PUSH29 = 0x7C

PUSH30

146
    PUSH30 = 0x7D

PUSH31

147
    PUSH31 = 0x7E

PUSH32

148
    PUSH32 = 0x7F

DUP1

151
    DUP1 = 0x80

DUP2

152
    DUP2 = 0x81

DUP3

153
    DUP3 = 0x82

DUP4

154
    DUP4 = 0x83

DUP5

155
    DUP5 = 0x84

DUP6

156
    DUP6 = 0x85

DUP7

157
    DUP7 = 0x86

DUP8

158
    DUP8 = 0x87

DUP9

159
    DUP9 = 0x88

DUP10

160
    DUP10 = 0x89

DUP11

161
    DUP11 = 0x8A

DUP12

162
    DUP12 = 0x8B

DUP13

163
    DUP13 = 0x8C

DUP14

164
    DUP14 = 0x8D

DUP15

165
    DUP15 = 0x8E

DUP16

166
    DUP16 = 0x8F

SWAP1

169
    SWAP1 = 0x90

SWAP2

170
    SWAP2 = 0x91

SWAP3

171
    SWAP3 = 0x92

SWAP4

172
    SWAP4 = 0x93

SWAP5

173
    SWAP5 = 0x94

SWAP6

174
    SWAP6 = 0x95

SWAP7

175
    SWAP7 = 0x96

SWAP8

176
    SWAP8 = 0x97

SWAP9

177
    SWAP9 = 0x98

SWAP10

178
    SWAP10 = 0x99

SWAP11

179
    SWAP11 = 0x9A

SWAP12

180
    SWAP12 = 0x9B

SWAP13

181
    SWAP13 = 0x9C

SWAP14

182
    SWAP14 = 0x9D

SWAP15

183
    SWAP15 = 0x9E

SWAP16

184
    SWAP16 = 0x9F

MLOAD

187
    MLOAD = 0x51

MSTORE

188
    MSTORE = 0x52

MSTORE8

189
    MSTORE8 = 0x53

MSIZE

190
    MSIZE = 0x59

LOG0

193
    LOG0 = 0xA0

LOG1

194
    LOG1 = 0xA1

LOG2

195
    LOG2 = 0xA2

LOG3

196
    LOG3 = 0xA3

LOG4

197
    LOG4 = 0xA4

CREATE

200
    CREATE = 0xF0

CALL

201
    CALL = 0xF1

CALLCODE

202
    CALLCODE = 0xF2

RETURN

203
    RETURN = 0xF3

DELEGATECALL

204
    DELEGATECALL = 0xF4

CREATE2

205
    CREATE2 = 0xF5

STATICCALL

206
    STATICCALL = 0xFA

REVERT

207
    REVERT = 0xFD

SELFDESTRUCT

208
    SELFDESTRUCT = 0xFF

op_implementation

211
op_implementation: Dict[Ops, Callable] = {
212
    Ops.STOP: control_flow_instructions.stop,
213
    Ops.ADD: arithmetic_instructions.add,
214
    Ops.MUL: arithmetic_instructions.mul,
215
    Ops.SUB: arithmetic_instructions.sub,
216
    Ops.DIV: arithmetic_instructions.div,
217
    Ops.SDIV: arithmetic_instructions.sdiv,
218
    Ops.MOD: arithmetic_instructions.mod,
219
    Ops.SMOD: arithmetic_instructions.smod,
220
    Ops.ADDMOD: arithmetic_instructions.addmod,
221
    Ops.MULMOD: arithmetic_instructions.mulmod,
222
    Ops.EXP: arithmetic_instructions.exp,
223
    Ops.SIGNEXTEND: arithmetic_instructions.signextend,
224
    Ops.LT: comparison_instructions.less_than,
225
    Ops.GT: comparison_instructions.greater_than,
226
    Ops.SLT: comparison_instructions.signed_less_than,
227
    Ops.SGT: comparison_instructions.signed_greater_than,
228
    Ops.EQ: comparison_instructions.equal,
229
    Ops.ISZERO: comparison_instructions.is_zero,
230
    Ops.AND: bitwise_instructions.bitwise_and,
231
    Ops.OR: bitwise_instructions.bitwise_or,
232
    Ops.XOR: bitwise_instructions.bitwise_xor,
233
    Ops.NOT: bitwise_instructions.bitwise_not,
234
    Ops.BYTE: bitwise_instructions.get_byte,
235
    Ops.SHL: bitwise_instructions.bitwise_shl,
236
    Ops.SHR: bitwise_instructions.bitwise_shr,
237
    Ops.SAR: bitwise_instructions.bitwise_sar,
238
    Ops.KECCAK: keccak_instructions.keccak,
239
    Ops.SLOAD: storage_instructions.sload,
240
    Ops.BLOCKHASH: block_instructions.block_hash,
241
    Ops.COINBASE: block_instructions.coinbase,
242
    Ops.TIMESTAMP: block_instructions.timestamp,
243
    Ops.NUMBER: block_instructions.number,
244
    Ops.DIFFICULTY: block_instructions.difficulty,
245
    Ops.GASLIMIT: block_instructions.gas_limit,
246
    Ops.CHAINID: block_instructions.chain_id,
247
    Ops.MLOAD: memory_instructions.mload,
248
    Ops.MSTORE: memory_instructions.mstore,
249
    Ops.MSTORE8: memory_instructions.mstore8,
250
    Ops.MSIZE: memory_instructions.msize,
251
    Ops.ADDRESS: environment_instructions.address,
252
    Ops.BALANCE: environment_instructions.balance,
253
    Ops.ORIGIN: environment_instructions.origin,
254
    Ops.CALLER: environment_instructions.caller,
255
    Ops.CALLVALUE: environment_instructions.callvalue,
256
    Ops.CALLDATALOAD: environment_instructions.calldataload,
257
    Ops.CALLDATASIZE: environment_instructions.calldatasize,
258
    Ops.CALLDATACOPY: environment_instructions.calldatacopy,
259
    Ops.CODESIZE: environment_instructions.codesize,
260
    Ops.CODECOPY: environment_instructions.codecopy,
261
    Ops.GASPRICE: environment_instructions.gasprice,
262
    Ops.EXTCODESIZE: environment_instructions.extcodesize,
263
    Ops.EXTCODECOPY: environment_instructions.extcodecopy,
264
    Ops.RETURNDATASIZE: environment_instructions.returndatasize,
265
    Ops.RETURNDATACOPY: environment_instructions.returndatacopy,
266
    Ops.EXTCODEHASH: environment_instructions.extcodehash,
267
    Ops.SELFBALANCE: environment_instructions.self_balance,
268
    Ops.BASEFEE: environment_instructions.base_fee,
269
    Ops.SSTORE: storage_instructions.sstore,
270
    Ops.JUMP: control_flow_instructions.jump,
271
    Ops.JUMPI: control_flow_instructions.jumpi,
272
    Ops.PC: control_flow_instructions.pc,
273
    Ops.GAS: control_flow_instructions.gas_left,
274
    Ops.JUMPDEST: control_flow_instructions.jumpdest,
275
    Ops.POP: stack_instructions.pop,
276
    Ops.PUSH1: stack_instructions.push1,
277
    Ops.PUSH2: stack_instructions.push2,
278
    Ops.PUSH3: stack_instructions.push3,
279
    Ops.PUSH4: stack_instructions.push4,
280
    Ops.PUSH5: stack_instructions.push5,
281
    Ops.PUSH6: stack_instructions.push6,
282
    Ops.PUSH7: stack_instructions.push7,
283
    Ops.PUSH8: stack_instructions.push8,
284
    Ops.PUSH9: stack_instructions.push9,
285
    Ops.PUSH10: stack_instructions.push10,
286
    Ops.PUSH11: stack_instructions.push11,
287
    Ops.PUSH12: stack_instructions.push12,
288
    Ops.PUSH13: stack_instructions.push13,
289
    Ops.PUSH14: stack_instructions.push14,
290
    Ops.PUSH15: stack_instructions.push15,
291
    Ops.PUSH16: stack_instructions.push16,
292
    Ops.PUSH17: stack_instructions.push17,
293
    Ops.PUSH18: stack_instructions.push18,
294
    Ops.PUSH19: stack_instructions.push19,
295
    Ops.PUSH20: stack_instructions.push20,
296
    Ops.PUSH21: stack_instructions.push21,
297
    Ops.PUSH22: stack_instructions.push22,
298
    Ops.PUSH23: stack_instructions.push23,
299
    Ops.PUSH24: stack_instructions.push24,
300
    Ops.PUSH25: stack_instructions.push25,
301
    Ops.PUSH26: stack_instructions.push26,
302
    Ops.PUSH27: stack_instructions.push27,
303
    Ops.PUSH28: stack_instructions.push28,
304
    Ops.PUSH29: stack_instructions.push29,
305
    Ops.PUSH30: stack_instructions.push30,
306
    Ops.PUSH31: stack_instructions.push31,
307
    Ops.PUSH32: stack_instructions.push32,
308
    Ops.DUP1: stack_instructions.dup1,
309
    Ops.DUP2: stack_instructions.dup2,
310
    Ops.DUP3: stack_instructions.dup3,
311
    Ops.DUP4: stack_instructions.dup4,
312
    Ops.DUP5: stack_instructions.dup5,
313
    Ops.DUP6: stack_instructions.dup6,
314
    Ops.DUP7: stack_instructions.dup7,
315
    Ops.DUP8: stack_instructions.dup8,
316
    Ops.DUP9: stack_instructions.dup9,
317
    Ops.DUP10: stack_instructions.dup10,
318
    Ops.DUP11: stack_instructions.dup11,
319
    Ops.DUP12: stack_instructions.dup12,
320
    Ops.DUP13: stack_instructions.dup13,
321
    Ops.DUP14: stack_instructions.dup14,
322
    Ops.DUP15: stack_instructions.dup15,
323
    Ops.DUP16: stack_instructions.dup16,
324
    Ops.SWAP1: stack_instructions.swap1,
325
    Ops.SWAP2: stack_instructions.swap2,
326
    Ops.SWAP3: stack_instructions.swap3,
327
    Ops.SWAP4: stack_instructions.swap4,
328
    Ops.SWAP5: stack_instructions.swap5,
329
    Ops.SWAP6: stack_instructions.swap6,
330
    Ops.SWAP7: stack_instructions.swap7,
331
    Ops.SWAP8: stack_instructions.swap8,
332
    Ops.SWAP9: stack_instructions.swap9,
333
    Ops.SWAP10: stack_instructions.swap10,
334
    Ops.SWAP11: stack_instructions.swap11,
335
    Ops.SWAP12: stack_instructions.swap12,
336
    Ops.SWAP13: stack_instructions.swap13,
337
    Ops.SWAP14: stack_instructions.swap14,
338
    Ops.SWAP15: stack_instructions.swap15,
339
    Ops.SWAP16: stack_instructions.swap16,
340
    Ops.LOG0: log_instructions.log0,
341
    Ops.LOG1: log_instructions.log1,
342
    Ops.LOG2: log_instructions.log2,
343
    Ops.LOG3: log_instructions.log3,
344
    Ops.LOG4: log_instructions.log4,
345
    Ops.CREATE: system_instructions.create,
346
    Ops.RETURN: system_instructions.return_,
347
    Ops.CALL: system_instructions.call,
348
    Ops.CALLCODE: system_instructions.callcode,
349
    Ops.DELEGATECALL: system_instructions.delegatecall,
350
    Ops.SELFDESTRUCT: system_instructions.selfdestruct,
351
    Ops.STATICCALL: system_instructions.staticcall,
352
    Ops.REVERT: system_instructions.revert,
353
    Ops.CREATE2: system_instructions.create2,
354
}