|
|
@ -149,6 +149,11 @@ const std::map<std::string, Instruction> dev::eth::c_instructions = |
|
|
|
{ "SWAP14", Instruction::SWAP14 }, |
|
|
|
{ "SWAP15", Instruction::SWAP15 }, |
|
|
|
{ "SWAP16", Instruction::SWAP16 }, |
|
|
|
{ "LOG0", Instruction::LOG0 }, |
|
|
|
{ "LOG1", Instruction::LOG1 }, |
|
|
|
{ "LOG2", Instruction::LOG2 }, |
|
|
|
{ "LOG3", Instruction::LOG3 }, |
|
|
|
{ "LOG4", Instruction::LOG4 }, |
|
|
|
{ "CREATE", Instruction::CREATE }, |
|
|
|
{ "CALL", Instruction::CALL }, |
|
|
|
{ "CALLCODE", Instruction::CALLCODE }, |
|
|
@ -277,6 +282,11 @@ static const std::map<Instruction, InstructionInfo> c_instructionInfo = |
|
|
|
{ Instruction::SWAP14, { "SWAP14", 0, 15, 15 } }, |
|
|
|
{ Instruction::SWAP15, { "SWAP15", 0, 16, 16 } }, |
|
|
|
{ Instruction::SWAP16, { "SWAP16", 0, 17, 17 } }, |
|
|
|
{ Instruction::LOG0, { "LOG0", 0, 1, 0 } }, |
|
|
|
{ Instruction::LOG1, { "LOG1", 0, 2, 0 } }, |
|
|
|
{ Instruction::LOG2, { "LOG2", 0, 3, 0 } }, |
|
|
|
{ Instruction::LOG3, { "LOG3", 0, 4, 0 } }, |
|
|
|
{ Instruction::LOG4, { "LOG4", 0, 5, 0 } }, |
|
|
|
{ Instruction::CREATE, { "CREATE", 0, 3, 1 } }, |
|
|
|
{ Instruction::CALL, { "CALL", 0, 7, 1 } }, |
|
|
|
{ Instruction::CALLCODE, { "CALLCODE", 0, 7, 1 } }, |
|
|
|