< prev index next > test/hotspot/jtreg/compiler/c2/aarch64/TestVolatiles.java
Print this page
* TestUnsafeVolatileCAE,
* TestUnsafeVolatileGAS}
* and <testtype> in {G1,
* Serial,
* Parallel,
- * Shenandoah,
- * ShenandoahIU}
+ * Shenandoah}
*/
package compiler.c2.aarch64;
argcount = 10;
procArgs = new String[argcount];
procArgs[argcount - 3] = "-XX:+UnlockExperimentalVMOptions";
procArgs[argcount - 2] = "-XX:+UseShenandoahGC";
break;
- case "ShenandoahIU":
- argcount = 11;
- procArgs = new String[argcount];
- procArgs[argcount - 4] = "-XX:+UnlockExperimentalVMOptions";
- procArgs[argcount - 3] = "-XX:+UseShenandoahGC";
- procArgs[argcount - 2] = "-XX:ShenandoahGCMode=iu";
- break;
default:
throw new RuntimeException("unexpected test type " + testType);
}
// fill in arguments common to all cases
"dmb ish",
"strb"
};
break;
case "Shenandoah":
- case "ShenandoahIU":
// Shenandoah generates normal object graphs for
// volatile stores
matches = new String[] {
"membar_release \\(elided\\)",
useCompressedOops ? "stlrw?" : "stlr",
"dmb ish",
"strb"
};
break;
case "Shenandoah":
- case "ShenandoahIU":
// For volatile CAS, Shenanodoah generates normal
// graphs with a shenandoah-specific cmpxchg
matches = new String[] {
"membar_release \\(elided\\)",
useCompressedOops ? "cmpxchgw?_acq_shenandoah" : "cmpxchg_acq_shenandoah",
"dmb ish",
"strb"
};
break;
case "Shenandoah":
- case "ShenandoahIU":
// For volatile CAS, Shenanodoah generates normal
// graphs with a shenandoah-specific cmpxchg
matches = new String[] {
"membar_release \\(elided\\)",
useCompressedOops ? "cmpxchgw?_acq_shenandoah" : "cmpxchg_acq_shenandoah",
"dmb ish",
"strb"
};
break;
case "Shenandoah":
- case "ShenandoahIU":
matches = new String[] {
"membar_release \\(elided\\)",
useCompressedOops ? "atomic_xchgw?_acq" : "atomic_xchg_acq",
"membar_acquire \\(elided\\)",
"ret"
< prev index next >