Skip to content

Commit 57ebd04

Browse files
committedApr 23, 2024
8330153: C2: dump barrier information for all Mach nodes
Reviewed-by: kvn, thartmann
1 parent 58ad399 commit 57ebd04

File tree

3 files changed

+87
-5
lines changed

3 files changed

+87
-5
lines changed
 

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

+6-5
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,11 @@ void MachNode::dump_spec(outputStream *st) const {
548548
if( C->alias_type(t)->is_volatile() )
549549
st->print(" Volatile!");
550550
}
551+
if (barrier_data() != 0) {
552+
st->print(" barrier(");
553+
BarrierSet::barrier_set()->barrier_set_c2()->dump_barrier_data(this, st);
554+
st->print(") ");
555+
}
551556
}
552557

553558
//------------------------------dump_format------------------------------------
@@ -560,16 +565,12 @@ void MachNode::dump_format(PhaseRegAlloc *ra, outputStream *st) const {
560565
//=============================================================================
561566
#ifndef PRODUCT
562567
void MachTypeNode::dump_spec(outputStream *st) const {
568+
MachNode::dump_spec(st);
563569
if (_bottom_type != nullptr) {
564570
_bottom_type->dump_on(st);
565571
} else {
566572
st->print(" null");
567573
}
568-
if (barrier_data() != 0) {
569-
st->print(" barrier(");
570-
BarrierSet::barrier_set()->barrier_set_c2()->dump_barrier_data(this, st);
571-
st->print(")");
572-
}
573574
}
574575
#endif
575576

‎test/hotspot/jtreg/compiler/lib/ir_framework/IRNode.java

+6
Original file line numberDiff line numberDiff line change
@@ -2076,6 +2076,12 @@ public class IRNode {
20762076
machOnly(Z_STORE_P_WITH_BARRIER_FLAG, regex);
20772077
}
20782078

2079+
public static final String Z_COMPARE_AND_SWAP_P_WITH_BARRIER_FLAG = COMPOSITE_PREFIX + "Z_COMPARE_AND_SWAP_P_WITH_BARRIER_FLAG" + POSTFIX;
2080+
static {
2081+
String regex = START + "zCompareAndSwapP" + MID + "barrier\\(\\s*" + IS_REPLACED + "\\s*\\)" + END;
2082+
machOnly(Z_COMPARE_AND_SWAP_P_WITH_BARRIER_FLAG, regex);
2083+
}
2084+
20792085
public static final String Z_GET_AND_SET_P_WITH_BARRIER_FLAG = COMPOSITE_PREFIX + "Z_GET_AND_SET_P_WITH_BARRIER_FLAG" + POSTFIX;
20802086
static {
20812087
String regex = START + "(zXChgP)|(zGetAndSetP\\S*)" + MID + "barrier\\(\\s*" + IS_REPLACED + "\\s*\\)" + END;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/*
2+
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
package ir_framework.examples;
25+
26+
import compiler.lib.ir_framework.*;
27+
import java.lang.invoke.VarHandle;
28+
import java.lang.invoke.MethodHandles;
29+
30+
/**
31+
* @test
32+
* @bug 8330153
33+
* @summary Example test that illustrates the use of the IR test framework for
34+
* verification of late-expanded GC barriers.
35+
* @library /test/lib /
36+
* @run driver ir_framework.examples.GCBarrierIRExample
37+
*/
38+
39+
public class GCBarrierIRExample {
40+
41+
static class Outer {
42+
Object f;
43+
}
44+
45+
static final VarHandle fVarHandle;
46+
static {
47+
MethodHandles.Lookup l = MethodHandles.lookup();
48+
try {
49+
fVarHandle = l.findVarHandle(Outer.class, "f", Object.class);
50+
} catch (Exception e) {
51+
throw new Error(e);
52+
}
53+
}
54+
static Outer o = new Outer();
55+
static Object oldVal = new Object();
56+
static Object newVal = new Object();
57+
58+
public static void main(String[] args) {
59+
// These rules apply only to collectors that expand barriers at code
60+
// emission, such as ZGC. Because the collector selection flags are not
61+
// whitelisted (see IR framework's README.md file), the user (as opposed
62+
// to jtreg) needs to set these flags here.
63+
TestFramework.runWithFlags("-XX:+UseZGC", "-XX:+ZGenerational");
64+
}
65+
66+
@Test
67+
// IR rules can be used to verify collector-specific barrier info (in this
68+
// case, that a ZGC barrier corresponds to a strong OOP reference). Barrier
69+
// info can only be verified after matching, e.g. at the FINAL_CODE phase.
70+
@IR(counts = {IRNode.Z_COMPARE_AND_SWAP_P_WITH_BARRIER_FLAG, "strong", "1"},
71+
phase = CompilePhase.FINAL_CODE)
72+
static boolean testBarrierOfCompareAndSwap() {
73+
return fVarHandle.compareAndSet(o, oldVal, newVal);
74+
}
75+
}

0 commit comments

Comments
 (0)
Please sign in to comment.