solidity/libsolidity/codegen/ir
Leonardo 9bde92ca20
Merge pull request #10807 from ethereum/fixIRReasonStrings
Properly omit require revert strings in IR code generator if requested.
2021-01-19 10:31:15 +01:00
..
Common.cpp Library call guard. 2021-01-11 20:37:44 +01:00
Common.h Library call guard. 2021-01-11 20:37:44 +01:00
IRGenerationContext.cpp
IRGenerationContext.h
IRGenerator.cpp Include revert strings in IR 2021-01-14 18:45:12 +01:00
IRGenerator.h
IRGeneratorForStatements.cpp Merge pull request #10807 from ethereum/fixIRReasonStrings 2021-01-19 10:31:15 +01:00
IRGeneratorForStatements.h Catch panic. 2020-12-22 11:08:44 +01:00
IRLValue.h
IRVariable.cpp
IRVariable.h
README.md

The Solidity to Yul Code Generator

This directory contains the new experimental code generator that compiles Solidity to an intermediate representation in Yul with EVM dialect.

The main semantic differences to the legacy code generator are the following:

  • Arithmetic operations cause a failing assertion if the result is not in range.
  • Resizing a storage array to a length larger than 2**64 causes a failing assertion.