mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #11794 from ethereum/tune_optimizer_simplifier
Make use of inner loops feature in optimizer step description.
This commit is contained in:
commit
5ff8d8a190
@ -44,20 +44,20 @@ struct OptimiserSettings
|
|||||||
static char constexpr DefaultYulOptimiserSteps[] =
|
static char constexpr DefaultYulOptimiserSteps[] =
|
||||||
"dhfoDgvulfnTUtnIf" // None of these can make stack problems worse
|
"dhfoDgvulfnTUtnIf" // None of these can make stack problems worse
|
||||||
"["
|
"["
|
||||||
"xarrscLM" // Turn into SSA and simplify
|
"xa[r]scLM" // Turn into SSA and simplify
|
||||||
"cCTUtTOntnfDIul" // Perform structural simplification
|
"cCTUtTOntnfDIul" // Perform structural simplification
|
||||||
"Lcul" // Simplify again
|
"Lcul" // Simplify again
|
||||||
"Vcul jj" // Reverse SSA
|
"Vcul [j]" // Reverse SSA
|
||||||
|
|
||||||
// should have good "compilability" property here.
|
// should have good "compilability" property here.
|
||||||
|
|
||||||
"Tpeul" // Run functional expression inliner
|
"Tpeul" // Run functional expression inliner
|
||||||
"xarulrul" // Prune a bit more in SSA
|
"xa[rul]" // Prune a bit more in SSA
|
||||||
"xarrcL" // Turn into SSA again and simplify
|
"xa[r]cL" // Turn into SSA again and simplify
|
||||||
"gvif" // Run full inliner
|
"gvif" // Run full inliner
|
||||||
"CTUcarrLsTFOtfDncarrIulc" // SSA plus simplify
|
"CTUca[r]LsTFOtfDnca[r]Iulc" // SSA plus simplify
|
||||||
"]"
|
"]"
|
||||||
"jmuljuljul VcTOcul jmul"; // Make source short and pretty
|
"jmul[jul] VcTOcul jmul"; // Make source short and pretty
|
||||||
|
|
||||||
/// No optimisations at all - not recommended.
|
/// No optimisations at all - not recommended.
|
||||||
static OptimiserSettings none()
|
static OptimiserSettings none()
|
||||||
|
Loading…
Reference in New Issue
Block a user