WhiteBox.java revision 2066:4a67e08031be
1/*
2 * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25package sun.hotspot;
26
27import java.lang.management.MemoryUsage;
28import java.lang.reflect.Executable;
29import java.util.Arrays;
30import java.util.List;
31import java.util.function.BiFunction;
32import java.util.function.Function;
33import java.security.BasicPermission;
34import java.util.Objects;
35
36import sun.hotspot.parser.DiagnosticCommand;
37
38public class WhiteBox {
39  @SuppressWarnings("serial")
40  public static class WhiteBoxPermission extends BasicPermission {
41    public WhiteBoxPermission(String s) {
42      super(s);
43    }
44  }
45
46  private WhiteBox() {}
47  private static final WhiteBox instance = new WhiteBox();
48  private static native void registerNatives();
49
50  /**
51   * Returns the singleton WhiteBox instance.
52   *
53   * The returned WhiteBox object should be carefully guarded
54   * by the caller, since it can be used to read and write data
55   * at arbitrary memory addresses. It must never be passed to
56   * untrusted code.
57   */
58  public synchronized static WhiteBox getWhiteBox() {
59    SecurityManager sm = System.getSecurityManager();
60    if (sm != null) {
61      sm.checkPermission(new WhiteBoxPermission("getInstance"));
62    }
63    return instance;
64  }
65
66  static {
67    registerNatives();
68  }
69
70  // Get the maximum heap size supporting COOPs
71  public native long getCompressedOopsMaxHeapSize();
72  // Arguments
73  public native void printHeapSizes();
74
75  // Memory
76  private native long getObjectAddress0(Object o);
77  public           long getObjectAddress(Object o) {
78    Objects.requireNonNull(o);
79    return getObjectAddress0(o);
80  }
81
82  public native int  getHeapOopSize();
83  public native int  getVMPageSize();
84  public native long getVMAllocationGranularity();
85  public native long getVMLargePageSize();
86  public native long getHeapSpaceAlignment();
87
88  private native boolean isObjectInOldGen0(Object o);
89  public         boolean isObjectInOldGen(Object o) {
90    Objects.requireNonNull(o);
91    return isObjectInOldGen0(o);
92  }
93
94  private native long getObjectSize0(Object o);
95  public         long getObjectSize(Object o) {
96    Objects.requireNonNull(o);
97    return getObjectSize0(o);
98  }
99
100  // Runtime
101  // Make sure class name is in the correct format
102  public boolean isClassAlive(String name) {
103    return isClassAlive0(name.replace('.', '/'));
104  }
105  private native boolean isClassAlive0(String name);
106
107  private native boolean isMonitorInflated0(Object obj);
108  public         boolean isMonitorInflated(Object obj) {
109    Objects.requireNonNull(obj);
110    return isMonitorInflated0(obj);
111  }
112
113  public native void forceSafepoint();
114
115  private native long getConstantPool0(Class<?> aClass);
116  public         long getConstantPool(Class<?> aClass) {
117    Objects.requireNonNull(aClass);
118    return getConstantPool0(aClass);
119  }
120
121  private native int getConstantPoolCacheIndexTag0();
122  public         int getConstantPoolCacheIndexTag() {
123    return getConstantPoolCacheIndexTag0();
124  }
125
126  private native int getConstantPoolCacheLength0(Class<?> aClass);
127  public         int getConstantPoolCacheLength(Class<?> aClass) {
128    Objects.requireNonNull(aClass);
129    return getConstantPoolCacheLength0(aClass);
130  }
131
132  private native int remapInstructionOperandFromCPCache0(Class<?> aClass, int index);
133  public         int remapInstructionOperandFromCPCache(Class<?> aClass, int index) {
134    Objects.requireNonNull(aClass);
135    return remapInstructionOperandFromCPCache0(aClass, index);
136  }
137
138  private native int encodeConstantPoolIndyIndex0(int index);
139  public         int encodeConstantPoolIndyIndex(int index) {
140    return encodeConstantPoolIndyIndex0(index);
141  }
142
143  // JVMTI
144  private native void addToBootstrapClassLoaderSearch0(String segment);
145  public         void addToBootstrapClassLoaderSearch(String segment){
146    Objects.requireNonNull(segment);
147    addToBootstrapClassLoaderSearch0(segment);
148  }
149
150  private native void addToSystemClassLoaderSearch0(String segment);
151  public         void addToSystemClassLoaderSearch(String segment) {
152    Objects.requireNonNull(segment);
153    addToSystemClassLoaderSearch0(segment);
154  }
155
156  // G1
157  public native boolean g1InConcurrentMark();
158  private native boolean g1IsHumongous0(Object o);
159  public         boolean g1IsHumongous(Object o) {
160    Objects.requireNonNull(o);
161    return g1IsHumongous0(o);
162  }
163
164  private native boolean g1BelongsToHumongousRegion0(long adr);
165  public         boolean g1BelongsToHumongousRegion(long adr) {
166    if (adr == 0) {
167      throw new IllegalArgumentException("adr argument should not be null");
168    }
169    return g1BelongsToHumongousRegion0(adr);
170  }
171
172
173  private native boolean g1BelongsToFreeRegion0(long adr);
174  public         boolean g1BelongsToFreeRegion(long adr) {
175    if (adr == 0) {
176      throw new IllegalArgumentException("adr argument should not be null");
177    }
178    return g1BelongsToFreeRegion0(adr);
179  }
180
181  public native long    g1NumMaxRegions();
182  public native long    g1NumFreeRegions();
183  public native int     g1RegionSize();
184  public native MemoryUsage g1AuxiliaryMemoryUsage();
185  private  native Object[]    parseCommandLine0(String commandline, char delim, DiagnosticCommand[] args);
186  public          Object[]    parseCommandLine(String commandline, char delim, DiagnosticCommand[] args) {
187    Objects.requireNonNull(args);
188    return parseCommandLine0(commandline, delim, args);
189  }
190
191  // Parallel GC
192  public native long psVirtualSpaceAlignment();
193  public native long psHeapGenerationAlignment();
194
195  /**
196   * Enumerates old regions with liveness less than specified and produces some statistics
197   * @param liveness percent of region's liveness (live_objects / total_region_size * 100).
198   * @return long[3] array where long[0] - total count of old regions
199   *                             long[1] - total memory of old regions
200   *                             long[2] - lowest estimation of total memory of old regions to be freed (non-full
201   *                             regions are not included)
202   */
203  public native long[] g1GetMixedGCInfo(int liveness);
204
205  // NMT
206  public native long NMTMalloc(long size);
207  public native void NMTFree(long mem);
208  public native long NMTReserveMemory(long size);
209  public native void NMTCommitMemory(long addr, long size);
210  public native void NMTUncommitMemory(long addr, long size);
211  public native void NMTReleaseMemory(long addr, long size);
212  public native long NMTMallocWithPseudoStack(long size, int index);
213  public native boolean NMTChangeTrackingLevel();
214  public native int NMTGetHashSize();
215
216  // Compiler
217  public native int     matchesMethod(Executable method, String pattern);
218  public native int     matchesInline(Executable method, String pattern);
219  public native boolean shouldPrintAssembly(Executable method, int comp_level);
220  public native int     deoptimizeFrames(boolean makeNotEntrant);
221  public native void    deoptimizeAll();
222
223  public        boolean isMethodCompiled(Executable method) {
224    return isMethodCompiled(method, false /*not osr*/);
225  }
226  private native boolean isMethodCompiled0(Executable method, boolean isOsr);
227  public         boolean isMethodCompiled(Executable method, boolean isOsr){
228    Objects.requireNonNull(method);
229    return isMethodCompiled0(method, isOsr);
230  }
231  public        boolean isMethodCompilable(Executable method) {
232    return isMethodCompilable(method, -1 /*any*/);
233  }
234  public        boolean isMethodCompilable(Executable method, int compLevel) {
235    return isMethodCompilable(method, compLevel, false /*not osr*/);
236  }
237  private native boolean isMethodCompilable0(Executable method, int compLevel, boolean isOsr);
238  public         boolean isMethodCompilable(Executable method, int compLevel, boolean isOsr) {
239    Objects.requireNonNull(method);
240    return isMethodCompilable0(method, compLevel, isOsr);
241  }
242  private native boolean isMethodQueuedForCompilation0(Executable method);
243  public         boolean isMethodQueuedForCompilation(Executable method) {
244    Objects.requireNonNull(method);
245    return isMethodQueuedForCompilation0(method);
246  }
247  // Determine if the compiler corresponding to the compilation level 'compLevel'
248  // and to the compilation context 'compilation_context' provides an intrinsic
249  // for the method 'method'. An intrinsic is available for method 'method' if:
250  //  - the intrinsic is enabled (by using the appropriate command-line flag) and
251  //  - the platform on which the VM is running provides the instructions necessary
252  //    for the compiler to generate the intrinsic code.
253  //
254  // The compilation context is related to using the DisableIntrinsic flag on a
255  // per-method level, see hotspot/src/share/vm/compiler/abstractCompiler.hpp
256  // for more details.
257  public boolean isIntrinsicAvailable(Executable method,
258                                      Executable compilationContext,
259                                      int compLevel) {
260      Objects.requireNonNull(method);
261      return isIntrinsicAvailable0(method, compilationContext, compLevel);
262  }
263  // If usage of the DisableIntrinsic flag is not expected (or the usage can be ignored),
264  // use the below method that does not require the compilation context as argument.
265  public boolean isIntrinsicAvailable(Executable method, int compLevel) {
266      return isIntrinsicAvailable(method, null, compLevel);
267  }
268  private native boolean isIntrinsicAvailable0(Executable method,
269                                               Executable compilationContext,
270                                               int compLevel);
271  public        int     deoptimizeMethod(Executable method) {
272    return deoptimizeMethod(method, false /*not osr*/);
273  }
274  private native int     deoptimizeMethod0(Executable method, boolean isOsr);
275  public         int     deoptimizeMethod(Executable method, boolean isOsr) {
276    Objects.requireNonNull(method);
277    return deoptimizeMethod0(method, isOsr);
278  }
279  public        void    makeMethodNotCompilable(Executable method) {
280    makeMethodNotCompilable(method, -1 /*any*/);
281  }
282  public        void    makeMethodNotCompilable(Executable method, int compLevel) {
283    makeMethodNotCompilable(method, compLevel, false /*not osr*/);
284  }
285  private native void    makeMethodNotCompilable0(Executable method, int compLevel, boolean isOsr);
286  public         void    makeMethodNotCompilable(Executable method, int compLevel, boolean isOsr) {
287    Objects.requireNonNull(method);
288    makeMethodNotCompilable0(method, compLevel, isOsr);
289  }
290  public        int     getMethodCompilationLevel(Executable method) {
291    return getMethodCompilationLevel(method, false /*not ost*/);
292  }
293  private native int     getMethodCompilationLevel0(Executable method, boolean isOsr);
294  public         int     getMethodCompilationLevel(Executable method, boolean isOsr) {
295    Objects.requireNonNull(method);
296    return getMethodCompilationLevel0(method, isOsr);
297  }
298  private native boolean testSetDontInlineMethod0(Executable method, boolean value);
299  public         boolean testSetDontInlineMethod(Executable method, boolean value) {
300    Objects.requireNonNull(method);
301    return testSetDontInlineMethod0(method, value);
302  }
303  public        int     getCompileQueuesSize() {
304    return getCompileQueueSize(-1 /*any*/);
305  }
306  public native int     getCompileQueueSize(int compLevel);
307  private native boolean testSetForceInlineMethod0(Executable method, boolean value);
308  public         boolean testSetForceInlineMethod(Executable method, boolean value) {
309    Objects.requireNonNull(method);
310    return testSetForceInlineMethod0(method, value);
311  }
312  public        boolean enqueueMethodForCompilation(Executable method, int compLevel) {
313    return enqueueMethodForCompilation(method, compLevel, -1 /*InvocationEntryBci*/);
314  }
315  private native boolean enqueueMethodForCompilation0(Executable method, int compLevel, int entry_bci);
316  public  boolean enqueueMethodForCompilation(Executable method, int compLevel, int entry_bci) {
317    Objects.requireNonNull(method);
318    return enqueueMethodForCompilation0(method, compLevel, entry_bci);
319  }
320  private native void    clearMethodState0(Executable method);
321  public         void    clearMethodState(Executable method) {
322    Objects.requireNonNull(method);
323    clearMethodState0(method);
324  }
325  public native void    lockCompilation();
326  public native void    unlockCompilation();
327  private native int     getMethodEntryBci0(Executable method);
328  public         int     getMethodEntryBci(Executable method) {
329    Objects.requireNonNull(method);
330    return getMethodEntryBci0(method);
331  }
332  private native Object[] getNMethod0(Executable method, boolean isOsr);
333  public         Object[] getNMethod(Executable method, boolean isOsr) {
334    Objects.requireNonNull(method);
335    return getNMethod0(method, isOsr);
336  }
337  public native long    allocateCodeBlob(int size, int type);
338  public        long    allocateCodeBlob(long size, int type) {
339      int intSize = (int) size;
340      if ((long) intSize != size || size < 0) {
341          throw new IllegalArgumentException(
342                "size argument has illegal value " + size);
343      }
344      return allocateCodeBlob( intSize, type);
345  }
346  public native void    freeCodeBlob(long addr);
347  public native void    forceNMethodSweep();
348  public native Object[] getCodeHeapEntries(int type);
349  public native int     getCompilationActivityMode();
350  private native long getMethodData0(Executable method);
351  public         long getMethodData(Executable method) {
352    Objects.requireNonNull(method);
353    return getMethodData0(method);
354  }
355  public native Object[] getCodeBlob(long addr);
356
357  private native void clearInlineCaches0(boolean preserve_static_stubs);
358  public void clearInlineCaches() {
359    clearInlineCaches0(false);
360  }
361  public void clearInlineCaches(boolean preserve_static_stubs) {
362    clearInlineCaches0(preserve_static_stubs);
363  }
364
365  // Intered strings
366  public native boolean isInStringTable(String str);
367
368  // Memory
369  public native void readReservedMemory();
370  public native long allocateMetaspace(ClassLoader classLoader, long size);
371  public native void freeMetaspace(ClassLoader classLoader, long addr, long size);
372  public native long incMetaspaceCapacityUntilGC(long increment);
373  public native long metaspaceCapacityUntilGC();
374
375  // Force Young GC
376  public native void youngGC();
377
378  // Force Full GC
379  public native void fullGC();
380
381  // Method tries to start concurrent mark cycle.
382  // It returns false if CM Thread is always in concurrent cycle.
383  public native boolean g1StartConcMarkCycle();
384
385  // Tests on ReservedSpace/VirtualSpace classes
386  public native int stressVirtualSpaceResize(long reservedSpaceSize, long magnitude, long iterations);
387  public native void runMemoryUnitTests();
388  public native void readFromNoaccessArea();
389  public native long getThreadStackSize();
390  public native long getThreadRemainingStackSize();
391
392  // CPU features
393  public native String getCPUFeatures();
394
395  // Native extensions
396  public native long getHeapUsageForContext(int context);
397  public native long getHeapRegionCountForContext(int context);
398  private native int getContextForObject0(Object obj);
399  public         int getContextForObject(Object obj) {
400    Objects.requireNonNull(obj);
401    return getContextForObject0(obj);
402  }
403  public native void printRegionInfo(int context);
404
405  // VM flags
406  public native boolean isConstantVMFlag(String name);
407  public native boolean isLockedVMFlag(String name);
408  public native void    setBooleanVMFlag(String name, boolean value);
409  public native void    setIntVMFlag(String name, long value);
410  public native void    setUintVMFlag(String name, long value);
411  public native void    setIntxVMFlag(String name, long value);
412  public native void    setUintxVMFlag(String name, long value);
413  public native void    setUint64VMFlag(String name, long value);
414  public native void    setSizeTVMFlag(String name, long value);
415  public native void    setStringVMFlag(String name, String value);
416  public native void    setDoubleVMFlag(String name, double value);
417  public native Boolean getBooleanVMFlag(String name);
418  public native Long    getIntVMFlag(String name);
419  public native Long    getUintVMFlag(String name);
420  public native Long    getIntxVMFlag(String name);
421  public native Long    getUintxVMFlag(String name);
422  public native Long    getUint64VMFlag(String name);
423  public native Long    getSizeTVMFlag(String name);
424  public native String  getStringVMFlag(String name);
425  public native Double  getDoubleVMFlag(String name);
426  private final List<Function<String,Object>> flagsGetters = Arrays.asList(
427    this::getBooleanVMFlag, this::getIntVMFlag, this::getUintVMFlag,
428    this::getIntxVMFlag, this::getUintxVMFlag, this::getUint64VMFlag,
429    this::getSizeTVMFlag, this::getStringVMFlag, this::getDoubleVMFlag);
430
431  public Object getVMFlag(String name) {
432    return flagsGetters.stream()
433                       .map(f -> f.apply(name))
434                       .filter(x -> x != null)
435                       .findAny()
436                       .orElse(null);
437  }
438
439  // Jigsaw
440  public native void DefineModule(Object module, String version, String location,
441                                  Object[] packages);
442  public native void AddModuleExports(Object from_module, String pkg, Object to_module);
443  public native void AddReadsModule(Object from_module, Object source_module);
444  public native boolean CanReadModule(Object asking_module, Object source_module);
445  public native boolean IsExportedToModule(Object from_module, String pkg, Object to_module);
446  public native void AddModulePackage(Object module, String pkg);
447  public native void AddModuleExportsToAllUnnamed(Object module, String pkg);
448  public native void AddModuleExportsToAll(Object module, String pkg);
449  public native Object GetModuleByPackageName(Object ldr, String pkg);
450
451  public native int getOffsetForName0(String name);
452  public int getOffsetForName(String name) throws Exception {
453    int offset = getOffsetForName0(name);
454    if (offset == -1) {
455      throw new RuntimeException(name + " not found");
456    }
457    return offset;
458  }
459  public native Boolean getMethodBooleanOption(Executable method, String name);
460  public native Long    getMethodIntxOption(Executable method, String name);
461  public native Long    getMethodUintxOption(Executable method, String name);
462  public native Double  getMethodDoubleOption(Executable method, String name);
463  public native String  getMethodStringOption(Executable method, String name);
464  private final List<BiFunction<Executable,String,Object>> methodOptionGetters
465      = Arrays.asList(this::getMethodBooleanOption, this::getMethodIntxOption,
466          this::getMethodUintxOption, this::getMethodDoubleOption,
467          this::getMethodStringOption);
468
469  public Object getMethodOption(Executable method, String name) {
470    return methodOptionGetters.stream()
471                              .map(f -> f.apply(method, name))
472                              .filter(x -> x != null)
473                              .findAny()
474                              .orElse(null);
475  }
476
477  // Safepoint Checking
478  public native void assertMatchingSafepointCalls(boolean mutexSafepointValue, boolean attemptedNoSafepointValue);
479
480  // Sharing
481  public native boolean isShared(Object o);
482  public native boolean isSharedClass(Class<?> c);
483  public native boolean areSharedStringsIgnored();
484
485  // Compiler Directive
486  public native int addCompilerDirective(String compDirect);
487  public native void removeCompilerDirective(int count);
488}
489