test/hotspot/jtreg/runtime/ElfDecoder/TestElfDirectRead.java
author zgu
Wed, 14 Feb 2018 17:20:59 -0500
changeset 48975 2c35fd3c5789
child 51082 6a5c674b7413
permissions -rw-r--r--
8193373: Cleanup ElfFile and family Summary: Cleanup elf decoder and added test Reviewed-by: minqi, coleenp
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
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    28
 * @requires (os.family == "linux")
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
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    33
 *                              sun.hotspot.WhiteBox$WhiteBoxPermission
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    34
 * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:NativeMemoryTracking=detail TestElfDirectRead
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    35
 */
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    36
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    37
import jdk.test.lib.process.ProcessTools;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    38
import jdk.test.lib.process.OutputAnalyzer;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    39
import jdk.test.lib.JDKToolFinder;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    40
import sun.hotspot.WhiteBox;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    41
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    42
public class TestElfDirectRead {
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    43
  public static void main(String args[]) throws Exception {
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    44
    WhiteBox wb = WhiteBox.getWhiteBox();
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    45
    wb.disableElfSectionCache();
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    46
    ProcessBuilder pb = new ProcessBuilder();
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    47
    OutputAnalyzer output;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    48
    // Grab my own PID
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    49
    String pid = Long.toString(ProcessTools.getProcessId());
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    50
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    51
    pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "detail"});
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    52
    output = new OutputAnalyzer(pb.start());
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    53
    // This is a pre-populated stack frame, should always exist if can decode
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    54
    output.shouldContain("MallocSiteTable::new_entry");
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    55
  }
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    56
}
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents:
diff changeset
    57