src/hotspot/share/prims/whitebox.cpp
author zgu
Tue, 26 Nov 2019 09:27:16 -0500
changeset 59269 ac6f7738a0ee
parent 59118 89c44961a84f
child 59290 97d13893ec3c
permissions -rw-r--r--
8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area Reviewed-by: stuefe, minqi
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     1
/*
53494
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
     2
 * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     4
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     8
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    13
 * accompanied this code).
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    14
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    18
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    21
 * questions.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    22
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    23
 */
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    24
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    25
#include "precompiled.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    26
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
    27
#include <new>
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
    28
51959
db0c3952de52 8209645: Split ClassLoaderData and ClassLoaderDataGraph into separate files
coleenp
parents: 51796
diff changeset
    29
#include "classfile/classLoaderDataGraph.hpp"
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
    30
#include "classfile/modules.hpp"
51610
cdef4df6b0e7 8206424: Use locking for cleaning ProtectionDomainTable
pchilanomate
parents: 51608
diff changeset
    31
#include "classfile/protectionDomainCache.hpp"
27684
e0391b2bf625 8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents: 27434
diff changeset
    32
#include "classfile/stringTable.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54780
diff changeset
    33
#include "classfile/symbolTable.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24921
diff changeset
    34
#include "code/codeCache.hpp"
58545
725244418646 8165056: move JIT Compiler related files from runtime/ to compiler/ directory
xliu
parents: 58409
diff changeset
    35
#include "compiler/compilationPolicy.hpp"
33069
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
    36
#include "compiler/methodMatcher.hpp"
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
    37
#include "compiler/directivesParser.hpp"
49630
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
    38
#include "gc/shared/gcConfig.hpp"
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
    39
#include "gc/shared/genArguments.hpp"
49594
898ef81cbc0e 8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents: 49593
diff changeset
    40
#include "gc/shared/genCollectedHeap.hpp"
27694
jwilhelm
parents: 27685 27675
diff changeset
    41
#include "jvmtifiles/jvmtiEnv.hpp"
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
    42
#include "memory/filemap.hpp"
52062
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 52030
diff changeset
    43
#include "memory/heapShared.inline.hpp"
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 52030
diff changeset
    44
#include "memory/metaspaceShared.hpp"
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    45
#include "memory/metadataFactory.hpp"
37106
0856b64af754 8151539: Remove duplicate AlwaysTrueClosures
stefank
parents: 36321
diff changeset
    46
#include "memory/iterator.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 37179
diff changeset
    47
#include "memory/resourceArea.hpp"
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    48
#include "memory/universe.hpp"
38007
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
    49
#include "memory/oopFactory.hpp"
46448
b5350a83520b 8153646: Move vm/utilities/array.hpp to vm/oops
hseigel
parents: 46404
diff changeset
    50
#include "oops/array.hpp"
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54736
diff changeset
    51
#include "oops/compressedOops.hpp"
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49322
diff changeset
    52
#include "oops/constantPool.inline.hpp"
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49322
diff changeset
    53
#include "oops/method.inline.hpp"
43466
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
    54
#include "oops/objArrayKlass.hpp"
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
    55
#include "oops/objArrayOop.inline.hpp"
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    56
#include "oops/oop.inline.hpp"
49036
bc92debe57e4 8197999: Accessors in typeArrayOopDesc should use new Access API
rkennke
parents: 49035
diff changeset
    57
#include "oops/typeArrayOop.inline.hpp"
51567
0c4f2b26849e 8209844: MemberNameLeak.java fails when ResolvedMethod entry is not removed
pchilanomate
parents: 51467
diff changeset
    58
#include "prims/resolvedMethodTable.hpp"
27684
e0391b2bf625 8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents: 27434
diff changeset
    59
#include "prims/wbtestmethods/parserTests.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
    60
#include "prims/whitebox.inline.hpp"
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19554
diff changeset
    61
#include "runtime/arguments.hpp"
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
    62
#include "runtime/deoptimization.hpp"
51467
12997ebbc0d8 8209647: constantPoolHandle::constantPoolHandle(ConstantPool*) when precompiled header is disabled
iklam
parents: 51214
diff changeset
    63
#include "runtime/fieldDescriptor.inline.hpp"
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
    64
#include "runtime/flags/jvmFlag.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49469
diff changeset
    65
#include "runtime/frame.inline.hpp"
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 53494
diff changeset
    66
#include "runtime/handles.inline.hpp"
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
    67
#include "runtime/handshake.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
    68
#include "runtime/interfaceSupport.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30248
diff changeset
    69
#include "runtime/javaCalls.hpp"
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 49047
diff changeset
    70
#include "runtime/jniHandles.inline.hpp"
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    71
#include "runtime/os.hpp"
27685
jwilhelm
parents: 27642 27684
diff changeset
    72
#include "runtime/sweeper.hpp"
27684
e0391b2bf625 8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents: 27434
diff changeset
    73
#include "runtime/thread.hpp"
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47908
diff changeset
    74
#include "runtime/threadSMR.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24921
diff changeset
    75
#include "runtime/vm_version.hpp"
49593
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49480
diff changeset
    76
#include "services/memoryService.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46620
diff changeset
    77
#include "utilities/align.hpp"
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    78
#include "utilities/debug.hpp"
49035
c5381ad58ed3 8198287: Cleanup ElfFile usage in whitebox.cpp
zgu
parents: 49034
diff changeset
    79
#include "utilities/elfFile.hpp"
27684
e0391b2bf625 8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents: 27434
diff changeset
    80
#include "utilities/exceptions.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    81
#include "utilities/macros.hpp"
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
    82
#if INCLUDE_CDS
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
    83
#include "prims/cdsoffsets.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
    84
#endif // INCLUDE_CDS
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
    85
#if INCLUDE_G1GC
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
    86
#include "gc/g1/g1Arguments.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30248
diff changeset
    87
#include "gc/g1/g1CollectedHeap.inline.hpp"
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35918
diff changeset
    88
#include "gc/g1/g1ConcurrentMark.hpp"
49659
0ed1370f52bb 8200371: In g1, rename ConcurrentMarkThread to G1ConcurrentMarkThread
lkorinth
parents: 49630
diff changeset
    89
#include "gc/g1/g1ConcurrentMarkThread.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30248
diff changeset
    90
#include "gc/g1/heapRegionRemSet.hpp"
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
    91
#include "gc/g1/heterogeneousHeapRegionManager.hpp"
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
    92
#endif // INCLUDE_G1GC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
    93
#if INCLUDE_PARALLELGC
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30248
diff changeset
    94
#include "gc/parallel/parallelScavengeHeap.inline.hpp"
32625
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
    95
#include "gc/parallel/adjoiningGenerations.hpp"
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
    96
#endif // INCLUDE_PARALLELGC
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
    97
#if INCLUDE_NMT
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
    98
#include "services/mallocSiteTable.hpp"
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    99
#include "services/memTracker.hpp"
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   100
#include "utilities/nativeCallStack.hpp"
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   101
#endif // INCLUDE_NMT
53494
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
   102
#if INCLUDE_AOT
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
   103
#include "aot/aotLoader.hpp"
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
   104
#endif // INCLUDE_AOT
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   105
47264
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
   106
#ifdef LINUX
47908
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
   107
#include "osContainer_linux.hpp"
47264
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
   108
#endif
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   109
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   110
#define SIZE_T_MAX_VALUE ((size_t) -1)
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   111
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   112
#define CHECK_JNI_EXCEPTION_(env, value)                               \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   113
  do {                                                                 \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   114
    JavaThread* THREAD = JavaThread::thread_from_jni_environment(env); \
50299
896486c6e357 8189766: whitebox failure with -Xcheck:jni
dholmes
parents: 50056
diff changeset
   115
    THREAD->clear_pending_jni_exception_check();                       \
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   116
    if (HAS_PENDING_EXCEPTION) {                                       \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   117
      return(value);                                                   \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   118
    }                                                                  \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   119
  } while (0)
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   120
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   121
#define CHECK_JNI_EXCEPTION(env)                                       \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   122
  do {                                                                 \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   123
    JavaThread* THREAD = JavaThread::thread_from_jni_environment(env); \
50299
896486c6e357 8189766: whitebox failure with -Xcheck:jni
dholmes
parents: 50056
diff changeset
   124
    THREAD->clear_pending_jni_exception_check();                       \
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   125
    if (HAS_PENDING_EXCEPTION) {                                       \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   126
      return;                                                          \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   127
    }                                                                  \
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   128
  } while (0)
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
   129
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   130
bool WhiteBox::_used = false;
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
   131
volatile bool WhiteBox::compilation_locked = false;
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   132
28199
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   133
class VM_WhiteBoxOperation : public VM_Operation {
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   134
 public:
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   135
  VM_WhiteBoxOperation()                         { }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   136
  VMOp_Type type()                  const        { return VMOp_WhiteBoxOperation; }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   137
  bool allow_nested_vm_operations() const        { return true; }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   138
};
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   139
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   140
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   141
WB_ENTRY(jlong, WB_GetObjectAddress(JNIEnv* env, jobject o, jobject obj))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   142
  return (jlong)(void*)JNIHandles::resolve(obj);
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   143
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   144
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   145
WB_ENTRY(jint, WB_GetHeapOopSize(JNIEnv* env, jobject o))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   146
  return heapOopSize;
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   147
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   148
27876
91fd97d8eb71 8053995: Add method to WhiteBox to get vm pagesize.
minqi
parents: 27675
diff changeset
   149
WB_ENTRY(jint, WB_GetVMPageSize(JNIEnv* env, jobject o))
91fd97d8eb71 8053995: Add method to WhiteBox to get vm pagesize.
minqi
parents: 27675
diff changeset
   150
  return os::vm_page_size();
91fd97d8eb71 8053995: Add method to WhiteBox to get vm pagesize.
minqi
parents: 27675
diff changeset
   151
WB_END
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   152
31392
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
   153
WB_ENTRY(jlong, WB_GetVMAllocationGranularity(JNIEnv* env, jobject o))
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
   154
  return os::vm_allocation_granularity();
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
   155
WB_END
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
   156
30158
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 30156
diff changeset
   157
WB_ENTRY(jlong, WB_GetVMLargePageSize(JNIEnv* env, jobject o))
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 30156
diff changeset
   158
  return os::large_page_size();
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 30156
diff changeset
   159
WB_END
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 30156
diff changeset
   160
51608
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51567
diff changeset
   161
class WBIsKlassAliveClosure : public LockedClassesDo {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   162
    Symbol* _name;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   163
    bool _found;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   164
public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   165
    WBIsKlassAliveClosure(Symbol* name) : _name(name), _found(false) {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   166
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   167
    void do_klass(Klass* k) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   168
      if (_found) return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   169
      Symbol* ksym = k->name();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   170
      if (ksym->fast_compare(_name) == 0) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   171
        _found = true;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   172
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   173
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   174
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   175
    bool found() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   176
        return _found;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   177
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   178
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   179
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   180
WB_ENTRY(jboolean, WB_IsClassAlive(JNIEnv* env, jobject target, jstring name))
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42650
diff changeset
   181
  oop h_name = JNIHandles::resolve(name);
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42650
diff changeset
   182
  if (h_name == NULL) return false;
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   183
  Symbol* sym = java_lang_String::as_symbol(h_name);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   184
  TempNewSymbol tsym(sym); // Make sure to decrement reference count on sym on return
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   185
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   186
  WBIsKlassAliveClosure closure(sym);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   187
  ClassLoaderDataGraph::classes_do(&closure);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   188
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   189
  return closure.found();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   190
WB_END
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   191
51747
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
   192
WB_ENTRY(jint, WB_GetSymbolRefcount(JNIEnv* env, jobject unused, jstring name))
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
   193
  oop h_name = JNIHandles::resolve(name);
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
   194
  if (h_name == NULL) return false;
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   195
  Symbol* sym = java_lang_String::as_symbol(h_name);
51747
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
   196
  TempNewSymbol tsym(sym); // Make sure to decrement reference count on sym on return
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
   197
  return (jint)sym->refcount();
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
   198
WB_END
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
   199
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
   200
27672
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   201
WB_ENTRY(void, WB_AddToBootstrapClassLoaderSearch(JNIEnv* env, jobject o, jstring segment)) {
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   202
#if INCLUDE_JVMTI
27675
a165e756e90d 8065346: WB_AddToBootstrapClassLoaderSearch calls JvmtiEnv::create_a_jvmti when not in _thread_in_vm state
iklam
parents: 27672
diff changeset
   203
  ResourceMark rm;
a165e756e90d 8065346: WB_AddToBootstrapClassLoaderSearch calls JvmtiEnv::create_a_jvmti when not in _thread_in_vm state
iklam
parents: 27672
diff changeset
   204
  const char* seg = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(segment));
27672
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   205
  JvmtiEnv* jvmti_env = JvmtiEnv::create_a_jvmti(JVMTI_VERSION);
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   206
  jvmtiError err = jvmti_env->AddToBootstrapClassLoaderSearch(seg);
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   207
  assert(err == JVMTI_ERROR_NONE, "must not fail");
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   208
#endif
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   209
}
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   210
WB_END
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   211
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   212
WB_ENTRY(void, WB_AddToSystemClassLoaderSearch(JNIEnv* env, jobject o, jstring segment)) {
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   213
#if INCLUDE_JVMTI
27675
a165e756e90d 8065346: WB_AddToBootstrapClassLoaderSearch calls JvmtiEnv::create_a_jvmti when not in _thread_in_vm state
iklam
parents: 27672
diff changeset
   214
  ResourceMark rm;
a165e756e90d 8065346: WB_AddToBootstrapClassLoaderSearch calls JvmtiEnv::create_a_jvmti when not in _thread_in_vm state
iklam
parents: 27672
diff changeset
   215
  const char* seg = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(segment));
27672
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   216
  JvmtiEnv* jvmti_env = JvmtiEnv::create_a_jvmti(JVMTI_VERSION);
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   217
  jvmtiError err = jvmti_env->AddToSystemClassLoaderSearch(seg);
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   218
  assert(err == JVMTI_ERROR_NONE, "must not fail");
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   219
#endif
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   220
}
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   221
WB_END
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   222
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
   223
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19554
diff changeset
   224
WB_ENTRY(jlong, WB_GetCompressedOopsMaxHeapSize(JNIEnv* env, jobject o)) {
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19554
diff changeset
   225
  return (jlong)Arguments::max_heap_for_compressed_oops();
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19554
diff changeset
   226
}
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19554
diff changeset
   227
WB_END
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19554
diff changeset
   228
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17134
diff changeset
   229
WB_ENTRY(void, WB_PrintHeapSizes(JNIEnv* env, jobject o)) {
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   230
  tty->print_cr("Minimum heap " SIZE_FORMAT " Initial heap " SIZE_FORMAT " "
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   231
                "Maximum heap " SIZE_FORMAT " Space alignment " SIZE_FORMAT " Heap alignment " SIZE_FORMAT,
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   232
                MinHeapSize,
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   233
                InitialHeapSize,
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   234
                MaxHeapSize,
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   235
                SpaceAlignment,
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   236
                HeapAlignment);
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17134
diff changeset
   237
}
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17134
diff changeset
   238
WB_END
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17134
diff changeset
   239
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   240
#ifndef PRODUCT
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   241
// Forward declaration
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   242
void TestReservedSpace_test();
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   243
void TestReserveMemorySpecial_test();
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   244
void TestVirtualSpace_test();
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   245
#endif
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   246
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   247
WB_ENTRY(void, WB_RunMemoryUnitTests(JNIEnv* env, jobject o))
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   248
#ifndef PRODUCT
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   249
  TestReservedSpace_test();
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   250
  TestReserveMemorySpecial_test();
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   251
  TestVirtualSpace_test();
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   252
#endif
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   253
WB_END
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   254
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   255
WB_ENTRY(void, WB_ReadFromNoaccessArea(JNIEnv* env, jobject o))
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   256
  size_t granularity = os::vm_allocation_granularity();
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28203
diff changeset
   257
  ReservedHeapSpace rhs(100 * granularity, granularity, false);
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   258
  VirtualSpace vs;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   259
  vs.initialize(rhs, 50 * granularity);
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   260
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28203
diff changeset
   261
  // Check if constraints are complied
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   262
  if (!( UseCompressedOops && rhs.base() != NULL &&
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54736
diff changeset
   263
         CompressedOops::base() != NULL &&
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54736
diff changeset
   264
         CompressedOops::use_implicit_null_checks() )) {
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   265
    tty->print_cr("WB_ReadFromNoaccessArea method is useless:\n "
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   266
                  "\tUseCompressedOops is %d\n"
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31392
diff changeset
   267
                  "\trhs.base() is " PTR_FORMAT "\n"
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54736
diff changeset
   268
                  "\tCompressedOops::base() is " PTR_FORMAT "\n"
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54736
diff changeset
   269
                  "\tCompressedOops::use_implicit_null_checks() is %d",
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   270
                  UseCompressedOops,
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33069
diff changeset
   271
                  p2i(rhs.base()),
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54736
diff changeset
   272
                  p2i(CompressedOops::base()),
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54736
diff changeset
   273
                  CompressedOops::use_implicit_null_checks());
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   274
    return;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   275
  }
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   276
  tty->print_cr("Reading from no access area... ");
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   277
  tty->print_cr("*(vs.low_boundary() - rhs.noaccess_prefix() / 2 ) = %c",
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   278
                *(vs.low_boundary() - rhs.noaccess_prefix() / 2 ));
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   279
WB_END
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   280
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   281
static jint wb_stress_virtual_space_resize(size_t reserved_space_size,
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   282
                                           size_t magnitude, size_t iterations) {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   283
  size_t granularity = os::vm_allocation_granularity();
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28203
diff changeset
   284
  ReservedHeapSpace rhs(reserved_space_size * granularity, granularity, false);
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   285
  VirtualSpace vs;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   286
  if (!vs.initialize(rhs, 0)) {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   287
    tty->print_cr("Failed to initialize VirtualSpace. Can't proceed.");
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   288
    return 3;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   289
  }
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   290
46587
6c97f34cb194 8182554: Code for os::random() assumes long is 32 bits
coleenp
parents: 46448
diff changeset
   291
  int seed = os::random();
6c97f34cb194 8182554: Code for os::random() assumes long is 32 bits
coleenp
parents: 46448
diff changeset
   292
  tty->print_cr("Random seed is %d", seed);
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   293
  os::init_random(seed);
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   294
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   295
  for (size_t i = 0; i < iterations; i++) {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   296
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   297
    // Whether we will shrink or grow
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   298
    bool shrink = os::random() % 2L == 0;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   299
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   300
    // Get random delta to resize virtual space
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   301
    size_t delta = (size_t)os::random() % magnitude;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   302
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   303
    // If we are about to shrink virtual space below zero, then expand instead
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   304
    if (shrink && vs.committed_size() < delta) {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   305
      shrink = false;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   306
    }
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   307
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   308
    // Resizing by delta
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   309
    if (shrink) {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   310
      vs.shrink_by(delta);
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   311
    } else {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   312
      // If expanding fails expand_by will silently return false
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   313
      vs.expand_by(delta, true);
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   314
    }
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   315
  }
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   316
  return 0;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   317
}
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   318
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   319
WB_ENTRY(jint, WB_StressVirtualSpaceResize(JNIEnv* env, jobject o,
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   320
        jlong reserved_space_size, jlong magnitude, jlong iterations))
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31392
diff changeset
   321
  tty->print_cr("reservedSpaceSize=" JLONG_FORMAT ", magnitude=" JLONG_FORMAT ", "
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31392
diff changeset
   322
                "iterations=" JLONG_FORMAT "\n", reserved_space_size, magnitude,
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   323
                iterations);
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   324
  if (reserved_space_size < 0 || magnitude < 0 || iterations < 0) {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   325
    tty->print_cr("One of variables printed above is negative. Can't proceed.\n");
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   326
    return 1;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   327
  }
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   328
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   329
  // sizeof(size_t) depends on whether OS is 32bit or 64bit. sizeof(jlong) is
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   330
  // always 8 byte. That's why we should avoid overflow in case of 32bit platform.
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   331
  if (sizeof(size_t) < sizeof(jlong)) {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   332
    jlong size_t_max_value = (jlong) SIZE_T_MAX_VALUE;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   333
    if (reserved_space_size > size_t_max_value || magnitude > size_t_max_value
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   334
        || iterations > size_t_max_value) {
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   335
      tty->print_cr("One of variables printed above overflows size_t. Can't proceed.\n");
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   336
      return 2;
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   337
    }
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   338
  }
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   339
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   340
  return wb_stress_virtual_space_resize((size_t) reserved_space_size,
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   341
                                        (size_t) magnitude, (size_t) iterations);
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   342
WB_END
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
   343
49630
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
   344
WB_ENTRY(jboolean, WB_IsGCSupported(JNIEnv* env, jobject o, jint name))
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
   345
  return GCConfig::is_gc_supported((CollectedHeap::Name)name);
38727
f5f44a314a9c 8154096: Extend WhiteBox API with methods which retrieve from VM information about available GC
dfazunen
parents: 38241
diff changeset
   346
WB_END
f5f44a314a9c 8154096: Extend WhiteBox API with methods which retrieve from VM information about available GC
dfazunen
parents: 38241
diff changeset
   347
49630
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
   348
WB_ENTRY(jboolean, WB_IsGCSelected(JNIEnv* env, jobject o, jint name))
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
   349
  return GCConfig::is_gc_selected((CollectedHeap::Name)name);
38727
f5f44a314a9c 8154096: Extend WhiteBox API with methods which retrieve from VM information about available GC
dfazunen
parents: 38241
diff changeset
   350
WB_END
f5f44a314a9c 8154096: Extend WhiteBox API with methods which retrieve from VM information about available GC
dfazunen
parents: 38241
diff changeset
   351
49630
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
   352
WB_ENTRY(jboolean, WB_IsGCSelectedErgonomically(JNIEnv* env, jobject o))
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
   353
  return GCConfig::is_gc_selected_ergonomically();
38727
f5f44a314a9c 8154096: Extend WhiteBox API with methods which retrieve from VM information about available GC
dfazunen
parents: 38241
diff changeset
   354
WB_END
f5f44a314a9c 8154096: Extend WhiteBox API with methods which retrieve from VM information about available GC
dfazunen
parents: 38241
diff changeset
   355
26183
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   356
WB_ENTRY(jboolean, WB_isObjectInOldGen(JNIEnv* env, jobject o, jobject obj))
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   357
  oop p = JNIHandles::resolve(obj);
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   358
#if INCLUDE_G1GC
26183
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   359
  if (UseG1GC) {
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   360
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   361
    const HeapRegion* hr = g1h->heap_region_containing(p);
26183
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   362
    if (hr == NULL) {
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   363
      return false;
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   364
    }
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   365
    return !(hr->is_young());
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   366
  }
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   367
#endif
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   368
#if INCLUDE_PARALLELGC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   369
  if (UseParallelGC) {
26183
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   370
    ParallelScavengeHeap* psh = ParallelScavengeHeap::heap();
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   371
    return !psh->is_in_young(p);
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   372
  }
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50299
diff changeset
   373
#endif
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50299
diff changeset
   374
#if INCLUDE_ZGC
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50299
diff changeset
   375
  if (UseZGC) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50299
diff changeset
   376
    return Universe::heap()->is_in(p);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50299
diff changeset
   377
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50299
diff changeset
   378
#endif
26183
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   379
  GenCollectedHeap* gch = GenCollectedHeap::heap();
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   380
  return !gch->is_in_young(p);
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   381
WB_END
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   382
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   383
WB_ENTRY(jlong, WB_GetObjectSize(JNIEnv* env, jobject o, jobject obj))
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   384
  oop p = JNIHandles::resolve(obj);
52071
c4a39588a075 8211270: GC abstraction to get real object and headers size
rkennke
parents: 52062
diff changeset
   385
  return Universe::heap()->obj_size(p) * HeapWordSize;
26183
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   386
WB_END
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
   387
32625
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   388
WB_ENTRY(jlong, WB_GetHeapSpaceAlignment(JNIEnv* env, jobject o))
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   389
  return (jlong)SpaceAlignment;
32625
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   390
WB_END
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   391
40106
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
   392
WB_ENTRY(jlong, WB_GetHeapAlignment(JNIEnv* env, jobject o))
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   393
  return (jlong)HeapAlignment;
40106
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
   394
WB_END
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
   395
46384
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   396
WB_ENTRY(jboolean, WB_SupportsConcurrentGCPhaseControl(JNIEnv* env, jobject o))
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   397
  return Universe::heap()->supports_concurrent_phase_control();
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   398
WB_END
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   399
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   400
WB_ENTRY(jboolean, WB_RequestConcurrentGCPhase(JNIEnv* env, jobject o, jstring name))
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   401
  Handle h_name(THREAD, JNIHandles::resolve(name));
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   402
  ResourceMark rm;
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   403
  const char* c_name = java_lang_String::as_utf8_string(h_name());
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   404
  return Universe::heap()->request_concurrent_phase(c_name);
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   405
WB_END
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
   406
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   407
#if INCLUDE_G1GC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   408
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   409
WB_ENTRY(jboolean, WB_G1IsHumongous(JNIEnv* env, jobject o, jobject obj))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   410
  if (UseG1GC) {
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   411
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   412
    oop result = JNIHandles::resolve(obj);
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   413
    const HeapRegion* hr = g1h->heap_region_containing(result);
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   414
    return hr->is_humongous();
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   415
  }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   416
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1IsHumongous: G1 GC is not enabled");
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   417
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   418
35206
aaf0f36a013a 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 35201
diff changeset
   419
WB_ENTRY(jboolean, WB_G1BelongsToHumongousRegion(JNIEnv* env, jobject o, jlong addr))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   420
  if (UseG1GC) {
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   421
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   422
    const HeapRegion* hr = g1h->heap_region_containing((void*) addr);
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   423
    return hr->is_humongous();
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   424
  }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   425
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1BelongsToHumongousRegion: G1 GC is not enabled");
35206
aaf0f36a013a 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 35201
diff changeset
   426
WB_END
aaf0f36a013a 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 35201
diff changeset
   427
aaf0f36a013a 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 35201
diff changeset
   428
WB_ENTRY(jboolean, WB_G1BelongsToFreeRegion(JNIEnv* env, jobject o, jlong addr))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   429
  if (UseG1GC) {
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   430
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   431
    const HeapRegion* hr = g1h->heap_region_containing((void*) addr);
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   432
    return hr->is_free();
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   433
  }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   434
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1BelongsToFreeRegion: G1 GC is not enabled");
35206
aaf0f36a013a 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 35201
diff changeset
   435
WB_END
aaf0f36a013a 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 35201
diff changeset
   436
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
   437
WB_ENTRY(jlong, WB_G1NumMaxRegions(JNIEnv* env, jobject o))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   438
  if (UseG1GC) {
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   439
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   440
    size_t nr = g1h->max_regions();
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   441
    return (jlong)nr;
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   442
  }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   443
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1NumMaxRegions: G1 GC is not enabled");
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
   444
WB_END
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
   445
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   446
WB_ENTRY(jlong, WB_G1NumFreeRegions(JNIEnv* env, jobject o))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   447
  if (UseG1GC) {
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   448
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49659
diff changeset
   449
    size_t nr = g1h->num_free_regions();
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   450
    return (jlong)nr;
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   451
  }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   452
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1NumFreeRegions: G1 GC is not enabled");
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   453
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   454
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   455
WB_ENTRY(jboolean, WB_G1InConcurrentMark(JNIEnv* env, jobject o))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   456
  if (UseG1GC) {
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   457
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
47678
c84eeb55c55e 8184667: Clean up G1ConcurrentMark files
tschatzl
parents: 47264
diff changeset
   458
    return g1h->concurrent_mark()->cm_thread()->during_cycle();
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   459
  }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   460
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1InConcurrentMark: G1 GC is not enabled");
27900
d24cd7a1ed38 8065579: WB method to start G1 concurrent mark cycle should be introduced
tschatzl
parents: 27685
diff changeset
   461
WB_END
d24cd7a1ed38 8065579: WB method to start G1 concurrent mark cycle should be introduced
tschatzl
parents: 27685
diff changeset
   462
d24cd7a1ed38 8065579: WB method to start G1 concurrent mark cycle should be introduced
tschatzl
parents: 27685
diff changeset
   463
WB_ENTRY(jboolean, WB_G1StartMarkCycle(JNIEnv* env, jobject o))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   464
  if (UseG1GC) {
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   465
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
47678
c84eeb55c55e 8184667: Clean up G1ConcurrentMark files
tschatzl
parents: 47264
diff changeset
   466
    if (!g1h->concurrent_mark()->cm_thread()->during_cycle()) {
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   467
      g1h->collect(GCCause::_wb_conc_mark);
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   468
      return true;
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   469
    }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   470
    return false;
27900
d24cd7a1ed38 8065579: WB method to start G1 concurrent mark cycle should be introduced
tschatzl
parents: 27685
diff changeset
   471
  }
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   472
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1StartMarkCycle: G1 GC is not enabled");
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   473
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   474
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   475
WB_ENTRY(jint, WB_G1RegionSize(JNIEnv* env, jobject o))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   476
  if (UseG1GC) {
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   477
    return (jint)HeapRegion::GrainBytes;
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   478
  }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   479
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1RegionSize: G1 GC is not enabled");
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   480
WB_END
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
   481
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   482
#endif // INCLUDE_G1GC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   483
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   484
#if INCLUDE_G1GC || INCLUDE_PARALLELGC
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   485
WB_ENTRY(jlong, WB_DramReservedStart(JNIEnv* env, jobject o))
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   486
#if INCLUDE_G1GC
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   487
  if (UseG1GC) {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   488
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
53987
e1f707ed0757 8219856: Spell out G1CollectorPolicy::is_hetero_heap
tschatzl
parents: 53985
diff changeset
   489
    if (g1h->is_heterogeneous_heap()) {
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   490
      uint start_region = HeterogeneousHeapRegionManager::manager()->start_index_of_dram();
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   491
      return (jlong)(g1h->base() + start_region * HeapRegion::GrainBytes);
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   492
    } else {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   493
      return (jlong)g1h->base();
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   494
    }
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   495
  }
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   496
#endif // INCLUDE_G1GC
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   497
#if INCLUDE_PARALLELGC
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   498
  if (UseParallelGC) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   499
    ParallelScavengeHeap* ps_heap = ParallelScavengeHeap::heap();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   500
    if (AllocateOldGenAt != NULL) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   501
      MemRegion reserved = ps_heap->young_gen()->reserved();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   502
      return (jlong)reserved.start();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   503
    } else {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   504
      return (jlong)ps_heap->base();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   505
    }
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   506
  }
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   507
#endif // INCLUDE_PARALLELGC
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   508
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_DramReservedStart: enabled only for G1 and Parallel GC");
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   509
WB_END
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   510
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   511
WB_ENTRY(jlong, WB_DramReservedEnd(JNIEnv* env, jobject o))
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   512
#if INCLUDE_G1GC
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   513
  if (UseG1GC) {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   514
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
53987
e1f707ed0757 8219856: Spell out G1CollectorPolicy::is_hetero_heap
tschatzl
parents: 53985
diff changeset
   515
    if (g1h->is_heterogeneous_heap()) {
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   516
      uint end_region = HeterogeneousHeapRegionManager::manager()->end_index_of_dram();
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   517
      return (jlong)(g1h->base() + (end_region + 1) * HeapRegion::GrainBytes - 1);
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   518
    } else {
55161
1a7f82c98eee 8224247: AllocateOldGenAt fires assertion failure
kkharbas
parents: 55005
diff changeset
   519
      return (jlong)g1h->base() + G1Arguments::heap_max_size_bytes();
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   520
    }
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   521
  }
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   522
#endif // INCLUDE_G1GC
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   523
#if INCLUDE_PARALLELGC
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   524
  if (UseParallelGC) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   525
    ParallelScavengeHeap* ps_heap = ParallelScavengeHeap::heap();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   526
    if (AllocateOldGenAt != NULL) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   527
      MemRegion reserved = ps_heap->young_gen()->reserved();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   528
      return (jlong)reserved.end();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   529
    } else {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   530
      return (jlong)ps_heap->reserved_region().end();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   531
    }
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   532
  }
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   533
#endif // INCLUDE_PARALLELGC
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   534
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_DramReservedEnd: enabled only for G1 and Parallel GC");
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   535
WB_END
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   536
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   537
WB_ENTRY(jlong, WB_NvdimmReservedStart(JNIEnv* env, jobject o))
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   538
#if INCLUDE_G1GC
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   539
  if (UseG1GC) {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   540
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
53987
e1f707ed0757 8219856: Spell out G1CollectorPolicy::is_hetero_heap
tschatzl
parents: 53985
diff changeset
   541
    if (g1h->is_heterogeneous_heap()) {
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   542
      uint start_region = HeterogeneousHeapRegionManager::manager()->start_index_of_nvdimm();
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   543
      return (jlong)(g1h->base() + start_region * HeapRegion::GrainBytes);
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   544
    } else {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   545
      THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_NvdimmReservedStart: Old gen is not allocated on NV-DIMM using AllocateOldGenAt flag");
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   546
    }
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   547
  }
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   548
#endif // INCLUDE_G1GC
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   549
#if INCLUDE_PARALLELGC
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   550
  if (UseParallelGC) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   551
    ParallelScavengeHeap* ps_heap = ParallelScavengeHeap::heap();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   552
    if (AllocateOldGenAt != NULL) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   553
      MemRegion reserved = ps_heap->old_gen()->reserved();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   554
      return (jlong)reserved.start();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   555
    } else {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   556
      THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_NvdimmReservedStart: Old gen is not allocated on NV-DIMM using AllocateOldGenAt flag");
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   557
    }
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   558
  }
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   559
#endif // INCLUDE_PARALLELGC
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   560
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_NvdimmReservedStart: enabled only for G1 and Parallel GC");
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   561
WB_END
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   562
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   563
WB_ENTRY(jlong, WB_NvdimmReservedEnd(JNIEnv* env, jobject o))
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   564
#if INCLUDE_G1GC
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   565
  if (UseG1GC) {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   566
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
53987
e1f707ed0757 8219856: Spell out G1CollectorPolicy::is_hetero_heap
tschatzl
parents: 53985
diff changeset
   567
    if (g1h->is_heterogeneous_heap()) {
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   568
      uint end_region = HeterogeneousHeapRegionManager::manager()->start_index_of_nvdimm();
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   569
      return (jlong)(g1h->base() + (end_region + 1) * HeapRegion::GrainBytes - 1);
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   570
    } else {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   571
      THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_NvdimmReservedEnd: Old gen is not allocated on NV-DIMM using AllocateOldGenAt flag");
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   572
    }
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   573
  }
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   574
#endif // INCLUDE_G1GC
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   575
#if INCLUDE_PARALLELGC
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   576
  if (UseParallelGC) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   577
    ParallelScavengeHeap* ps_heap = ParallelScavengeHeap::heap();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   578
    if (AllocateOldGenAt != NULL) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   579
      MemRegion reserved = ps_heap->old_gen()->reserved();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   580
      return (jlong)reserved.end();
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   581
      } else {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   582
      THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_NvdimmReservedEnd: Old gen is not allocated on NV-DIMM using AllocateOldGenAt flag");
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   583
    }
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   584
  }
53118
93a5f4b4c67d 8215897: Build broken on zero after JDK-8211424
sjohanss
parents: 53117
diff changeset
   585
#endif // INCLUDE_PARALLELGC
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   586
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_NvdimmReservedEnd: enabled only for G1 and Parallel GC");
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   587
WB_END
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   588
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
   589
#endif // INCLUDE_G1GC || INCLUDE_PARALLELGC
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
   590
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   591
#if INCLUDE_PARALLELGC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   592
32625
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   593
WB_ENTRY(jlong, WB_PSVirtualSpaceAlignment(JNIEnv* env, jobject o))
40106
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
   594
  if (UseParallelGC) {
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
   595
    return ParallelScavengeHeap::heap()->gens()->virtual_spaces()->alignment();
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
   596
  }
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   597
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_PSVirtualSpaceAlignment: Parallel GC is not enabled");
32625
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   598
WB_END
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   599
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   600
WB_ENTRY(jlong, WB_PSHeapGenerationAlignment(JNIEnv* env, jobject o))
40106
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
   601
  if (UseParallelGC) {
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 54623
diff changeset
   602
    return GenAlignment;
40106
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
   603
  }
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   604
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_PSHeapGenerationAlignment: Parallel GC is not enabled");
32625
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   605
WB_END
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
   606
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   607
#endif // INCLUDE_PARALLELGC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   608
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   609
#if INCLUDE_G1GC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   610
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
   611
WB_ENTRY(jobject, WB_G1AuxiliaryMemoryUsage(JNIEnv* env))
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   612
  if (UseG1GC) {
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   613
    ResourceMark rm(THREAD);
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   614
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   615
    MemoryUsage usage = g1h->get_auxiliary_data_memory_usage();
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   616
    Handle h = MemoryService::create_MemoryUsage_obj(usage, CHECK_NULL);
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   617
    return JNIHandles::make_local(env, h());
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   618
  }
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   619
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1AuxiliaryMemoryUsage: G1 GC is not enabled");
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
   620
WB_END
38007
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   621
59060
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   622
WB_ENTRY(jint, WB_G1ActiveMemoryNodeCount(JNIEnv* env, jobject o))
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   623
  if (UseG1GC) {
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   624
    G1NUMA* numa = G1NUMA::numa();
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   625
    return (jint)numa->num_active_nodes();
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   626
  }
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   627
  THROW_MSG_0(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1ActiveMemoryNodeCount: G1 GC is not enabled");
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   628
WB_END
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   629
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   630
WB_ENTRY(jintArray, WB_G1MemoryNodeIds(JNIEnv* env, jobject o))
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   631
  if (UseG1GC) {
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   632
    G1NUMA* numa = G1NUMA::numa();
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   633
    int num_node_ids = (int)numa->num_active_nodes();
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   634
    const int* node_ids = numa->node_ids();
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   635
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   636
    typeArrayOop result = oopFactory::new_intArray(num_node_ids, CHECK_NULL);
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   637
    for (int i = 0; i < num_node_ids; i++) {
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   638
      result->int_at_put(i, (jint)node_ids[i]);
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   639
    }
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   640
    return (jintArray) JNIHandles::make_local(env, result);
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   641
  }
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   642
  THROW_MSG_NULL(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1MemoryNodeIds: G1 GC is not enabled");
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   643
WB_END
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
   644
38007
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   645
class OldRegionsLivenessClosure: public HeapRegionClosure {
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   646
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   647
 private:
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   648
  const int _liveness;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   649
  size_t _total_count;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   650
  size_t _total_memory;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   651
  size_t _total_memory_to_free;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   652
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   653
 public:
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   654
  OldRegionsLivenessClosure(int liveness) :
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   655
    _liveness(liveness),
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   656
    _total_count(0),
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   657
    _total_memory(0),
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   658
    _total_memory_to_free(0) { }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   659
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   660
    size_t total_count() { return _total_count; }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   661
    size_t total_memory() { return _total_memory; }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   662
    size_t total_memory_to_free() { return _total_memory_to_free; }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   663
48950
f323537c9b75 8196602: Change HeapRegionClosure to comply to naming conventions
tschatzl
parents: 48794
diff changeset
   664
  bool do_heap_region(HeapRegion* r) {
38007
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   665
    if (r->is_old()) {
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   666
      size_t prev_live = r->marked_bytes();
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   667
      size_t live = r->live_bytes();
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   668
      size_t size = r->used();
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   669
      size_t reg_size = HeapRegion::GrainBytes;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   670
      if (size > 0 && ((int)(live * 100 / size) < _liveness)) {
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   671
        _total_memory += size;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   672
        ++_total_count;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   673
        if (size == reg_size) {
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   674
        // we don't include non-full regions since they are unlikely included in mixed gc
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   675
        // for testing purposes it's enough to have lowest estimation of total memory that is expected to be freed
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   676
          _total_memory_to_free += size - prev_live;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   677
        }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   678
      }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   679
    }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   680
    return false;
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   681
  }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   682
};
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   683
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   684
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   685
WB_ENTRY(jlongArray, WB_G1GetMixedGCInfo(JNIEnv* env, jobject o, jint liveness))
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   686
  if (!UseG1GC) {
46354
dedf3d5f3332 8167196: WhiteBox methods should throw an exception if used with inappropriate collector.
mchernov
parents: 46329
diff changeset
   687
    THROW_MSG_NULL(vmSymbols::java_lang_UnsupportedOperationException(), "WB_G1GetMixedGCInfo: G1 GC is not enabled");
38007
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   688
  }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   689
  if (liveness < 0) {
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   690
    THROW_MSG_NULL(vmSymbols::java_lang_IllegalArgumentException(), "liveness value should be non-negative");
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   691
  }
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   692
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   693
  G1CollectedHeap* g1h = G1CollectedHeap::heap();
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   694
  OldRegionsLivenessClosure rli(liveness);
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   695
  g1h->heap_region_iterate(&rli);
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   696
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   697
  typeArrayOop result = oopFactory::new_longArray(3, CHECK_NULL);
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   698
  result->long_at_put(0, rli.total_count());
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   699
  result->long_at_put(1, rli.total_memory());
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   700
  result->long_at_put(2, rli.total_memory_to_free());
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   701
  return (jlongArray) JNIHandles::make_local(env, result);
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   702
WB_END
ddb53593fc10 8135200: Add White Box method that enumerates G1 old regions with less than specified liveness and collects statistics
kzhaldyb
parents: 37296
diff changeset
   703
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
   704
#endif // INCLUDE_G1GC
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   705
19554
3f21e829c7de 8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents: 19332
diff changeset
   706
#if INCLUDE_NMT
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   707
// Alloc memory using the test memory type so that we can use that to see if
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   708
// NMT picks it up correctly
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   709
WB_ENTRY(jlong, WB_NMTMalloc(JNIEnv* env, jobject o, jlong size))
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   710
  jlong addr = 0;
27469
34008cfb8994 8058251: assert(_count > 0) failed: Negative counter when running runtime/NMT/MallocTrackingVerify.java
ctornqvi
parents: 27434
diff changeset
   711
  addr = (jlong)(uintptr_t)os::malloc(size, mtTest);
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   712
  return addr;
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   713
WB_END
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   714
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   715
// Alloc memory with pseudo call stack. The test can create psudo malloc
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   716
// allocation site to stress the malloc tracking.
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   717
WB_ENTRY(jlong, WB_NMTMallocWithPseudoStack(JNIEnv* env, jobject o, jlong size, jint pseudo_stack))
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   718
  address pc = (address)(size_t)pseudo_stack;
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   719
  NativeCallStack stack(&pc, 1);
27469
34008cfb8994 8058251: assert(_count > 0) failed: Negative counter when running runtime/NMT/MallocTrackingVerify.java
ctornqvi
parents: 27434
diff changeset
   720
  return (jlong)(uintptr_t)os::malloc(size, mtTest, stack);
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   721
WB_END
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   722
53709
2b64ebacce93 8200109: NMT: diff_malloc_site assert(early->flags() == current->flags(), "Must be the same memory type")
zgu
parents: 53647
diff changeset
   723
// Alloc memory with pseudo call stack and specific memory type.
2b64ebacce93 8200109: NMT: diff_malloc_site assert(early->flags() == current->flags(), "Must be the same memory type")
zgu
parents: 53647
diff changeset
   724
WB_ENTRY(jlong, WB_NMTMallocWithPseudoStackAndType(JNIEnv* env, jobject o, jlong size, jint pseudo_stack, jint type))
2b64ebacce93 8200109: NMT: diff_malloc_site assert(early->flags() == current->flags(), "Must be the same memory type")
zgu
parents: 53647
diff changeset
   725
  address pc = (address)(size_t)pseudo_stack;
2b64ebacce93 8200109: NMT: diff_malloc_site assert(early->flags() == current->flags(), "Must be the same memory type")
zgu
parents: 53647
diff changeset
   726
  NativeCallStack stack(&pc, 1);
2b64ebacce93 8200109: NMT: diff_malloc_site assert(early->flags() == current->flags(), "Must be the same memory type")
zgu
parents: 53647
diff changeset
   727
  return (jlong)(uintptr_t)os::malloc(size, (MEMFLAGS)type, stack);
2b64ebacce93 8200109: NMT: diff_malloc_site assert(early->flags() == current->flags(), "Must be the same memory type")
zgu
parents: 53647
diff changeset
   728
WB_END
2b64ebacce93 8200109: NMT: diff_malloc_site assert(early->flags() == current->flags(), "Must be the same memory type")
zgu
parents: 53647
diff changeset
   729
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   730
// Free the memory allocated by NMTAllocTest
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   731
WB_ENTRY(void, WB_NMTFree(JNIEnv* env, jobject o, jlong mem))
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27879
diff changeset
   732
  os::free((void*)(uintptr_t)mem);
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   733
WB_END
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   734
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   735
WB_ENTRY(jlong, WB_NMTReserveMemory(JNIEnv* env, jobject o, jlong size))
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   736
  jlong addr = 0;
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   737
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
   738
  addr = (jlong)(uintptr_t)os::reserve_memory(size);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
   739
  MemTracker::record_virtual_memory_type((address)addr, mtTest);
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   740
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   741
  return addr;
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   742
WB_END
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   743
49034
57d0c33ad636 8198225: os::attempt_reserve_memory_at records memory as committed
stefank
parents: 49008
diff changeset
   744
WB_ENTRY(jlong, WB_NMTAttemptReserveMemoryAt(JNIEnv* env, jobject o, jlong addr, jlong size))
57d0c33ad636 8198225: os::attempt_reserve_memory_at records memory as committed
stefank
parents: 49008
diff changeset
   745
  addr = (jlong)(uintptr_t)os::attempt_reserve_memory_at((size_t)size, (char*)(uintptr_t)addr);
57d0c33ad636 8198225: os::attempt_reserve_memory_at records memory as committed
stefank
parents: 49008
diff changeset
   746
  MemTracker::record_virtual_memory_type((address)addr, mtTest);
57d0c33ad636 8198225: os::attempt_reserve_memory_at records memory as committed
stefank
parents: 49008
diff changeset
   747
57d0c33ad636 8198225: os::attempt_reserve_memory_at records memory as committed
stefank
parents: 49008
diff changeset
   748
  return addr;
57d0c33ad636 8198225: os::attempt_reserve_memory_at records memory as committed
stefank
parents: 49008
diff changeset
   749
WB_END
57d0c33ad636 8198225: os::attempt_reserve_memory_at records memory as committed
stefank
parents: 49008
diff changeset
   750
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   751
WB_ENTRY(void, WB_NMTCommitMemory(JNIEnv* env, jobject o, jlong addr, jlong size))
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17824
diff changeset
   752
  os::commit_memory((char *)(uintptr_t)addr, size, !ExecMem);
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   753
  MemTracker::record_virtual_memory_type((address)(uintptr_t)addr, mtTest);
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   754
WB_END
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   755
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   756
WB_ENTRY(void, WB_NMTUncommitMemory(JNIEnv* env, jobject o, jlong addr, jlong size))
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   757
  os::uncommit_memory((char *)(uintptr_t)addr, size);
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   758
WB_END
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   759
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   760
WB_ENTRY(void, WB_NMTReleaseMemory(JNIEnv* env, jobject o, jlong addr, jlong size))
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
   761
  os::release_memory((char *)(uintptr_t)addr, size);
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   762
WB_END
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   763
27162
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   764
WB_ENTRY(jboolean, WB_NMTChangeTrackingLevel(JNIEnv* env))
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   765
  // Test that we can downgrade NMT levels but not upgrade them.
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   766
  if (MemTracker::tracking_level() == NMT_off) {
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   767
    MemTracker::transition_to(NMT_off);
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   768
    return MemTracker::tracking_level() == NMT_off;
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   769
  } else {
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   770
    assert(MemTracker::tracking_level() == NMT_detail, "Should start out as detail tracking");
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   771
    MemTracker::transition_to(NMT_summary);
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   772
    assert(MemTracker::tracking_level() == NMT_summary, "Should be summary now");
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
   773
27162
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   774
    // Can't go to detail once NMT is set to summary.
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   775
    MemTracker::transition_to(NMT_detail);
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   776
    assert(MemTracker::tracking_level() == NMT_summary, "Should still be summary now");
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   777
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   778
    // Shutdown sets tracking level to minimal.
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   779
    MemTracker::shutdown();
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   780
    assert(MemTracker::tracking_level() == NMT_minimal, "Should be minimal now");
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   781
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   782
    // Once the tracking level is minimal, we cannot increase to summary.
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   783
    // The code ignores this request instead of asserting because if the malloc site
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   784
    // table overflows in another thread, it tries to change the code to summary.
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   785
    MemTracker::transition_to(NMT_summary);
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   786
    assert(MemTracker::tracking_level() == NMT_minimal, "Should still be minimal now");
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   787
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   788
    // Really can never go up to detail, verify that the code would never do this.
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   789
    MemTracker::transition_to(NMT_detail);
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   790
    assert(MemTracker::tracking_level() == NMT_minimal, "Should still be minimal now");
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   791
    return MemTracker::tracking_level() == NMT_minimal;
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   792
  }
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
   793
WB_END
27470
8dd8521d6897 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 27469
diff changeset
   794
8dd8521d6897 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 27469
diff changeset
   795
WB_ENTRY(jint, WB_NMTGetHashSize(JNIEnv* env, jobject o))
8dd8521d6897 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 27469
diff changeset
   796
  int hash_size = MallocSiteTable::hash_buckets();
8dd8521d6897 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 27469
diff changeset
   797
  assert(hash_size > 0, "NMT hash_size should be > 0");
8dd8521d6897 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 27469
diff changeset
   798
  return (jint)hash_size;
8dd8521d6897 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 27469
diff changeset
   799
WB_END
59269
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   800
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   801
WB_ENTRY(jlong, WB_NMTNewArena(JNIEnv* env, jobject o, jlong init_size))
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   802
  Arena* arena =  new (mtTest) Arena(mtTest, size_t(init_size));
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   803
  return (jlong)arena;
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   804
WB_END
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   805
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   806
WB_ENTRY(void, WB_NMTFreeArena(JNIEnv* env, jobject o, jlong arena))
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   807
  Arena* a = (Arena*)arena;
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   808
  delete a;
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   809
WB_END
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   810
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   811
WB_ENTRY(void, WB_NMTArenaMalloc(JNIEnv* env, jobject o, jlong arena, jlong size))
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   812
  Arena* a = (Arena*)arena;
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   813
  a->Amalloc(size_t(size));
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
   814
WB_END
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   815
#endif // INCLUDE_NMT
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   816
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   817
static jmethodID reflected_method_to_jmid(JavaThread* thread, JNIEnv* env, jobject method) {
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   818
  assert(method != NULL, "method should not be null");
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   819
  ThreadToNativeFromVM ttn(thread);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   820
  return env->FromReflectedMethod(method);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   821
}
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   822
28199
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   823
// Deoptimizes all compiled frames and makes nmethods not entrant if it's requested
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   824
class VM_WhiteBoxDeoptimizeFrames : public VM_WhiteBoxOperation {
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   825
 private:
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   826
  int _result;
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   827
  const bool _make_not_entrant;
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   828
 public:
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   829
  VM_WhiteBoxDeoptimizeFrames(bool make_not_entrant) :
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   830
        _result(0), _make_not_entrant(make_not_entrant) { }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   831
  int  result() const { return _result; }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   832
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   833
  void doit() {
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47908
diff changeset
   834
    for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) {
28199
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   835
      if (t->has_last_Java_frame()) {
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   836
        for (StackFrameStream fst(t, UseBiasedLocking); !fst.is_done(); fst.next()) {
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   837
          frame* f = fst.current();
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   838
          if (f->can_be_deoptimized() && !f->is_deoptimized_frame()) {
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   839
            RegisterMap* reg_map = fst.register_map();
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   840
            Deoptimization::deoptimize(t, *f, reg_map);
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   841
            if (_make_not_entrant) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38036
diff changeset
   842
                CompiledMethod* cm = CodeCache::find_compiled(f->pc());
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38036
diff changeset
   843
                assert(cm != NULL, "sanity check");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38036
diff changeset
   844
                cm->make_not_entrant();
28199
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   845
            }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   846
            ++_result;
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   847
          }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   848
        }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   849
      }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   850
    }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   851
  }
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   852
};
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   853
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   854
WB_ENTRY(jint, WB_DeoptimizeFrames(JNIEnv* env, jobject o, jboolean make_not_entrant))
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   855
  VM_WhiteBoxDeoptimizeFrames op(make_not_entrant == JNI_TRUE);
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   856
  VMThread::execute(&op);
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   857
  return op.result();
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   858
WB_END
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
   859
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   860
WB_ENTRY(void, WB_DeoptimizeAll(JNIEnv* env, jobject o))
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   861
  CodeCache::mark_all_nmethods_for_deoptimization();
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 57876
diff changeset
   862
  Deoptimization::deoptimize_all_marked();
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   863
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   864
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   865
WB_ENTRY(jint, WB_DeoptimizeMethod(JNIEnv* env, jobject o, jobject method, jboolean is_osr))
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   866
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   867
  int result = 0;
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   868
  CHECK_JNI_EXCEPTION_(env, result);
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   869
  MutexLocker mu(Compile_lock);
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   870
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   871
  if (is_osr) {
27434
b4b185d05bb5 8061817: Whitebox.deoptimizeMethod() does not deoptimize all OSR versions of method
thartmann
parents: 27417
diff changeset
   872
    result += mh->mark_osr_nmethods();
b4b185d05bb5 8061817: Whitebox.deoptimizeMethod() does not deoptimize all OSR versions of method
thartmann
parents: 27417
diff changeset
   873
  } else if (mh->code() != NULL) {
b4b185d05bb5 8061817: Whitebox.deoptimizeMethod() does not deoptimize all OSR versions of method
thartmann
parents: 27417
diff changeset
   874
    mh->code()->mark_for_deoptimization();
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   875
    ++result;
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   876
  }
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   877
  result += CodeCache::mark_for_deoptimization(mh());
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   878
  if (result > 0) {
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 57876
diff changeset
   879
    Deoptimization::deoptimize_all_marked();
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   880
  }
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   881
  return result;
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   882
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   883
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   884
WB_ENTRY(jboolean, WB_IsMethodCompiled(JNIEnv* env, jobject o, jobject method, jboolean is_osr))
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   885
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   886
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   887
  MutexLocker mu(Compile_lock);
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   888
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38036
diff changeset
   889
  CompiledMethod* code = is_osr ? mh->lookup_osr_nmethod_for(InvocationEntryBci, CompLevel_none, false) : mh->code();
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   890
  if (code == NULL) {
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   891
    return JNI_FALSE;
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   892
  }
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   893
  return (code->is_alive() && !code->is_marked_for_deoptimization());
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   894
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   895
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   896
WB_ENTRY(jboolean, WB_IsMethodCompilable(JNIEnv* env, jobject o, jobject method, jint comp_level, jboolean is_osr))
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42650
diff changeset
   897
  if (method == NULL || comp_level > MIN2((CompLevel) TieredStopAtLevel, CompLevel_highest_tier)) {
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42650
diff changeset
   898
    return false;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42650
diff changeset
   899
  }
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   900
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   901
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   902
  MutexLocker mu(Compile_lock);
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   903
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   904
  if (is_osr) {
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   905
    return CompilationPolicy::can_be_osr_compiled(mh, comp_level);
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   906
  } else {
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   907
    return CompilationPolicy::can_be_compiled(mh, comp_level);
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   908
  }
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   909
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   910
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   911
WB_ENTRY(jboolean, WB_IsMethodQueuedForCompilation(JNIEnv* env, jobject o, jobject method))
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   912
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   913
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   914
  MutexLocker mu(Compile_lock);
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   915
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   916
  return mh->queued_for_compilation();
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   917
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   918
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   919
WB_ENTRY(jboolean, WB_IsIntrinsicAvailable(JNIEnv* env, jobject o, jobject method, jobject compilation_context, jint compLevel))
40370
2f564c75bcde 8163313: assert(comp != __null) failed: compiler not available
iveresov
parents: 40369
diff changeset
   920
  if (compLevel < CompLevel_none || compLevel > MIN2((CompLevel) TieredStopAtLevel, CompLevel_highest_tier)) {
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   921
    return false; // Intrinsic is not available on a non-existent compilation level.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   922
  }
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   923
  jmethodID method_id, compilation_context_id;
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   924
  method_id = reflected_method_to_jmid(thread, env, method);
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   925
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   926
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(method_id));
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
   927
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
   928
  DirectiveSet* directive;
35563
d5ac28780cda 8145331: SEGV in DirectivesStack::release(DirectiveSet*)
neliasso
parents: 35232
diff changeset
   929
  AbstractCompiler* comp = CompileBroker::compiler((int)compLevel);
40364
5bf8fa4fddfd 8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents: 39270
diff changeset
   930
  assert(comp != NULL, "compiler not available");
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   931
  if (compilation_context != NULL) {
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   932
    compilation_context_id = reflected_method_to_jmid(thread, env, compilation_context);
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   933
    CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   934
    methodHandle cch(THREAD, Method::checked_resolve_jmethod_id(compilation_context_id));
35563
d5ac28780cda 8145331: SEGV in DirectivesStack::release(DirectiveSet*)
neliasso
parents: 35232
diff changeset
   935
    directive = DirectivesStack::getMatchingDirective(cch, comp);
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   936
  } else {
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
   937
    // Calling with NULL matches default directive
35563
d5ac28780cda 8145331: SEGV in DirectivesStack::release(DirectiveSet*)
neliasso
parents: 35232
diff changeset
   938
    directive = DirectivesStack::getDefaultDirective(comp);
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   939
  }
40364
5bf8fa4fddfd 8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents: 39270
diff changeset
   940
  bool result = comp->is_intrinsic_available(mh, directive);
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
   941
  DirectivesStack::release(directive);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
   942
  return result;
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   943
WB_END
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
   944
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   945
WB_ENTRY(jint, WB_GetMethodCompilationLevel(JNIEnv* env, jobject o, jobject method, jboolean is_osr))
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   946
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   947
  CHECK_JNI_EXCEPTION_(env, CompLevel_none);
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   948
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38036
diff changeset
   949
  CompiledMethod* code = is_osr ? mh->lookup_osr_nmethod_for(InvocationEntryBci, CompLevel_none, false) : mh->code();
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   950
  return (code != NULL ? code->comp_level() : CompLevel_none);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   951
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   952
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   953
WB_ENTRY(void, WB_MakeMethodNotCompilable(JNIEnv* env, jobject o, jobject method, jint comp_level, jboolean is_osr))
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   954
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   955
  CHECK_JNI_EXCEPTION(env);
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   956
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   957
  if (is_osr) {
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55161
diff changeset
   958
    mh->set_not_osr_compilable("WhiteBox", comp_level);
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   959
  } else {
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55161
diff changeset
   960
    mh->set_not_compilable("WhiteBox", comp_level);
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   961
  }
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   962
WB_END
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   963
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   964
WB_ENTRY(jint, WB_GetMethodEntryBci(JNIEnv* env, jobject o, jobject method))
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   965
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   966
  CHECK_JNI_EXCEPTION_(env, InvocationEntryBci);
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   967
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38036
diff changeset
   968
  CompiledMethod* code = mh->lookup_osr_nmethod_for(InvocationEntryBci, CompLevel_none, false);
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   969
  return (code != NULL && code->is_osr_method() ? code->osr_entry_bci() : InvocationEntryBci);
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   970
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   971
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   972
WB_ENTRY(jboolean, WB_TestSetDontInlineMethod(JNIEnv* env, jobject o, jobject method, jboolean value))
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   973
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   974
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   975
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   976
  bool result = mh->dont_inline();
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   977
  mh->set_dont_inline(value == JNI_TRUE);
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   978
  return result;
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   979
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   980
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   981
WB_ENTRY(jint, WB_GetCompileQueueSize(JNIEnv* env, jobject o, jint comp_level))
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   982
  if (comp_level == CompLevel_any) {
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   983
    return CompileBroker::queue_size(CompLevel_full_optimization) /* C2 */ +
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   984
        CompileBroker::queue_size(CompLevel_full_profile) /* C1 */;
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   985
  } else {
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   986
    return CompileBroker::queue_size(comp_level);
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
   987
  }
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   988
WB_END
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
   989
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   990
WB_ENTRY(jboolean, WB_TestSetForceInlineMethod(JNIEnv* env, jobject o, jobject method, jboolean value))
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   991
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
   992
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   993
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   994
  bool result = mh->force_inline();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   995
  mh->set_force_inline(value == JNI_TRUE);
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   996
  return result;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   997
WB_END
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
   998
38024
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
   999
bool WhiteBox::compile_method(Method* method, int comp_level, int bci, Thread* THREAD) {
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1000
  // Screen for unavailable/bad comp level or null method
49469
1708db7f94c6 8199624: [Graal] Blocking jvmci compilations time out
thartmann
parents: 49449
diff changeset
  1001
  AbstractCompiler* comp = CompileBroker::compiler(comp_level);
50793
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1002
  if (method == NULL) {
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1003
    tty->print_cr("WB error: request to compile NULL method");
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1004
    return false;
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1005
  }
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1006
  if (comp_level > MIN2((CompLevel) TieredStopAtLevel, CompLevel_highest_tier)) {
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1007
    tty->print_cr("WB error: invalid compilation level %d", comp_level);
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1008
    return false;
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1009
  }
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1010
  if (comp == NULL) {
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1011
    tty->print_cr("WB error: no compiler for requested compilation level %d", comp_level);
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  1012
    return false;
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  1013
  }
49469
1708db7f94c6 8199624: [Graal] Blocking jvmci compilations time out
thartmann
parents: 49449
diff changeset
  1014
1708db7f94c6 8199624: [Graal] Blocking jvmci compilations time out
thartmann
parents: 49449
diff changeset
  1015
  // Check if compilation is blocking
38024
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1016
  methodHandle mh(THREAD, method);
49469
1708db7f94c6 8199624: [Graal] Blocking jvmci compilations time out
thartmann
parents: 49449
diff changeset
  1017
  DirectiveSet* directive = DirectivesStack::getMatchingDirective(mh, comp);
1708db7f94c6 8199624: [Graal] Blocking jvmci compilations time out
thartmann
parents: 49449
diff changeset
  1018
  bool is_blocking = !directive->BackgroundCompilationOption;
1708db7f94c6 8199624: [Graal] Blocking jvmci compilations time out
thartmann
parents: 49449
diff changeset
  1019
  DirectivesStack::release(directive);
1708db7f94c6 8199624: [Graal] Blocking jvmci compilations time out
thartmann
parents: 49449
diff changeset
  1020
1708db7f94c6 8199624: [Graal] Blocking jvmci compilations time out
thartmann
parents: 49449
diff changeset
  1021
  // Compile method and check result
38218
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 38133
diff changeset
  1022
  nmethod* nm = CompileBroker::compile_method(mh, bci, comp_level, mh, mh->invocation_count(), CompileTask::Reason_Whitebox, THREAD);
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
  1023
  MutexLocker mu(Compile_lock);
50793
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1024
  bool is_queued = mh->queued_for_compilation();
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1025
  if ((!is_blocking && is_queued) || nm != NULL) {
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1026
    return true;
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1027
  }
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1028
  tty->print("WB error: failed to %s compile at level %d method ", is_blocking ? "blocking" : "", comp_level);
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1029
  mh->print_short_name(tty);
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1030
  tty->cr();
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1031
  if (is_blocking && is_queued) {
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1032
    tty->print_cr("WB error: blocking compilation is still in queue!");
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1033
  }
ca4eea543d23 8205400: [Graal] compiler/jvmci/compilerToVM/DisassembleCodeBlobTest.java fails with can't be enqueued for compilation on level 4
kvn
parents: 50676
diff changeset
  1034
  return false;
38024
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1035
}
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1036
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1037
WB_ENTRY(jboolean, WB_EnqueueMethodForCompilation(JNIEnv* env, jobject o, jobject method, jint comp_level, jint bci))
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1038
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1039
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1040
  return WhiteBox::compile_method(Method::checked_resolve_jmethod_id(jmid), comp_level, bci, THREAD);
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1041
WB_END
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1042
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  1043
WB_ENTRY(jboolean, WB_EnqueueInitializerForCompilation(JNIEnv* env, jobject o, jclass klass, jint comp_level))
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  1044
  InstanceKlass* ik = InstanceKlass::cast(java_lang_Class::as_Klass(JNIHandles::resolve(klass)));
52580
73f6a850a62f 8213926: WB_EnqueueInitializerForCompilation requests compilation for NULL
iignatyev
parents: 52402
diff changeset
  1045
  Method* clinit = ik->class_initializer();
73f6a850a62f 8213926: WB_EnqueueInitializerForCompilation requests compilation for NULL
iignatyev
parents: 52402
diff changeset
  1046
  if (clinit == NULL) {
73f6a850a62f 8213926: WB_EnqueueInitializerForCompilation requests compilation for NULL
iignatyev
parents: 52402
diff changeset
  1047
    return false;
73f6a850a62f 8213926: WB_EnqueueInitializerForCompilation requests compilation for NULL
iignatyev
parents: 52402
diff changeset
  1048
  }
73f6a850a62f 8213926: WB_EnqueueInitializerForCompilation requests compilation for NULL
iignatyev
parents: 52402
diff changeset
  1049
  return WhiteBox::compile_method(clinit, comp_level, InvocationEntryBci, THREAD);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1050
WB_END
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1051
36321
d3618f1ff1bb 8148159: [TESTBUG] TestCompilerDirectivesCompatibility tests fails on non-tiered server VMs
neliasso
parents: 36304
diff changeset
  1052
WB_ENTRY(jboolean, WB_ShouldPrintAssembly(JNIEnv* env, jobject o, jobject method, jint comp_level))
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1053
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1054
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1055
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1056
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
36321
d3618f1ff1bb 8148159: [TESTBUG] TestCompilerDirectivesCompatibility tests fails on non-tiered server VMs
neliasso
parents: 36304
diff changeset
  1057
  DirectiveSet* directive = DirectivesStack::getMatchingDirective(mh, CompileBroker::compiler(comp_level));
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1058
  bool result = directive->PrintAssemblyOption;
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1059
  DirectivesStack::release(directive);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1060
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1061
  return result;
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1062
WB_END
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1063
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1064
WB_ENTRY(jint, WB_MatchesInline(JNIEnv* env, jobject o, jobject method, jstring pattern))
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1065
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1066
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1067
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1068
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1069
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1070
  ResourceMark rm;
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1071
  const char* error_msg = NULL;
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1072
  char* method_str = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(pattern));
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1073
  InlineMatcher* m = InlineMatcher::parse_inline_pattern(method_str, error_msg);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1074
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1075
  if (m == NULL) {
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1076
    assert(error_msg != NULL, "Always have an error message");
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1077
    tty->print_cr("Got error: %s", error_msg);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1078
    return -1; // Pattern failed
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1079
  }
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1080
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1081
  // Pattern works - now check if it matches
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1082
  int result;
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1083
  if (m->match(mh, InlineMatcher::force_inline)) {
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1084
    result = 2; // Force inline match
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1085
  } else if (m->match(mh, InlineMatcher::dont_inline)) {
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1086
    result = 1; // Dont inline match
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1087
  } else {
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1088
    result = 0; // No match
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1089
  }
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1090
  delete m;
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1091
  return result;
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  1092
WB_END
33069
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1093
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1094
WB_ENTRY(jint, WB_MatchesMethod(JNIEnv* env, jobject o, jobject method, jstring pattern))
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1095
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1096
  CHECK_JNI_EXCEPTION_(env, JNI_FALSE);
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1097
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1098
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1099
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1100
  ResourceMark rm;
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1101
  char* method_str = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(pattern));
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1102
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1103
  const char* error_msg = NULL;
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1104
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1105
  BasicMatcher* m = BasicMatcher::parse_method_pattern(method_str, error_msg);
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1106
  if (m == NULL) {
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1107
    assert(error_msg != NULL, "Must have error_msg");
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1108
    tty->print_cr("Got error: %s", error_msg);
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1109
    return -1;
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1110
  }
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1111
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1112
  // Pattern works - now check if it matches
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1113
  int result = m->matches(mh);
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1114
  delete m;
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1115
  assert(result == 0 || result == 1, "Result out of range");
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1116
  return result;
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1117
WB_END
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  1118
54736
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1119
WB_ENTRY(void, WB_MarkMethodProfiled(JNIEnv* env, jobject o, jobject method))
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1120
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1121
  CHECK_JNI_EXCEPTION(env);
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1122
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1123
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1124
  MethodData* mdo = mh->method_data();
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1125
  if (mdo == NULL) {
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1126
    Method::build_interpreter_method_data(mh, CHECK_AND_CLEAR);
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1127
    mdo = mh->method_data();
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1128
  }
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1129
  mdo->init();
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1130
  InvocationCounter* icnt = mdo->invocation_counter();
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1131
  InvocationCounter* bcnt = mdo->backedge_counter();
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1132
  // set i-counter according to TieredThresholdPolicy::is_method_profiled
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1133
  icnt->set(InvocationCounter::wait_for_compile, Tier4MinInvocationThreshold);
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1134
  bcnt->set(InvocationCounter::wait_for_compile, Tier4CompileThreshold);
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1135
WB_END
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  1136
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1137
WB_ENTRY(void, WB_ClearMethodState(JNIEnv* env, jobject o, jobject method))
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1138
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
22786
86644d9539c2 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 21571
diff changeset
  1139
  CHECK_JNI_EXCEPTION(env);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1140
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
  1141
  MutexLocker mu(Compile_lock);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1142
  MethodData* mdo = mh->method_data();
17002
jiangli
parents: 16694
diff changeset
  1143
  MethodCounters* mcs = mh->method_counters();
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1144
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1145
  if (mdo != NULL) {
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1146
    mdo->init();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1147
    ResourceMark rm;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1148
    int arg_count = mdo->method()->size_of_parameters();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1149
    for (int i = 0; i < arg_count; i++) {
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1150
      mdo->set_arg_modified(i, 0);
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1151
    }
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
  1152
    MutexLocker mu(mdo->extra_data_lock());
49821
02c08e20d66c 8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents: 49806
diff changeset
  1153
    mdo->clean_method_data(/*always_clean*/true);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1154
  }
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1155
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1156
  mh->clear_not_c1_compilable();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1157
  mh->clear_not_c2_compilable();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1158
  mh->clear_not_c2_osr_compilable();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1159
  NOT_PRODUCT(mh->set_compiled_invocation_count(0));
17002
jiangli
parents: 16694
diff changeset
  1160
  if (mcs != NULL) {
jiangli
parents: 16694
diff changeset
  1161
    mcs->backedge_counter()->init();
jiangli
parents: 16694
diff changeset
  1162
    mcs->invocation_counter()->init();
jiangli
parents: 16694
diff changeset
  1163
    mcs->set_interpreter_invocation_count(0);
jiangli
parents: 16694
diff changeset
  1164
    mcs->set_interpreter_throwout_count(0);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1165
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1166
#ifdef TIERED
17002
jiangli
parents: 16694
diff changeset
  1167
    mcs->set_rate(0.0F);
24443
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24424
diff changeset
  1168
    mh->set_prev_event_count(0);
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24424
diff changeset
  1169
    mh->set_prev_time(0);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1170
#endif
17002
jiangli
parents: 16694
diff changeset
  1171
  }
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1172
WB_END
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16601
diff changeset
  1173
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1174
template <typename T>
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1175
static bool GetVMFlag(JavaThread* thread, JNIEnv* env, jstring name, T* value, JVMFlag::Error (*TAt)(const JVMFlag*, T*)) {
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1176
  if (name == NULL) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1177
    return false;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1178
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1179
  ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1180
  const char* flag_name = env->GetStringUTFChars(name, NULL);
41084
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1181
  CHECK_JNI_EXCEPTION_(env, false);
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1182
  const JVMFlag* flag = JVMFlag::find_declared_flag(flag_name);
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1183
  JVMFlag::Error result = (*TAt)(flag, value);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1184
  env->ReleaseStringUTFChars(name, flag_name);
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1185
  return (result == JVMFlag::SUCCESS);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1186
}
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1187
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1188
template <typename T>
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1189
static bool SetVMFlag(JavaThread* thread, JNIEnv* env, jstring name, T* value, JVMFlag::Error (*TAtPut)(JVMFlag* flag, T*, JVMFlag::Flags)) {
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1190
  if (name == NULL) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1191
    return false;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1192
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1193
  ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1194
  const char* flag_name = env->GetStringUTFChars(name, NULL);
41084
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1195
  CHECK_JNI_EXCEPTION_(env, false);
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1196
  JVMFlag* flag = JVMFlag::find_flag(flag_name);
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1197
  JVMFlag::Error result = (*TAtPut)(flag, value, JVMFlag::INTERNAL);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1198
  env->ReleaseStringUTFChars(name, flag_name);
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1199
  return (result == JVMFlag::SUCCESS);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1200
}
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1201
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1202
template <typename T>
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1203
static jobject box(JavaThread* thread, JNIEnv* env, Symbol* name, Symbol* sig, T value) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1204
  ResourceMark rm(thread);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1205
  jclass clazz = env->FindClass(name->as_C_string());
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1206
  CHECK_JNI_EXCEPTION_(env, NULL);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1207
  jmethodID methodID = env->GetStaticMethodID(clazz,
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1208
        vmSymbols::valueOf_name()->as_C_string(),
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1209
        sig->as_C_string());
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1210
  CHECK_JNI_EXCEPTION_(env, NULL);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1211
  jobject result = env->CallStaticObjectMethod(clazz, methodID, value);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1212
  CHECK_JNI_EXCEPTION_(env, NULL);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1213
  return result;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1214
}
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1215
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1216
static jobject booleanBox(JavaThread* thread, JNIEnv* env, jboolean value) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1217
  return box(thread, env, vmSymbols::java_lang_Boolean(), vmSymbols::Boolean_valueOf_signature(), value);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1218
}
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1219
static jobject integerBox(JavaThread* thread, JNIEnv* env, jint value) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1220
  return box(thread, env, vmSymbols::java_lang_Integer(), vmSymbols::Integer_valueOf_signature(), value);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1221
}
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1222
static jobject longBox(JavaThread* thread, JNIEnv* env, jlong value) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1223
  return box(thread, env, vmSymbols::java_lang_Long(), vmSymbols::Long_valueOf_signature(), value);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1224
}
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1225
/* static jobject floatBox(JavaThread* thread, JNIEnv* env, jfloat value) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1226
  return box(thread, env, vmSymbols::java_lang_Float(), vmSymbols::Float_valueOf_signature(), value);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1227
}*/
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1228
static jobject doubleBox(JavaThread* thread, JNIEnv* env, jdouble value) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1229
  return box(thread, env, vmSymbols::java_lang_Double(), vmSymbols::Double_valueOf_signature(), value);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1230
}
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1231
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1232
static const JVMFlag* getVMFlag(JavaThread* thread, JNIEnv* env, jstring name) {
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1233
  ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1234
  const char* flag_name = env->GetStringUTFChars(name, NULL);
41084
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1235
  CHECK_JNI_EXCEPTION_(env, NULL);
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1236
  const JVMFlag* result = JVMFlag::find_declared_flag(flag_name);
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1237
  env->ReleaseStringUTFChars(name, flag_name);
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1238
  return result;
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1239
}
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1240
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1241
WB_ENTRY(jboolean, WB_IsConstantVMFlag(JNIEnv* env, jobject o, jstring name))
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1242
  const JVMFlag* flag = getVMFlag(thread, env, name);
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1243
  return (flag != NULL) && flag->is_constant_in_binary();
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1244
WB_END
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1245
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1246
WB_ENTRY(jboolean, WB_IsLockedVMFlag(JNIEnv* env, jobject o, jstring name))
57876
30db6422848b 8224878: Use JVMFlag parameters instead of name strings
stefank
parents: 57777
diff changeset
  1247
  const JVMFlag* flag = getVMFlag(thread, env, name);
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1248
  return (flag != NULL) && !(flag->is_unlocked() || flag->is_unlocker());
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1249
WB_END
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  1250
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1251
WB_ENTRY(jobject, WB_GetBooleanVMFlag(JNIEnv* env, jobject o, jstring name))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1252
  bool result;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1253
  if (GetVMFlag <bool> (thread, env, name, &result, &JVMFlag::boolAt)) {
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1254
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1255
    return booleanBox(thread, env, result);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1256
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1257
  return NULL;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1258
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1259
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1260
WB_ENTRY(jobject, WB_GetIntVMFlag(JNIEnv* env, jobject o, jstring name))
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1261
  int result;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1262
  if (GetVMFlag <int> (thread, env, name, &result, &JVMFlag::intAt)) {
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1263
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1264
    return longBox(thread, env, result);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1265
  }
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1266
  return NULL;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1267
WB_END
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1268
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1269
WB_ENTRY(jobject, WB_GetUintVMFlag(JNIEnv* env, jobject o, jstring name))
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1270
  uint result;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1271
  if (GetVMFlag <uint> (thread, env, name, &result, &JVMFlag::uintAt)) {
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1272
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1273
    return longBox(thread, env, result);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1274
  }
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1275
  return NULL;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1276
WB_END
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1277
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1278
WB_ENTRY(jobject, WB_GetIntxVMFlag(JNIEnv* env, jobject o, jstring name))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1279
  intx result;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1280
  if (GetVMFlag <intx> (thread, env, name, &result, &JVMFlag::intxAt)) {
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1281
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1282
    return longBox(thread, env, result);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1283
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1284
  return NULL;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1285
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1286
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1287
WB_ENTRY(jobject, WB_GetUintxVMFlag(JNIEnv* env, jobject o, jstring name))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1288
  uintx result;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1289
  if (GetVMFlag <uintx> (thread, env, name, &result, &JVMFlag::uintxAt)) {
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1290
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1291
    return longBox(thread, env, result);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1292
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1293
  return NULL;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1294
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1295
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1296
WB_ENTRY(jobject, WB_GetUint64VMFlag(JNIEnv* env, jobject o, jstring name))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1297
  uint64_t result;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1298
  if (GetVMFlag <uint64_t> (thread, env, name, &result, &JVMFlag::uint64_tAt)) {
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1299
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1300
    return longBox(thread, env, result);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1301
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1302
  return NULL;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1303
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1304
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1305
WB_ENTRY(jobject, WB_GetSizeTVMFlag(JNIEnv* env, jobject o, jstring name))
50676
8c0a5b51559b 8203030: Zero s390 31 bit size_t type conflicts in shared code
chrisphi
parents: 50525
diff changeset
  1306
  size_t result;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1307
  if (GetVMFlag <size_t> (thread, env, name, &result, &JVMFlag::size_tAt)) {
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1308
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1309
    return longBox(thread, env, result);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1310
  }
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1311
  return NULL;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1312
WB_END
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1313
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1314
WB_ENTRY(jobject, WB_GetDoubleVMFlag(JNIEnv* env, jobject o, jstring name))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1315
  double result;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1316
  if (GetVMFlag <double> (thread, env, name, &result, &JVMFlag::doubleAt)) {
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1317
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1318
    return doubleBox(thread, env, result);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1319
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1320
  return NULL;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1321
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1322
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1323
WB_ENTRY(jstring, WB_GetStringVMFlag(JNIEnv* env, jobject o, jstring name))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1324
  ccstr ccstrResult;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1325
  if (GetVMFlag <ccstr> (thread, env, name, &ccstrResult, &JVMFlag::ccstrAt)) {
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1326
    ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1327
    jstring result = env->NewStringUTF(ccstrResult);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1328
    CHECK_JNI_EXCEPTION_(env, NULL);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1329
    return result;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1330
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1331
  return NULL;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1332
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1333
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1334
WB_ENTRY(void, WB_SetBooleanVMFlag(JNIEnv* env, jobject o, jstring name, jboolean value))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1335
  bool result = value == JNI_TRUE ? true : false;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1336
  SetVMFlag <bool> (thread, env, name, &result, &JVMFlag::boolAtPut);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1337
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1338
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1339
WB_ENTRY(void, WB_SetIntVMFlag(JNIEnv* env, jobject o, jstring name, jlong value))
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1340
  int result = value;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1341
  SetVMFlag <int> (thread, env, name, &result, &JVMFlag::intAtPut);
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1342
WB_END
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1343
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1344
WB_ENTRY(void, WB_SetUintVMFlag(JNIEnv* env, jobject o, jstring name, jlong value))
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1345
  uint result = value;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1346
  SetVMFlag <uint> (thread, env, name, &result, &JVMFlag::uintAtPut);
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1347
WB_END
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1348
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1349
WB_ENTRY(void, WB_SetIntxVMFlag(JNIEnv* env, jobject o, jstring name, jlong value))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1350
  intx result = value;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1351
  SetVMFlag <intx> (thread, env, name, &result, &JVMFlag::intxAtPut);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1352
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1353
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1354
WB_ENTRY(void, WB_SetUintxVMFlag(JNIEnv* env, jobject o, jstring name, jlong value))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1355
  uintx result = value;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1356
  SetVMFlag <uintx> (thread, env, name, &result, &JVMFlag::uintxAtPut);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1357
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1358
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1359
WB_ENTRY(void, WB_SetUint64VMFlag(JNIEnv* env, jobject o, jstring name, jlong value))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1360
  uint64_t result = value;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1361
  SetVMFlag <uint64_t> (thread, env, name, &result, &JVMFlag::uint64_tAtPut);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1362
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1363
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1364
WB_ENTRY(void, WB_SetSizeTVMFlag(JNIEnv* env, jobject o, jstring name, jlong value))
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1365
  size_t result = value;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1366
  SetVMFlag <size_t> (thread, env, name, &result, &JVMFlag::size_tAtPut);
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1367
WB_END
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  1368
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1369
WB_ENTRY(void, WB_SetDoubleVMFlag(JNIEnv* env, jobject o, jstring name, jdouble value))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1370
  double result = value;
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1371
  SetVMFlag <double> (thread, env, name, &result, &JVMFlag::doubleAtPut);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1372
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1373
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1374
WB_ENTRY(void, WB_SetStringVMFlag(JNIEnv* env, jobject o, jstring name, jstring value))
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1375
  ThreadToNativeFromVM ttnfv(thread);   // can't be in VM when we call JNI
41084
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1376
  const char* ccstrValue;
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1377
  if (value == NULL) {
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1378
    ccstrValue = NULL;
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1379
  }
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1380
  else {
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1381
    ccstrValue = env->GetStringUTFChars(value, NULL);
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1382
    CHECK_JNI_EXCEPTION(env);
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1383
  }
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1384
  ccstr ccstrResult = ccstrValue;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1385
  bool needFree;
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1386
  {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1387
    ThreadInVMfromNative ttvfn(thread); // back to VM
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49874
diff changeset
  1388
    needFree = SetVMFlag <ccstr> (thread, env, name, &ccstrResult, &JVMFlag::ccstrAtPut);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1389
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1390
  if (value != NULL) {
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1391
    env->ReleaseStringUTFChars(value, ccstrValue);
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1392
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1393
  if (needFree) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27879
diff changeset
  1394
    FREE_C_HEAP_ARRAY(char, ccstrResult);
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1395
  }
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1396
WB_END
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  1397
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1398
WB_ENTRY(void, WB_LockCompilation(JNIEnv* env, jobject o, jlong timeout))
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1399
  WhiteBox::compilation_locked = true;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1400
WB_END
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1401
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1402
WB_ENTRY(void, WB_UnlockCompilation(JNIEnv* env, jobject o))
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
  1403
  MonitorLocker mo(Compilation_lock, Mutex::_no_safepoint_check_flag);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1404
  WhiteBox::compilation_locked = false;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1405
  mo.notify_all();
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1406
WB_END
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1407
30205
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29698
diff changeset
  1408
WB_ENTRY(void, WB_ForceNMethodSweep(JNIEnv* env, jobject o))
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29698
diff changeset
  1409
  // Force a code cache sweep and block until it finished
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29698
diff changeset
  1410
  NMethodSweeper::force_sweep();
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1411
WB_END
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1412
16601
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  1413
WB_ENTRY(jboolean, WB_IsInStringTable(JNIEnv* env, jobject o, jstring javaString))
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  1414
  ResourceMark rm(THREAD);
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  1415
  int len;
17081
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 17018
diff changeset
  1416
  jchar* name = java_lang_String::as_unicode_string(JNIHandles::resolve(javaString), len, CHECK_false);
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 17018
diff changeset
  1417
  return (StringTable::lookup(name, len) != NULL);
16601
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  1418
WB_END
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  1419
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  1420
WB_ENTRY(void, WB_FullGC(JNIEnv* env, jobject o))
49047
8f004146e407 8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents: 49036
diff changeset
  1421
  Universe::heap()->soft_ref_policy()->set_should_clear_all_soft_refs(true);
37149
f025738bbada 8152113: Remove _last_ditch_collection GC-cause and avoid expanding heap on Metaspace OOM
sjohanss
parents: 37106
diff changeset
  1422
  Universe::heap()->collect(GCCause::_wb_full_gc);
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
  1423
#if INCLUDE_G1GC
26844
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  1424
  if (UseG1GC) {
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  1425
    // Needs to be cleared explicitly for G1
49047
8f004146e407 8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents: 49036
diff changeset
  1426
    Universe::heap()->soft_ref_policy()->set_should_clear_all_soft_refs(false);
26844
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  1427
  }
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
  1428
#endif // INCLUDE_G1GC
16601
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  1429
WB_END
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  1430
26183
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
  1431
WB_ENTRY(void, WB_YoungGC(JNIEnv* env, jobject o))
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
  1432
  Universe::heap()->collect(GCCause::_wb_young_gc);
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
  1433
WB_END
17083
14000894ef39 8012015: Use PROT_NONE when reserving memory
mikael
parents: 17081
diff changeset
  1434
17824
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1435
WB_ENTRY(void, WB_ReadReservedMemory(JNIEnv* env, jobject o))
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1436
  // static+volatile in order to force the read to happen
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1437
  // (not be eliminated by the compiler)
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1438
  static char c;
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1439
  static volatile char* p;
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1440
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1441
  p = os::reserve_memory(os::vm_allocation_granularity(), NULL, 0);
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1442
  if (p == NULL) {
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1443
    THROW_MSG(vmSymbols::java_lang_OutOfMemoryError(), "Failed to reserve memory");
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1444
  }
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1445
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  1446
  c = *p;
17083
14000894ef39 8012015: Use PROT_NONE when reserving memory
mikael
parents: 17081
diff changeset
  1447
WB_END
14000894ef39 8012015: Use PROT_NONE when reserving memory
mikael
parents: 17081
diff changeset
  1448
23493
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  1449
WB_ENTRY(jstring, WB_GetCPUFeatures(JNIEnv* env, jobject o))
35148
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35135
diff changeset
  1450
  const char* features = VM_Version::features_string();
23493
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  1451
  ThreadToNativeFromVM ttn(thread);
35148
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35135
diff changeset
  1452
  jstring features_string = env->NewStringUTF(features);
23493
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  1453
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  1454
  CHECK_JNI_EXCEPTION_(env, NULL);
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  1455
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  1456
  return features_string;
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  1457
WB_END
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  1458
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1459
int WhiteBox::get_blob_type(const CodeBlob* code) {
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27710
diff changeset
  1460
  guarantee(WhiteBoxAPI, "internal testing API :: WhiteBox has to be enabled");
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42307
diff changeset
  1461
  if (code->is_aot()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42307
diff changeset
  1462
    return -1;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42307
diff changeset
  1463
  }
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1464
  return CodeCache::get_code_heap(code)->code_blob_type();
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1465
}
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1466
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1467
CodeHeap* WhiteBox::get_code_heap(int blob_type) {
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27710
diff changeset
  1468
  guarantee(WhiteBoxAPI, "internal testing API :: WhiteBox has to be enabled");
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1469
  return CodeCache::get_code_heap(blob_type);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1470
}
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1471
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1472
struct CodeBlobStub {
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1473
  CodeBlobStub(const CodeBlob* blob) :
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1474
      name(os::strdup(blob->name())),
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1475
      size(blob->size()),
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1476
      blob_type(WhiteBox::get_blob_type(blob)),
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1477
      address((jlong) blob) { }
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1478
  ~CodeBlobStub() { os::free((void*) name); }
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1479
  const char* const name;
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1480
  const jint        size;
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1481
  const jint        blob_type;
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1482
  const jlong       address;
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1483
};
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1484
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1485
static jobjectArray codeBlob2objectArray(JavaThread* thread, JNIEnv* env, CodeBlobStub* cb) {
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1486
  jclass clazz = env->FindClass(vmSymbols::java_lang_Object()->as_C_string());
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1487
  CHECK_JNI_EXCEPTION_(env, NULL);
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1488
  jobjectArray result = env->NewObjectArray(4, clazz, NULL);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1489
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1490
  jstring name = env->NewStringUTF(cb->name);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1491
  CHECK_JNI_EXCEPTION_(env, NULL);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1492
  env->SetObjectArrayElement(result, 0, name);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1493
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1494
  jobject obj = integerBox(thread, env, cb->size);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1495
  CHECK_JNI_EXCEPTION_(env, NULL);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1496
  env->SetObjectArrayElement(result, 1, obj);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1497
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1498
  obj = integerBox(thread, env, cb->blob_type);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1499
  CHECK_JNI_EXCEPTION_(env, NULL);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1500
  env->SetObjectArrayElement(result, 2, obj);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1501
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1502
  obj = longBox(thread, env, cb->address);
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1503
  CHECK_JNI_EXCEPTION_(env, NULL);
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1504
  env->SetObjectArrayElement(result, 3, obj);
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1505
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1506
  return result;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1507
}
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1508
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1509
WB_ENTRY(jobjectArray, WB_GetNMethod(JNIEnv* env, jobject o, jobject method, jboolean is_osr))
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1510
  ResourceMark rm(THREAD);
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1511
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1512
  CHECK_JNI_EXCEPTION_(env, NULL);
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1513
  methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid));
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38036
diff changeset
  1514
  CompiledMethod* code = is_osr ? mh->lookup_osr_nmethod_for(InvocationEntryBci, CompLevel_none, false) : mh->code();
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1515
  jobjectArray result = NULL;
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1516
  if (code == NULL) {
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1517
    return result;
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1518
  }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42307
diff changeset
  1519
  int comp_level = code->comp_level();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42307
diff changeset
  1520
  int insts_size = comp_level == CompLevel_aot ? code->code_end() - code->code_begin() : code->insts_size();
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1521
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1522
  ThreadToNativeFromVM ttn(thread);
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1523
  jclass clazz = env->FindClass(vmSymbols::java_lang_Object()->as_C_string());
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1524
  CHECK_JNI_EXCEPTION_(env, NULL);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1525
  result = env->NewObjectArray(5, clazz, NULL);
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1526
  if (result == NULL) {
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1527
    return result;
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1528
  }
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1529
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1530
  CodeBlobStub stub(code);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1531
  jobjectArray codeBlob = codeBlob2objectArray(thread, env, &stub);
35571
63e185035789 8147441: Unchecked pending exceptions in the WhiteBox API's implementation
zmajo
parents: 35563
diff changeset
  1532
  CHECK_JNI_EXCEPTION_(env, NULL);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1533
  env->SetObjectArrayElement(result, 0, codeBlob);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1534
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42307
diff changeset
  1535
  jobject level = integerBox(thread, env, comp_level);
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1536
  CHECK_JNI_EXCEPTION_(env, NULL);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1537
  env->SetObjectArrayElement(result, 1, level);
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1538
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1539
  jbyteArray insts = env->NewByteArray(insts_size);
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1540
  CHECK_JNI_EXCEPTION_(env, NULL);
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1541
  env->SetByteArrayRegion(insts, 0, insts_size, (jbyte*) code->insts_begin());
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1542
  env->SetObjectArrayElement(result, 2, insts);
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1543
27450
603dbcf4f547 8054492: Casting can result in redundant null checks in generated code
kvn
parents: 27434
diff changeset
  1544
  jobject id = integerBox(thread, env, code->compile_id());
603dbcf4f547 8054492: Casting can result in redundant null checks in generated code
kvn
parents: 27434
diff changeset
  1545
  CHECK_JNI_EXCEPTION_(env, NULL);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1546
  env->SetObjectArrayElement(result, 3, id);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1547
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1548
  jobject entry_point = longBox(thread, env, (jlong) code->entry_point());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1549
  CHECK_JNI_EXCEPTION_(env, NULL);
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33631
diff changeset
  1550
  env->SetObjectArrayElement(result, 4, entry_point);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1551
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1552
  return result;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1553
WB_END
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1554
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1555
CodeBlob* WhiteBox::allocate_code_blob(int size, int blob_type) {
27917
c5937f7b4e8b 8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents: 27710
diff changeset
  1556
  guarantee(WhiteBoxAPI, "internal testing API :: WhiteBox has to be enabled");
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1557
  BufferBlob* blob;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1558
  int full_size = CodeBlob::align_code_offset(sizeof(BufferBlob));
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1559
  if (full_size < size) {
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 46619
diff changeset
  1560
    full_size += align_up(size - full_size, oopSize);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1561
  }
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1562
  {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
  1563
    MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1564
    blob = (BufferBlob*) CodeCache::allocate(full_size, blob_type);
49874
9e64b13a7fcb 8202075: Crash when running compiler/codecache/OverflowCodeCacheTest.java
kvn
parents: 49860
diff changeset
  1565
    if (blob != NULL) {
9e64b13a7fcb 8202075: Crash when running compiler/codecache/OverflowCodeCacheTest.java
kvn
parents: 49860
diff changeset
  1566
      ::new (blob) BufferBlob("WB::DummyBlob", full_size);
9e64b13a7fcb 8202075: Crash when running compiler/codecache/OverflowCodeCacheTest.java
kvn
parents: 49860
diff changeset
  1567
    }
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1568
  }
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1569
  // Track memory usage statistic after releasing CodeCache_lock
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1570
  MemoryService::track_code_cache_memory_usage();
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1571
  return blob;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1572
}
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1573
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1574
WB_ENTRY(jlong, WB_AllocateCodeBlob(JNIEnv* env, jobject o, jint size, jint blob_type))
32726
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1575
  if (size < 0) {
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1576
    THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(),
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1577
      err_msg("WB_AllocateCodeBlob: size is negative: " INT32_FORMAT, size));
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1578
  }
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1579
  return (jlong) WhiteBox::allocate_code_blob(size, blob_type);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1580
WB_END
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1581
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1582
WB_ENTRY(void, WB_FreeCodeBlob(JNIEnv* env, jobject o, jlong addr))
32726
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1583
  if (addr == 0) {
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1584
    return;
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1585
  }
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1586
  BufferBlob::free((BufferBlob*) addr);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1587
WB_END
27450
603dbcf4f547 8054492: Casting can result in redundant null checks in generated code
kvn
parents: 27434
diff changeset
  1588
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1589
WB_ENTRY(jobjectArray, WB_GetCodeHeapEntries(JNIEnv* env, jobject o, jint blob_type))
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1590
  ResourceMark rm;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1591
  GrowableArray<CodeBlobStub*> blobs;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1592
  {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
  1593
    MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1594
    CodeHeap* heap = WhiteBox::get_code_heap(blob_type);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1595
    if (heap == NULL) {
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1596
      return NULL;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1597
    }
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1598
    for (CodeBlob* cb = (CodeBlob*) heap->first();
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1599
         cb != NULL; cb = (CodeBlob*) heap->next(cb)) {
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1600
      CodeBlobStub* stub = NEW_RESOURCE_OBJ(CodeBlobStub);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1601
      new (stub) CodeBlobStub(cb);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1602
      blobs.append(stub);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1603
    }
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1604
  }
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1605
  ThreadToNativeFromVM ttn(thread);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1606
  jobjectArray result = NULL;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1607
  jclass clazz = env->FindClass(vmSymbols::java_lang_Object()->as_C_string());
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1608
  CHECK_JNI_EXCEPTION_(env, NULL);
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1609
  result = env->NewObjectArray(blobs.length(), clazz, NULL);
41084
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1610
  CHECK_JNI_EXCEPTION_(env, NULL);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1611
  if (result == NULL) {
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1612
    return result;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1613
  }
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1614
  int i = 0;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1615
  for (GrowableArrayIterator<CodeBlobStub*> it = blobs.begin();
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1616
       it != blobs.end(); ++it) {
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1617
    jobjectArray obj = codeBlob2objectArray(thread, env, *it);
35571
63e185035789 8147441: Unchecked pending exceptions in the WhiteBox API's implementation
zmajo
parents: 35563
diff changeset
  1618
    CHECK_JNI_EXCEPTION_(env, NULL);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1619
    env->SetObjectArrayElement(result, i, obj);
41084
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1620
    CHECK_JNI_EXCEPTION_(env, NULL);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1621
    ++i;
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  1622
  }
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1623
  return result;
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1624
WB_END
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  1625
27701
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  1626
WB_ENTRY(jint, WB_GetCompilationActivityMode(JNIEnv* env, jobject o))
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  1627
  return CompileBroker::get_compilation_activity_mode();
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  1628
WB_END
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  1629
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  1630
WB_ENTRY(jobjectArray, WB_GetCodeBlob(JNIEnv* env, jobject o, jlong addr))
32726
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1631
  if (addr == 0) {
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1632
    THROW_MSG_NULL(vmSymbols::java_lang_NullPointerException(),
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1633
      "WB_GetCodeBlob: addr is null");
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1634
  }
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1635
  ThreadToNativeFromVM ttn(thread);
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1636
  CodeBlobStub stub((CodeBlob*) addr);
8ccad6e5cdc6 8132980: Improve stability of whitebox methods getCodeBlob and freeCodeBlob
kzhaldyb
parents: 32625
diff changeset
  1637
  return codeBlob2objectArray(thread, env, &stub);
27701
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  1638
WB_END
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  1639
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1640
WB_ENTRY(jlong, WB_GetMethodData(JNIEnv* env, jobject wv, jobject method))
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1641
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1642
  CHECK_JNI_EXCEPTION_(env, 0);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1643
  methodHandle mh(thread, Method::checked_resolve_jmethod_id(jmid));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1644
  return (jlong) mh->method_data();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1645
WB_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1646
24671
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  1647
WB_ENTRY(jlong, WB_GetThreadStackSize(JNIEnv* env, jobject o))
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  1648
  return (jlong) Thread::current()->stack_size();
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  1649
WB_END
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  1650
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  1651
WB_ENTRY(jlong, WB_GetThreadRemainingStackSize(JNIEnv* env, jobject o))
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  1652
  JavaThread* t = JavaThread::current();
35201
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 35061
diff changeset
  1653
  return (jlong) t->stack_available(os::current_stack_pointer()) - (jlong)JavaThread::stack_shadow_zone_size();
24671
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  1654
WB_END
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  1655
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1656
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1657
int WhiteBox::array_bytes_to_length(size_t bytes) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1658
  return Array<u1>::bytes_to_length(bytes);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1659
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1660
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1661
WB_ENTRY(jlong, WB_AllocateMetaspace(JNIEnv* env, jobject wb, jobject class_loader, jlong size))
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1662
  if (size < 0) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1663
    THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1664
        err_msg("WB_AllocateMetaspace: size is negative: " JLONG_FORMAT, size));
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1665
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1666
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1667
  oop class_loader_oop = JNIHandles::resolve(class_loader);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1668
  ClassLoaderData* cld = class_loader_oop != NULL
51698
74dde8b66b7f 8210422: runtime/modules/ModuleStress/ExportModuleStressTest.java - assertion failed: address not aligned: 0x00000008baadbabe
coleenp
parents: 51610
diff changeset
  1669
      ? java_lang_ClassLoader::loader_data_acquire(class_loader_oop)
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1670
      : ClassLoaderData::the_null_class_loader_data();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1671
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46632
diff changeset
  1672
  void* metadata = MetadataFactory::new_array<u1>(cld, WhiteBox::array_bytes_to_length((size_t)size), thread);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1673
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1674
  return (jlong)(uintptr_t)metadata;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1675
WB_END
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1676
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1677
WB_ENTRY(void, WB_FreeMetaspace(JNIEnv* env, jobject wb, jobject class_loader, jlong addr, jlong size))
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1678
  oop class_loader_oop = JNIHandles::resolve(class_loader);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1679
  ClassLoaderData* cld = class_loader_oop != NULL
51698
74dde8b66b7f 8210422: runtime/modules/ModuleStress/ExportModuleStressTest.java - assertion failed: address not aligned: 0x00000008baadbabe
coleenp
parents: 51610
diff changeset
  1680
      ? java_lang_ClassLoader::loader_data_acquire(class_loader_oop)
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1681
      : ClassLoaderData::the_null_class_loader_data();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1682
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1683
  MetadataFactory::free_array(cld, (Array<u1>*)(uintptr_t)addr);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1684
WB_END
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1685
46404
ae62ba99a1a7 8165896: Use "open" flag from JVM_DefineModule to export all module packages
rprotacio
parents: 46384
diff changeset
  1686
WB_ENTRY(void, WB_DefineModule(JNIEnv* env, jobject o, jobject module, jboolean is_open,
ae62ba99a1a7 8165896: Use "open" flag from JVM_DefineModule to export all module packages
rprotacio
parents: 46384
diff changeset
  1687
                                jstring version, jstring location, jobjectArray packages))
43466
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1688
  ResourceMark rm(THREAD);
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1689
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1690
  objArrayOop packages_oop = objArrayOop(JNIHandles::resolve(packages));
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1691
  objArrayHandle packages_h(THREAD, packages_oop);
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1692
  int num_packages = (packages_h == NULL ? 0 : packages_h->length());
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1693
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1694
  char** pkgs = NULL;
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1695
  if (num_packages > 0) {
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1696
    pkgs = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char*, num_packages);
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1697
    for (int x = 0; x < num_packages; x++) {
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1698
      oop pkg_str = packages_h->obj_at(x);
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1699
      if (pkg_str == NULL || !pkg_str->is_a(SystemDictionary::String_klass())) {
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1700
        THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1701
                  err_msg("Bad package name"));
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1702
      }
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1703
      pkgs[x] = java_lang_String::as_utf8_string(pkg_str);
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1704
    }
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1705
  }
46404
ae62ba99a1a7 8165896: Use "open" flag from JVM_DefineModule to export all module packages
rprotacio
parents: 46384
diff changeset
  1706
  Modules::define_module(module, is_open, version, location, (const char* const*)pkgs, num_packages, CHECK);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1707
WB_END
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1708
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1709
WB_ENTRY(void, WB_AddModuleExports(JNIEnv* env, jobject o, jobject from_module, jstring package, jobject to_module))
43466
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1710
  ResourceMark rm(THREAD);
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1711
  char* package_name = NULL;
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1712
  if (package != NULL) {
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1713
      package_name = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(package));
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1714
  }
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1715
  Modules::add_module_exports_qualified(from_module, package_name, to_module, CHECK);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1716
WB_END
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1717
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1718
WB_ENTRY(void, WB_AddModuleExportsToAllUnnamed(JNIEnv* env, jobject o, jclass module, jstring package))
43466
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1719
  ResourceMark rm(THREAD);
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1720
  char* package_name = NULL;
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1721
  if (package != NULL) {
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1722
      package_name = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(package));
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1723
  }
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1724
  Modules::add_module_exports_to_all_unnamed(module, package_name, CHECK);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1725
WB_END
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1726
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1727
WB_ENTRY(void, WB_AddModuleExportsToAll(JNIEnv* env, jobject o, jclass module, jstring package))
43466
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1728
  ResourceMark rm(THREAD);
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1729
  char* package_name = NULL;
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1730
  if (package != NULL) {
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1731
      package_name = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(package));
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1732
  }
add500644443 8171855: Move package name transformations during module bootstrap into native code
redestad
parents: 43455
diff changeset
  1733
  Modules::add_module_exports(module, package_name, NULL, CHECK);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1734
WB_END
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1735
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1736
WB_ENTRY(void, WB_AddReadsModule(JNIEnv* env, jobject o, jobject from_module, jobject source_module))
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1737
  Modules::add_reads_module(from_module, source_module, CHECK);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1738
WB_END
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1739
26938
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1740
WB_ENTRY(jlong, WB_IncMetaspaceCapacityUntilGC(JNIEnv* env, jobject wb, jlong inc))
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1741
  if (inc < 0) {
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1742
    THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(),
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1743
        err_msg("WB_IncMetaspaceCapacityUntilGC: inc is negative: " JLONG_FORMAT, inc));
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1744
  }
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1745
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1746
  jlong max_size_t = (jlong) ((size_t) -1);
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1747
  if (inc > max_size_t) {
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1748
    THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(),
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1749
        err_msg("WB_IncMetaspaceCapacityUntilGC: inc does not fit in size_t: " JLONG_FORMAT, inc));
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1750
  }
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1751
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1752
  size_t new_cap_until_GC = 0;
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46587
diff changeset
  1753
  size_t aligned_inc = align_down((size_t) inc, Metaspace::commit_alignment());
26938
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1754
  bool success = MetaspaceGC::inc_capacity_until_GC(aligned_inc, &new_cap_until_GC);
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1755
  if (!success) {
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1756
    THROW_MSG_0(vmSymbols::java_lang_IllegalStateException(),
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1757
                "WB_IncMetaspaceCapacityUntilGC: could not increase capacity until GC "
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1758
                "due to contention with another thread");
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1759
  }
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1760
  return (jlong) new_cap_until_GC;
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1761
WB_END
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1762
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1763
WB_ENTRY(jlong, WB_MetaspaceCapacityUntilGC(JNIEnv* env, jobject wb))
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1764
  return (jlong) MetaspaceGC::capacity_until_GC();
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1765
WB_END
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  1766
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46632
diff changeset
  1767
WB_ENTRY(jlong, WB_MetaspaceReserveAlignment(JNIEnv* env, jobject wb))
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46632
diff changeset
  1768
  return (jlong)Metaspace::reserve_alignment();
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46632
diff changeset
  1769
WB_END
31608
b5cb9a07591a 8080511: Refresh of jimage support
jfdenise
parents: 31592
diff changeset
  1770
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27923
diff changeset
  1771
WB_ENTRY(void, WB_AssertMatchingSafepointCalls(JNIEnv* env, jobject o, jboolean mutexSafepointValue, jboolean attemptedNoSafepointValue))
58375
a1eba2e37671 8231472: Clean up Monitor::_safepoint_check usage to Mutex::_safepoint_check
coleenp
parents: 58226
diff changeset
  1772
  Mutex::SafepointCheckRequired sfpt_check_required = mutexSafepointValue ?
a1eba2e37671 8231472: Clean up Monitor::_safepoint_check usage to Mutex::_safepoint_check
coleenp
parents: 58226
diff changeset
  1773
                                           Mutex::_safepoint_check_always :
a1eba2e37671 8231472: Clean up Monitor::_safepoint_check usage to Mutex::_safepoint_check
coleenp
parents: 58226
diff changeset
  1774
                                           Mutex::_safepoint_check_never;
a1eba2e37671 8231472: Clean up Monitor::_safepoint_check usage to Mutex::_safepoint_check
coleenp
parents: 58226
diff changeset
  1775
  Mutex::SafepointCheckFlag sfpt_check_attempted = attemptedNoSafepointValue ?
a1eba2e37671 8231472: Clean up Monitor::_safepoint_check usage to Mutex::_safepoint_check
coleenp
parents: 58226
diff changeset
  1776
                                           Mutex::_no_safepoint_check_flag :
a1eba2e37671 8231472: Clean up Monitor::_safepoint_check usage to Mutex::_safepoint_check
coleenp
parents: 58226
diff changeset
  1777
                                           Mutex::_safepoint_check_flag;
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
  1778
  MutexLocker ml(new Mutex(Mutex::leaf, "SFPT_Test_lock", true, sfpt_check_required),
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
  1779
                 sfpt_check_attempted);
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27923
diff changeset
  1780
WB_END
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27923
diff changeset
  1781
58409
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1782
WB_ENTRY(void, WB_AssertSpecialLock(JNIEnv* env, jobject o, jboolean allowVMBlock, jboolean safepointCheck))
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1783
  // Create a special lock violating condition in value
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1784
  Mutex::SafepointCheckRequired sfpt_check_required = safepointCheck ?
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1785
                                           Mutex::_safepoint_check_always :
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1786
                                           Mutex::_safepoint_check_never;
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1787
  Mutex::SafepointCheckFlag safepoint_check = safepointCheck ?
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1788
                                           Monitor::_safepoint_check_flag :
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1789
                                           Monitor::_no_safepoint_check_flag;
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1790
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1791
  MutexLocker ml(new Mutex(Mutex::special, "SpecialTest_lock", allowVMBlock, sfpt_check_required), safepoint_check);
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1792
  // If the lock above succeeds, try to safepoint to test the NSV implied with this special lock.
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1793
  ThreadBlockInVM tbivm(JavaThread::current());
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1794
WB_END
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  1795
28393
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1796
WB_ENTRY(jboolean, WB_IsMonitorInflated(JNIEnv* env, jobject wb, jobject obj))
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1797
  oop obj_oop = JNIHandles::resolve(obj);
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 55545
diff changeset
  1798
  return (jboolean) obj_oop->mark().has_monitor();
28393
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1799
WB_END
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1800
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1801
WB_ENTRY(void, WB_ForceSafepoint(JNIEnv* env, jobject wb))
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1802
  VM_ForceSafepoint force_safepoint_op;
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1803
  VMThread::execute(&force_safepoint_op);
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1804
WB_END
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  1805
33631
3eee32561662 8139385: [TESTBUG]: JVMCI test crashes in constantPoolHandle::constantPoolHandle
kshefov
parents: 33451
diff changeset
  1806
WB_ENTRY(jlong, WB_GetConstantPool(JNIEnv* env, jobject wb, jclass klass))
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  1807
  InstanceKlass* ik = InstanceKlass::cast(java_lang_Class::as_Klass(JNIHandles::resolve(klass)));
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  1808
  return (jlong) ik->constants();
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1809
WB_END
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  1810
36304
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1811
WB_ENTRY(jint, WB_GetConstantPoolCacheIndexTag(JNIEnv* env, jobject wb))
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1812
  return ConstantPool::CPCACHE_INDEX_TAG;
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1813
WB_END
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1814
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1815
WB_ENTRY(jint, WB_GetConstantPoolCacheLength(JNIEnv* env, jobject wb, jclass klass))
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  1816
  InstanceKlass* ik = InstanceKlass::cast(java_lang_Class::as_Klass(JNIHandles::resolve(klass)));
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  1817
  ConstantPool* cp = ik->constants();
36304
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1818
  if (cp->cache() == NULL) {
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1819
      return -1;
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1820
  }
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1821
  return cp->cache()->length();
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1822
WB_END
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1823
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1824
WB_ENTRY(jint, WB_ConstantPoolRemapInstructionOperandFromCache(JNIEnv* env, jobject wb, jclass klass, jint index))
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  1825
  InstanceKlass* ik = InstanceKlass::cast(java_lang_Class::as_Klass(JNIHandles::resolve(klass)));
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  1826
  ConstantPool* cp = ik->constants();
36304
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1827
  if (cp->cache() == NULL) {
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1828
    THROW_MSG_0(vmSymbols::java_lang_IllegalStateException(), "Constant pool does not have a cache");
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1829
  }
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1830
  jint cpci = index;
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1831
  jint cpciTag = ConstantPool::CPCACHE_INDEX_TAG;
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1832
  if (cpciTag > cpci || cpci >= cp->cache()->length() + cpciTag) {
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1833
    THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "Constant pool cache index is out of range");
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1834
  }
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1835
  jint cpi = cp->remap_instruction_operand_from_cache(cpci);
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1836
  return cpi;
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1837
WB_END
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1838
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1839
WB_ENTRY(jint, WB_ConstantPoolEncodeIndyIndex(JNIEnv* env, jobject wb, jint index))
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1840
  return ConstantPool::encode_invokedynamic_index(index);
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1841
WB_END
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  1842
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36616
diff changeset
  1843
WB_ENTRY(void, WB_ClearInlineCaches(JNIEnv* env, jobject wb, jboolean preserve_static_stubs))
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36616
diff changeset
  1844
  VM_ClearICs clear_ics(preserve_static_stubs == JNI_TRUE);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34257
diff changeset
  1845
  VMThread::execute(&clear_ics);
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34257
diff changeset
  1846
WB_END
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34257
diff changeset
  1847
29476
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1848
template <typename T>
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1849
static bool GetMethodOption(JavaThread* thread, JNIEnv* env, jobject method, jstring name, T* value) {
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1850
  assert(value != NULL, "sanity");
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1851
  if (method == NULL || name == NULL) {
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1852
    return false;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1853
  }
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1854
  jmethodID jmid = reflected_method_to_jmid(thread, env, method);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1855
  CHECK_JNI_EXCEPTION_(env, false);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1856
  methodHandle mh(thread, Method::checked_resolve_jmethod_id(jmid));
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1857
  // can't be in VM when we call JNI
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1858
  ThreadToNativeFromVM ttnfv(thread);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1859
  const char* flag_name = env->GetStringUTFChars(name, NULL);
41084
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  1860
  CHECK_JNI_EXCEPTION_(env, false);
29476
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1861
  bool result =  CompilerOracle::has_option_value(mh, flag_name, *value);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1862
  env->ReleaseStringUTFChars(name, flag_name);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1863
  return result;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1864
}
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1865
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1866
WB_ENTRY(jobject, WB_GetMethodBooleaneOption(JNIEnv* env, jobject wb, jobject method, jstring name))
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1867
  bool result;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1868
  if (GetMethodOption<bool> (thread, env, method, name, &result)) {
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1869
    // can't be in VM when we call JNI
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1870
    ThreadToNativeFromVM ttnfv(thread);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1871
    return booleanBox(thread, env, result);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1872
  }
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1873
  return NULL;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1874
WB_END
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1875
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1876
WB_ENTRY(jobject, WB_GetMethodIntxOption(JNIEnv* env, jobject wb, jobject method, jstring name))
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1877
  intx result;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1878
  if (GetMethodOption <intx> (thread, env, method, name, &result)) {
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1879
    // can't be in VM when we call JNI
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1880
    ThreadToNativeFromVM ttnfv(thread);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1881
    return longBox(thread, env, result);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1882
  }
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1883
  return NULL;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1884
WB_END
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1885
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1886
WB_ENTRY(jobject, WB_GetMethodUintxOption(JNIEnv* env, jobject wb, jobject method, jstring name))
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1887
  uintx result;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1888
  if (GetMethodOption <uintx> (thread, env, method, name, &result)) {
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1889
    // can't be in VM when we call JNI
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1890
    ThreadToNativeFromVM ttnfv(thread);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1891
    return longBox(thread, env, result);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1892
  }
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1893
  return NULL;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1894
WB_END
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1895
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1896
WB_ENTRY(jobject, WB_GetMethodDoubleOption(JNIEnv* env, jobject wb, jobject method, jstring name))
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1897
  double result;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1898
  if (GetMethodOption <double> (thread, env, method, name, &result)) {
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1899
    // can't be in VM when we call JNI
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1900
    ThreadToNativeFromVM ttnfv(thread);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1901
    return doubleBox(thread, env, result);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1902
  }
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1903
  return NULL;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1904
WB_END
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1905
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1906
WB_ENTRY(jobject, WB_GetMethodStringOption(JNIEnv* env, jobject wb, jobject method, jstring name))
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1907
  ccstr ccstrResult;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1908
  if (GetMethodOption <ccstr> (thread, env, method, name, &ccstrResult)) {
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1909
    // can't be in VM when we call JNI
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1910
    ThreadToNativeFromVM ttnfv(thread);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1911
    jstring result = env->NewStringUTF(ccstrResult);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1912
    CHECK_JNI_EXCEPTION_(env, NULL);
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1913
    return result;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1914
  }
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1915
  return NULL;
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1916
WB_END
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  1917
52030
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1918
WB_ENTRY(jobject, WB_GetDefaultArchivePath(JNIEnv* env, jobject wb))
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1919
  const char* p = Arguments::get_default_shared_archive_path();
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1920
  ThreadToNativeFromVM ttn(thread);
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1921
  jstring path_string = env->NewStringUTF(p);
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1922
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1923
  CHECK_JNI_EXCEPTION_(env, NULL);
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1924
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1925
  return path_string;
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1926
WB_END
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1927
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1928
WB_ENTRY(jboolean, WB_IsSharingEnabled(JNIEnv* env, jobject wb))
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1929
  return UseSharedSpaces;
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1930
WB_END
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  1931
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1932
WB_ENTRY(jboolean, WB_CDSMemoryMappingFailed(JNIEnv* env, jobject wb))
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1933
  return FileMapInfo::memory_mapping_failed();
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1934
WB_END
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1935
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 31236
diff changeset
  1936
WB_ENTRY(jboolean, WB_IsShared(JNIEnv* env, jobject wb, jobject obj))
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 31236
diff changeset
  1937
  oop obj_oop = JNIHandles::resolve(obj);
52062
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 52030
diff changeset
  1938
  return HeapShared::is_archived_object(obj_oop);
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 31236
diff changeset
  1939
WB_END
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 31236
diff changeset
  1940
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1941
WB_ENTRY(jboolean, WB_IsSharedClass(JNIEnv* env, jobject wb, jclass clazz))
48794
ea0d0781c63c 8178351: Simplify MetaspaceShared::is_in_shared_space and MetaspaceObj::is_shared
iklam
parents: 48469
diff changeset
  1942
  return (jboolean)MetaspaceShared::is_in_shared_metaspace(java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1943
WB_END
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  1944
31362
8957ccbb5821 8098821: Crash in system dictionary initialization with shared strings
coleenp
parents: 31345
diff changeset
  1945
WB_ENTRY(jboolean, WB_AreSharedStringsIgnored(JNIEnv* env))
52402
72d4e10305b9 8212995: Placing the Integer.IntegerCache and cached Integer objects in the closed archive heap region.
jiangli
parents: 52071
diff changeset
  1946
  return !HeapShared::closed_archive_heap_region_mapped();
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1947
WB_END
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1948
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1949
WB_ENTRY(jobject, WB_GetResolvedReferences(JNIEnv* env, jobject wb, jclass clazz))
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1950
  Klass *k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz));
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1951
  if (k->is_instance_klass()) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1952
    InstanceKlass *ik = InstanceKlass::cast(k);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1953
    ConstantPool *cp = ik->constants();
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1954
    objArrayOop refs =  cp->resolved_references();
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1955
    return (jobject)JNIHandles::make_local(env, refs);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1956
  } else {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1957
    return NULL;
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  1958
  }
31362
8957ccbb5821 8098821: Crash in system dictionary initialization with shared strings
coleenp
parents: 31345
diff changeset
  1959
WB_END
8957ccbb5821 8098821: Crash in system dictionary initialization with shared strings
coleenp
parents: 31345
diff changeset
  1960
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1961
WB_ENTRY(void, WB_LinkClass(JNIEnv* env, jobject wb, jclass clazz))
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1962
  Klass *k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz));
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1963
  if (!k->is_instance_klass()) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1964
    return;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1965
  }
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1966
  InstanceKlass *ik = InstanceKlass::cast(k);
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1967
  ik->link_class(THREAD); // may throw verification error
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1968
WB_END
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  1969
47805
506775a4f446 8189840: CheckCachedResolvedReferencesApp has no cached resolved references
jiangli
parents: 47678
diff changeset
  1970
WB_ENTRY(jboolean, WB_AreOpenArchiveHeapObjectsMapped(JNIEnv* env))
52062
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 52030
diff changeset
  1971
  return HeapShared::open_archive_heap_region_mapped();
47805
506775a4f446 8189840: CheckCachedResolvedReferencesApp has no cached resolved references
jiangli
parents: 47678
diff changeset
  1972
WB_END
506775a4f446 8189840: CheckCachedResolvedReferencesApp has no cached resolved references
jiangli
parents: 47678
diff changeset
  1973
46779
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46746
diff changeset
  1974
WB_ENTRY(jboolean, WB_IsCDSIncludedInVmBuild(JNIEnv* env))
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46746
diff changeset
  1975
#if INCLUDE_CDS
48469
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 48138
diff changeset
  1976
# ifdef _LP64
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 48138
diff changeset
  1977
    if (!UseCompressedOops || !UseCompressedClassPointers) {
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 48138
diff changeset
  1978
      // On 64-bit VMs, CDS is supported only with compressed oops/pointers
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 48138
diff changeset
  1979
      return false;
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 48138
diff changeset
  1980
    }
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 48138
diff changeset
  1981
# endif // _LP64
46779
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46746
diff changeset
  1982
  return true;
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46746
diff changeset
  1983
#else
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46746
diff changeset
  1984
  return false;
48469
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 48138
diff changeset
  1985
#endif // INCLUDE_CDS
46779
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46746
diff changeset
  1986
WB_END
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46746
diff changeset
  1987
49008
d777541fceba 8191375: Add high-level jtreg VMProps to filter out CDS tests
iklam
parents: 48988
diff changeset
  1988
WB_ENTRY(jboolean, WB_IsJavaHeapArchiveSupported(JNIEnv* env))
52062
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 52030
diff changeset
  1989
  return HeapShared::is_heap_object_archiving_allowed();
49008
d777541fceba 8191375: Add high-level jtreg VMProps to filter out CDS tests
iklam
parents: 48988
diff changeset
  1990
WB_END
d777541fceba 8191375: Add high-level jtreg VMProps to filter out CDS tests
iklam
parents: 48988
diff changeset
  1991
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  1992
51214
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  1993
WB_ENTRY(jboolean, WB_IsJFRIncludedInVmBuild(JNIEnv* env))
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  1994
#if INCLUDE_JFR
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  1995
  return true;
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  1996
#else
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  1997
  return false;
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  1998
#endif // INCLUDE_JFR
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  1999
WB_END
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  2000
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2001
#if INCLUDE_CDS
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2002
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2003
WB_ENTRY(jint, WB_GetOffsetForName(JNIEnv* env, jobject o, jstring name))
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2004
  ResourceMark rm;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2005
  char* c_name = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(name));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2006
  int result = CDSOffsets::find_offset(c_name);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2007
  return (jint)result;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2008
WB_END
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2009
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2010
#endif // INCLUDE_CDS
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2011
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2012
WB_ENTRY(jint, WB_HandshakeWalkStack(JNIEnv* env, jobject wb, jobject thread_handle, jboolean all_threads))
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2013
  class TraceSelfClosure : public ThreadClosure {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2014
    jint _num_threads_completed;
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2015
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2016
    void do_thread(Thread* th) {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2017
      assert(th->is_Java_thread(), "sanity");
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2018
      JavaThread* jt = (JavaThread*)th;
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2019
      ResourceMark rm;
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2020
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2021
      jt->print_on(tty);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2022
      jt->print_stack_on(tty);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2023
      tty->cr();
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2024
      Atomic::inc(&_num_threads_completed);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2025
    }
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2026
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2027
  public:
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2028
    TraceSelfClosure() : _num_threads_completed(0) {}
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2029
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2030
    jint num_threads_completed() const { return _num_threads_completed; }
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2031
  };
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2032
  TraceSelfClosure tsc;
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2033
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2034
  if (all_threads) {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2035
    Handshake::execute(&tsc);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2036
  } else {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2037
    oop thread_oop = JNIHandles::resolve(thread_handle);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2038
    if (thread_oop != NULL) {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2039
      JavaThread* target = java_lang_Thread::thread(thread_oop);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2040
      Handshake::execute(&tsc, target);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2041
    }
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2042
  }
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2043
  return tsc.num_threads_completed();
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2044
WB_END
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2045
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2046
//Some convenience methods to deal with objects from java
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2047
int WhiteBox::offset_for_field(const char* field_name, oop object,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2048
    Symbol* signature_symbol) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2049
  assert(field_name != NULL && strlen(field_name) > 0, "Field name not valid");
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2050
  Thread* THREAD = Thread::current();
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2051
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2052
  //Get the class of our object
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
  2053
  Klass* arg_klass = object->klass();
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2054
  //Turn it into an instance-klass
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
  2055
  InstanceKlass* ik = InstanceKlass::cast(arg_klass);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2056
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2057
  //Create symbols to look for in the class
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
  2058
  TempNewSymbol name_symbol = SymbolTable::new_symbol(field_name);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2059
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2060
  //To be filled in with an offset of the field we're looking for
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2061
  fieldDescriptor fd;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2062
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
  2063
  Klass* res = ik->find_field(name_symbol, signature_symbol, &fd);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2064
  if (res == NULL) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2065
    tty->print_cr("Invalid layout of %s at %s", ik->external_name(),
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2066
        name_symbol->as_C_string());
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 38144
diff changeset
  2067
    vm_exit_during_initialization("Invalid layout of preloaded class: use -Xlog:class+load=info to see the origin of the problem class");
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2068
  }
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2069
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2070
  //fetch the field at the offset we've found
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2071
  int dest_offset = fd.offset();
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2072
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2073
  return dest_offset;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2074
}
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2075
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2076
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2077
const char* WhiteBox::lookup_jstring(const char* field_name, oop object) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2078
  int offset = offset_for_field(field_name, object,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2079
      vmSymbols::string_signature());
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2080
  oop string = object->obj_field(offset);
13200
7b506e7b406e 7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents: 12262
diff changeset
  2081
  if (string == NULL) {
7b506e7b406e 7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents: 12262
diff changeset
  2082
    return NULL;
7b506e7b406e 7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents: 12262
diff changeset
  2083
  }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2084
  const char* ret = java_lang_String::as_utf8_string(string);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2085
  return ret;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2086
}
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2087
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2088
bool WhiteBox::lookup_bool(const char* field_name, oop object) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2089
  int offset =
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2090
      offset_for_field(field_name, object, vmSymbols::bool_signature());
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2091
  bool ret = (object->bool_field(offset) == JNI_TRUE);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2092
  return ret;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2093
}
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2094
26844
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2095
void WhiteBox::register_methods(JNIEnv* env, jclass wbclass, JavaThread* thread, JNINativeMethod* method_array, int method_count) {
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2096
  ResourceMark rm;
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2097
  ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2098
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2099
  //  one by one registration natives for exception catching
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2100
  jclass no_such_method_error_klass = env->FindClass(vmSymbols::java_lang_NoSuchMethodError()->as_C_string());
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2101
  CHECK_JNI_EXCEPTION(env);
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2102
  for (int i = 0, n = method_count; i < n; ++i) {
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2103
    // Skip dummy entries
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2104
    if (method_array[i].fnPtr == NULL) continue;
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2105
    if (env->RegisterNatives(wbclass, &method_array[i], 1) != 0) {
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2106
      jthrowable throwable_obj = env->ExceptionOccurred();
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2107
      if (throwable_obj != NULL) {
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2108
        env->ExceptionClear();
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2109
        if (env->IsInstanceOf(throwable_obj, no_such_method_error_klass)) {
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2110
          // NoSuchMethodError is thrown when a method can't be found or a method is not native.
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2111
          // Ignoring the exception since it is not preventing use of other WhiteBox methods.
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2112
          tty->print_cr("Warning: 'NoSuchMethodError' on register of sun.hotspot.WhiteBox::%s%s",
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2113
              method_array[i].name, method_array[i].signature);
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2114
        }
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2115
      } else {
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2116
        // Registration failed unexpectedly.
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2117
        tty->print_cr("Warning: unexpected error on register of sun.hotspot.WhiteBox::%s%s. All methods will be unregistered",
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2118
            method_array[i].name, method_array[i].signature);
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2119
        env->UnregisterNatives(wbclass);
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2120
        break;
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2121
      }
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2122
    }
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2123
  }
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2124
}
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2125
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2126
WB_ENTRY(jint, WB_AddCompilerDirective(JNIEnv* env, jobject o, jstring compDirect))
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2127
  // can't be in VM when we call JNI
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2128
  ThreadToNativeFromVM ttnfv(thread);
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2129
  const char* dir = env->GetStringUTFChars(compDirect, NULL);
41084
fc5db29fa08e 8164086: Checked JNI pending exception check should be cleared when returning to Java frame
dsimms
parents: 40370
diff changeset
  2130
  CHECK_JNI_EXCEPTION_(env, 0);
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2131
  int ret;
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2132
  {
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2133
    ThreadInVMfromNative ttvfn(thread); // back to VM
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2134
    ret = DirectivesParser::parse_string(dir, tty);
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2135
  }
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2136
  env->ReleaseStringUTFChars(compDirect, dir);
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2137
  // -1 for error parsing directive. Return 0 as number of directives added.
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2138
  if (ret == -1) {
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2139
    ret = 0;
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2140
  }
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2141
  return (jint) ret;
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2142
WB_END
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2143
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2144
WB_ENTRY(void, WB_RemoveCompilerDirective(JNIEnv* env, jobject o, jint count))
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2145
  DirectivesStack::pop(count);
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2146
WB_END
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2147
47264
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2148
// Checks that the library libfile has the noexecstack bit set.
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2149
WB_ENTRY(jboolean, WB_CheckLibSpecifiesNoexecstack(JNIEnv* env, jobject o, jstring libfile))
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2150
  jboolean ret = false;
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2151
#ifdef LINUX
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2152
  // Can't be in VM when we call JNI.
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2153
  ThreadToNativeFromVM ttnfv(thread);
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2154
  const char* lf = env->GetStringUTFChars(libfile, NULL);
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2155
  CHECK_JNI_EXCEPTION_(env, 0);
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2156
  ret = (jboolean) ElfFile::specifies_noexecstack(lf);
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2157
  env->ReleaseStringUTFChars(libfile, lf);
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2158
#endif
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2159
  return ret;
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2160
WB_END
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2161
47908
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2162
WB_ENTRY(jboolean, WB_IsContainerized(JNIEnv* env, jobject o))
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2163
  LINUX_ONLY(return OSContainer::is_containerized();)
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2164
  return false;
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2165
WB_END
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2166
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2167
WB_ENTRY(void, WB_PrintOsInfo(JNIEnv* env, jobject o))
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2168
  os::print_os_info(tty);
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2169
WB_END
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2170
48975
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents: 48969
diff changeset
  2171
// Elf decoder
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents: 48969
diff changeset
  2172
WB_ENTRY(void, WB_DisableElfSectionCache(JNIEnv* env))
48988
c2cd23e1d9cb 8198275: AIX build broken after latest whitebox.cpp changes
mbaesken
parents: 48975
diff changeset
  2173
#if !defined(_WINDOWS) && !defined(__APPLE__) && !defined(_AIX)
48975
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents: 48969
diff changeset
  2174
  ElfFile::_do_not_cache_elf_section = true;
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents: 48969
diff changeset
  2175
#endif
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents: 48969
diff changeset
  2176
WB_END
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents: 48969
diff changeset
  2177
54511
fbfcebad8e66 8221393: ResolvedMethodTable too small for StackWalking applications
stefank
parents: 53987
diff changeset
  2178
WB_ENTRY(jlong, WB_ResolvedMethodItemsCount(JNIEnv* env, jobject o))
fbfcebad8e66 8221393: ResolvedMethodTable too small for StackWalking applications
stefank
parents: 53987
diff changeset
  2179
  return (jlong) ResolvedMethodTable::items_count();
51567
0c4f2b26849e 8209844: MemberNameLeak.java fails when ResolvedMethod entry is not removed
pchilanomate
parents: 51467
diff changeset
  2180
WB_END
0c4f2b26849e 8209844: MemberNameLeak.java fails when ResolvedMethod entry is not removed
pchilanomate
parents: 51467
diff changeset
  2181
51610
cdef4df6b0e7 8206424: Use locking for cleaning ProtectionDomainTable
pchilanomate
parents: 51608
diff changeset
  2182
WB_ENTRY(jint, WB_ProtectionDomainRemovedCount(JNIEnv* env, jobject o))
cdef4df6b0e7 8206424: Use locking for cleaning ProtectionDomainTable
pchilanomate
parents: 51608
diff changeset
  2183
  return (jint) SystemDictionary::pd_cache_table()->removed_entries_count();
cdef4df6b0e7 8206424: Use locking for cleaning ProtectionDomainTable
pchilanomate
parents: 51608
diff changeset
  2184
WB_END
cdef4df6b0e7 8206424: Use locking for cleaning ProtectionDomainTable
pchilanomate
parents: 51608
diff changeset
  2185
53494
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2186
WB_ENTRY(jint, WB_AotLibrariesCount(JNIEnv* env, jobject o))
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2187
  jint result = 0;
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2188
#if INCLUDE_AOT
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2189
  result = (jint) AOTLoader::heaps_count();
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2190
#endif
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2191
  return result;
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2192
WB_END
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2193
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2194
#define CC (char*)
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2195
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2196
static JNINativeMethod methods[] = {
31392
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
  2197
  {CC"getObjectAddress0",                CC"(Ljava/lang/Object;)J", (void*)&WB_GetObjectAddress  },
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
  2198
  {CC"getObjectSize0",                   CC"(Ljava/lang/Object;)J", (void*)&WB_GetObjectSize     },
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
  2199
  {CC"isObjectInOldGen0",                CC"(Ljava/lang/Object;)Z", (void*)&WB_isObjectInOldGen  },
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
  2200
  {CC"getHeapOopSize",                   CC"()I",                   (void*)&WB_GetHeapOopSize    },
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
  2201
  {CC"getVMPageSize",                    CC"()I",                   (void*)&WB_GetVMPageSize     },
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
  2202
  {CC"getVMAllocationGranularity",       CC"()J",                   (void*)&WB_GetVMAllocationGranularity },
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
  2203
  {CC"getVMLargePageSize",               CC"()J",                   (void*)&WB_GetVMLargePageSize},
32625
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
  2204
  {CC"getHeapSpaceAlignment",            CC"()J",                   (void*)&WB_GetHeapSpaceAlignment},
40106
6be13673b3c1 8161604: TestNewSizeFlags fails with RuntimeException: max new size != MaxNewSize value
mchernov
parents: 39270
diff changeset
  2205
  {CC"getHeapAlignment",                 CC"()J",                   (void*)&WB_GetHeapAlignment},
31392
863f78743771 8079208: gc/g1/TestLargePageUseForAuxMemory.java fails due to not considering page allocation granularity for setup
tschatzl
parents: 31371
diff changeset
  2206
  {CC"isClassAlive0",                    CC"(Ljava/lang/String;)Z", (void*)&WB_IsClassAlive      },
51747
9bf5205655ee 8210559: ClassLoaderData Symbols can leak
coleenp
parents: 51698
diff changeset
  2207
  {CC"getSymbolRefcount",                CC"(Ljava/lang/String;)I", (void*)&WB_GetSymbolRefcount },
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2208
  {CC"parseCommandLine0",
27879
419385282044 8065783: DCMD parser fails to recognize one character argument when it's positioned last
jbachorik
parents: 27876
diff changeset
  2209
      CC"(Ljava/lang/String;C[Lsun/hotspot/parser/DiagnosticCommand;)[Ljava/lang/Object;",
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2210
      (void*) &WB_ParseCommandLine
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
  2211
  },
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2212
  {CC"addToBootstrapClassLoaderSearch0", CC"(Ljava/lang/String;)V",
27672
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
  2213
                                                      (void*)&WB_AddToBootstrapClassLoaderSearch},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2214
  {CC"addToSystemClassLoaderSearch0",    CC"(Ljava/lang/String;)V",
27672
d24adedd3655 8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents: 27642
diff changeset
  2215
                                                      (void*)&WB_AddToSystemClassLoaderSearch},
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19554
diff changeset
  2216
  {CC"getCompressedOopsMaxHeapSize", CC"()J",
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19554
diff changeset
  2217
      (void*)&WB_GetCompressedOopsMaxHeapSize},
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17134
diff changeset
  2218
  {CC"printHeapSizes",     CC"()V",                   (void*)&WB_PrintHeapSizes    },
21554
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
  2219
  {CC"runMemoryUnitTests", CC"()V",                   (void*)&WB_RunMemoryUnitTests},
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
  2220
  {CC"readFromNoaccessArea",CC"()V",                  (void*)&WB_ReadFromNoaccessArea},
20b1821f4fbd 8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents: 19986
diff changeset
  2221
  {CC"stressVirtualSpaceResize",CC"(JJJ)I",           (void*)&WB_StressVirtualSpaceResize},
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2222
#if INCLUDE_CDS
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2223
  {CC"getOffsetForName0", CC"(Ljava/lang/String;)I",  (void*)&WB_GetOffsetForName},
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents: 48105
diff changeset
  2224
#endif
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
  2225
#if INCLUDE_G1GC
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2226
  {CC"g1InConcurrentMark", CC"()Z",                   (void*)&WB_G1InConcurrentMark},
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2227
  {CC"g1IsHumongous0",      CC"(Ljava/lang/Object;)Z", (void*)&WB_G1IsHumongous     },
35206
aaf0f36a013a 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 35201
diff changeset
  2228
  {CC"g1BelongsToHumongousRegion0", CC"(J)Z",         (void*)&WB_G1BelongsToHumongousRegion},
aaf0f36a013a 8132723: Add tests which check that soft references to humongous objects should work correctly
kzhaldyb
parents: 35201
diff changeset
  2229
  {CC"g1BelongsToFreeRegion0", CC"(J)Z",              (void*)&WB_G1BelongsToFreeRegion},
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
  2230
  {CC"g1NumMaxRegions",    CC"()J",                   (void*)&WB_G1NumMaxRegions  },
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2231
  {CC"g1NumFreeRegions",   CC"()J",                   (void*)&WB_G1NumFreeRegions  },
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2232
  {CC"g1RegionSize",       CC"()I",                   (void*)&WB_G1RegionSize      },
27900
d24cd7a1ed38 8065579: WB method to start G1 concurrent mark cycle should be introduced
tschatzl
parents: 27685
diff changeset
  2233
  {CC"g1StartConcMarkCycle",       CC"()Z",           (void*)&WB_G1StartMarkCycle  },
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
  2234
  {CC"g1AuxiliaryMemoryUsage", CC"()Ljava/lang/management/MemoryUsage;",
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 28397
diff changeset
  2235
                                                      (void*)&WB_G1AuxiliaryMemoryUsage  },
59060
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
  2236
  {CC"g1ActiveMemoryNodeCount", CC"()I",              (void*)&WB_G1ActiveMemoryNodeCount },
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 59053
diff changeset
  2237
  {CC"g1MemoryNodeIds",    CC"()[I",                  (void*)&WB_G1MemoryNodeIds },
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
  2238
  {CC"g1GetMixedGCInfo",   CC"(I)[J",                 (void*)&WB_G1GetMixedGCInfo },
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
  2239
#endif // INCLUDE_G1GC
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
  2240
#if INCLUDE_G1GC || INCLUDE_PARALLELGC
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
  2241
  {CC"dramReservedStart",   CC"()J",                  (void*)&WB_DramReservedStart },
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
  2242
  {CC"dramReservedEnd",     CC"()J",                  (void*)&WB_DramReservedEnd },
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
  2243
  {CC"nvdimmReservedStart", CC"()J",                  (void*)&WB_NvdimmReservedStart },
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52580
diff changeset
  2244
  {CC"nvdimmReservedEnd",   CC"()J",                  (void*)&WB_NvdimmReservedEnd },
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 53116
diff changeset
  2245
#endif // INCLUDE_G1GC || INCLUDE_PARALLELGC
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
  2246
#if INCLUDE_PARALLELGC
32625
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
  2247
  {CC"psVirtualSpaceAlignment",CC"()J",               (void*)&WB_PSVirtualSpaceAlignment},
054d452e4e06 8081317: [NEWTEST] documented GC ratio tuning and new size options should be covered by regression tests
mchernov
parents: 32619
diff changeset
  2248
  {CC"psHeapGenerationAlignment",CC"()J",             (void*)&WB_PSHeapGenerationAlignment},
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49902
diff changeset
  2249
#endif
19554
3f21e829c7de 8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents: 19332
diff changeset
  2250
#if INCLUDE_NMT
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
  2251
  {CC"NMTMalloc",           CC"(J)J",                 (void*)&WB_NMTMalloc          },
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25716
diff changeset
  2252
  {CC"NMTMallocWithPseudoStack", CC"(JI)J",           (void*)&WB_NMTMallocWithPseudoStack},
53709
2b64ebacce93 8200109: NMT: diff_malloc_site assert(early->flags() == current->flags(), "Must be the same memory type")
zgu
parents: 53647
diff changeset
  2253
  {CC"NMTMallocWithPseudoStackAndType", CC"(JII)J",   (void*)&WB_NMTMallocWithPseudoStackAndType},
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
  2254
  {CC"NMTFree",             CC"(J)V",                 (void*)&WB_NMTFree            },
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
  2255
  {CC"NMTReserveMemory",    CC"(J)J",                 (void*)&WB_NMTReserveMemory   },
49034
57d0c33ad636 8198225: os::attempt_reserve_memory_at records memory as committed
stefank
parents: 49008
diff changeset
  2256
  {CC"NMTAttemptReserveMemoryAt",    CC"(JJ)J",       (void*)&WB_NMTAttemptReserveMemoryAt },
16666
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
  2257
  {CC"NMTCommitMemory",     CC"(JJ)V",                (void*)&WB_NMTCommitMemory    },
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
  2258
  {CC"NMTUncommitMemory",   CC"(JJ)V",                (void*)&WB_NMTUncommitMemory  },
da191c7e38d2 8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents: 16601
diff changeset
  2259
  {CC"NMTReleaseMemory",    CC"(JJ)V",                (void*)&WB_NMTReleaseMemory   },
27162
0a4a7276949b 8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents: 26938
diff changeset
  2260
  {CC"NMTChangeTrackingLevel", CC"()Z",               (void*)&WB_NMTChangeTrackingLevel},
27470
8dd8521d6897 8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents: 27469
diff changeset
  2261
  {CC"NMTGetHashSize",      CC"()I",                  (void*)&WB_NMTGetHashSize     },
59269
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
  2262
  {CC"NMTNewArena",         CC"(J)J",                 (void*)&WB_NMTNewArena        },
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
  2263
  {CC"NMTFreeArena",        CC"(J)V",                 (void*)&WB_NMTFreeArena       },
ac6f7738a0ee 8234270: [REDO] JDK-8204128 NMT might report incorrect numbers for Compiler area
zgu
parents: 59118
diff changeset
  2264
  {CC"NMTArenaMalloc",      CC"(JJ)V",                (void*)&WB_NMTArenaMalloc     },
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
  2265
#endif // INCLUDE_NMT
28199
b7fb20a745f7 8028595: WhiteBox API for stress testing of TieredCompilation
iignatyev
parents: 27923
diff changeset
  2266
  {CC"deoptimizeFrames",   CC"(Z)I",                  (void*)&WB_DeoptimizeFrames  },
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
  2267
  {CC"deoptimizeAll",      CC"()V",                   (void*)&WB_DeoptimizeAll     },
36321
d3618f1ff1bb 8148159: [TESTBUG] TestCompilerDirectivesCompatibility tests fails on non-tiered server VMs
neliasso
parents: 36304
diff changeset
  2268
  {CC"deoptimizeMethod0",   CC"(Ljava/lang/reflect/Executable;Z)I",
d3618f1ff1bb 8148159: [TESTBUG] TestCompilerDirectivesCompatibility tests fails on non-tiered server VMs
neliasso
parents: 36304
diff changeset
  2269
                                                      (void*)&WB_DeoptimizeMethod  },
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2270
  {CC"isMethodCompiled0",   CC"(Ljava/lang/reflect/Executable;Z)Z",
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
  2271
                                                      (void*)&WB_IsMethodCompiled  },
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2272
  {CC"isMethodCompilable0", CC"(Ljava/lang/reflect/Executable;IZ)Z",
15621
b094c56bba84 8006683: Add WhiteBox API to testing of compiler
iignatyev
parents: 15484
diff changeset
  2273
                                                      (void*)&WB_IsMethodCompilable},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2274
  {CC"isMethodQueuedForCompilation0",
17015
92390f57e8b1 8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents: 16694
diff changeset
  2275
      CC"(Ljava/lang/reflect/Executable;)Z",          (void*)&WB_IsMethodQueuedForCompilation},
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
  2276
  {CC"isIntrinsicAvailable0",
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
  2277
      CC"(Ljava/lang/reflect/Executable;Ljava/lang/reflect/Executable;I)Z",
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 31608
diff changeset
  2278
                                                      (void*)&WB_IsIntrinsicAvailable},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2279
  {CC"makeMethodNotCompilable0",
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
  2280
      CC"(Ljava/lang/reflect/Executable;IZ)V",        (void*)&WB_MakeMethodNotCompilable},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2281
  {CC"testSetDontInlineMethod0",
17015
92390f57e8b1 8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents: 16694
diff changeset
  2282
      CC"(Ljava/lang/reflect/Executable;Z)Z",         (void*)&WB_TestSetDontInlineMethod},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2283
  {CC"getMethodCompilationLevel0",
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
  2284
      CC"(Ljava/lang/reflect/Executable;Z)I",         (void*)&WB_GetMethodCompilationLevel},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2285
  {CC"getMethodEntryBci0",
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
  2286
      CC"(Ljava/lang/reflect/Executable;)I",          (void*)&WB_GetMethodEntryBci},
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
  2287
  {CC"getCompileQueueSize",
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
  2288
      CC"(I)I",                                       (void*)&WB_GetCompileQueueSize},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2289
  {CC"testSetForceInlineMethod0",
17015
92390f57e8b1 8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents: 16694
diff changeset
  2290
      CC"(Ljava/lang/reflect/Executable;Z)Z",         (void*)&WB_TestSetForceInlineMethod},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2291
  {CC"enqueueMethodForCompilation0",
19332
ee4c8c2af356 8022832: Add WB APIs for OSR compilation
iignatyev
parents: 18069
diff changeset
  2292
      CC"(Ljava/lang/reflect/Executable;II)Z",        (void*)&WB_EnqueueMethodForCompilation},
38024
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  2293
  {CC"enqueueInitializerForCompilation0",
84095353e30f 8153514: Whitebox API should allow compilation of <clinit>
thartmann
parents: 37289
diff changeset
  2294
      CC"(Ljava/lang/Class;I)Z",                      (void*)&WB_EnqueueInitializerForCompilation},
54736
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  2295
  {CC"markMethodProfiled",
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54678
diff changeset
  2296
      CC"(Ljava/lang/reflect/Executable;)V",          (void*)&WB_MarkMethodProfiled},
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2297
  {CC"clearMethodState0",
17015
92390f57e8b1 8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents: 16694
diff changeset
  2298
      CC"(Ljava/lang/reflect/Executable;)V",          (void*)&WB_ClearMethodState},
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  2299
  {CC"lockCompilation",    CC"()V",                   (void*)&WB_LockCompilation},
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  2300
  {CC"unlockCompilation",  CC"()V",                   (void*)&WB_UnlockCompilation},
33069
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  2301
  {CC"matchesMethod",
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  2302
      CC"(Ljava/lang/reflect/Executable;Ljava/lang/String;)I",
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 32726
diff changeset
  2303
                                                      (void*)&WB_MatchesMethod},
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  2304
  {CC"matchesInline",
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  2305
      CC"(Ljava/lang/reflect/Executable;Ljava/lang/String;)I",
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  2306
                                                      (void*)&WB_MatchesInline},
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  2307
  {CC"shouldPrintAssembly",
36321
d3618f1ff1bb 8148159: [TESTBUG] TestCompilerDirectivesCompatibility tests fails on non-tiered server VMs
neliasso
parents: 36304
diff changeset
  2308
        CC"(Ljava/lang/reflect/Executable;I)Z",
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  2309
                                                        (void*)&WB_ShouldPrintAssembly},
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33198
diff changeset
  2310
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  2311
  {CC"isConstantVMFlag",   CC"(Ljava/lang/String;)Z", (void*)&WB_IsConstantVMFlag},
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27162
diff changeset
  2312
  {CC"isLockedVMFlag",     CC"(Ljava/lang/String;)Z", (void*)&WB_IsLockedVMFlag},
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2313
  {CC"setBooleanVMFlag",   CC"(Ljava/lang/String;Z)V",(void*)&WB_SetBooleanVMFlag},
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  2314
  {CC"setIntVMFlag",       CC"(Ljava/lang/String;J)V",(void*)&WB_SetIntVMFlag},
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  2315
  {CC"setUintVMFlag",      CC"(Ljava/lang/String;J)V",(void*)&WB_SetUintVMFlag},
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2316
  {CC"setIntxVMFlag",      CC"(Ljava/lang/String;J)V",(void*)&WB_SetIntxVMFlag},
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2317
  {CC"setUintxVMFlag",     CC"(Ljava/lang/String;J)V",(void*)&WB_SetUintxVMFlag},
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2318
  {CC"setUint64VMFlag",    CC"(Ljava/lang/String;J)V",(void*)&WB_SetUint64VMFlag},
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  2319
  {CC"setSizeTVMFlag",     CC"(Ljava/lang/String;J)V",(void*)&WB_SetSizeTVMFlag},
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2320
  {CC"setDoubleVMFlag",    CC"(Ljava/lang/String;D)V",(void*)&WB_SetDoubleVMFlag},
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2321
  {CC"setStringVMFlag",    CC"(Ljava/lang/String;Ljava/lang/String;)V",
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2322
                                                      (void*)&WB_SetStringVMFlag},
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2323
  {CC"getBooleanVMFlag",   CC"(Ljava/lang/String;)Ljava/lang/Boolean;",
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2324
                                                      (void*)&WB_GetBooleanVMFlag},
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  2325
  {CC"getIntVMFlag",       CC"(Ljava/lang/String;)Ljava/lang/Long;",
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  2326
                                                      (void*)&WB_GetIntVMFlag},
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  2327
  {CC"getUintVMFlag",      CC"(Ljava/lang/String;)Ljava/lang/Long;",
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  2328
                                                      (void*)&WB_GetUintVMFlag},
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2329
  {CC"getIntxVMFlag",      CC"(Ljava/lang/String;)Ljava/lang/Long;",
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2330
                                                      (void*)&WB_GetIntxVMFlag},
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2331
  {CC"getUintxVMFlag",     CC"(Ljava/lang/String;)Ljava/lang/Long;",
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2332
                                                      (void*)&WB_GetUintxVMFlag},
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2333
  {CC"getUint64VMFlag",    CC"(Ljava/lang/String;)Ljava/lang/Long;",
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2334
                                                      (void*)&WB_GetUint64VMFlag},
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  2335
  {CC"getSizeTVMFlag",     CC"(Ljava/lang/String;)Ljava/lang/Long;",
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 25716
diff changeset
  2336
                                                      (void*)&WB_GetSizeTVMFlag},
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2337
  {CC"getDoubleVMFlag",    CC"(Ljava/lang/String;)Ljava/lang/Double;",
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2338
                                                      (void*)&WB_GetDoubleVMFlag},
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2339
  {CC"getStringVMFlag",    CC"(Ljava/lang/String;)Ljava/lang/String;",
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2340
                                                      (void*)&WB_GetStringVMFlag},
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24671
diff changeset
  2341
  {CC"isInStringTable",    CC"(Ljava/lang/String;)Z", (void*)&WB_IsInStringTable  },
16601
7c6db0c8952f 8009763: Add WB test for String.intern()
mgerdin
parents: 15621
diff changeset
  2342
  {CC"fullGC",   CC"()V",                             (void*)&WB_FullGC },
26183
bbe259d3c8bc 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 26157
diff changeset
  2343
  {CC"youngGC",  CC"()V",                             (void*)&WB_YoungGC },
17824
24dc83d7c1d7 8013726: runtime/memory/ReserveMemory.java fails due to 'assert(bytes % os::vm_allocation_granularity() == 0) failed: reserve block size'
mikael
parents: 17322
diff changeset
  2344
  {CC"readReservedMemory", CC"()V",                   (void*)&WB_ReadReservedMemory },
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  2345
  {CC"allocateMetaspace",
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  2346
     CC"(Ljava/lang/ClassLoader;J)J",                 (void*)&WB_AllocateMetaspace },
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  2347
  {CC"freeMetaspace",
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  2348
     CC"(Ljava/lang/ClassLoader;JJ)V",                (void*)&WB_FreeMetaspace },
26938
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  2349
  {CC"incMetaspaceCapacityUntilGC", CC"(J)J",         (void*)&WB_IncMetaspaceCapacityUntilGC },
e0b35f8104a7 8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents: 26846
diff changeset
  2350
  {CC"metaspaceCapacityUntilGC", CC"()J",             (void*)&WB_MetaspaceCapacityUntilGC },
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46632
diff changeset
  2351
  {CC"metaspaceReserveAlignment", CC"()J",            (void*)&WB_MetaspaceReserveAlignment },
23493
170c77c1103a 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents: 22795
diff changeset
  2352
  {CC"getCPUFeatures",     CC"()Ljava/lang/String;",  (void*)&WB_GetCPUFeatures     },
30156
3d95cca71ace 8043225: Make whitebox API functions more stable
iignatyev
parents: 29698
diff changeset
  2353
  {CC"getNMethod0",         CC"(Ljava/lang/reflect/Executable;Z)[Ljava/lang/Object;",
23499
9d5b7480c9f4 8038240: new WB API to get nmethod
iignatyev
parents: 23493
diff changeset
  2354
                                                      (void*)&WB_GetNMethod         },
30205
0bff2f15867f 8075214: SIGSEGV in nmethod sweeping
thartmann
parents: 29698
diff changeset
  2355
  {CC"forceNMethodSweep",  CC"()V",                   (void*)&WB_ForceNMethodSweep  },
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  2356
  {CC"allocateCodeBlob",   CC"(II)J",                 (void*)&WB_AllocateCodeBlob   },
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  2357
  {CC"freeCodeBlob",       CC"(J)V",                  (void*)&WB_FreeCodeBlob       },
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27480
diff changeset
  2358
  {CC"getCodeHeapEntries", CC"(I)[Ljava/lang/Object;",(void*)&WB_GetCodeHeapEntries },
27701
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  2359
  {CC"getCompilationActivityMode",
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  2360
                           CC"()I",                   (void*)&WB_GetCompilationActivityMode},
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  2361
  {CC"getMethodData0",     CC"(Ljava/lang/reflect/Executable;)J",
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  2362
                                                      (void*)&WB_GetMethodData      },
27701
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27642
diff changeset
  2363
  {CC"getCodeBlob",        CC"(J)[Ljava/lang/Object;",(void*)&WB_GetCodeBlob        },
24671
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  2364
  {CC"getThreadStackSize", CC"()J",                   (void*)&WB_GetThreadStackSize },
0ebd6fe70309 8032970: Add stack size check methods to WhiteBox API
iignatyev
parents: 24446
diff changeset
  2365
  {CC"getThreadRemainingStackSize", CC"()J",          (void*)&WB_GetThreadRemainingStackSize },
46404
ae62ba99a1a7 8165896: Use "open" flag from JVM_DefineModule to export all module packages
rprotacio
parents: 46384
diff changeset
  2366
  {CC"DefineModule",       CC"(Ljava/lang/Object;ZLjava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V",
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2367
                                                      (void*)&WB_DefineModule },
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2368
  {CC"AddModuleExports",   CC"(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Object;)V",
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2369
                                                      (void*)&WB_AddModuleExports },
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2370
  {CC"AddReadsModule",     CC"(Ljava/lang/Object;Ljava/lang/Object;)V",
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2371
                                                      (void*)&WB_AddReadsModule },
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2372
  {CC"AddModuleExportsToAllUnnamed", CC"(Ljava/lang/Object;Ljava/lang/String;)V",
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2373
                                                      (void*)&WB_AddModuleExportsToAllUnnamed },
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2374
  {CC"AddModuleExportsToAll", CC"(Ljava/lang/Object;Ljava/lang/String;)V",
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2375
                                                      (void*)&WB_AddModuleExportsToAll },
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27923
diff changeset
  2376
  {CC"assertMatchingSafepointCalls", CC"(ZZ)V",       (void*)&WB_AssertMatchingSafepointCalls },
58409
a595e67d6683 8184732: Deadlock detection improvements for 'special' locks
coleenp
parents: 58375
diff changeset
  2377
  {CC"assertSpecialLock",  CC"(ZZ)V",                 (void*)&WB_AssertSpecialLock },
31608
b5cb9a07591a 8080511: Refresh of jimage support
jfdenise
parents: 31592
diff changeset
  2378
  {CC"isMonitorInflated0", CC"(Ljava/lang/Object;)Z", (void*)&WB_IsMonitorInflated  },
28393
18701d7781e7 8068272: Extend WhiteBox API with methods that check monitor state and force safepoint
fzhinkin
parents: 28203
diff changeset
  2379
  {CC"forceSafepoint",     CC"()V",                   (void*)&WB_ForceSafepoint     },
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33069
diff changeset
  2380
  {CC"getConstantPool0",   CC"(Ljava/lang/Class;)J",  (void*)&WB_GetConstantPool    },
36304
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  2381
  {CC"getConstantPoolCacheIndexTag0", CC"()I",  (void*)&WB_GetConstantPoolCacheIndexTag},
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  2382
  {CC"getConstantPoolCacheLength0", CC"(Ljava/lang/Class;)I",  (void*)&WB_GetConstantPoolCacheLength},
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  2383
  {CC"remapInstructionOperandFromCPCache0",
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  2384
      CC"(Ljava/lang/Class;I)I",                      (void*)&WB_ConstantPoolRemapInstructionOperandFromCache},
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  2385
  {CC"encodeConstantPoolIndyIndex0",
3a742df23055 8141616: Add new methods to the java Whitebox API
kshefov
parents: 35943
diff changeset
  2386
      CC"(I)I",                      (void*)&WB_ConstantPoolEncodeIndyIndex},
29476
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2387
  {CC"getMethodBooleanOption",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2388
      CC"(Ljava/lang/reflect/Executable;Ljava/lang/String;)Ljava/lang/Boolean;",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2389
                                                      (void*)&WB_GetMethodBooleaneOption},
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2390
  {CC"getMethodIntxOption",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2391
      CC"(Ljava/lang/reflect/Executable;Ljava/lang/String;)Ljava/lang/Long;",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2392
                                                      (void*)&WB_GetMethodIntxOption},
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2393
  {CC"getMethodUintxOption",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2394
      CC"(Ljava/lang/reflect/Executable;Ljava/lang/String;)Ljava/lang/Long;",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2395
                                                      (void*)&WB_GetMethodUintxOption},
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2396
  {CC"getMethodDoubleOption",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2397
      CC"(Ljava/lang/reflect/Executable;Ljava/lang/String;)Ljava/lang/Double;",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2398
                                                      (void*)&WB_GetMethodDoubleOption},
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2399
  {CC"getMethodStringOption",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2400
      CC"(Ljava/lang/reflect/Executable;Ljava/lang/String;)Ljava/lang/String;",
7a8537835aec 8074980: add WhiteBox API to get a flag value for a method
iignatyev
parents: 28397
diff changeset
  2401
                                                      (void*)&WB_GetMethodStringOption},
52030
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  2402
  {CC"getDefaultArchivePath",             CC"()Ljava/lang/String;",
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  2403
                                                      (void*)&WB_GetDefaultArchivePath},
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51959
diff changeset
  2404
  {CC"isSharingEnabled",   CC"()Z",                   (void*)&WB_IsSharingEnabled},
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 31236
diff changeset
  2405
  {CC"isShared",           CC"(Ljava/lang/Object;)Z", (void*)&WB_IsShared },
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36321
diff changeset
  2406
  {CC"isSharedClass",      CC"(Ljava/lang/Class;)Z",  (void*)&WB_IsSharedClass },
31362
8957ccbb5821 8098821: Crash in system dictionary initialization with shared strings
coleenp
parents: 31345
diff changeset
  2407
  {CC"areSharedStringsIgnored",           CC"()Z",    (void*)&WB_AreSharedStringsIgnored },
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46779
diff changeset
  2408
  {CC"getResolvedReferences", CC"(Ljava/lang/Class;)Ljava/lang/Object;", (void*)&WB_GetResolvedReferences},
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  2409
  {CC"linkClass",          CC"(Ljava/lang/Class;)V",  (void*)&WB_LinkClass},
47805
506775a4f446 8189840: CheckCachedResolvedReferencesApp has no cached resolved references
jiangli
parents: 47678
diff changeset
  2410
  {CC"areOpenArchiveHeapObjectsMapped",   CC"()Z",    (void*)&WB_AreOpenArchiveHeapObjectsMapped},
46779
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46746
diff changeset
  2411
  {CC"isCDSIncludedInVmBuild",            CC"()Z",    (void*)&WB_IsCDSIncludedInVmBuild },
51214
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 50793
diff changeset
  2412
  {CC"isJFRIncludedInVmBuild",            CC"()Z",    (void*)&WB_IsJFRIncludedInVmBuild },
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  2413
  {CC"isJavaHeapArchiveSupported",        CC"()Z",    (void*)&WB_IsJavaHeapArchiveSupported },
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54847
diff changeset
  2414
  {CC"cdsMemoryMappingFailed",            CC"()Z",    (void*)&WB_CDSMemoryMappingFailed },
49008
d777541fceba 8191375: Add high-level jtreg VMProps to filter out CDS tests
iklam
parents: 48988
diff changeset
  2415
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36616
diff changeset
  2416
  {CC"clearInlineCaches0",  CC"(Z)V",                 (void*)&WB_ClearInlineCaches },
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47805
diff changeset
  2417
  {CC"handshakeWalkStack", CC"(Ljava/lang/Thread;Z)I", (void*)&WB_HandshakeWalkStack },
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2418
  {CC"addCompilerDirective",    CC"(Ljava/lang/String;)I",
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 36321
diff changeset
  2419
                                                      (void*)&WB_AddCompilerDirective },
49630
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
  2420
  {CC"removeCompilerDirective",   CC"(I)V",           (void*)&WB_RemoveCompilerDirective },
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
  2421
  {CC"isGCSupported",             CC"(I)Z",           (void*)&WB_IsGCSupported},
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
  2422
  {CC"isGCSelected",              CC"(I)Z",           (void*)&WB_IsGCSelected},
2f1b308b4469 8199927: Make WhiteBox more GC agnostic
pliden
parents: 49594
diff changeset
  2423
  {CC"isGCSelectedErgonomically", CC"()Z",            (void*)&WB_IsGCSelectedErgonomically},
46384
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
  2424
  {CC"supportsConcurrentGCPhaseControl", CC"()Z",     (void*)&WB_SupportsConcurrentGCPhaseControl},
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
  2425
  {CC"requestConcurrentGCPhase0", CC"(Ljava/lang/String;)Z",
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46354
diff changeset
  2426
                                                      (void*)&WB_RequestConcurrentGCPhase},
47264
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2427
  {CC"checkLibSpecifiesNoexecstack", CC"(Ljava/lang/String;)Z",
8b5ed0358b3a 8187045: [linux] Not all libraries in the VM are linked with -z,noexecstack
goetz
parents: 47216
diff changeset
  2428
                                                      (void*)&WB_CheckLibSpecifiesNoexecstack},
47908
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2429
  {CC"isContainerized",           CC"()Z",            (void*)&WB_IsContainerized },
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2430
  {CC"printOsInfo",               CC"()V",            (void*)&WB_PrintOsInfo },
48975
2c35fd3c5789 8193373: Cleanup ElfFile and family
zgu
parents: 48969
diff changeset
  2431
  {CC"disableElfSectionCache",    CC"()V",            (void*)&WB_DisableElfSectionCache },
54511
fbfcebad8e66 8221393: ResolvedMethodTable too small for StackWalking applications
stefank
parents: 53987
diff changeset
  2432
  {CC"resolvedMethodItemsCount",  CC"()J",            (void*)&WB_ResolvedMethodItemsCount },
51610
cdef4df6b0e7 8206424: Use locking for cleaning ProtectionDomainTable
pchilanomate
parents: 51608
diff changeset
  2433
  {CC"protectionDomainRemovedCount",   CC"()I",       (void*)&WB_ProtectionDomainRemovedCount },
53494
8fd43dacaef7 8216180: [AOT] compiler/intrinsics/bigInteger/TestMulAdd.java crashed with AOT enabled
iignatyev
parents: 53118
diff changeset
  2434
  {CC"aotLibrariesCount", CC"()I",                    (void*)&WB_AotLibrariesCount },
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2435
};
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2436
47908
d6d00f785f39 8189762: [TESTBUG] Create tests for JDK-8146115 container awareness and resource configuration
mseledtsov
parents: 47881
diff changeset
  2437
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2438
#undef CC
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2439
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2440
JVM_ENTRY(void, JVM_RegisterWhiteBoxMethods(JNIEnv* env, jclass wbclass))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2441
  {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2442
    if (WhiteBoxAPI) {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2443
      // Make sure that wbclass is loaded by the null classloader
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  2444
      InstanceKlass* ik = InstanceKlass::cast(JNIHandles::resolve(wbclass)->klass());
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46296
diff changeset
  2445
      Handle loader(THREAD, ik->class_loader());
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2446
      if (loader.is_null()) {
26844
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2447
        WhiteBox::register_methods(env, wbclass, thread, methods, sizeof(methods) / sizeof(methods[0]));
80398753ed99 8057752: WhiteBox extension support for testing
sjohanss
parents: 26183
diff changeset
  2448
        WhiteBox::set_used();
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2449
      }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2450
    }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2451
  }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
  2452
JVM_END