hotspot/test/testlibrary/whitebox/sun/hotspot/WhiteBox.java
author katleman
Fri, 12 Apr 2013 15:22:08 -0700
changeset 16697 1863b690d34f
parent 16601 7c6db0c8952f
child 16698 337c6d9758b1
permissions -rw-r--r--
8012048: JDK8 b85 source with GPL header errors Reviewed-by: iris, mduigou, jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     1
/*
16697
1863b690d34f 8012048: JDK8 b85 source with GPL header errors
katleman
parents: 16601
diff changeset
     2
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     4
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     8
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    13
 * accompanied this code).
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    14
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    18
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    21
 * questions.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    22
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    23
 */
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    24
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    25
package sun.hotspot;
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    26
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    27
import java.lang.reflect.Method;
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    28
import java.security.BasicPermission;
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
    29
import sun.hotspot.parser.DiagnosticCommand;
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    30
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    31
public class WhiteBox {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    32
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    33
  @SuppressWarnings("serial")
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    34
  public static class WhiteBoxPermission extends BasicPermission {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    35
    public WhiteBoxPermission(String s) {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    36
      super(s);
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    37
    }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    38
  }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    39
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    40
  private WhiteBox() {}
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    41
  private static final WhiteBox instance = new WhiteBox();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    42
  private static native void registerNatives();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    43
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    44
  /**
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    45
   * Returns the singleton WhiteBox instance.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    46
   *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    47
   * The returned WhiteBox object should be carefully guarded
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    48
   * by the caller, since it can be used to read and write data
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    49
   * at arbitrary memory addresses. It must never be passed to
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    50
   * untrusted code.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    51
   */
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    52
  public synchronized static WhiteBox getWhiteBox() {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    53
    SecurityManager sm = System.getSecurityManager();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    54
    if (sm != null) {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    55
      sm.checkPermission(new WhiteBoxPermission("getInstance"));
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    56
    }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    57
    return instance;
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    58
  }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    59
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    60
  static {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    61
    registerNatives();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    62
  }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    63
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    64
  // Memory
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    65
  public native long getObjectAddress(Object o);
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    66
  public native int  getHeapOopSize();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    67
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12262
diff changeset
    68
  // Runtime
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12262
diff changeset
    69
  // Make sure class name is in the correct format
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12262
diff changeset
    70
  public boolean isClassAlive(String name) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12262
diff changeset
    71
    return isClassAlive0(name.replace('.', '/'));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12262
diff changeset
    72
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12262
diff changeset
    73
  private native boolean isClassAlive0(String name);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12262
diff changeset
    74
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    75
  // G1
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    76
  public native boolean g1InConcurrentMark();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    77
  public native boolean g1IsHumongous(Object o);
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    78
  public native long    g1NumFreeRegions();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    79
  public native int     g1RegionSize();
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
    80
  public native Object[]    parseCommandLine(String commandline, DiagnosticCommand[] args);
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    81
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    82
  // NMT
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    83
  public native boolean NMTAllocTest();
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    84
  public native boolean NMTFreeTestMemory();
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    85
  public native boolean NMTWaitForDataMerge();
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    86
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    87
  // Compiler
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    88
  public native void    deoptimizeAll();
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    89
  public native boolean isMethodCompiled(Method method);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    90
  public native boolean isMethodCompilable(Method method);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    91
  public native boolean isMethodQueuedForCompilation(Method method);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    92
  public native int     deoptimizeMethod(Method method);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    93
  public native void    makeMethodNotCompilable(Method method);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    94
  public native int     getMethodCompilationLevel(Method method);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    95
  public native boolean setDontInlineMethod(Method method, boolean value);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15452
diff changeset
    96
  public native int     getCompileQueuesSize();
16601
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15793
diff changeset
    97
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15793
diff changeset
    98
  //Intered strings
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15793
diff changeset
    99
  public native boolean isInStringTable(String str);
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15793
diff changeset
   100
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15793
diff changeset
   101
  // force Full GC
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15793
diff changeset
   102
  public native void fullGC();
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   103
}