solidity/libsolidity/codegen/ir
chriseth 0248303c15
Merge pull request #8872 from ethereum/int-min-max
implemented type(X).min and type(X).max for all integer types
2020-05-11 15:08:19 +02:00
..
IRGenerationContext.cpp Yul codegen for immutables. 2020-05-04 15:00:50 +02:00
IRGenerationContext.h Yul codegen for immutables. 2020-05-04 15:00:50 +02:00
IRGenerator.cpp Merge pull request #8869 from ethereum/useSlotes 2020-05-07 19:03:59 +02:00
IRGenerator.h Use vector of slots. 2020-05-07 17:54:04 +02:00
IRGeneratorForStatements.cpp Merge pull request #8872 from ethereum/int-min-max 2020-05-11 15:08:19 +02:00
IRGeneratorForStatements.h IR generation for shifts 2020-05-06 19:14:23 +02:00
IRLValue.h Yul codegen for immutables. 2020-05-04 15:00:50 +02:00
IRVariable.cpp Implement Yul IR generation for abi.encode* 2020-05-07 19:39:15 +02:00
IRVariable.h Use vector of slots. 2020-05-07 17:54:04 +02: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.