People need to produce code for different versions of the EVM
Provide an interface to switch the VM rulesets used to compile, validate, and produce bytecode for a given source program.
It is important for developers to be able to produce bytecode for different versions of the EVM. This may include for future hardfork implementations (such as constantinople), or for chains that still use past rules (ETC or permissioned networks like Quorum). It might also be eventually useful to specify more granular or custom rulesets via py-evm, but that is out of scope for now.
Solidity has --evm-version VM_NAME flag:
$ solc --help
...
--evm-version version
Select desired EVM version. Either homestead,
tangerineWhistle, spuriousDragon, byzantium (default) or
constantinople.
...
I suggest we use this.
The technical details should be as such:
Fully backwards compatible
No dependancies on other VIPs
Copyright and related rights waived via CC0
I am happy if we support byzantium onwards, but having to figure out all the differences before that will be a lot of work for minimal gain.
I think a really scalable solution here utilizes py-evm's rulsets, and I think that would alleviate your concern, but I agree that the approach should be to support the latest main-chain primarily
Yeah this would require a lot of works in the lll compile & opcode step. Py-evm's rulesets are not as easy to wield here, have you seen how it's implemented?
Was taking a browse through. My initial thought was to check against the dict of opcodes for existence (to throw an error), then validate if there was an incorrect number of args for the opcode later down the line.
Definitely a lot of work to get it flawless, but arguable very necessary for supporting new hard forks and the like
That seems quite do-able, but then we'd create a dependency on py-evm for the base vyper install. For reference see: https://github.com/ethereum/py-evm/blob/master/eth/vm/forks/byzantium/opcodes.py
I say let's try to see what byzantium -> constantinople switch would look like, and then we take it from there?
Maybe a different way to support this is through a flag with comma-separated EIP numbers that are implemented in the language but not currently enabled in the main chain (but planned for a hard fork)
vyper --evm-version=istanbul
vyper --evm-versions
> Byzantium (default), Constantinople, Istanbul
add version info (availability, gas cost) to opcodes
Going to request that this be first partially implemented thru work on #1654 as an version-specific optimization and #1652 as a version-specific feature, as these should be minimal-impact.
implementation-wise, probably cleanest to make a new LLL pseudo-opcode for every new EVM feature we want to support, and then we only need to deal with the versioning at the LLL to EVM translation step, either emulate for older versions (e.g. for SELFBALANCE) or throw if not supported (e.g. CHAINID).