solidity/libsolidity/codegen/ir
2020-12-08 20:27:06 +01:00
..
Common.cpp Bound functions. 2020-11-23 18:58:23 +01:00
Common.h Add SPDX license identifier if not present already in source file 2020-07-17 20:24:12 +05:30
IRGenerationContext.cpp Define a comparator for InternalDispatchMap to ensure deterministic ordering of dispatch functions 2020-12-01 16:53:54 +01:00
IRGenerationContext.h Enable the -Wextra-semi warning 2020-12-04 17:21:19 +01:00
IRGenerator.cpp Evaluate base arguments in derived to base order. 2020-12-08 20:27:06 +01:00
IRGenerator.h Fix dependency tracking for abstract contracts for Yul codegen 2020-10-20 16:58:24 +02:00
IRGeneratorForStatements.cpp Replace the inconsistent use of u160/Address/h160 with h160 only 2020-12-07 16:44:59 +01:00
IRGeneratorForStatements.h Use annotation.calledDirectly to simplify IR codegen 2020-11-30 18:54:42 +01:00
IRLValue.h Add SPDX license identifier if not present already in source file 2020-07-17 20:24:12 +05:30
IRVariable.cpp [Sol->Yul] Enabling storage pointers to local vars in inline assembly. 2020-08-26 10:25:42 +02:00
IRVariable.h [Sol->Yul] Enabling storage pointers to local vars in inline assembly. 2020-08-26 10:25:42 +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.