annotate test/runtime/NMT/MallocSiteHashOverflow.java @ 21784:f4e1d958f1c3

[AMD64] Create AMD64 specific address nodes.
author Roland Schatz <roland.schatz@oracle.com>
date Mon, 08 Jun 2015 19:19:45 +0200
parents ec2c6fdd1ce6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
1 /*
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
4 *
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
7 * published by the Free Software Foundation.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
8 *
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
13 * accompanied this code).
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
14 *
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
18 *
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
21 * questions.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
22 */
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
23
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
24 /*
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
25 * @test
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
26 * @summary Test corner case that overflows malloc site hashtable bucket
20628
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
27 * @requires sun.arch.data.model == "32"
20401
3f9ff5e261c6 8055765: Misplaced @key stress prevents MallocSiteHashOverflow.java and MallocStressTest.java tests from running
gtriantafill
parents: 20394
diff changeset
28 * @key nmt jcmd stress
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
29 * @library /testlibrary /testlibrary/whitebox
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
30 * @build MallocSiteHashOverflow
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
31 * @run main ClassFileInstaller sun.hotspot.WhiteBox
20628
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
32 * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:NativeMemoryTracking=detail MallocSiteHashOverflow
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
33 */
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
34
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
35 import com.oracle.java.testlibrary.*;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
36 import sun.hotspot.WhiteBox;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
37
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
38 public class MallocSiteHashOverflow {
20628
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
39
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
40 public static void main(String args[]) throws Exception {
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
41
20628
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
42 // Size of entries based on malloc tracking header defined in mallocTracker.hpp
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
43 // For 32-bit systems, create 257 malloc sites with the same hash bucket to overflow a hash bucket
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
44 long entries = 257;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
45
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
46 OutputAnalyzer output;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
47 WhiteBox wb = WhiteBox.getWhiteBox();
20628
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
48 int MAX_HASH_SIZE = wb.NMTGetHashSize();
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
49
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
50 // Grab my own PID
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
51 String pid = Integer.toString(ProcessTools.getProcessId());
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
52 ProcessBuilder pb = new ProcessBuilder();
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
53
20628
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
54 // Verify that current tracking level is "detail"
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
55 pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "statistics"});
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
56 output = new OutputAnalyzer(pb.start());
20628
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
57 output.shouldContain("Native Memory Tracking Statistics");
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
58
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
59 // Attempt to cause NMT to downgrade tracking level by allocating small amounts
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
60 // of memory with random pseudo call stack
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
61 int pc = 1;
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
62 for (int i = 0; i < entries; i++) {
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
63 long addr = wb.NMTMallocWithPseudoStack(1, pc);
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
64 if (addr == 0) {
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
65 throw new RuntimeException("NMTMallocWithPseudoStack: out of memory");
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
66 }
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
67 // We free memory here since it doesn't affect pseudo malloc alloc site hash table entries
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
68 wb.NMTFree(addr);
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
69 pc += MAX_HASH_SIZE;
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
70 if (i == entries) {
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
71 // Verify that tracking has been downgraded
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
72 pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "statistics"});
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
73 output = new OutputAnalyzer(pb.start());
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
74 output.shouldContain("Tracking level has been downgraded due to lack of resources");
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
75 }
80260967f994 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 20401
diff changeset
76 }
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
77 }
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
78 }