solidity/libsolidity/codegen/ir
2020-04-16 00:33:45 +02:00
..
IRGenerationContext.cpp [Sol2Yul] Implements codegen part for try/catch statements. 2020-04-14 18:42:37 +02:00
IRGenerationContext.h [Sol2Yul] Implements codegen part for try/catch statements. 2020-04-14 18:42:37 +02:00
IRGenerator.cpp Merge pull request #8570 from aarlt/clang-tidy-apply-modernize-use-emplace 2020-04-07 17:28:50 +02:00
IRGenerator.h Zero initialize memory arrays 2020-04-02 15:55:18 +02:00
IRGeneratorForStatements.cpp Implement bit operations. 2020-04-16 00:33:45 +02:00
IRGeneratorForStatements.h [Sol2Yul] Implements codegen part for try/catch statements. 2020-04-14 18:42:37 +02:00
IRLValue.h Use IRVariable's in IR code generation and implement tuples. 2020-02-12 12:36:14 +01:00
IRVariable.cpp Use IRVariable's in IR code generation and implement tuples. 2020-02-12 12:36:14 +01:00
IRVariable.h Use IRVariable's in IR code generation and implement tuples. 2020-02-12 12:36:14 +01:00
README.md Document differences between legacy Solidity and Solidity via Yul. 2019-07-11 17:48:06 +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.