Skip to content

Commit

Permalink
Merge pull request #4309 from mstoodle/jb_remove_gotos
Browse files Browse the repository at this point in the history
Add late goto elimination pass to JitBuilder's opt strategy
  • Loading branch information
Leonardo2718 authored Sep 14, 2019
2 parents 33d4734 + 4ce27ad commit 265676a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions jitbuilder/optimizer/JBOptimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ static const OptimizationStrategy JBwarmStrategyOpts[] =
{ OMR::trivialDeadTreeRemoval, OMR::IfEnabled },
{ OMR::cheapTacticalGlobalRegisterAllocatorGroup },
{ OMR::globalDeadStoreGroup, },
{ OMR::redundantGotoElimination, OMR::IfEnabled }, // if global register allocator created new block
{ OMR::rematerialization },
{ OMR::deadTreesElimination, OMR::IfEnabled }, // remove dead anchors created by check/store removal
{ OMR::deadTreesElimination, OMR::IfEnabled }, // remove dead RegStores produced by previous deadTrees pass
Expand Down

0 comments on commit 265676a

Please sign in to comment.