Merge pull request #11794 from ethereum/tune_optimizer_simplifier

Make use of inner loops feature in optimizer step description.
This commit is contained in:
chriseth 2021-10-13 16:54:45 +02:00 committed by GitHub
commit 5ff8d8a190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()