test/hotspot/jtreg/runtime/ElfDecoder/TestElfDirectRead.java
author iignatyev
Thu, 02 Aug 2018 14:40:55 -0700
changeset 51287 7b1ddbafa134
parent 51082 6a5c674b7413
permissions -rw-r--r--
8208655: use JTreg skipped status in hotspot tests Reviewed-by: kvn, hseigel, iklam
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48975
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     1
/*
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     4
 *
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     7
 * published by the Free Software Foundation.
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     8
 *
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    13
 * accompanied this code).
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    14
 *
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    18
 *
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    21
 * questions.
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    22
 */
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    23
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    24
/*
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    25
 * @test
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    26
 * @bug 8193373
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    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
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    29
 * @modules java.base/jdk.internal.misc
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    30
 * @library /test/lib
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    31
 * @build sun.hotspot.WhiteBox
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    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
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    60
 */
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    61
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    62
import jdk.test.lib.process.ProcessTools;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    63
import jdk.test.lib.process.OutputAnalyzer;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    64
import jdk.test.lib.JDKToolFinder;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    65
import sun.hotspot.WhiteBox;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    66
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    67
public class TestElfDirectRead {
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    68
  public static void main(String args[]) throws Exception {
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    69
    WhiteBox wb = WhiteBox.getWhiteBox();
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    70
    wb.disableElfSectionCache();
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    71
    ProcessBuilder pb = new ProcessBuilder();
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    72
    OutputAnalyzer output;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    73
    // Grab my own PID
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    74
    String pid = Long.toString(ProcessTools.getProcessId());
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    75
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    76
    pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "detail"});
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    77
    output = new OutputAnalyzer(pb.start());
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    78
    // This is a pre-populated stack frame, should always exist if can decode
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    79
    output.shouldContain("MallocSiteTable::new_entry");
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    80
  }
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    81
}
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    82