Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/compiler/interpreter/cr7116216/StackOverflow.java
41153 views
1
/*
2
* Copyright (c) 2011, 2012, 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
/**
25
* @test
26
* @bug 7116216
27
* @summary The vm crashes when GC happens during throwing a StackOverflow exception
28
* @library /
29
* @run main/othervm -Xcomp -Xbatch compiler.interpreter.cr7116216.StackOverflow
30
*/
31
32
package compiler.interpreter.cr7116216;
33
34
public class StackOverflow {
35
static String stackOverflow_largeFrame_liveOopForGC;
36
37
public static int stackOverflow_largeFrame(int call_count, String liveOopForGC) {
38
try {
39
int return_count = stackOverflow_largeFrame(++call_count, liveOopForGC);
40
if (return_count == 0) {
41
try {
42
LargeFrame.method_with_many_locals(liveOopForGC, 2,3,4,5,6,7,liveOopForGC);
43
} catch (StackOverflowError e2) {
44
// access liveOopForGC to make it a live variable
45
stackOverflow_largeFrame_liveOopForGC = liveOopForGC;
46
}
47
}
48
return return_count - 1;
49
} catch (StackOverflowError e) {
50
// Return a value that is large enough such that no unrecoverable
51
// stack overflow will occur afterwards, but that is small enough
52
// such that calling LargeFrame.method_with_many_locals() will
53
// cause a StackOverflowError.
54
// Don't use a call here because we're out of stack space anyway!
55
int tmp = call_count / 2;
56
return (tmp < 100 ? tmp : 100);
57
}
58
}
59
public static void main(String args[]) {
60
LargeFrame.method_with_many_locals(new Object(), 2,3,4,5,6,7,new Object());
61
62
stackOverflow_largeFrame(0, "this is a live oop to test GC");
63
System.out.println("finished ok!");
64
}
65
}
66
67