mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 09:34:38 +02:00
6743188: incomplete fix for 6700047 C2 failed in idom_no_update
Reviewed-by: rasbold, kvn
This commit is contained in:
parent
adce6fc49a
commit
043fde10e5
4 changed files with 29 additions and 20 deletions
|
@ -325,12 +325,14 @@ public:
|
|||
// Returns TRUE if loop tree is structurally changed.
|
||||
bool beautify_loops( PhaseIdealLoop *phase );
|
||||
|
||||
// Perform iteration-splitting on inner loops. Split iterations to avoid
|
||||
// range checks or one-shot null checks.
|
||||
void iteration_split( PhaseIdealLoop *phase, Node_List &old_new );
|
||||
// Perform iteration-splitting on inner loops. Split iterations to
|
||||
// avoid range checks or one-shot null checks. Returns false if the
|
||||
// current round of loop opts should stop.
|
||||
bool iteration_split( PhaseIdealLoop *phase, Node_List &old_new );
|
||||
|
||||
// Driver for various flavors of iteration splitting
|
||||
void iteration_split_impl( PhaseIdealLoop *phase, Node_List &old_new );
|
||||
// Driver for various flavors of iteration splitting. Returns false
|
||||
// if the current round of loop opts should stop.
|
||||
bool iteration_split_impl( PhaseIdealLoop *phase, Node_List &old_new );
|
||||
|
||||
// Given dominators, try to find loops with calls that must always be
|
||||
// executed (call dominates loop tail). These loops do not need non-call
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue