Skip to content

Commit f6a8db2

Browse files
author
Vladimir Kozlov
committedMar 7, 2025
8348261: assert(n->is_Mem()) failed: memory node required
Reviewed-by: chagedorn, epeter
1 parent 5cd4fe6 commit f6a8db2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

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

+8
Original file line numberDiff line numberDiff line change
@@ -4712,13 +4712,21 @@ void ConnectionGraph::split_unique_types(GrowableArray<Node *> &alloc_worklist,
47124712
if (n == nullptr) {
47134713
continue;
47144714
}
4715+
} else if (n->Opcode() == Op_StrInflatedCopy) {
4716+
// Check direct uses of StrInflatedCopy.
4717+
// It is memory type Node - no special SCMemProj node.
47154718
} else if (n->Opcode() == Op_StrCompressedCopy ||
47164719
n->Opcode() == Op_EncodeISOArray) {
47174720
// get the memory projection
47184721
n = n->find_out_with(Op_SCMemProj);
47194722
assert(n != nullptr && n->Opcode() == Op_SCMemProj, "memory projection required");
47204723
} else {
4724+
#ifdef ASSERT
4725+
if (!n->is_Mem()) {
4726+
n->dump();
4727+
}
47214728
assert(n->is_Mem(), "memory node required.");
4729+
#endif
47224730
Node *addr = n->in(MemNode::Address);
47234731
const Type *addr_t = igvn->type(addr);
47244732
if (addr_t == Type::TOP) {

0 commit comments

Comments
 (0)
Please sign in to comment.