Skip to content

Commit

Permalink
core/vm: move TSTORE,TLOAD to correct opcode nums (ethereum#27613)
Browse files Browse the repository at this point in the history
* core/vm: move TSTORE,TLOAD to correct opcode nums

* core/vm: cleanup
  • Loading branch information
MariusVanDerWijden authored and devopsbo3 committed Nov 10, 2023
1 parent e1e0b1c commit 81806c2
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions core/vm/opcodes.go
Expand Up @@ -117,6 +117,8 @@ const (
MSIZE OpCode = 0x59
GAS OpCode = 0x5a
JUMPDEST OpCode = 0x5b
TLOAD OpCode = 0x5c
TSTORE OpCode = 0x5d
PUSH0 OpCode = 0x5f
)

Expand Down Expand Up @@ -205,12 +207,6 @@ const (
LOG4
)

// 0xb0 range.
const (
TLOAD OpCode = 0xb3
TSTORE OpCode = 0xb4
)

// 0xf0 range - closures.
const (
CREATE OpCode = 0xf0
Expand Down Expand Up @@ -304,6 +300,8 @@ var opCodeToString = map[OpCode]string{
MSIZE: "MSIZE",
GAS: "GAS",
JUMPDEST: "JUMPDEST",
TLOAD: "TLOAD",
TSTORE: "TSTORE",
PUSH0: "PUSH0",

// 0x60 range - pushes.
Expand Down Expand Up @@ -383,10 +381,6 @@ var opCodeToString = map[OpCode]string{
LOG3: "LOG3",
LOG4: "LOG4",

// 0xb0 range.
TLOAD: "TLOAD",
TSTORE: "TSTORE",

// 0xf0 range - closures.
CREATE: "CREATE",
CALL: "CALL",
Expand Down Expand Up @@ -477,6 +471,8 @@ var stringToOp = map[string]OpCode{
"MSIZE": MSIZE,
"GAS": GAS,
"JUMPDEST": JUMPDEST,
"TLOAD": TLOAD,
"TSTORE": TSTORE,
"PUSH0": PUSH0,
"PUSH1": PUSH1,
"PUSH2": PUSH2,
Expand Down Expand Up @@ -547,8 +543,6 @@ var stringToOp = map[string]OpCode{
"LOG2": LOG2,
"LOG3": LOG3,
"LOG4": LOG4,
"TLOAD": TLOAD,
"TSTORE": TSTORE,
"CREATE": CREATE,
"CREATE2": CREATE2,
"CALL": CALL,
Expand Down

0 comments on commit 81806c2

Please sign in to comment.