solidity/libsolidity/codegen/ir
2019-11-19 17:23:18 +01:00
..
IRGenerationContext.cpp
IRGenerationContext.h
IRGenerator.cpp
IRGenerator.h
IRGeneratorForStatements.cpp Replace boost::variant by std::variant in libyul 2019-11-19 17:23:18 +01:00
IRGeneratorForStatements.h
IRLValue.cpp Make use of C++17 std::optional<> instead of boost::optional<>. 2019-10-28 11:39:30 +01:00
IRLValue.h Refactor IRLValue so that it does not require IRGenerationContext. 2019-08-08 17:27:35 +02:00
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.