Skip to content

Commit a44ac02

Browse files
author
Vladimir Kozlov
committedApr 24, 2024
8330853: Add missing checks for ConnectionGraph::can_reduce_cmp() call
Reviewed-by: iveresov, dlong, cslucas
1 parent 8a8d928 commit a44ac02

File tree

1 file changed

+20
-9
lines changed

1 file changed

+20
-9
lines changed
 

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

+20-9
Original file line numberDiff line numberDiff line change
@@ -492,11 +492,11 @@ bool ConnectionGraph::can_reduce_phi_check_inputs(PhiNode* ophi) const {
492492
// I require the 'other' input to be a constant so that I can move the Cmp
493493
// around safely.
494494
bool ConnectionGraph::can_reduce_cmp(Node* n, Node* cmp) const {
495+
assert(cmp->Opcode() == Op_CmpP || cmp->Opcode() == Op_CmpN, "not expected node: %s", cmp->Name());
495496
Node* left = cmp->in(1);
496497
Node* right = cmp->in(2);
497498

498-
return (cmp->Opcode() == Op_CmpP || cmp->Opcode() == Op_CmpN) &&
499-
(left == n || right == n) &&
499+
return (left == n || right == n) &&
500500
(left->is_Con() || right->is_Con()) &&
501501
cmp->outcnt() == 1;
502502
}
@@ -559,8 +559,12 @@ bool ConnectionGraph::can_reduce_check_users(Node* n, uint nesting) const {
559559
} else if (use->is_CastPP()) {
560560
const Type* cast_t = _igvn->type(use);
561561
if (cast_t == nullptr || cast_t->make_ptr()->isa_instptr() == nullptr) {
562-
NOT_PRODUCT(use->dump();)
563-
NOT_PRODUCT(if (TraceReduceAllocationMerges) tty->print_cr("Can NOT reduce Phi %d on invocation %d. CastPP is not to an instance.", n->_idx, _invocation);)
562+
#ifndef PRODUCT
563+
if (TraceReduceAllocationMerges) {
564+
tty->print_cr("Can NOT reduce Phi %d on invocation %d. CastPP is not to an instance.", n->_idx, _invocation);
565+
use->dump();
566+
}
567+
#endif
564568
return false;
565569
}
566570

@@ -570,11 +574,18 @@ bool ConnectionGraph::can_reduce_check_users(Node* n, uint nesting) const {
570574
// CmpP/N used by the If controlling the cast.
571575
if (use->in(0)->is_IfTrue() || use->in(0)->is_IfFalse()) {
572576
Node* iff = use->in(0)->in(0);
573-
Node* iff_cmp = iff->in(1)->in(1); // if->bool->cmp
574-
if (!can_reduce_cmp(n, iff_cmp)) {
575-
NOT_PRODUCT(if (TraceReduceAllocationMerges) tty->print_cr("Can NOT reduce Phi %d on invocation %d. CastPP %d doesn't have simple control.", n->_idx, _invocation, use->_idx);)
576-
NOT_PRODUCT(n->dump(5);)
577-
return false;
577+
if (iff->Opcode() == Op_If && iff->in(1)->is_Bool() && iff->in(1)->in(1)->is_Cmp()) {
578+
Node* iff_cmp = iff->in(1)->in(1);
579+
int opc = iff_cmp->Opcode();
580+
if ((opc == Op_CmpP || opc == Op_CmpN) && !can_reduce_cmp(n, iff_cmp)) {
581+
#ifndef PRODUCT
582+
if (TraceReduceAllocationMerges) {
583+
tty->print_cr("Can NOT reduce Phi %d on invocation %d. CastPP %d doesn't have simple control.", n->_idx, _invocation, use->_idx);
584+
n->dump(5);
585+
}
586+
#endif
587+
return false;
588+
}
578589
}
579590
}
580591
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Apr 24, 2024

@openjdk-notifier[bot]
Please sign in to comment.