Skip to content

Commit ac60e4b

Browse files
committedMar 2, 2020
8240220: IdealLoopTree::dump_head predicate printing is broken
Reviewed-by: thartmann, neliasso, chagedorn
1 parent d7b122e commit ac60e4b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎src/hotspot/share/opto/loopnode.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -2543,17 +2543,17 @@ void IdealLoopTree::dump_head() const {
25432543
tty->print(" limit_check");
25442544
entry = PhaseIdealLoop::skip_loop_predicates(entry);
25452545
}
2546-
if (UseLoopPredicate) {
2547-
entry = PhaseIdealLoop::find_predicate_insertion_point(entry, Deoptimization::Reason_predicate);
2548-
if (entry != NULL) {
2549-
tty->print(" predicated");
2546+
if (UseProfiledLoopPredicate) {
2547+
predicate = PhaseIdealLoop::find_predicate_insertion_point(entry, Deoptimization::Reason_profile_predicate);
2548+
if (predicate != NULL) {
2549+
tty->print(" profile_predicated");
25502550
entry = PhaseIdealLoop::skip_loop_predicates(entry);
25512551
}
25522552
}
2553-
if (UseProfiledLoopPredicate) {
2554-
entry = PhaseIdealLoop::find_predicate_insertion_point(entry, Deoptimization::Reason_profile_predicate);
2555-
if (entry != NULL) {
2556-
tty->print(" profile_predicated");
2553+
if (UseLoopPredicate) {
2554+
predicate = PhaseIdealLoop::find_predicate_insertion_point(entry, Deoptimization::Reason_predicate);
2555+
if (predicate != NULL) {
2556+
tty->print(" predicated");
25572557
}
25582558
}
25592559
if (_head->is_CountedLoop()) {

0 commit comments

Comments
 (0)
Please sign in to comment.