Skip to content

Commit 148f923

Browse files
committed
Add REVERT to libevmasm
1 parent 14ded49 commit 148f923

5 files changed

+7
-1
lines changed

libevmasm/GasMeter.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ GasMeter::GasConsumption GasMeter::estimateMax(AssemblyItem const& _item, bool _
8080
gas += GasCosts::sloadGas;
8181
break;
8282
case Instruction::RETURN:
83+
case Instruction::REVERT:
8384
gas += memoryGas(0, -1);
8485
break;
8586
case Instruction::MLOAD:

libevmasm/Instruction.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ const std::map<std::string, Instruction> dev::solidity::c_instructions =
159159
{ "CALLCODE", Instruction::CALLCODE },
160160
{ "RETURN", Instruction::RETURN },
161161
{ "DELEGATECALL", Instruction::DELEGATECALL },
162+
{ "REVERT", Instruction::REVERT },
162163
{ "INVALID", Instruction::INVALID },
163164
{ "SELFDESTRUCT", Instruction::SELFDESTRUCT }
164165
};
@@ -294,6 +295,7 @@ static const std::map<Instruction, InstructionInfo> c_instructionInfo =
294295
{ Instruction::CALLCODE, { "CALLCODE", 0, 7, 1, true, Tier::Special } },
295296
{ Instruction::RETURN, { "RETURN", 0, 2, 0, true, Tier::Zero } },
296297
{ Instruction::DELEGATECALL, { "DELEGATECALL", 0, 6, 1, true, Tier::Special } },
298+
{ Instruction::REVERT, { "REVERT", 0, 2, 0, true, Tier::Zero } },
297299
{ Instruction::INVALID, { "INVALID", 0, 0, 0, true, Tier::Zero } },
298300
{ Instruction::SELFDESTRUCT, { "SELFDESTRUCT", 0, 1, 0, true, Tier::Zero } }
299301
};

libevmasm/Instruction.h

+1
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ enum class Instruction: uint8_t
177177
RETURN, ///< halt execution returning output data
178178
DELEGATECALL, ///< like CALLCODE but keeps caller's value and sender
179179

180+
REVERT = 0xfd, ///< halt execution, revert state and return output data
180181
INVALID = 0xfe, ///< invalid instruction for expressing runtime errors (e.g., division-by-zero)
181182
SELFDESTRUCT = 0xff ///< halt execution and register account for later deletion
182183
};

libevmasm/PeepholeOptimiser.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ struct UnreachableCode
200200
it[0] != Instruction::RETURN &&
201201
it[0] != Instruction::STOP &&
202202
it[0] != Instruction::INVALID &&
203-
it[0] != Instruction::SELFDESTRUCT
203+
it[0] != Instruction::SELFDESTRUCT &&
204+
it[0] != Instruction::REVERT
204205
)
205206
return false;
206207

libevmasm/SemanticInformation.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ bool SemanticInformation::altersControlFlow(AssemblyItem const& _item)
119119
case Instruction::SELFDESTRUCT:
120120
case Instruction::STOP:
121121
case Instruction::INVALID:
122+
case Instruction::REVERT:
122123
return true;
123124
default:
124125
return false;

0 commit comments

Comments
 (0)