Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/hotspot/share/opto/phaseX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2007,6 +2007,18 @@ bool PhaseIterGVN::verify_Identity_for(Node* n) {
// Not investigated yet.
case Op_AbsI:
return false;

// Fuzzer failures reported in JDK-8371523, and possible variants,
// related to JDK-8369646.
// All of them have a coment like this:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/coment/comment/

// Remove ConvX2Y->ConvY2X->ConvX2Y sequences.
// It could make sense to expand the reproducers for other similar
// cases, just to ensure better coverage.
case Op_ConvD2L:
case Op_ConvF2I:
case Op_ConvF2L:
case Op_ConvI2F:
return false;
}

if (n->is_Load()) {
Expand Down