test/lib/sun/hotspot/WhiteBox.java
author alanb
Thu, 17 Mar 2016 19:03:53 +0000
changeset 36506 17612cee3530
parent 36287 2f8f83777f9d
child 36542 67e12a9fe95d
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: alanb, mchung, tbell Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, erik.joelsson@oracle.com, chris.hegarty@oracle.com, christian.tornqvist@oracle.com, harold.seigel@oracle.com, igor.ignatyev@oracle.com, james.laskey@oracle.com, jean-francois.denise@oracle.com, sundararajan.athijegannathan@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     1
/*
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
     2
 * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     4
 *
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     7
 * published by the Free Software Foundation.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     8
 *
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    13
 * accompanied this code).
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    14
 *
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    18
 *
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    21
 * questions.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    22
 *
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    23
 */
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    24
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    25
package sun.hotspot;
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    26
29664
54de61fbee04 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28351
diff changeset
    27
import java.lang.management.MemoryUsage;
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    28
import java.lang.reflect.Executable;
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    29
import java.util.Arrays;
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    30
import java.util.List;
29440
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
    31
import java.util.function.BiFunction;
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    32
import java.util.function.Function;
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    33
import java.security.BasicPermission;
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    34
import java.util.Objects;
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    35
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    36
import sun.hotspot.parser.DiagnosticCommand;
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    37
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    38
public class WhiteBox {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    39
  @SuppressWarnings("serial")
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    40
  public static class WhiteBoxPermission extends BasicPermission {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    41
    public WhiteBoxPermission(String s) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    42
      super(s);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    43
    }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    44
  }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    45
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    46
  private WhiteBox() {}
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    47
  private static final WhiteBox instance = new WhiteBox();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    48
  private static native void registerNatives();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    49
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    50
  /**
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    51
   * Returns the singleton WhiteBox instance.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    52
   *
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    53
   * The returned WhiteBox object should be carefully guarded
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    54
   * by the caller, since it can be used to read and write data
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    55
   * at arbitrary memory addresses. It must never be passed to
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    56
   * untrusted code.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    57
   */
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    58
  public synchronized static WhiteBox getWhiteBox() {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    59
    SecurityManager sm = System.getSecurityManager();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    60
    if (sm != null) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    61
      sm.checkPermission(new WhiteBoxPermission("getInstance"));
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    62
    }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    63
    return instance;
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    64
  }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    65
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    66
  static {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    67
    registerNatives();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    68
  }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    69
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    70
  // Get the maximum heap size supporting COOPs
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    71
  public native long getCompressedOopsMaxHeapSize();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    72
  // Arguments
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    73
  public native void printHeapSizes();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    74
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    75
  // Memory
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    76
  private native long getObjectAddress0(Object o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    77
  public           long getObjectAddress(Object o) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    78
    Objects.requireNonNull(o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    79
    return getObjectAddress0(o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    80
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    81
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    82
  public native int  getHeapOopSize();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    83
  public native int  getVMPageSize();
31320
5358f1744a3f 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31317
diff changeset
    84
  public native long getVMAllocationGranularity();
30078
cecb6ee4437a 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 30077
diff changeset
    85
  public native long getVMLargePageSize();
32557
4a6715919601 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32556
diff changeset
    86
  public native long getHeapSpaceAlignment();
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    87
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    88
  private native boolean isObjectInOldGen0(Object o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    89
  public         boolean isObjectInOldGen(Object o) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    90
    Objects.requireNonNull(o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    91
    return isObjectInOldGen0(o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    92
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    93
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    94
  private native long getObjectSize0(Object o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    95
  public         long getObjectSize(Object o) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    96
    Objects.requireNonNull(o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    97
    return getObjectSize0(o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
    98
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    99
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   100
  // Runtime
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   101
  // Make sure class name is in the correct format
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   102
  public boolean isClassAlive(String name) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   103
    return isClassAlive0(name.replace('.', '/'));
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   104
  }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   105
  private native boolean isClassAlive0(String name);
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   106
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   107
  private native boolean isMonitorInflated0(Object obj);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   108
  public         boolean isMonitorInflated(Object obj) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   109
    Objects.requireNonNull(obj);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   110
    return isMonitorInflated0(obj);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   111
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   112
28351
bbdca807711d 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28159
diff changeset
   113
  public native void forceSafepoint();
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   114
33045
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   115
  private native long getConstantPool0(Class<?> aClass);
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   116
  public         long getConstantPool(Class<?> aClass) {
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   117
    Objects.requireNonNull(aClass);
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   118
    return getConstantPool0(aClass);
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   119
  }
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   120
36285
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   121
  private native int getConstantPoolCacheIndexTag0();
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   122
  public         int getConstantPoolCacheIndexTag() {
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   123
    return getConstantPoolCacheIndexTag0();
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   124
  }
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   125
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   126
  private native int getConstantPoolCacheLength0(Class<?> aClass);
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   127
  public         int getConstantPoolCacheLength(Class<?> aClass) {
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   128
    Objects.requireNonNull(aClass);
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   129
    return getConstantPoolCacheLength0(aClass);
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   130
  }
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   131
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   132
  private native int remapInstructionOperandFromCPCache0(Class<?> aClass, int index);
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   133
  public         int remapInstructionOperandFromCPCache(Class<?> aClass, int index) {
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   134
    Objects.requireNonNull(aClass);
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   135
    return remapInstructionOperandFromCPCache0(aClass, index);
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   136
  }
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   137
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   138
  private native int encodeConstantPoolIndyIndex0(int index);
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   139
  public         int encodeConstantPoolIndyIndex(int index) {
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   140
    return encodeConstantPoolIndyIndex0(index);
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   141
  }
a644a8b6388a 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35022
diff changeset
   142
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   143
  // JVMTI
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   144
  private native void addToBootstrapClassLoaderSearch0(String segment);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   145
  public         void addToBootstrapClassLoaderSearch(String segment){
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   146
    Objects.requireNonNull(segment);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   147
    addToBootstrapClassLoaderSearch0(segment);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   148
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   149
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   150
  private native void addToSystemClassLoaderSearch0(String segment);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   151
  public         void addToSystemClassLoaderSearch(String segment) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   152
    Objects.requireNonNull(segment);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   153
    addToSystemClassLoaderSearch0(segment);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   154
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   155
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   156
  // G1
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   157
  public native boolean g1InConcurrentMark();
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   158
  private native boolean g1IsHumongous0(Object o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   159
  public         boolean g1IsHumongous(Object o) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   160
    Objects.requireNonNull(o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   161
    return g1IsHumongous0(o);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   162
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   163
35022
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   164
  private native boolean g1BelongsToHumongousRegion0(long adr);
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   165
  public         boolean g1BelongsToHumongousRegion(long adr) {
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   166
    if (adr == 0) {
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   167
      throw new IllegalArgumentException("adr argument should not be null");
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   168
    }
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   169
    return g1BelongsToHumongousRegion0(adr);
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   170
  }
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   171
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   172
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   173
  private native boolean g1BelongsToFreeRegion0(long adr);
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   174
  public         boolean g1BelongsToFreeRegion(long adr) {
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   175
    if (adr == 0) {
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   176
      throw new IllegalArgumentException("adr argument should not be null");
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   177
    }
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   178
    return g1BelongsToFreeRegion0(adr);
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   179
  }
a4827aa736f7 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 34488
diff changeset
   180
29664
54de61fbee04 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28351
diff changeset
   181
  public native long    g1NumMaxRegions();
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   182
  public native long    g1NumFreeRegions();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   183
  public native int     g1RegionSize();
29664
54de61fbee04 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28351
diff changeset
   184
  public native MemoryUsage g1AuxiliaryMemoryUsage();
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   185
  private  native Object[]    parseCommandLine0(String commandline, char delim, DiagnosticCommand[] args);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   186
  public          Object[]    parseCommandLine(String commandline, char delim, DiagnosticCommand[] args) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   187
    Objects.requireNonNull(args);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   188
    return parseCommandLine0(commandline, delim, args);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   189
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   190
32557
4a6715919601 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32556
diff changeset
   191
  // Parallel GC
4a6715919601 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32556
diff changeset
   192
  public native long psVirtualSpaceAlignment();
4a6715919601 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32556
diff changeset
   193
  public native long psHeapGenerationAlignment();
4a6715919601 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32556
diff changeset
   194
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   195
  // NMT
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   196
  public native long NMTMalloc(long size);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   197
  public native void NMTFree(long mem);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   198
  public native long NMTReserveMemory(long size);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   199
  public native void NMTCommitMemory(long addr, long size);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   200
  public native void NMTUncommitMemory(long addr, long size);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   201
  public native void NMTReleaseMemory(long addr, long size);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   202
  public native long NMTMallocWithPseudoStack(long size, int index);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   203
  public native boolean NMTChangeTrackingLevel();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   204
  public native int NMTGetHashSize();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   205
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   206
  // Compiler
33038
5d648743b2d1 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32557
diff changeset
   207
  public native int     matchesMethod(Executable method, String pattern);
33432
d3cbcb934612 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33045
diff changeset
   208
  public native int     matchesInline(Executable method, String pattern);
36287
2f8f83777f9d 8148159: [TESTBUG] TestCompilerDirectivesCompatibility tests fails on non-tiered server VMs
neliasso
parents: 36285
diff changeset
   209
  public native boolean shouldPrintAssembly(Executable method, int comp_level);
28157
1305bf148a19 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 28154
diff changeset
   210
  public native int     deoptimizeFrames(boolean makeNotEntrant);
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   211
  public native void    deoptimizeAll();
34487
db155554abc0 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33432
diff changeset
   212
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   213
  public        boolean isMethodCompiled(Executable method) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   214
    return isMethodCompiled(method, false /*not osr*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   215
  }
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   216
  private native boolean isMethodCompiled0(Executable method, boolean isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   217
  public         boolean isMethodCompiled(Executable method, boolean isOsr){
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   218
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   219
    return isMethodCompiled0(method, isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   220
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   221
  public        boolean isMethodCompilable(Executable method) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   222
    return isMethodCompilable(method, -1 /*any*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   223
  }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   224
  public        boolean isMethodCompilable(Executable method, int compLevel) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   225
    return isMethodCompilable(method, compLevel, false /*not osr*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   226
  }
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   227
  private native boolean isMethodCompilable0(Executable method, int compLevel, boolean isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   228
  public         boolean isMethodCompilable(Executable method, int compLevel, boolean isOsr) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   229
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   230
    return isMethodCompilable0(method, compLevel, isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   231
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   232
  private native boolean isMethodQueuedForCompilation0(Executable method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   233
  public         boolean isMethodQueuedForCompilation(Executable method) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   234
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   235
    return isMethodQueuedForCompilation0(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   236
  }
31949
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   237
  // Determine if the compiler corresponding to the compilation level 'compLevel'
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   238
  // and to the compilation context 'compilation_context' provides an intrinsic
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   239
  // for the method 'method'. An intrinsic is available for method 'method' if:
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   240
  //  - the intrinsic is enabled (by using the appropriate command-line flag) and
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   241
  //  - the platform on which the VM is running provides the instructions necessary
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   242
  //    for the compiler to generate the intrinsic code.
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   243
  //
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   244
  // The compilation context is related to using the DisableIntrinsic flag on a
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   245
  // per-method level, see hotspot/src/share/vm/compiler/abstractCompiler.hpp
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   246
  // for more details.
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   247
  public boolean isIntrinsicAvailable(Executable method,
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   248
                                      Executable compilationContext,
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   249
                                      int compLevel) {
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   250
      Objects.requireNonNull(method);
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   251
      return isIntrinsicAvailable0(method, compilationContext, compLevel);
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   252
  }
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   253
  // If usage of the DisableIntrinsic flag is not expected (or the usage can be ignored),
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   254
  // use the below method that does not require the compilation context as argument.
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   255
  public boolean isIntrinsicAvailable(Executable method, int compLevel) {
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   256
      return isIntrinsicAvailable(method, null, compLevel);
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   257
  }
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   258
  private native boolean isIntrinsicAvailable0(Executable method,
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   259
                                               Executable compilationContext,
ddd0594084a7 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31572
diff changeset
   260
                                               int compLevel);
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   261
  public        int     deoptimizeMethod(Executable method) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   262
    return deoptimizeMethod(method, false /*not osr*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   263
  }
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   264
  private native int     deoptimizeMethod0(Executable method, boolean isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   265
  public         int     deoptimizeMethod(Executable method, boolean isOsr) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   266
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   267
    return deoptimizeMethod0(method, isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   268
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   269
  public        void    makeMethodNotCompilable(Executable method) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   270
    makeMethodNotCompilable(method, -1 /*any*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   271
  }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   272
  public        void    makeMethodNotCompilable(Executable method, int compLevel) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   273
    makeMethodNotCompilable(method, compLevel, false /*not osr*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   274
  }
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   275
  private native void    makeMethodNotCompilable0(Executable method, int compLevel, boolean isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   276
  public         void    makeMethodNotCompilable(Executable method, int compLevel, boolean isOsr) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   277
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   278
    makeMethodNotCompilable0(method, compLevel, isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   279
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   280
  public        int     getMethodCompilationLevel(Executable method) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   281
    return getMethodCompilationLevel(method, false /*not ost*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   282
  }
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   283
  private native int     getMethodCompilationLevel0(Executable method, boolean isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   284
  public         int     getMethodCompilationLevel(Executable method, boolean isOsr) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   285
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   286
    return getMethodCompilationLevel0(method, isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   287
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   288
  private native boolean testSetDontInlineMethod0(Executable method, boolean value);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   289
  public         boolean testSetDontInlineMethod(Executable method, boolean value) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   290
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   291
    return testSetDontInlineMethod0(method, value);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   292
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   293
  public        int     getCompileQueuesSize() {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   294
    return getCompileQueueSize(-1 /*any*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   295
  }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   296
  public native int     getCompileQueueSize(int compLevel);
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   297
  private native boolean testSetForceInlineMethod0(Executable method, boolean value);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   298
  public         boolean testSetForceInlineMethod(Executable method, boolean value) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   299
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   300
    return testSetForceInlineMethod0(method, value);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   301
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   302
  public        boolean enqueueMethodForCompilation(Executable method, int compLevel) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   303
    return enqueueMethodForCompilation(method, compLevel, -1 /*InvocationEntryBci*/);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   304
  }
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   305
  private native boolean enqueueMethodForCompilation0(Executable method, int compLevel, int entry_bci);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   306
  public  boolean enqueueMethodForCompilation(Executable method, int compLevel, int entry_bci) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   307
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   308
    return enqueueMethodForCompilation0(method, compLevel, entry_bci);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   309
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   310
  private native void    clearMethodState0(Executable method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   311
  public         void    clearMethodState(Executable method) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   312
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   313
    clearMethodState0(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   314
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   315
  public native void    lockCompilation();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   316
  public native void    unlockCompilation();
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   317
  private native int     getMethodEntryBci0(Executable method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   318
  public         int     getMethodEntryBci(Executable method) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   319
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   320
    return getMethodEntryBci0(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   321
  }
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   322
  private native Object[] getNMethod0(Executable method, boolean isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   323
  public         Object[] getNMethod(Executable method, boolean isOsr) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   324
    Objects.requireNonNull(method);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   325
    return getNMethod0(method, isOsr);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   326
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   327
  public native long    allocateCodeBlob(int size, int type);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   328
  public        long    allocateCodeBlob(long size, int type) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   329
      int intSize = (int) size;
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   330
      if ((long) intSize != size || size < 0) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   331
          throw new IllegalArgumentException(
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   332
                "size argument has illegal value " + size);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   333
      }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   334
      return allocateCodeBlob( intSize, type);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   335
  }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   336
  public native void    freeCodeBlob(long addr);
30081
2dd31ea5f49c 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29666
diff changeset
   337
  public native void    forceNMethodSweep();
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   338
  public native Object[] getCodeHeapEntries(int type);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   339
  public native int     getCompilationActivityMode();
33045
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   340
  private native long getMethodData0(Executable method);
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   341
  public         long getMethodData(Executable method) {
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   342
    Objects.requireNonNull(method);
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   343
    return getMethodData0(method);
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33038
diff changeset
   344
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   345
  public native Object[] getCodeBlob(long addr);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   346
34487
db155554abc0 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33432
diff changeset
   347
  public native void clearInlineCaches();
db155554abc0 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33432
diff changeset
   348
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   349
  // Intered strings
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   350
  public native boolean isInStringTable(String str);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   351
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   352
  // Memory
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   353
  public native void readReservedMemory();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   354
  public native long allocateMetaspace(ClassLoader classLoader, long size);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   355
  public native void freeMetaspace(ClassLoader classLoader, long addr, long size);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   356
  public native long incMetaspaceCapacityUntilGC(long increment);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   357
  public native long metaspaceCapacityUntilGC();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   358
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   359
  // Force Young GC
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   360
  public native void youngGC();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   361
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   362
  // Force Full GC
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   363
  public native void fullGC();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   364
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   365
  // Method tries to start concurrent mark cycle.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   366
  // It returns false if CM Thread is always in concurrent cycle.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   367
  public native boolean g1StartConcMarkCycle();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   368
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   369
  // Tests on ReservedSpace/VirtualSpace classes
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   370
  public native int stressVirtualSpaceResize(long reservedSpaceSize, long magnitude, long iterations);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   371
  public native void runMemoryUnitTests();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   372
  public native void readFromNoaccessArea();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   373
  public native long getThreadStackSize();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   374
  public native long getThreadRemainingStackSize();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   375
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   376
  // CPU features
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   377
  public native String getCPUFeatures();
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   378
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   379
  // Native extensions
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   380
  public native long getHeapUsageForContext(int context);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   381
  public native long getHeapRegionCountForContext(int context);
30077
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   382
  private native int getContextForObject0(Object obj);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   383
  public         int getContextForObject(Object obj) {
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   384
    Objects.requireNonNull(obj);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   385
    return getContextForObject0(obj);
1b49d946a1c8 8043225: Make whitebox API functions more stable
iignatyev
parents: 29666
diff changeset
   386
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   387
  public native void printRegionInfo(int context);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   388
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   389
  // VM flags
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   390
  public native boolean isConstantVMFlag(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   391
  public native boolean isLockedVMFlag(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   392
  public native void    setBooleanVMFlag(String name, boolean value);
31221
72b40bd3f4ee 8080947: Add uint as a valid VM flag type
david
parents: 30083
diff changeset
   393
  public native void    setIntVMFlag(String name, long value);
72b40bd3f4ee 8080947: Add uint as a valid VM flag type
david
parents: 30083
diff changeset
   394
  public native void    setUintVMFlag(String name, long value);
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   395
  public native void    setIntxVMFlag(String name, long value);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   396
  public native void    setUintxVMFlag(String name, long value);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   397
  public native void    setUint64VMFlag(String name, long value);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   398
  public native void    setSizeTVMFlag(String name, long value);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   399
  public native void    setStringVMFlag(String name, String value);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   400
  public native void    setDoubleVMFlag(String name, double value);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   401
  public native Boolean getBooleanVMFlag(String name);
31221
72b40bd3f4ee 8080947: Add uint as a valid VM flag type
david
parents: 30083
diff changeset
   402
  public native Long    getIntVMFlag(String name);
72b40bd3f4ee 8080947: Add uint as a valid VM flag type
david
parents: 30083
diff changeset
   403
  public native Long    getUintVMFlag(String name);
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   404
  public native Long    getIntxVMFlag(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   405
  public native Long    getUintxVMFlag(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   406
  public native Long    getUint64VMFlag(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   407
  public native Long    getSizeTVMFlag(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   408
  public native String  getStringVMFlag(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   409
  public native Double  getDoubleVMFlag(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   410
  private final List<Function<String,Object>> flagsGetters = Arrays.asList(
31221
72b40bd3f4ee 8080947: Add uint as a valid VM flag type
david
parents: 30083
diff changeset
   411
    this::getBooleanVMFlag, this::getIntVMFlag, this::getUintVMFlag,
72b40bd3f4ee 8080947: Add uint as a valid VM flag type
david
parents: 30083
diff changeset
   412
    this::getIntxVMFlag, this::getUintxVMFlag, this::getUint64VMFlag,
72b40bd3f4ee 8080947: Add uint as a valid VM flag type
david
parents: 30083
diff changeset
   413
    this::getSizeTVMFlag, this::getStringVMFlag, this::getDoubleVMFlag);
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   414
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   415
  public Object getVMFlag(String name) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   416
    return flagsGetters.stream()
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   417
                       .map(f -> f.apply(name))
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   418
                       .filter(x -> x != null)
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   419
                       .findAny()
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   420
                       .orElse(null);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   421
  }
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   422
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   423
  // Jigsaw
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   424
  public native void DefineModule(Object module, String version, String location,
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   425
                                  Object[] packages);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   426
  public native void AddModuleExports(Object from_module, String pkg, Object to_module);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   427
  public native void AddReadsModule(Object from_module, Object source_module);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   428
  public native boolean CanReadModule(Object asking_module, Object source_module);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   429
  public native boolean IsExportedToModule(Object from_module, String pkg, Object to_module);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   430
  public native void AddModulePackage(Object module, String pkg);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   431
  public native void AddModuleExportsToAllUnnamed(Object module, String pkg);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   432
  public native void AddModuleExportsToAll(Object module, String pkg);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   433
  public native Object GetModuleByPackageName(Object ldr, String pkg);
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   434
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   435
  public native int getOffsetForName0(String name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   436
  public int getOffsetForName(String name) throws Exception {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   437
    int offset = getOffsetForName0(name);
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   438
    if (offset == -1) {
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   439
      throw new RuntimeException(name + " not found");
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   440
    }
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   441
    return offset;
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   442
  }
29440
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   443
  public native Boolean getMethodBooleanOption(Executable method, String name);
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   444
  public native Long    getMethodIntxOption(Executable method, String name);
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   445
  public native Long    getMethodUintxOption(Executable method, String name);
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   446
  public native Double  getMethodDoubleOption(Executable method, String name);
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   447
  public native String  getMethodStringOption(Executable method, String name);
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   448
  private final List<BiFunction<Executable,String,Object>> methodOptionGetters
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   449
      = Arrays.asList(this::getMethodBooleanOption, this::getMethodIntxOption,
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   450
          this::getMethodUintxOption, this::getMethodDoubleOption,
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   451
          this::getMethodStringOption);
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   452
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   453
  public Object getMethodOption(Executable method, String name) {
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   454
    return methodOptionGetters.stream()
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   455
                              .map(f -> f.apply(method, name))
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   456
                              .filter(x -> x != null)
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   457
                              .findAny()
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   458
                              .orElse(null);
87390f81c75d 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28351
diff changeset
   459
  }
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   460
28159
d5940675c190 8067972: Bring changes made to WhiteBox.java in 8047290 to that file new location in the top repo
kvn
parents: 28157
diff changeset
   461
  // Safepoint Checking
d5940675c190 8067972: Bring changes made to WhiteBox.java in 8047290 to that file new location in the top repo
kvn
parents: 28157
diff changeset
   462
  public native void assertMatchingSafepointCalls(boolean mutexSafepointValue, boolean attemptedNoSafepointValue);
31314
f273a8edea25 8015086: add interned strings to the shared archive.
jiangli
parents: 31221
diff changeset
   463
f273a8edea25 8015086: add interned strings to the shared archive.
jiangli
parents: 31221
diff changeset
   464
  // Sharing
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36287
diff changeset
   465
  public native boolean isShared(Object o);
34113
210cb6523c6e 8140802: Clean up and refactor of class loading code for CDS
iklam
parents: 33432
diff changeset
   466
  public native boolean isSharedClass(Class<?> c);
31317
9029b3303113 8098821: Crash in system dictionary initialization with shared strings
mseledtsov
parents: 31314
diff changeset
   467
  public native boolean areSharedStringsIgnored();
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
   468
}