13 KiB
eip | title | description | author | discussions-to | status | type | category | created | requires |
---|---|---|---|---|---|---|---|---|---|
4200 | EOF - Static relative jumps | RJUMP, RJUMPI and RJUMPV instructions with a signed immediate encoding the jump destination | Alex Beregszaszi (@axic), Andrei Maiboroda (@gumb0), Paweł Bylica (@chfast) | https://ethereum-magicians.org/t/eip-3920-static-relative-jumps/7108 | Review | Standards Track | Core | 2021-07-16 | 3540, 3670 |
Abstract
Three new EVM jump instructions are introduced (RJUMP
, RJUMPI
and RJUMPV
) which encode destinations as signed immediate values. These can be useful in the majority of (but not all) use cases and offer a cost reduction.
Motivation
A recurring discussion topic is that EVM only has a mechanism for dynamic jumps. They provide a very flexible architecture with only 2 (!) instructions. This flexibility comes at a cost however: it makes analysis of code more complicated and it also (partially) resulted in the need to have the JUMPDEST
marker.
In a great many cases control flow is actually static and there is no need for any dynamic behaviour, though not every use case can be solved by static jumps.
There are various ways to reduce the need for dynamic jumps, some examples:
- With native support for functions / subroutines
- A "return to caller" instruction
- A "switch-case" table with dynamic indexing
This change does not attempt to solve these, but instead introduces a minimal feature set to allow compilers to decide which is the most adequate option for a given use case. It is expected that compilers will use RJUMP
/RJUMPI
almost exclusively, with the exception of returning to the caller continuing to use JUMP
.
This functionality does not preclude the EVM from introducing other forms of control flow later on. RJUMP
/RJUMPI
can efficiently co-exists with a higher-level declaration of functions, where static relative jumps should be used for intra-function control flow.
The main benefit of these instruction is reduced gas cost (both at deploy and execution time) and better analysis properties.
Specification
We introduce three new instructions on the same block number EIP-3540 is activated on:
RJUMP
(0x5c) - relative jumpRJUMPI
(0x5d) - conditional relative jumpRJUMPV
(0x5e) - relative jump via jump table
If the code is legacy bytecode, all of these instructions result in an exceptional halt. (Note: This means no change to behaviour.)
If the code is valid EOF1:
RJUMP relative_offset
sets thePC
toPC_post_instruction + relative_offset
.RJUMPI relative_offset
pops a value (condition
) from the stack, and sets thePC
toPC_post_instruction + ((condition == 0) ? 0 : relative_offset)
.RJUMPV count relative_offset+
pops a value (case
) from the stack, and sets thePC
toPC_post_instruction + ((case >= count) ? 0 : relative_offset[case])
.
The immediate argument relative_offset
is encoded as a 16-bit signed (two's-complement) big-endian value. Under PC_post_instruction
we mean the PC
position after the entire immediate value.
The immediate encoding of RJUMPV
is more special: the 8-bit count
value determines the number of relative_offset
values following. Validation algorithm of EIP-3670 is extended to verify that count >= 1
. The encoding of RJUMPV
must have at least one relative_offset
and thus it will take at minimum 4 bytes. Furthermore, the case >= count
condition falling through means that in many use cases one would place the default path following the RJUMPV
instruction. An interesting feature is that RJUMPV 1 relative_offset
is an inverted-RJUMPI
, which can be used in many cases instead of ISZERO RJUMPI relative_offset
.
We also extend the validation algorithm of EIP-3670 to verify that each RJUMP
/RJUMPI
/RJUMPV
has a relative_offset
pointing to an instruction. This means it cannot point to an immediate data of PUSHn
/RJUMP
/RJUMPI
/RJUMPV
. It cannot point outside of code bounds. It is allowed to point to a JUMPDEST
, but is not required to.
Because the destinations are validated upfront, the cost of these instructions are less than their dynamic counterparts: RJUMP
should cost 2, and RJUMPI
and RJUMPV
should cost 4.
Rationale
Relative addressing
We chose relative addressing in order to support code which is relocatable. This also means a code snippet can be injected. A technique seen used prior to this EIP to achieve the same goal was to inject code like PUSHn PC ADD JUMPI
.
We do not see any significant downside to relative addressing and it allows us to also deprecate the PC
instruction.
Immediate size
The signed 16-bit immediate means that the largest jump distance possible is 32767. In the case the bytecode at PC=0
starts with an RJUMP
, it will be possible to jump as far as PC=32770
.
Given MAX_CODE_SIZE = 24576
(in EIP-170) and MAX_INITCODE_SIZE = 49152
(in EIP-3860), we think the 16-bit immediate is large enough.
A version with an 8-bit immediate would only allow moving PC
backward by 125 or forward by 127 bytes. While that seems to be a good enough distance for many for-loops, it is likely not good enough for cross-function jumps, and since the 16-bit immediate is the same size as what a dynamic jump would take in such cases (3 bytes: JUMP PUSH1 n
), we think having less instructions is better.
Should there be a need to have immediate encodings of other size (such as 8-bits, 24-bits or 32-bits), it would be possible to introduce new opcodes, similarly to how multiple PUSH
instructions exist.
PUSHn JUMP
sequences
If we chose absolute addressing, then RJUMP
could be viewed similar to the sequence PUSHn JUMP
(and RJUMPI
similar to PUSHn JUMPI
). In that case one could argue that instead of introducing a new instruction, such sequences should get a discount, because EVMs could optimise them.
We think this is a bad direction to go:
- It further complicates the already complex rules of gas calculation.
- And it either requires a consensus defined internal representation for EVM code, or forces EVM implementations to do optimisations on their own.
Both of these are risky. Furthermore we think that EVM implementations should be free to chose what optimisations they apply, and the savings do not need to be passed down at all cost.
Additionally it requires a potentially significant change to the current implementations which depend on a streaming one-by-one execution without a lookahead.
Relation to dynamic jumps
The goal was not to completely replace the current control flow system of the EVM, but to augment it. There are many cases where dynamic jumps are useful, such as returning to the caller.
It is possible to introduce a new mechanism for having a pre-defined table of valid jump destinations, and dynamically supplying the index within this table to accomplish some form of dynamic jumps. This is very useful for efficiently encoding a form of "switch-cases" statements. It could also be used for "return to caller" cases, however it is likely inefficient or awkward.
Lack of JUMPDEST
JUMPDEST
serves two purposes:
- To efficiently partition code -- this can be useful for pre-calculating total gas usage for a given block (i.e. instructions between
JUMPDEST
s), and for JIT/AOT translation. - To explicitly show valid locations (otherwise any non-data location would be valid).
This functionality is not needed for static jumps, as the analysers can easily tell destinations from the static jump immediates during jumpdest-analysis.
There are two benefits here:
- Not wasting a byte for a
JUMPDEST
also means a saving of 200 gas during deployment, for each jump destination. - Saving an extra 1 gas per jump during execution, given
JUMPDEST
itself cost 1 gas and is "executed" during jumping.
RJUMPV
fallback case
If no match is found (i.e. the default case) in the RJUMPV
instruction execution will continue without branching. This allows for gaps in the arguments to be filled with 0
s, and a choice of implementation by the programmer. Alternate options would include exceptional aborts in case of no match.
Backwards Compatibility
This change poses no risk to backwards compatibility, as it is introduced at the same time EIP-3540 is. The new instructions are not introduced for legacy bytecode (code which is not EOF formatted).
Test Cases
Validation
Valid cases
RJUMP
/RJUMPI
/RJUMPV
withJUMPDEST
as targetrelative_offset
is positive/negative/0
RJUMP
/RJUMPI
/RJUMPV
with instruction other thanJUMPDEST
as targetrelative_offset
is positive/negative/0
RJUMPV
with various valid table sizes from 1 to 255
Invalid cases
RJUMP
/RJUMPI
/RJUMPV
with truncated immediateRJUMP
/RJUMPI
/RJUMPV
as a final instruction in code sectionRJUMP
/RJUMPI
/RJUMPV
target outside of code section boundsRJUMP
/RJUMPI
/RJUMPV
target push dataRJUMP
/RJUMPI
/RJUMPV
target anotherRJUMP
/RJUMPI
/RJUMPV
immediate argumentRJUMPV
with table size 0
Execution
RJUMP
/RJUMPI
/RJUMPV
in legacy code aborts executionRJUMP
relative_offset
is positive/negative/0
RJUMPI
relative_offset
is positive/negative/0
condition
equals0
condition
does not equal0
RJUMPV 1 relative_offset
case
equals0
case
does not equal0
RJUMPV
with table containing positive, negative,0
offsetscase
equals0
case
does not equal0
case
outside of table bounds (case >= count
, fallback case)case
> 255
Reference Implementation
# The ranges below are as specified in the Yellow Paper.
# Note: range(s, e) excludes e, hence the +1
valid_opcodes = [
*range(0x00, 0x0b + 1),
*range(0x10, 0x1d + 1),
0x20,
*range(0x30, 0x3f + 1),
*range(0x40, 0x48 + 1),
*range(0x50, 0x5e + 1),
*range(0x60, 0x6f + 1),
*range(0x70, 0x7f + 1),
*range(0x80, 0x8f + 1),
*range(0x90, 0x9f + 1),
*range(0xa0, 0xa4 + 1),
# Note: 0xfe is considered assigned.
*range(0xf0, 0xf5 + 1), 0xfa, 0xfd, 0xfe, 0xff
]
# STOP, RETURN, REVERT, INVALID, SELFDESTRUCT
terminating_opcodes = [ 0x00, 0xf3, 0xfd, 0xfe, 0xff ]
immediate_sizes = 256 * [0]
immediate_sizes[0x5c] = 2 # RJUMP
immediate_sizes[0x5d] = 2 # RJUMPI
for opcode in range(0x60, 0x7f + 1): # PUSH1..PUSH32
immediate_sizes[opcode] = opcode - 0x60 + 1
# Raises ValidationException on invalid code
def validate_code(code: bytes):
# Note that EOF1 already asserts this with the code section requirements
assert len(code) > 0
opcode = 0
pos = 0
rjumpdests = set()
immediates = set()
while pos < len(code):
# Ensure the opcode is valid
opcode = code[pos]
pos += 1
if not opcode in valid_opcodes:
raise ValidationException("undefined instruction")
pc_post_instruction = pos + immediate_sizes[opcode]
if opcode == 0x5c or opcode == 0x5d:
if pos + 2 > len(code):
raise ValidationException("truncated relative jump offset")
offset = int.from_bytes(code[pos:pos+2], byteorder = "big", signed = True)
rjumpdest = pc_post_instruction + offset
if rjumpdest < 0 or rjumpdest >= len(code):
raise ValidationException("relative jump destination out of bounds")
rjumpdests.add(rjumpdest)
elif opcode == 0x5e:
if pos + 1 > len(code):
raise ValidationException("truncated jump table")
jump_table_size = code[pos]
if jump_table_size == 0:
raise ValidationException("empty jump table")
pc_post_instruction = pos + 1 + 2 * jump_table_size
if pc_post_instruction > len(code):
raise ValidationException("truncated jump table")
for offset_pos in range(pos + 1, pc_post_instruction, 2):
offset = int.from_bytes(code[offset_pos:offset_pos+2], byteorder = "big", signed = True)
rjumpdest = pc_post_instruction + offset
if rjumpdest < 0 or rjumpdest >= len(code):
raise ValidationException("relative jump destination out of bounds")
rjumpdests.add(rjumpdest)
# Save immediate value positions
immediates.update(range(pos, pc_post_instruction))
# Skip immediates
pos = pc_post_instruction
# Ensure last opcode's immediate doesn't go over code end
if pos != len(code):
raise ValidationException("truncated immediate")
# opcode is the *last opcode*
if not opcode in terminating_opcodes:
raise ValidationException("no terminating instruction")
# Ensure relative jump destinations don't target immediates
if not rjumpdests.isdisjoint(immediates):
raise ValidationException("relative jump destination targets immediate")
Security Considerations
TBA
Copyright
Copyright and related rights waived via CC0.