|
| 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