ethereum.homestead.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

KECCAK

67
    KECCAK = 0x20

ADDRESS

70
    ADDRESS = 0x30

BALANCE

71
    BALANCE = 0x31

ORIGIN

72
    ORIGIN = 0x32

CALLER

73
    CALLER = 0x33

CALLVALUE

74
    CALLVALUE = 0x34

CALLDATALOAD

75
    CALLDATALOAD = 0x35

CALLDATASIZE

76
    CALLDATASIZE = 0x36

CALLDATACOPY

77
    CALLDATACOPY = 0x37

CODESIZE

78
    CODESIZE = 0x38

CODECOPY

79
    CODECOPY = 0x39

GASPRICE

80
    GASPRICE = 0x3A

EXTCODESIZE

81
    EXTCODESIZE = 0x3B

EXTCODECOPY

82
    EXTCODECOPY = 0x3C

BLOCKHASH

85
    BLOCKHASH = 0x40

COINBASE

86
    COINBASE = 0x41

TIMESTAMP

87
    TIMESTAMP = 0x42

NUMBER

88
    NUMBER = 0x43

DIFFICULTY

89
    DIFFICULTY = 0x44

GASLIMIT

90
    GASLIMIT = 0x45

STOP

93
    STOP = 0x00

JUMP

94
    JUMP = 0x56

JUMPI

95
    JUMPI = 0x57

PC

96
    PC = 0x58

GAS

97
    GAS = 0x5A

JUMPDEST

98
    JUMPDEST = 0x5B

SLOAD

101
    SLOAD = 0x54

SSTORE

102
    SSTORE = 0x55

POP

105
    POP = 0x50

PUSH1

108
    PUSH1 = 0x60

PUSH2

109
    PUSH2 = 0x61

PUSH3

110
    PUSH3 = 0x62

PUSH4

111
    PUSH4 = 0x63

PUSH5

112
    PUSH5 = 0x64

PUSH6

113
    PUSH6 = 0x65

PUSH7

114
    PUSH7 = 0x66

PUSH8

115
    PUSH8 = 0x67

PUSH9

116
    PUSH9 = 0x68

PUSH10

117
    PUSH10 = 0x69

PUSH11

118
    PUSH11 = 0x6A

PUSH12

119
    PUSH12 = 0x6B

PUSH13

120
    PUSH13 = 0x6C

PUSH14

121
    PUSH14 = 0x6D

PUSH15

122
    PUSH15 = 0x6E

PUSH16

123
    PUSH16 = 0x6F

PUSH17

124
    PUSH17 = 0x70

PUSH18

125
    PUSH18 = 0x71

PUSH19

126
    PUSH19 = 0x72

PUSH20

127
    PUSH20 = 0x73

PUSH21

128
    PUSH21 = 0x74

PUSH22

129
    PUSH22 = 0x75

PUSH23

130
    PUSH23 = 0x76

PUSH24

131
    PUSH24 = 0x77

PUSH25

132
    PUSH25 = 0x78

PUSH26

133
    PUSH26 = 0x79

PUSH27

134
    PUSH27 = 0x7A

PUSH28

135
    PUSH28 = 0x7B

PUSH29

136
    PUSH29 = 0x7C

PUSH30

137
    PUSH30 = 0x7D

PUSH31

138
    PUSH31 = 0x7E

PUSH32

139
    PUSH32 = 0x7F

DUP1

142
    DUP1 = 0x80

DUP2

143
    DUP2 = 0x81

DUP3

144
    DUP3 = 0x82

DUP4

145
    DUP4 = 0x83

DUP5

146
    DUP5 = 0x84

DUP6

147
    DUP6 = 0x85

DUP7

148
    DUP7 = 0x86

DUP8

149
    DUP8 = 0x87

DUP9

150
    DUP9 = 0x88

DUP10

151
    DUP10 = 0x89

DUP11

152
    DUP11 = 0x8A

DUP12

153
    DUP12 = 0x8B

DUP13

154
    DUP13 = 0x8C

DUP14

155
    DUP14 = 0x8D

DUP15

156
    DUP15 = 0x8E

DUP16

157
    DUP16 = 0x8F

SWAP1

160
    SWAP1 = 0x90

SWAP2

161
    SWAP2 = 0x91

SWAP3

162
    SWAP3 = 0x92

SWAP4

163
    SWAP4 = 0x93

SWAP5

164
    SWAP5 = 0x94

SWAP6

165
    SWAP6 = 0x95

SWAP7

166
    SWAP7 = 0x96

SWAP8

167
    SWAP8 = 0x97

SWAP9

168
    SWAP9 = 0x98

SWAP10

169
    SWAP10 = 0x99

SWAP11

170
    SWAP11 = 0x9A

SWAP12

171
    SWAP12 = 0x9B

SWAP13

172
    SWAP13 = 0x9C

SWAP14

173
    SWAP14 = 0x9D

SWAP15

174
    SWAP15 = 0x9E

SWAP16

175
    SWAP16 = 0x9F

MLOAD

178
    MLOAD = 0x51

MSTORE

179
    MSTORE = 0x52

MSTORE8

180
    MSTORE8 = 0x53

MSIZE

181
    MSIZE = 0x59

LOG0

184
    LOG0 = 0xA0

LOG1

185
    LOG1 = 0xA1

LOG2

186
    LOG2 = 0xA2

LOG3

187
    LOG3 = 0xA3

LOG4

188
    LOG4 = 0xA4

CREATE

191
    CREATE = 0xF0

CALL

192
    CALL = 0xF1

CALLCODE

193
    CALLCODE = 0xF2

RETURN

194
    RETURN = 0xF3

DELEGATECALL

195
    DELEGATECALL = 0xF4

SELFDESTRUCT

196
    SELFDESTRUCT = 0xFF

op_implementation

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