solidity/libsolidity/codegen/ir
Kamil Śliwak a68b4ab7ed IRGeneratorForStatements: Slightly reorganize local variables in endVisit(MemberAccess)
- Add memberFunctionType accessible in the whole function to avoid declaring it multiple times
- Add objectCategory
2020-05-20 21:09:27 +02:00
..
Common.cpp Simplify endVisit() for internal calls 2020-05-20 21:07:37 +02:00
Common.h Simplify endVisit() for internal calls 2020-05-20 21:07:37 +02:00
IRGenerationContext.cpp IRGenerationContext: Extract code for enumerating dispatchable functions from generateInternalDispatch() into a separate function 2020-05-20 13:16:08 +02:00
IRGenerationContext.h IRGenerationContext: Extract code for enumerating dispatchable functions from generateInternalDispatch() into a separate function 2020-05-20 13:16:08 +02:00
IRGenerator.cpp Extract more functions for generating function and variable names into IRNames 2020-05-15 14:51:00 +02:00
IRGenerator.h Extract more functions for generating function and variable names into IRNames 2020-05-15 14:51:00 +02:00
IRGeneratorForStatements.cpp IRGeneratorForStatements: Slightly reorganize local variables in endVisit(MemberAccess) 2020-05-20 21:09:27 +02:00
IRGeneratorForStatements.h Support bare calls. 2020-05-11 15:11:46 +02:00
IRLValue.h Yul codegen for immutables. 2020-05-04 15:00:50 +02:00
IRVariable.cpp Extract more functions for generating function and variable names into IRNames 2020-05-15 14:51:00 +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.