author | iignatyev |
Thu, 02 Aug 2018 14:40:55 -0700 | |
changeset 51287 | 7b1ddbafa134 |
parent 51082 | 6a5c674b7413 |
permissions | -rw-r--r-- |
48975 | 1 |
/* |
2 |
* Copyright (c) 2018, 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 8193373 |
|
27 |
* @summary Test reading ELF info direct from underlaying file |
|
51082
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
28 |
* @requires (os.family == "linux") & (os.arch != "ppc64") |
48975 | 29 |
* @modules java.base/jdk.internal.misc |
30 |
* @library /test/lib |
|
31 |
* @build sun.hotspot.WhiteBox |
|
32 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
|
51082
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
33 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
34 |
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
35 |
-XX:NativeMemoryTracking=detail TestElfDirectRead |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
36 |
*/ |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
37 |
|
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
38 |
// This test intentionally disables caching of Elf sections during symbol lookup |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
39 |
// with WhiteBox.disableElfSectionCache(). On platforms which do not use file |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
40 |
// descriptors instead of plain function pointers this slows down the lookup just a |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
41 |
// little bit, because all the symbols from an Elf file are still read consecutively |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
42 |
// after one 'fseek()' call. But on platforms with file descriptors like ppc64 |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
43 |
// big-endian, we get two 'fseek()' calls for each symbol read from the Elf file |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
44 |
// because reading the file descriptor table is nested inside the loop which reads |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
45 |
// the symbols. This really trashes the I/O system and considerable slows down the |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
46 |
// test, so we need an extra long timeout setting. |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
47 |
|
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
48 |
/* |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
49 |
* @test |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
50 |
* @bug 8193373 |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
51 |
* @summary Test reading ELF info direct from underlaying file |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
52 |
* @requires (os.family == "linux") & (os.arch == "ppc64") |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
53 |
* @modules java.base/jdk.internal.misc |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
54 |
* @library /test/lib |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
55 |
* @build sun.hotspot.WhiteBox |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
56 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
57 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
58 |
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI |
6a5c674b7413
8206998: [test] runtime/ElfDecoder/TestElfDirectRead.java requires longer timeout on ppc64
simonis
parents:
48975
diff
changeset
|
59 |
-XX:NativeMemoryTracking=detail TestElfDirectRead |
48975 | 60 |
*/ |
61 |
||
62 |
import jdk.test.lib.process.ProcessTools; |
|
63 |
import jdk.test.lib.process.OutputAnalyzer; |
|
64 |
import jdk.test.lib.JDKToolFinder; |
|
65 |
import sun.hotspot.WhiteBox; |
|
66 |
||
67 |
public class TestElfDirectRead { |
|
68 |
public static void main(String args[]) throws Exception { |
|
69 |
WhiteBox wb = WhiteBox.getWhiteBox(); |
|
70 |
wb.disableElfSectionCache(); |
|
71 |
ProcessBuilder pb = new ProcessBuilder(); |
|
72 |
OutputAnalyzer output; |
|
73 |
// Grab my own PID |
|
74 |
String pid = Long.toString(ProcessTools.getProcessId()); |
|
75 |
||
76 |
pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "detail"}); |
|
77 |
output = new OutputAnalyzer(pb.start()); |
|
78 |
// This is a pre-populated stack frame, should always exist if can decode |
|
79 |
output.shouldContain("MallocSiteTable::new_entry"); |
|
80 |
} |
|
81 |
} |
|
82 |