annotate test/compiler/6932496/Test6932496.java @ 20218:828056cf311f

8040792: G1: Memory usage calculation uses sizeof(this) instead of sizeof(classname) Summary: A few locations in the code use sizeof(this) which returns the size of the pointer instead of sizeof(classname) which returns the size of the sum of its members. This change fixes these errors and adds a few tests. Reviewed-by: mgerdin, brutisso
author tschatzl
date Mon, 21 Jul 2014 09:40:19 +0200
parents c18cbe5936b8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1297
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1297
diff changeset
2 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
1297
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
4 *
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
7 * published by the Free Software Foundation.
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
8 *
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
13 * accompanied this code).
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
14 *
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1297
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1297
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1297
diff changeset
21 * questions.
1297
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
22 *
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
23 */
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
24
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
25 /**
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
26 * @test
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
27 * @bug 6932496
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
28 * @summary incorrect deopt of jsr subroutine on 64 bit c1
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
29 *
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
30 * @compile -source 1.5 -target 1.5 -XDjsrlimit=0 Test6932496.java
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
31 * @run main/othervm -Xcomp -XX:CompileOnly=Test6932496.m Test6932496
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
32 */
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
33
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
34 public class Test6932496 {
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
35 static class A {
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
36 volatile boolean flag = false;
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
37 }
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
38
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
39 static void m() {
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
40 try {
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
41 } finally {
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
42 A a = new A();
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
43 a.flag = true;
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
44 }
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
45 }
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
46
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
47
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
48 static public void main(String[] args) {
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
49 m();
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
50 }
c466efa608d5 6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
diff changeset
51 }