solidity/libsolidity/codegen/ir
Christian Parpart d33376cce6
Merge pull request #8409 from ethereum/multiUseYulFunctionNoSharedPtr
Use plain members and references instead of shared pointers for MultiUseYulFunctionCollector
2020-03-09 11:18:40 +01:00
..
IRGenerationContext.cpp Use plain members and references instead of shared pointers for MultiUseYulFunctionCollector 2020-03-04 16:16:34 +01:00
IRGenerationContext.h Use plain members and references instead of shared pointers for MultiUseYulFunctionCollector 2020-03-04 16:16:34 +01:00
IRGenerator.cpp Use plain members and references instead of shared pointers for MultiUseYulFunctionCollector 2020-03-04 16:16:34 +01:00
IRGenerator.h Add reason string for internal reverts 2020-02-10 11:57:20 -03:00
IRGeneratorForStatements.cpp Adding sol->yul for f.selector and f.address 2020-03-06 21:43:14 +01:00
IRGeneratorForStatements.h Finishes external call implementation. 2020-02-14 11:59:04 +01: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.