solidity/libsolidity/codegen/ir
chriseth 2b39f3b988
Merge pull request #8766 from ethereum/sol_yul_gasleft
[Sol - Yul] Add support for built-in gasleft().
2020-04-24 14:24:01 +02:00
..
IRGenerationContext.cpp IRGenerationContext::internalDispatch(): Fix code generated when the function called via pointer does not return anything 2020-04-23 21:16:41 +02:00
IRGenerationContext.h Implement lazy function generation using function generation queue 2020-04-17 13:28:07 +02:00
IRGenerator.cpp [Sol2Yul] Adding support for constructors with parameters in case of inheritance 2020-04-22 14:47:08 +02:00
IRGenerator.h [Sol2Yul] Adding support for constructors with parameters in case of inheritance 2020-04-22 14:47:08 +02:00
IRGeneratorForStatements.cpp [Sol - Yul] Add support for built-in gasleft(). 2020-04-23 17:14:03 -05:00
IRGeneratorForStatements.h Merge pull request #8591 from mijovic/sol2YulConstructorParams 2020-04-23 12:56:54 +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.