Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8201516: DebugNonSafepoints generates incorrect information
Reviewed-by: mdoerr
Backport-of: 94eda53d98e5011cc613d031ff8941e254eb666b
  • Loading branch information
GoeLin committed Jun 14, 2023
1 parent ad3a90f commit 16e40e4
Show file tree
Hide file tree
Showing 3 changed files with 154 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/hotspot/share/opto/parse1.cpp
Expand Up @@ -610,8 +610,6 @@ Parse::Parse(JVMState* caller, ciMethod* parse_method, float expected_uses)
// Parse all the basic blocks.
do_all_blocks();

C->set_default_node_notes(caller_nn);

// Check for bailouts during conversion to graph
if (failing()) {
if (log) log->done("parse");
Expand All @@ -622,6 +620,10 @@ Parse::Parse(JVMState* caller, ciMethod* parse_method, float expected_uses)
set_map(entry_map);
do_exits();

// Only reset this now, to make sure that debug information emitted
// for exiting control flow still refers to the inlined method.
C->set_default_node_notes(caller_nn);

if (log) log->done("parse nodes='%d' live='%d' memory='" SIZE_FORMAT "'",
C->unique(), C->live_nodes(), C->node_arena()->used());
}
Expand Down
13 changes: 13 additions & 0 deletions src/hotspot/share/opto/phaseX.cpp
Expand Up @@ -482,6 +482,14 @@ PhaseRenumberLive::PhaseRenumberLive(PhaseGVN* gvn,

uint worklist_size = worklist->size();

GrowableArray<Node_Notes*>* old_node_note_array = C->node_note_array();
if (old_node_note_array != NULL) {
int new_size = (_useful.size() >> 8) + 1; // The node note array uses blocks, see C->_log2_node_notes_block_size
new_size = MAX2(8, new_size);
C->set_node_note_array(new (C->comp_arena()) GrowableArray<Node_Notes*> (C->comp_arena(), new_size, 0, NULL));
C->grow_node_notes(C->node_note_array(), new_size);
}

// Iterate over the set of live nodes.
for (uint current_idx = 0; current_idx < _useful.size(); current_idx++) {
Node* n = _useful.at(current_idx);
Expand All @@ -497,6 +505,11 @@ PhaseRenumberLive::PhaseRenumberLive(PhaseGVN* gvn,
assert(_old2new_map.at(n->_idx) == -1, "already seen");
_old2new_map.at_put(n->_idx, current_idx);

if (old_node_note_array != NULL) {
Node_Notes* nn = C->locate_node_notes(old_node_note_array, n->_idx);
C->set_node_notes_at(current_idx, nn);
}

n->set_idx(current_idx); // Update node ID.

if (in_worklist) {
Expand Down
137 changes: 137 additions & 0 deletions test/hotspot/jtreg/compiler/c2/irTests/TestDebugInfo.java
@@ -0,0 +1,137 @@
/*
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

package compiler.c2.irTests;

import compiler.lib.ir_framework.*;

/*
* @test
* @ignore
* @bug 8201516
* @summary Verify that debug information in C2 compiled code is correct.
* @library /test/lib /
* @requires vm.compiler2.enabled
* @run driver compiler.c2.irTests.TestDebugInfo
*/
// ignore -- as ir_framework is not in 11.
public class TestDebugInfo {

public static void main(String[] args) {
TestFramework.runWithFlags("-XX:+UnlockDiagnosticVMOptions", "-XX:+DebugNonSafepoints");
}

static class MyClass {
final int val;

@ForceInline
public MyClass(int val) {
this.val = val;
}

@ForceInline
synchronized void synchronizedMethod(boolean throwIt) {
if (throwIt) {
throw new RuntimeException(); // Make sure there is an exception state
}
}
}

static Object[] array = new Object[3];
static MyClass myVal = new MyClass(42);

// Verify that the MemBarRelease emitted at the MyClass constructor exit
// does not incorrectly reference the caller method in its debug information.
@Test
@IR(failOn = {"MemBarRelease.*testFinalFieldInit.*bci:-1"}, phase = CompilePhase.BEFORE_MATCHING)
public static void testFinalFieldInit() {
array[0] = new MyClass(42);
array[1] = new MyClass(42);
array[2] = new MyClass(42);
}

// Verify that the MemBarReleaseLock emitted at the synchronizedMethod exit
// does not incorrectly reference the caller method in its debug information.
@Test
@IR(failOn = {"MemBarReleaseLock.*testSynchronized.*bci:-1"}, phase = CompilePhase.BEFORE_MATCHING)
public static void testSynchronized() {
try {
myVal.synchronizedMethod(false);
myVal.synchronizedMethod(true);
} catch (Exception e) {
// Ignore
}
}

static byte b0 = 0;
static byte b1 = 0;
static byte b2 = 0;
static byte b3 = 0;

@ForceInline
public static Integer useless3(Integer val) {
return ++val;
}

@ForceInline
public static Integer useless2(Integer val) {
return useless3(useless3(useless3(useless3(useless3(useless3(useless3(useless3(val))))))));
}

@ForceInline
public static Integer useless1(Integer val) {
return useless2(useless2(useless2(useless2(useless2(useless2(useless2(useless2(val))))))));
}

@ForceInline
public static void useful3() {
b3 = 3;
}

@ForceInline
public static void useful2() {
useful3();
b2 = 2;
}

@ForceInline
public static void useful1() {
useful2();
b1 = 1;
}

// Verify that RenumberLiveNodes preserves the debug information side table.
@Test
@IR(counts = {"StoreB.*name=b3.*useful3.*bci:1.*useful2.*bci:0.*useful1.*bci:0.*testRenumberLiveNodes.*bci:9", "= 1"}, phase = CompilePhase.BEFORE_MATCHING)
@IR(counts = {"StoreB.*name=b2.*useful2.*bci:4.*useful1.*bci:0.*testRenumberLiveNodes.*bci:9", "= 1"}, phase = CompilePhase.BEFORE_MATCHING)
@IR(counts = {"StoreB.*name=b1.*useful1.*bci:4.*testRenumberLiveNodes.*bci:9", "= 1"}, phase = CompilePhase.BEFORE_MATCHING)
@IR(counts = {"StoreB.*name=b0.*testRenumberLiveNodes.*bci:13", "= 1"}, phase = CompilePhase.BEFORE_MATCHING)
public static void testRenumberLiveNodes() {
// This generates ~3700 useless nodes to trigger RenumberLiveNodes
useless1(42);

// Do something useful
useful1();
b0 = 0;
}
}

1 comment on commit 16e40e4

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

Please sign in to comment.