solidity/libsolidity/codegen/ir
2020-12-01 16:53:54 +01:00
..
Common.cpp Bound functions. 2020-11-23 18:58:23 +01:00
Common.h
IRGenerationContext.cpp Define a comparator for InternalDispatchMap to ensure deterministic ordering of dispatch functions 2020-12-01 16:53:54 +01:00
IRGenerationContext.h Define a comparator for InternalDispatchMap to ensure deterministic ordering of dispatch functions 2020-12-01 16:53:54 +01:00
IRGenerator.cpp Add unimplemented assert for modifiers in the IR 2020-11-27 18:34:17 +00:00
IRGenerator.h
IRGeneratorForStatements.cpp Merge pull request #10384 from ethereum/called_directly_feature 2020-12-01 15:07:02 +01:00
IRGeneratorForStatements.h Use annotation.calledDirectly to simplify IR codegen 2020-11-30 18:54:42 +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.