solidity/libjulia/optimiser
2018-02-08 22:44:21 +00:00
..
ASTCopier.cpp Separate expression and statement. 2017-12-13 12:28:15 +01:00
ASTCopier.h Separate expression and statement. 2017-12-13 12:28:15 +01:00
ASTWalker.cpp Rematerialisation. 2018-02-06 12:31:42 +01:00
ASTWalker.h References counter. 2018-02-05 16:43:39 +00:00
DataFlowAnalyzer.cpp Test for self-referring assignment. 2018-02-06 12:58:51 +01:00
DataFlowAnalyzer.h Introduce struct for scopes. 2018-02-06 12:38:32 +01:00
Disambiguator.cpp Disambiguator. 2017-12-05 12:09:52 +01:00
Disambiguator.h Movability. 2018-01-12 17:48:51 +01:00
ExpressionInliner.cpp Rename expression inliner. 2018-02-06 14:50:39 +00:00
ExpressionInliner.h Rename expression inliner. 2018-02-06 14:50:39 +00:00
ExpressionSimplifier.cpp Turn simplification rule tuple into struct. 2018-02-06 22:51:30 +01:00
ExpressionSimplifier.h Expression simplifier. 2018-02-06 22:51:30 +01:00
FunctionGrouper.cpp Fixed typos in comment. 2017-12-18 14:56:56 +01:00
FunctionGrouper.h Function grouper. 2017-12-14 17:21:01 +01:00
FunctionHoister.cpp Use removeEmptyBlocks helper in FunctionHoister 2018-02-08 22:44:21 +00:00
FunctionHoister.h Function hoister. 2017-12-14 17:28:29 +01:00
InlinableExpressionFunctionFinder.cpp Rename expression inliner. 2018-02-06 14:50:39 +00:00
InlinableExpressionFunctionFinder.h Rename expression inliner. 2018-02-06 14:50:39 +00:00
Metrics.cpp Code size metric. 2018-02-02 15:28:41 +01:00
Metrics.h Code size metric. 2018-02-02 15:28:41 +01:00
NameCollector.cpp Rematerialisation. 2018-02-06 12:31:42 +01:00
NameCollector.h Rematerialisation. 2018-02-06 12:31:42 +01:00
README.md Explanation of expression simplifier. 2018-02-06 22:51:30 +01:00
Rematerialiser.cpp Refactor data flow analysis out of remat. 2018-02-06 12:38:32 +01:00
Rematerialiser.h Refactor data flow analysis out of remat. 2018-02-06 12:38:32 +01:00
Semantics.cpp Movability. 2018-01-12 17:48:51 +01:00
Semantics.h Movability. 2018-01-12 17:48:51 +01:00
SimplificationRules.cpp Turn simplification rule tuple into struct. 2018-02-06 22:51:30 +01:00
SimplificationRules.h Turn simplification rule tuple into struct. 2018-02-06 22:51:30 +01:00
Substitution.cpp Separate expression and statement. 2017-12-13 12:28:15 +01:00
Substitution.h Separate expression and statement. 2017-12-13 12:28:15 +01:00
SyntacticalEquality.cpp Also apply simplification rules that require multiple identical sub-expressions. 2018-02-06 22:51:30 +01:00
SyntacticalEquality.h Also apply simplification rules that require multiple identical sub-expressions. 2018-02-06 22:51:30 +01:00
UnusedPruner.cpp Add comments to UnusedPruner 2018-02-06 10:15:41 +00:00
UnusedPruner.h Add comments to UnusedPruner 2018-02-06 10:15:41 +00:00
Utilities.cpp Utility to remove empty blocks. 2018-02-05 16:43:39 +00:00
Utilities.h Add flag to indicate whether it can be applied to expressions with side-effects. 2018-02-06 22:51:30 +01:00

IULIA Optimiser

The iulia optimiser consists of several stages and components that all transform the AST in a semantically equivalent way. The goal is to end up either with code that is shorter or at least only marginally longer but will allow further optimisation steps.

The optimiser currently follows a purely greedy strategy and does not do any backtracking.

Disambiguator

The disambiguator takes an AST and returns a fresh copy where all identifiers have names unique to the input AST. This is a prerequisite for all other optimiser stages. One of the benefits is that identifier lookup does not need to take scopes into account and we can basically ignore the result of the analysis phase.

All subsequent stages have the property that all names stay unique. This means if a new identifier needs to be introduced, a new unique name is generated.

Function Hoister

The function hoister moves all function definitions to the topmost block. This is a semantically equivalent transformation as long as it is performed after the disambiguation stage. The reason is that moving a definition upwards cannot decrease its visibility and it is impossible to reference variables defined in a different function.

The benefit of this stage is that function definitions can be lookup up more easily.

Function Grouper

The function grouper has to be applied after the disambiguator and the function hoister. Its effect is that all topmost elements that are not function definitions are moved into a single block which is the first satement of the root block.

After this step, a program has the following normal form:

{ I F... }

Where I is a block that does not contain any function definitions (not even recursively) and F is a list of function definitions such that no function contains a function definition.

Functional Inliner

The functional inliner depends on the disambiguator, the function hoister and function grouper. It performs function inlining such that the result of the inlining is an expression. This can only be done if the body of the function to be inlined has the form { r := E } where r is the single return value of the function, E is an expression and all arguments in the function call are so-called movable expressions. A movable expression is either a literal, a variable or a function call (or EVM opcode) which does not have side-effects and also does not depend on any side-effects.

As an example, neither mload nor mstore would be allowed.

Full Function Inliner

Rematerialisation

The rematerialisation stage tries to replace variable references by the expression that was last assigned to the variable. This is of course only beneficial if this expression is comparatively cheap to evaluate. Furthermore, it is only semantically equivalent if the value of the expression did not change between the point of assignment and the point of use. The main benefit of this stage is that it can save stack slots if it leads to a variable being eliminated completely (see below), but it can also save a DUP opcode on the EVM if the expression is very cheap.

The algorithm only allows movable expressions (see above for a definition) in this case. Expressions that contain other variables are also disallowed if one of those variables have been assigned to in the meantime. This is also not applied to variables where assignment and use span across loops and conditionals.

Unused Definition Pruner

If a variable or function is not referenced, it is removed from the code. If there are two assignments to a variable where the first one is a movable expression and the variable is not used between the two assignments (and the second is not inside a loop or conditional, the first one is not inside), the first assignment is removed.

Function Unifier

Expression Simplifier

This step can only be applied for the EVM-flavoured dialect of iulia. It applies simple rules like x + 0 == x to simplify expressions.

Ineffective Statement Remover

This step removes statements that have no side-effects.