solidity/libsolidity/codegen/ir
2021-06-07 15:23:32 +02:00
..
Common.cpp Extract referencedDeclaration as helper. 2021-03-24 17:01:50 +01:00
Common.h Extract referencedDeclaration as helper. 2021-03-24 17:01:50 +01:00
IRGenerationContext.cpp Respect memory model for revert. 2021-05-03 18:23:41 +02:00
IRGenerationContext.h Respect memory model for revert. 2021-05-03 18:23:41 +02:00
IRGenerator.cpp Document the panic function of library deployment 2021-05-26 15:51:46 +01:00
IRGenerator.h Remove IRGenerator::verifyCallGraphs and make generate() verify the graphs automatically 2021-02-23 10:47:02 +01:00
IRGeneratorForStatements.cpp Unify function call resolve function used in Analysis & Yul CodeGen 2021-06-07 15:23:32 +02:00
IRGeneratorForStatements.h Respect memory model in forwarding revert inside catch. 2021-05-03 12:19:46 +02:00
IRLValue.h
IRVariable.cpp Replaced boost::adaptors::transformed 2021-04-08 17:38:14 +05:30
IRVariable.h
README.md

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.