annotate test/runtime/8003720/Victim.java @ 20941:4f45e4d3361c

Truffle-DSL: rename GenericParser to Fallbackparser.
author Christian Humer <christian.humer@gmail.com>
date Tue, 14 Apr 2015 15:16:14 +0200
parents d0aa87f04bd5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7179
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
1 /*
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
4 *
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
7 * published by the Free Software Foundation.
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
8 *
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
13 * accompanied this code).
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
14 *
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
18 *
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
21 * questions.
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
22 *
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
23 */
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
24
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
25 public class Victim implements Test8003720.CallMe {
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
26 public void callme() {
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
27 // note: Victim.this is dead here
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
28 Test8003720.println("executing in loader=" + Victim.class.getClassLoader());
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
29
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
30 long now = System.currentTimeMillis();
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
31
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
32 while ((System.currentTimeMillis() - now) < Test8003720.DURATION) {
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
33 long count = VictimClassLoader.counter++;
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
34 if (count % 1000000 == 0) System.gc();
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
35 if (count % 16180000 == 0) blurb();
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
36 new Object[1].clone();
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
37 }
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
38 }
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
39 static void blurb() {
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
40 Test8003720.println("count=" + VictimClassLoader.counter);
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
41 }
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
42 static {
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
43 blather();
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
44 }
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
45 static void blather() {
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
46 new java.util.ArrayList<Object>(1000000);
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
47 Class<Victim> c = Victim.class;
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
48 Test8003720.println("initializing " + c + "#" + System.identityHashCode(c) + " in " + c.getClassLoader());
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
49 }
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
diff changeset
50 }