solidity/libsolidity/codegen/ir
2020-02-04 17:22:03 +01:00
..
IRGenerationContext.cpp Change expression parts to use strings instead of numbers. 2020-01-27 08:55:11 +01:00
IRGenerationContext.h Change expression parts to use strings instead of numbers. 2020-01-27 08:55:11 +01:00
IRGenerator.cpp Mapping getters for Yul IR. 2020-02-04 17:22:03 +01:00
IRGenerator.h C++ namespace cleanup (except tests). 2020-01-07 15:51:50 +01:00
IRGeneratorForStatements.cpp Parse default dialect and omit when printing. 2020-01-29 17:25:25 +01:00
IRGeneratorForStatements.h Change expression parts to use strings instead of numbers. 2020-01-27 08:55:11 +01:00
IRLValue.cpp Library libdevcore renamed to libsolutil. 2020-01-07 15:51:50 +01:00
IRLValue.h Library libdevcore renamed to libsolutil. 2020-01-07 15:51:50 +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.