File tree 5 files changed +17
-8
lines changed
vmTestbase/nsk/stress/stack
5 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ requires.properties= \
58
58
vm.jvmci \
59
59
vm.emulatedClient \
60
60
vm.cpu.features \
61
+ vm.pageSize \
61
62
vm.debug \
62
63
vm.hasSA \
63
64
vm.hasJFR \
Original file line number Diff line number Diff line change 44
44
* and 1.4 on Win32.
45
45
* See the bug:
46
46
* 4366625 (P4/S4) multiple stack overflow causes HS crash
47
- * The stack size is too small to run on aarch64. Making it bigger
48
- * could cause timeouts on other platform.
47
+ * The stack size is too small to run on systems with > 4K page size.
48
+ * Making it bigger could cause timeouts on other platform.
49
49
*
50
- * @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & os.arch != "aarch64" )
50
+ * @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & vm.pageSize == 4096 )
51
51
* @run main/othervm/timeout=900 -Xss200K nsk.stress.stack.stack008
52
52
*/
53
53
Original file line number Diff line number Diff line change 46
46
* See the bug:
47
47
* 4366625 (P4/S4) multiple stack overflow causes HS crash
48
48
*
49
- * @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp")
49
+ * @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & vm.pageSize == 4096 )
50
50
* @library /vmTestbase
51
51
* @build nsk.share.Terminator
52
- * @run main/othervm/timeout=900 -Xss448K nsk.stress.stack.stack018 -eager
52
+ * @run main/othervm/timeout=900 -Xss220K nsk.stress.stack.stack018 -eager
53
53
*/
54
54
55
55
package nsk .stress .stack ;
Original file line number Diff line number Diff line change 38
38
* Solaris and Win32 platforms.
39
39
* See the bug:
40
40
* 4366625 (P4/S4) multiple stack overflow causes HS crash
41
- * The stack size is too small to run on aarch64. Making it bigger
42
- * could cause timeouts on other platform.
41
+ * The stack size is too small to run on systems with > 4K page size.
42
+ * Making it bigger could cause timeouts on other platform.
43
43
*
44
- * @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & os.arch != "aarch64" )
44
+ * @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & vm.pageSize == 4096 )
45
45
* @requires os.family != "windows"
46
46
* @library /vmTestbase
47
47
* @build nsk.share.Terminator
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ public Map<String, String> call() {
101
101
map .put ("vm.hasJFR" , this ::vmHasJFR );
102
102
map .put ("vm.jvmti" , this ::vmHasJVMTI );
103
103
map .put ("vm.cpu.features" , this ::cpuFeatures );
104
+ map .put ("vm.pageSize" , this ::vmPageSize );
104
105
map .put ("vm.rtm.cpu" , this ::vmRTMCPU );
105
106
map .put ("vm.rtm.compiler" , this ::vmRTMCompiler );
106
107
map .put ("vm.aot" , this ::vmAOT );
@@ -441,6 +442,13 @@ protected String vmCDSForArchivedJavaHeap() {
441
442
return "" + ("true" .equals (vmCDS ()) && WB .isJavaHeapArchiveSupported ());
442
443
}
443
444
445
+ /**
446
+ * @return System page size in bytes.
447
+ */
448
+ protected String vmPageSize () {
449
+ return "" + WB .getVMPageSize ();
450
+ }
451
+
444
452
/**
445
453
* Check if Graal is used as JIT compiler.
446
454
*
You can’t perform that action at this time.
0 commit comments