solidity/libsolidity/codegen/ir
chriseth 2037b7d6b8
Merge pull request #9820 from ethereum/new-annotation-field-virtual
Add annotation field ``requiresVirtualLookup``
2020-09-29 15:33:54 +02:00
..
Common.cpp
Common.h
IRGenerationContext.cpp
IRGenerationContext.h Add stack limit evader. 2020-09-17 22:13:27 +02:00
IRGenerator.cpp Use invalid opcode on internal errors. 2020-09-24 16:02:35 +02:00
IRGenerator.h Add stack limit evader. 2020-09-17 22:13:27 +02:00
IRGeneratorForStatements.cpp Merge pull request #9820 from ethereum/new-annotation-field-virtual 2020-09-29 15:33:54 +02:00
IRGeneratorForStatements.h Report locations of unimplemented features. 2020-09-15 14:41:46 +02:00
IRLValue.h
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

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.