solidity/libsolidity/codegen/ir
2021-09-14 12:09:59 +02:00
..
Common.cpp Print code snippets next to source locations in IR output 2021-09-14 12:09:59 +02:00
Common.h Rename source location function. 2021-09-06 18:33:36 +02:00
IRGenerationContext.cpp
IRGenerationContext.h Print code snippets next to source locations in IR output 2021-09-14 12:09:59 +02:00
IRGenerator.cpp Print code snippets next to source locations in IR output 2021-09-14 12:09:59 +02:00
IRGenerator.h Print code snippets next to source locations in IR output 2021-09-14 12:09:59 +02:00
IRGeneratorForStatements.cpp Merge pull request #11806 from ethereum/user-defined-types 2021-09-09 10:28:35 +02:00
IRGeneratorForStatements.h
IRLValue.h
IRVariable.cpp
IRVariable.h
README.md docs: Fix badly indented lists 2021-07-15 10:13:30 +02:00

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.