annotate test/gc/metaspace/TestMetaspaceMemoryPool.java @ 12986:1b422ef5288a

8025728: Missing volatile specifier for field G1AllocRegion::_alloc_region Summary: The field G1AllocRegion::_alloc_region needs to be declared volatile as it is used with that intention. Otherwise the compiler may generate the code that reloads the value which might have changed in the meantime, leading to spurious crashes. Reviewed-by: iveresov, simonis, tschatzl Contributed-by: Axel Siebenborn <axel.siebenborn@sap.com>
author tschatzl
date Wed, 23 Oct 2013 10:23:06 +0200
parents 73d0d0218068
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11039
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
1 /*
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
4 *
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
7 * published by the Free Software Foundation.
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
8 *
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
13 * accompanied this code).
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
14 *
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
18 *
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
21 * questions.
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
22 */
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
23
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
24 import java.util.List;
12248
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
25 import java.lang.management.*;
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
26 import com.oracle.java.testlibrary.*;
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
27 import static com.oracle.java.testlibrary.Asserts.*;
11039
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
28
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
29 /* @test TestMetaspaceMemoryPool
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
30 * @bug 8000754
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
31 * @summary Tests that a MemoryPoolMXBeans is created for metaspace and that a
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
32 * MemoryManagerMXBean is created.
12248
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
33 * @library /testlibrary
11039
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
34 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops TestMetaspaceMemoryPool
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
35 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:MaxMetaspaceSize=60m TestMetaspaceMemoryPool
12226
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 11039
diff changeset
36 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers TestMetaspaceMemoryPool
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 11039
diff changeset
37 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:CompressedClassSpaceSize=60m TestMetaspaceMemoryPool
11039
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
38 */
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
39 public class TestMetaspaceMemoryPool {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
40 public static void main(String[] args) {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
41 verifyThatMetaspaceMemoryManagerExists();
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
42
12248
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
43 boolean isMetaspaceMaxDefined = InputArguments.containsPrefix("-XX:MaxMetaspaceSize");
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
44 verifyMemoryPool(getMemoryPool("Metaspace"), isMetaspaceMaxDefined);
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
45
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
46 if (Platform.is64bit()) {
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
47 if (InputArguments.contains("-XX:+UseCompressedOops")) {
11039
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
48 MemoryPoolMXBean cksPool = getMemoryPool("Compressed Class Space");
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
49 verifyMemoryPool(cksPool, true);
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
50 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
51 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
52 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
53
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
54 private static void verifyThatMetaspaceMemoryManagerExists() {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
55 List<MemoryManagerMXBean> managers = ManagementFactory.getMemoryManagerMXBeans();
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
56 for (MemoryManagerMXBean manager : managers) {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
57 if (manager.getName().equals("Metaspace Manager")) {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
58 return;
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
59 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
60 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
61
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
62 throw new RuntimeException("Expected to find a metaspace memory manager");
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
63 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
64
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
65 private static MemoryPoolMXBean getMemoryPool(String name) {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
66 List<MemoryPoolMXBean> pools = ManagementFactory.getMemoryPoolMXBeans();
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
67 for (MemoryPoolMXBean pool : pools) {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
68 if (pool.getName().equals(name)) {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
69 return pool;
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
70 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
71 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
72
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
73 throw new RuntimeException("Expected to find a memory pool with name " + name);
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
74 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
75
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
76 private static void verifyMemoryPool(MemoryPoolMXBean pool, boolean isMaxDefined) {
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
77 MemoryUsage mu = pool.getUsage();
12248
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
78 long init = mu.getInit();
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
79 long used = mu.getUsed();
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
80 long committed = mu.getCommitted();
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
81 long max = mu.getMax();
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
82
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
83 assertGTE(init, 0L);
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
84 assertGTE(used, init);
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
85 assertGTE(committed, used);
11039
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
86
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
87 if (isMaxDefined) {
12248
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
88 assertGTE(max, committed);
11039
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
89 } else {
12248
73d0d0218068 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 12226
diff changeset
90 assertEQ(max, -1L);
11039
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
91 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
92 }
71963b3f802a 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
diff changeset
93 }