author | drchase |
Wed, 26 Nov 2014 20:38:10 -0500 | |
changeset 27710 | df32fbcd3215 |
parent 27694 | 543f6042c268 |
parent 27701 | c6b49b72dc61 |
child 27917 | c5937f7b4e8b |
child 27883 | 3179632c8f66 |
child 27902 | fe89161ff160 |
permissions | -rw-r--r-- |
12095 | 1 |
/* |
23499 | 2 |
* Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. |
12095 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "precompiled.hpp" |
|
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 |
|
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
27434
diff
changeset
|
29 |
#include "classfile/classLoaderData.hpp" |
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
27434
diff
changeset
|
30 |
#include "classfile/stringTable.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
24921
diff
changeset
|
31 |
#include "code/codeCache.hpp" |
27694 | 32 |
#include "jvmtifiles/jvmtiEnv.hpp" |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
33 |
#include "memory/metadataFactory.hpp" |
12095 | 34 |
#include "memory/universe.hpp" |
35 |
#include "oops/oop.inline.hpp" |
|
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
27434
diff
changeset
|
36 |
#include "prims/wbtestmethods/parserTests.hpp" |
12095 | 37 |
#include "prims/whitebox.hpp" |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
38 |
#include "runtime/arguments.hpp" |
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
27434
diff
changeset
|
39 |
#include "runtime/compilationPolicy.hpp" |
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
40 |
#include "runtime/deoptimization.hpp" |
12095 | 41 |
#include "runtime/interfaceSupport.hpp" |
42 |
#include "runtime/os.hpp" |
|
27685 | 43 |
#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
|
44 |
#include "runtime/thread.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
24921
diff
changeset
|
45 |
#include "runtime/vm_version.hpp" |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
46 |
#include "utilities/array.hpp" |
12095 | 47 |
#include "utilities/debug.hpp" |
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
27434
diff
changeset
|
48 |
#include "utilities/exceptions.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
49 |
#include "utilities/macros.hpp" |
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
50 |
#if INCLUDE_ALL_GCS |
26183
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
51 |
#include "gc_implementation/parallelScavenge/parallelScavengeHeap.inline.hpp" |
12095 | 52 |
#include "gc_implementation/g1/concurrentMark.hpp" |
53 |
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp" |
|
54 |
#include "gc_implementation/g1/heapRegionRemSet.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
55 |
#endif // INCLUDE_ALL_GCS |
25946 | 56 |
#if INCLUDE_NMT |
57 |
#include "services/mallocSiteTable.hpp" |
|
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
58 |
#include "services/memTracker.hpp" |
25946 | 59 |
#include "utilities/nativeCallStack.hpp" |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
60 |
#endif // INCLUDE_NMT |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
61 |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
62 |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23848
diff
changeset
|
63 |
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23848
diff
changeset
|
64 |
|
21554
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
65 |
#define SIZE_T_MAX_VALUE ((size_t) -1) |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
66 |
|
12095 | 67 |
bool WhiteBox::_used = false; |
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
68 |
volatile bool WhiteBox::compilation_locked = false; |
12095 | 69 |
|
70 |
WB_ENTRY(jlong, WB_GetObjectAddress(JNIEnv* env, jobject o, jobject obj)) |
|
71 |
return (jlong)(void*)JNIHandles::resolve(obj); |
|
72 |
WB_END |
|
73 |
||
74 |
WB_ENTRY(jint, WB_GetHeapOopSize(JNIEnv* env, jobject o)) |
|
75 |
return heapOopSize; |
|
76 |
WB_END |
|
77 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
78 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
79 |
class WBIsKlassAliveClosure : public KlassClosure { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
80 |
Symbol* _name; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
81 |
bool _found; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
82 |
public: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
83 |
WBIsKlassAliveClosure(Symbol* name) : _name(name), _found(false) {} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
84 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
85 |
void do_klass(Klass* k) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
86 |
if (_found) return; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
87 |
Symbol* ksym = k->name(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
88 |
if (ksym->fast_compare(_name) == 0) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
89 |
_found = true; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
90 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
91 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
92 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
93 |
bool found() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
94 |
return _found; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
95 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
96 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
97 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
98 |
WB_ENTRY(jboolean, WB_IsClassAlive(JNIEnv* env, jobject target, jstring name)) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
99 |
Handle h_name = JNIHandles::resolve(name); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
100 |
if (h_name.is_null()) return false; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
101 |
Symbol* sym = java_lang_String::as_symbol(h_name, CHECK_false); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
102 |
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
|
103 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
104 |
WBIsKlassAliveClosure closure(sym); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
105 |
ClassLoaderDataGraph::classes_do(&closure); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
106 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
107 |
return closure.found(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
108 |
WB_END |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
109 |
|
27672
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
110 |
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
|
111 |
#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
|
112 |
ResourceMark rm; |
a165e756e90d
8065346: WB_AddToBootstrapClassLoaderSearch calls JvmtiEnv::create_a_jvmti when not in _thread_in_vm state
iklam
parents:
27672
diff
changeset
|
113 |
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
|
114 |
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
|
115 |
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
|
116 |
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
|
117 |
#endif |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
118 |
} |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
119 |
WB_END |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
120 |
|
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
121 |
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
|
122 |
#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
|
123 |
ResourceMark rm; |
a165e756e90d
8065346: WB_AddToBootstrapClassLoaderSearch calls JvmtiEnv::create_a_jvmti when not in _thread_in_vm state
iklam
parents:
27672
diff
changeset
|
124 |
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
|
125 |
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
|
126 |
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
|
127 |
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
|
128 |
#endif |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
129 |
} |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
130 |
WB_END |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
131 |
|
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
132 |
|
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
133 |
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
|
134 |
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
|
135 |
} |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
136 |
WB_END |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
137 |
|
17322
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
138 |
WB_ENTRY(void, WB_PrintHeapSizes(JNIEnv* env, jobject o)) { |
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
139 |
CollectorPolicy * p = Universe::heap()->collector_policy(); |
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
140 |
gclog_or_tty->print_cr("Minimum heap "SIZE_FORMAT" Initial heap " |
22765
cae8833b9e29
8028254: gc/arguments/TestMinInitialErgonomics.java failed with unexpected initial heap size
ehelin
parents:
21571
diff
changeset
|
141 |
SIZE_FORMAT" Maximum heap "SIZE_FORMAT" Space alignment "SIZE_FORMAT" Heap alignment "SIZE_FORMAT, |
17322
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
142 |
p->min_heap_byte_size(), p->initial_heap_byte_size(), p->max_heap_byte_size(), |
21561
c619b1cb4554
8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents:
19986
diff
changeset
|
143 |
p->space_alignment(), p->heap_alignment()); |
17322
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
144 |
} |
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
145 |
WB_END |
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
146 |
|
21554
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
147 |
#ifndef PRODUCT |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
148 |
// Forward declaration |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
149 |
void TestReservedSpace_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
150 |
void TestReserveMemorySpecial_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
151 |
void TestVirtualSpace_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
152 |
void TestMetaspaceAux_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
153 |
#endif |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
154 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
155 |
WB_ENTRY(void, WB_RunMemoryUnitTests(JNIEnv* env, jobject o)) |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
156 |
#ifndef PRODUCT |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
157 |
TestReservedSpace_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
158 |
TestReserveMemorySpecial_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
159 |
TestVirtualSpace_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
160 |
TestMetaspaceAux_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
161 |
#endif |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
162 |
WB_END |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
163 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
164 |
WB_ENTRY(void, WB_ReadFromNoaccessArea(JNIEnv* env, jobject o)) |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
165 |
size_t granularity = os::vm_allocation_granularity(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
166 |
ReservedHeapSpace rhs(100 * granularity, granularity, false, NULL); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
167 |
VirtualSpace vs; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
168 |
vs.initialize(rhs, 50 * granularity); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
169 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
170 |
//Check if constraints are complied |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
171 |
if (!( UseCompressedOops && rhs.base() != NULL && |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
172 |
Universe::narrow_oop_base() != NULL && |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
173 |
Universe::narrow_oop_use_implicit_null_checks() )) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
174 |
tty->print_cr("WB_ReadFromNoaccessArea method is useless:\n " |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
175 |
"\tUseCompressedOops is %d\n" |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
176 |
"\trhs.base() is "PTR_FORMAT"\n" |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
177 |
"\tUniverse::narrow_oop_base() is "PTR_FORMAT"\n" |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
178 |
"\tUniverse::narrow_oop_use_implicit_null_checks() is %d", |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
179 |
UseCompressedOops, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
180 |
rhs.base(), |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
181 |
Universe::narrow_oop_base(), |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
182 |
Universe::narrow_oop_use_implicit_null_checks()); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
183 |
return; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
184 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
185 |
tty->print_cr("Reading from no access area... "); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
186 |
tty->print_cr("*(vs.low_boundary() - rhs.noaccess_prefix() / 2 ) = %c", |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
187 |
*(vs.low_boundary() - rhs.noaccess_prefix() / 2 )); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
188 |
WB_END |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
189 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
190 |
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
|
191 |
size_t magnitude, size_t iterations) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
192 |
size_t granularity = os::vm_allocation_granularity(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
193 |
ReservedHeapSpace rhs(reserved_space_size * granularity, granularity, false, NULL); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
194 |
VirtualSpace vs; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
195 |
if (!vs.initialize(rhs, 0)) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
196 |
tty->print_cr("Failed to initialize VirtualSpace. Can't proceed."); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
197 |
return 3; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
198 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
199 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
200 |
long seed = os::random(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
201 |
tty->print_cr("Random seed is %ld", seed); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
202 |
os::init_random(seed); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
203 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
204 |
for (size_t i = 0; i < iterations; i++) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
205 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
206 |
// Whether we will shrink or grow |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
207 |
bool shrink = os::random() % 2L == 0; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
208 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
209 |
// Get random delta to resize virtual space |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
210 |
size_t delta = (size_t)os::random() % magnitude; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
211 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
212 |
// 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
|
213 |
if (shrink && vs.committed_size() < delta) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
214 |
shrink = false; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
215 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
216 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
217 |
// Resizing by delta |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
218 |
if (shrink) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
219 |
vs.shrink_by(delta); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
220 |
} else { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
221 |
// If expanding fails expand_by will silently return false |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
222 |
vs.expand_by(delta, true); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
223 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
224 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
225 |
return 0; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
226 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
227 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
228 |
WB_ENTRY(jint, WB_StressVirtualSpaceResize(JNIEnv* env, jobject o, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
229 |
jlong reserved_space_size, jlong magnitude, jlong iterations)) |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
230 |
tty->print_cr("reservedSpaceSize="JLONG_FORMAT", magnitude="JLONG_FORMAT", " |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
231 |
"iterations="JLONG_FORMAT"\n", reserved_space_size, magnitude, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
232 |
iterations); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
233 |
if (reserved_space_size < 0 || magnitude < 0 || iterations < 0) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
234 |
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
|
235 |
return 1; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
236 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
237 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
238 |
// 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
|
239 |
// 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
|
240 |
if (sizeof(size_t) < sizeof(jlong)) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
241 |
jlong size_t_max_value = (jlong) SIZE_T_MAX_VALUE; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
242 |
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
|
243 |
|| iterations > size_t_max_value) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
244 |
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
|
245 |
return 2; |
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 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
248 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
249 |
return wb_stress_virtual_space_resize((size_t) reserved_space_size, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
250 |
(size_t) magnitude, (size_t) iterations); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
251 |
WB_END |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
252 |
|
26183
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
253 |
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
|
254 |
oop p = JNIHandles::resolve(obj); |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
255 |
#if INCLUDE_ALL_GCS |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
256 |
if (UseG1GC) { |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
257 |
G1CollectedHeap* g1 = G1CollectedHeap::heap(); |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
258 |
const HeapRegion* hr = g1->heap_region_containing(p); |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
259 |
if (hr == NULL) { |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
260 |
return false; |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
261 |
} |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
262 |
return !(hr->is_young()); |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
263 |
} else if (UseParallelGC) { |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
264 |
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
|
265 |
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
|
266 |
} |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
267 |
#endif // INCLUDE_ALL_GCS |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
268 |
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
|
269 |
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
|
270 |
WB_END |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
271 |
|
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
272 |
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
|
273 |
oop p = JNIHandles::resolve(obj); |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
274 |
return p->size() * HeapWordSize; |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
275 |
WB_END |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
276 |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
277 |
#if INCLUDE_ALL_GCS |
12095 | 278 |
WB_ENTRY(jboolean, WB_G1IsHumongous(JNIEnv* env, jobject o, jobject obj)) |
279 |
G1CollectedHeap* g1 = G1CollectedHeap::heap(); |
|
280 |
oop result = JNIHandles::resolve(obj); |
|
281 |
const HeapRegion* hr = g1->heap_region_containing(result); |
|
26846
7d4376f8560e
8058495: G1: normalize names for isHumongous() and friends
tonyp
parents:
26844
diff
changeset
|
282 |
return hr->is_humongous(); |
12095 | 283 |
WB_END |
284 |
||
285 |
WB_ENTRY(jlong, WB_G1NumFreeRegions(JNIEnv* env, jobject o)) |
|
286 |
G1CollectedHeap* g1 = G1CollectedHeap::heap(); |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
25960
diff
changeset
|
287 |
size_t nr = g1->num_free_regions(); |
12095 | 288 |
return (jlong)nr; |
289 |
WB_END |
|
290 |
||
291 |
WB_ENTRY(jboolean, WB_G1InConcurrentMark(JNIEnv* env, jobject o)) |
|
292 |
G1CollectedHeap* g1 = G1CollectedHeap::heap(); |
|
293 |
ConcurrentMark* cm = g1->concurrent_mark(); |
|
294 |
return cm->concurrent_marking_in_progress(); |
|
295 |
WB_END |
|
296 |
||
297 |
WB_ENTRY(jint, WB_G1RegionSize(JNIEnv* env, jobject o)) |
|
298 |
return (jint)HeapRegion::GrainBytes; |
|
299 |
WB_END |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
300 |
#endif // INCLUDE_ALL_GCS |
12095 | 301 |
|
19554
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
302 |
#if INCLUDE_NMT |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
303 |
// 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
|
304 |
// NMT picks it up correctly |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
305 |
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
|
306 |
jlong addr = 0; |
27469
34008cfb8994
8058251: assert(_count > 0) failed: Negative counter when running runtime/NMT/MallocTrackingVerify.java
ctornqvi
parents:
27434
diff
changeset
|
307 |
addr = (jlong)(uintptr_t)os::malloc(size, mtTest); |
25946 | 308 |
return addr; |
309 |
WB_END |
|
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
310 |
|
25946 | 311 |
// Alloc memory with pseudo call stack. The test can create psudo malloc |
312 |
// allocation site to stress the malloc tracking. |
|
313 |
WB_ENTRY(jlong, WB_NMTMallocWithPseudoStack(JNIEnv* env, jobject o, jlong size, jint pseudo_stack)) |
|
314 |
address pc = (address)(size_t)pseudo_stack; |
|
315 |
NativeCallStack stack(&pc, 1); |
|
27469
34008cfb8994
8058251: assert(_count > 0) failed: Negative counter when running runtime/NMT/MallocTrackingVerify.java
ctornqvi
parents:
27434
diff
changeset
|
316 |
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
|
317 |
WB_END |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
318 |
|
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
319 |
// Free the memory allocated by NMTAllocTest |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
320 |
WB_ENTRY(void, WB_NMTFree(JNIEnv* env, jobject o, jlong mem)) |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
321 |
os::free((void*)(uintptr_t)mem, mtTest); |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
322 |
WB_END |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
323 |
|
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
324 |
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
|
325 |
jlong addr = 0; |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
326 |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
327 |
addr = (jlong)(uintptr_t)os::reserve_memory(size); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
328 |
MemTracker::record_virtual_memory_type((address)addr, mtTest); |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
329 |
|
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
330 |
return addr; |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
331 |
WB_END |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
332 |
|
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
333 |
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
|
334 |
os::commit_memory((char *)(uintptr_t)addr, size, !ExecMem); |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
335 |
MemTracker::record_virtual_memory_type((address)(uintptr_t)addr, mtTest); |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
336 |
WB_END |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
337 |
|
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
338 |
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
|
339 |
os::uncommit_memory((char *)(uintptr_t)addr, size); |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
340 |
WB_END |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
341 |
|
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
342 |
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
|
343 |
os::release_memory((char *)(uintptr_t)addr, size); |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
344 |
WB_END |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
345 |
|
25946 | 346 |
WB_ENTRY(jboolean, WB_NMTIsDetailSupported(JNIEnv* env)) |
347 |
return MemTracker::tracking_level() == NMT_detail; |
|
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
348 |
WB_END |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
349 |
|
27162
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
350 |
WB_ENTRY(jboolean, WB_NMTChangeTrackingLevel(JNIEnv* env)) |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
351 |
// Test that we can downgrade NMT levels but not upgrade them. |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
352 |
if (MemTracker::tracking_level() == NMT_off) { |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
353 |
MemTracker::transition_to(NMT_off); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
354 |
return MemTracker::tracking_level() == NMT_off; |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
355 |
} else { |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
356 |
assert(MemTracker::tracking_level() == NMT_detail, "Should start out as detail tracking"); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
357 |
MemTracker::transition_to(NMT_summary); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
358 |
assert(MemTracker::tracking_level() == NMT_summary, "Should be summary now"); |
25946 | 359 |
|
27162
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
360 |
// Can't go to detail once NMT is set to summary. |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
361 |
MemTracker::transition_to(NMT_detail); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
362 |
assert(MemTracker::tracking_level() == NMT_summary, "Should still be summary now"); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
363 |
|
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
364 |
// Shutdown sets tracking level to minimal. |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
365 |
MemTracker::shutdown(); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
366 |
assert(MemTracker::tracking_level() == NMT_minimal, "Should be minimal now"); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
367 |
|
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
368 |
// Once the tracking level is minimal, we cannot increase to summary. |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
369 |
// 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
|
370 |
// 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
|
371 |
MemTracker::transition_to(NMT_summary); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
372 |
assert(MemTracker::tracking_level() == NMT_minimal, "Should still be minimal now"); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
373 |
|
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
374 |
// 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
|
375 |
MemTracker::transition_to(NMT_detail); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
376 |
assert(MemTracker::tracking_level() == NMT_minimal, "Should still be minimal now"); |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
377 |
return MemTracker::tracking_level() == NMT_minimal; |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
378 |
} |
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
379 |
WB_END |
27470
8dd8521d6897
8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents:
27469
diff
changeset
|
380 |
|
8dd8521d6897
8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents:
27469
diff
changeset
|
381 |
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
|
382 |
int hash_size = MallocSiteTable::hash_buckets(); |
8dd8521d6897
8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents:
27469
diff
changeset
|
383 |
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
|
384 |
return (jint)hash_size; |
8dd8521d6897
8061969: [TESTBUG] MallocSiteHashOverflow.java should be enabled for 32-bit platforms
gtriantafill
parents:
27469
diff
changeset
|
385 |
WB_END |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
386 |
#endif // INCLUDE_NMT |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
387 |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
388 |
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
|
389 |
assert(method != NULL, "method should not be null"); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
390 |
ThreadToNativeFromVM ttn(thread); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
391 |
return env->FromReflectedMethod(method); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
392 |
} |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
393 |
|
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
394 |
WB_ENTRY(void, WB_DeoptimizeAll(JNIEnv* env, jobject o)) |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
395 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
396 |
CodeCache::mark_all_nmethods_for_deoptimization(); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
397 |
VM_Deoptimize op; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
398 |
VMThread::execute(&op); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
399 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
400 |
|
19332 | 401 |
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
|
402 |
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
|
403 |
int result = 0; |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
404 |
CHECK_JNI_EXCEPTION_(env, result); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
405 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
406 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 407 |
if (is_osr) { |
27434
b4b185d05bb5
8061817: Whitebox.deoptimizeMethod() does not deoptimize all OSR versions of method
thartmann
parents:
27417
diff
changeset
|
408 |
result += mh->mark_osr_nmethods(); |
b4b185d05bb5
8061817: Whitebox.deoptimizeMethod() does not deoptimize all OSR versions of method
thartmann
parents:
27417
diff
changeset
|
409 |
} else if (mh->code() != NULL) { |
b4b185d05bb5
8061817: Whitebox.deoptimizeMethod() does not deoptimize all OSR versions of method
thartmann
parents:
27417
diff
changeset
|
410 |
mh->code()->mark_for_deoptimization(); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
411 |
++result; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
412 |
} |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
413 |
result += CodeCache::mark_for_deoptimization(mh()); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
414 |
if (result > 0) { |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
415 |
VM_Deoptimize op; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
416 |
VMThread::execute(&op); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
417 |
} |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
418 |
return result; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
419 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
420 |
|
19332 | 421 |
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
|
422 |
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
|
423 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
424 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
425 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 426 |
nmethod* 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
|
427 |
if (code == NULL) { |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
428 |
return JNI_FALSE; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
429 |
} |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
430 |
return (code->is_alive() && !code->is_marked_for_deoptimization()); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
431 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
432 |
|
19332 | 433 |
WB_ENTRY(jboolean, WB_IsMethodCompilable(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
|
434 |
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
|
435 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
436 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
437 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 438 |
if (is_osr) { |
439 |
return CompilationPolicy::can_be_osr_compiled(mh, comp_level); |
|
440 |
} else { |
|
441 |
return CompilationPolicy::can_be_compiled(mh, comp_level); |
|
442 |
} |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
443 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
444 |
|
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
445 |
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
|
446 |
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
|
447 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
448 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
449 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
450 |
return mh->queued_for_compilation(); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
451 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
452 |
|
19332 | 453 |
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
|
454 |
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
|
455 |
CHECK_JNI_EXCEPTION_(env, CompLevel_none); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
456 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 457 |
nmethod* 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
|
458 |
return (code != NULL ? code->comp_level() : CompLevel_none); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
459 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
460 |
|
19332 | 461 |
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
|
462 |
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
|
463 |
CHECK_JNI_EXCEPTION(env); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
464 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 465 |
if (is_osr) { |
466 |
mh->set_not_osr_compilable(comp_level, true /* report */, "WhiteBox"); |
|
467 |
} else { |
|
468 |
mh->set_not_compilable(comp_level, true /* report */, "WhiteBox"); |
|
469 |
} |
|
470 |
WB_END |
|
471 |
||
472 |
WB_ENTRY(jint, WB_GetMethodEntryBci(JNIEnv* env, jobject o, jobject method)) |
|
473 |
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
|
474 |
CHECK_JNI_EXCEPTION_(env, InvocationEntryBci); |
19332 | 475 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
476 |
nmethod* code = mh->lookup_osr_nmethod_for(InvocationEntryBci, CompLevel_none, false); |
|
477 |
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
|
478 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
479 |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
480 |
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
|
481 |
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
|
482 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
483 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
484 |
bool result = mh->dont_inline(); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
485 |
mh->set_dont_inline(value == JNI_TRUE); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
486 |
return result; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
487 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
488 |
|
19332 | 489 |
WB_ENTRY(jint, WB_GetCompileQueueSize(JNIEnv* env, jobject o, jint comp_level)) |
490 |
if (comp_level == CompLevel_any) { |
|
491 |
return CompileBroker::queue_size(CompLevel_full_optimization) /* C2 */ + |
|
492 |
CompileBroker::queue_size(CompLevel_full_profile) /* C1 */; |
|
493 |
} else { |
|
494 |
return CompileBroker::queue_size(comp_level); |
|
495 |
} |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
496 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
497 |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
498 |
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
|
499 |
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
|
500 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
501 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
502 |
bool result = mh->force_inline(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
503 |
mh->set_force_inline(value == JNI_TRUE); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
504 |
return result; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
505 |
WB_END |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
506 |
|
19332 | 507 |
WB_ENTRY(jboolean, WB_EnqueueMethodForCompilation(JNIEnv* env, jobject o, jobject method, jint comp_level, jint bci)) |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
508 |
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
|
509 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
510 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 511 |
nmethod* nm = CompileBroker::compile_method(mh, bci, comp_level, mh, mh->invocation_count(), "WhiteBox", THREAD); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
512 |
MutexLockerEx mu(Compile_lock); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
513 |
return (mh->queued_for_compilation() || nm != NULL); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
514 |
WB_END |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
515 |
|
23848 | 516 |
class VM_WhiteBoxOperation : public VM_Operation { |
517 |
public: |
|
518 |
VM_WhiteBoxOperation() { } |
|
519 |
VMOp_Type type() const { return VMOp_WhiteBoxOperation; } |
|
520 |
bool allow_nested_vm_operations() const { return true; } |
|
521 |
}; |
|
522 |
||
523 |
class AlwaysFalseClosure : public BoolObjectClosure { |
|
524 |
public: |
|
525 |
bool do_object_b(oop p) { return false; } |
|
526 |
}; |
|
527 |
||
528 |
static AlwaysFalseClosure always_false; |
|
529 |
||
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
530 |
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
|
531 |
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
|
532 |
CHECK_JNI_EXCEPTION(env); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
533 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
534 |
MutexLockerEx mu(Compile_lock); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
535 |
MethodData* mdo = mh->method_data(); |
17002 | 536 |
MethodCounters* mcs = mh->method_counters(); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
537 |
|
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
538 |
if (mdo != NULL) { |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
539 |
mdo->init(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
540 |
ResourceMark rm; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
541 |
int arg_count = mdo->method()->size_of_parameters(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
542 |
for (int i = 0; i < arg_count; i++) { |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
543 |
mdo->set_arg_modified(i, 0); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
544 |
} |
27452
b1fef8d1658d
8043125: compiler/types/correctness/CorrectnessTest.java: assert(layout->tag() == DataLayout::speculative_trap_data_tag) failed: wrong type
iignatyev
parents:
27450
diff
changeset
|
545 |
MutexLockerEx mu(mdo->extra_data_lock()); |
b1fef8d1658d
8043125: compiler/types/correctness/CorrectnessTest.java: assert(layout->tag() == DataLayout::speculative_trap_data_tag) failed: wrong type
iignatyev
parents:
27450
diff
changeset
|
546 |
mdo->clean_method_data(&always_false); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
547 |
} |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
548 |
|
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
549 |
mh->clear_not_c1_compilable(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
550 |
mh->clear_not_c2_compilable(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
551 |
mh->clear_not_c2_osr_compilable(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
552 |
NOT_PRODUCT(mh->set_compiled_invocation_count(0)); |
17002 | 553 |
if (mcs != NULL) { |
554 |
mcs->backedge_counter()->init(); |
|
555 |
mcs->invocation_counter()->init(); |
|
556 |
mcs->set_interpreter_invocation_count(0); |
|
557 |
mcs->set_interpreter_throwout_count(0); |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
558 |
|
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
559 |
#ifdef TIERED |
17002 | 560 |
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
|
561 |
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
|
562 |
mh->set_prev_time(0); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
563 |
#endif |
17002 | 564 |
} |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
565 |
WB_END |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
566 |
|
24921 | 567 |
template <typename T> |
27417
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
568 |
static bool GetVMFlag(JavaThread* thread, JNIEnv* env, jstring name, T* value, bool (*TAt)(const char*, T*, bool, bool)) { |
24921 | 569 |
if (name == NULL) { |
570 |
return false; |
|
571 |
} |
|
572 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
573 |
const char* flag_name = env->GetStringUTFChars(name, NULL); |
|
27417
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
574 |
bool result = (*TAt)(flag_name, value, true, true); |
24921 | 575 |
env->ReleaseStringUTFChars(name, flag_name); |
576 |
return result; |
|
577 |
} |
|
578 |
||
579 |
template <typename T> |
|
580 |
static bool SetVMFlag(JavaThread* thread, JNIEnv* env, jstring name, T* value, bool (*TAtPut)(const char*, T*, Flag::Flags)) { |
|
581 |
if (name == NULL) { |
|
582 |
return false; |
|
583 |
} |
|
584 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
585 |
const char* flag_name = env->GetStringUTFChars(name, NULL); |
|
586 |
bool result = (*TAtPut)(flag_name, value, Flag::INTERNAL); |
|
587 |
env->ReleaseStringUTFChars(name, flag_name); |
|
588 |
return result; |
|
589 |
} |
|
590 |
||
591 |
template <typename T> |
|
592 |
static jobject box(JavaThread* thread, JNIEnv* env, Symbol* name, Symbol* sig, T value) { |
|
593 |
ResourceMark rm(thread); |
|
594 |
jclass clazz = env->FindClass(name->as_C_string()); |
|
595 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
596 |
jmethodID methodID = env->GetStaticMethodID(clazz, |
|
597 |
vmSymbols::valueOf_name()->as_C_string(), |
|
598 |
sig->as_C_string()); |
|
599 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
600 |
jobject result = env->CallStaticObjectMethod(clazz, methodID, value); |
|
601 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
602 |
return result; |
|
603 |
} |
|
604 |
||
605 |
static jobject booleanBox(JavaThread* thread, JNIEnv* env, jboolean value) { |
|
606 |
return box(thread, env, vmSymbols::java_lang_Boolean(), vmSymbols::Boolean_valueOf_signature(), value); |
|
607 |
} |
|
608 |
static jobject integerBox(JavaThread* thread, JNIEnv* env, jint value) { |
|
609 |
return box(thread, env, vmSymbols::java_lang_Integer(), vmSymbols::Integer_valueOf_signature(), value); |
|
610 |
} |
|
611 |
static jobject longBox(JavaThread* thread, JNIEnv* env, jlong value) { |
|
612 |
return box(thread, env, vmSymbols::java_lang_Long(), vmSymbols::Long_valueOf_signature(), value); |
|
613 |
} |
|
614 |
/* static jobject floatBox(JavaThread* thread, JNIEnv* env, jfloat value) { |
|
615 |
return box(thread, env, vmSymbols::java_lang_Float(), vmSymbols::Float_valueOf_signature(), value); |
|
616 |
}*/ |
|
617 |
static jobject doubleBox(JavaThread* thread, JNIEnv* env, jdouble value) { |
|
618 |
return box(thread, env, vmSymbols::java_lang_Double(), vmSymbols::Double_valueOf_signature(), value); |
|
619 |
} |
|
620 |
||
27417
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
621 |
static Flag* getVMFlag(JavaThread* thread, JNIEnv* env, jstring name) { |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
622 |
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
|
623 |
const char* flag_name = env->GetStringUTFChars(name, NULL); |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
624 |
Flag* result = Flag::find_flag(flag_name, strlen(flag_name), true, true); |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
625 |
env->ReleaseStringUTFChars(name, flag_name); |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
626 |
return result; |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
627 |
} |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
628 |
|
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
629 |
WB_ENTRY(jboolean, WB_IsConstantVMFlag(JNIEnv* env, jobject o, jstring name)) |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
630 |
Flag* flag = getVMFlag(thread, env, name); |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
631 |
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
|
632 |
WB_END |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
633 |
|
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
634 |
WB_ENTRY(jboolean, WB_IsLockedVMFlag(JNIEnv* env, jobject o, jstring name)) |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
635 |
Flag* flag = getVMFlag(thread, env, name); |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
636 |
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
|
637 |
WB_END |
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
638 |
|
24921 | 639 |
WB_ENTRY(jobject, WB_GetBooleanVMFlag(JNIEnv* env, jobject o, jstring name)) |
640 |
bool result; |
|
641 |
if (GetVMFlag <bool> (thread, env, name, &result, &CommandLineFlags::boolAt)) { |
|
642 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
643 |
return booleanBox(thread, env, result); |
|
644 |
} |
|
645 |
return NULL; |
|
646 |
WB_END |
|
647 |
||
648 |
WB_ENTRY(jobject, WB_GetIntxVMFlag(JNIEnv* env, jobject o, jstring name)) |
|
649 |
intx result; |
|
650 |
if (GetVMFlag <intx> (thread, env, name, &result, &CommandLineFlags::intxAt)) { |
|
651 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
652 |
return longBox(thread, env, result); |
|
653 |
} |
|
654 |
return NULL; |
|
655 |
WB_END |
|
656 |
||
657 |
WB_ENTRY(jobject, WB_GetUintxVMFlag(JNIEnv* env, jobject o, jstring name)) |
|
658 |
uintx result; |
|
659 |
if (GetVMFlag <uintx> (thread, env, name, &result, &CommandLineFlags::uintxAt)) { |
|
660 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
661 |
return longBox(thread, env, result); |
|
662 |
} |
|
663 |
return NULL; |
|
664 |
WB_END |
|
665 |
||
666 |
WB_ENTRY(jobject, WB_GetUint64VMFlag(JNIEnv* env, jobject o, jstring name)) |
|
667 |
uint64_t result; |
|
668 |
if (GetVMFlag <uint64_t> (thread, env, name, &result, &CommandLineFlags::uint64_tAt)) { |
|
669 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
670 |
return longBox(thread, env, result); |
|
671 |
} |
|
672 |
return NULL; |
|
673 |
WB_END |
|
674 |
||
25959 | 675 |
WB_ENTRY(jobject, WB_GetSizeTVMFlag(JNIEnv* env, jobject o, jstring name)) |
676 |
uintx result; |
|
677 |
if (GetVMFlag <size_t> (thread, env, name, &result, &CommandLineFlags::size_tAt)) { |
|
678 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
679 |
return longBox(thread, env, result); |
|
680 |
} |
|
681 |
return NULL; |
|
682 |
WB_END |
|
683 |
||
24921 | 684 |
WB_ENTRY(jobject, WB_GetDoubleVMFlag(JNIEnv* env, jobject o, jstring name)) |
685 |
double result; |
|
686 |
if (GetVMFlag <double> (thread, env, name, &result, &CommandLineFlags::doubleAt)) { |
|
687 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
688 |
return doubleBox(thread, env, result); |
|
689 |
} |
|
690 |
return NULL; |
|
691 |
WB_END |
|
692 |
||
693 |
WB_ENTRY(jstring, WB_GetStringVMFlag(JNIEnv* env, jobject o, jstring name)) |
|
694 |
ccstr ccstrResult; |
|
695 |
if (GetVMFlag <ccstr> (thread, env, name, &ccstrResult, &CommandLineFlags::ccstrAt)) { |
|
696 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
697 |
jstring result = env->NewStringUTF(ccstrResult); |
|
698 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
699 |
return result; |
|
700 |
} |
|
701 |
return NULL; |
|
702 |
WB_END |
|
703 |
||
704 |
WB_ENTRY(void, WB_SetBooleanVMFlag(JNIEnv* env, jobject o, jstring name, jboolean value)) |
|
705 |
bool result = value == JNI_TRUE ? true : false; |
|
706 |
SetVMFlag <bool> (thread, env, name, &result, &CommandLineFlags::boolAtPut); |
|
707 |
WB_END |
|
708 |
||
709 |
WB_ENTRY(void, WB_SetIntxVMFlag(JNIEnv* env, jobject o, jstring name, jlong value)) |
|
710 |
intx result = value; |
|
711 |
SetVMFlag <intx> (thread, env, name, &result, &CommandLineFlags::intxAtPut); |
|
712 |
WB_END |
|
713 |
||
714 |
WB_ENTRY(void, WB_SetUintxVMFlag(JNIEnv* env, jobject o, jstring name, jlong value)) |
|
715 |
uintx result = value; |
|
716 |
SetVMFlag <uintx> (thread, env, name, &result, &CommandLineFlags::uintxAtPut); |
|
717 |
WB_END |
|
718 |
||
719 |
WB_ENTRY(void, WB_SetUint64VMFlag(JNIEnv* env, jobject o, jstring name, jlong value)) |
|
720 |
uint64_t result = value; |
|
721 |
SetVMFlag <uint64_t> (thread, env, name, &result, &CommandLineFlags::uint64_tAtPut); |
|
722 |
WB_END |
|
723 |
||
25959 | 724 |
WB_ENTRY(void, WB_SetSizeTVMFlag(JNIEnv* env, jobject o, jstring name, jlong value)) |
725 |
size_t result = value; |
|
726 |
SetVMFlag <size_t> (thread, env, name, &result, &CommandLineFlags::size_tAtPut); |
|
727 |
WB_END |
|
728 |
||
24921 | 729 |
WB_ENTRY(void, WB_SetDoubleVMFlag(JNIEnv* env, jobject o, jstring name, jdouble value)) |
730 |
double result = value; |
|
731 |
SetVMFlag <double> (thread, env, name, &result, &CommandLineFlags::doubleAtPut); |
|
732 |
WB_END |
|
733 |
||
734 |
WB_ENTRY(void, WB_SetStringVMFlag(JNIEnv* env, jobject o, jstring name, jstring value)) |
|
735 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
736 |
const char* ccstrValue = (value == NULL) ? NULL : env->GetStringUTFChars(value, NULL); |
|
737 |
ccstr ccstrResult = ccstrValue; |
|
738 |
bool needFree; |
|
739 |
{ |
|
740 |
ThreadInVMfromNative ttvfn(thread); // back to VM |
|
741 |
needFree = SetVMFlag <ccstr> (thread, env, name, &ccstrResult, &CommandLineFlags::ccstrAtPut); |
|
742 |
} |
|
743 |
if (value != NULL) { |
|
744 |
env->ReleaseStringUTFChars(value, ccstrValue); |
|
745 |
} |
|
746 |
if (needFree) { |
|
747 |
FREE_C_HEAP_ARRAY(char, ccstrResult, mtInternal); |
|
748 |
} |
|
749 |
WB_END |
|
750 |
||
751 |
||
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
752 |
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
|
753 |
WhiteBox::compilation_locked = true; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
754 |
WB_END |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
755 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
756 |
WB_ENTRY(void, WB_UnlockCompilation(JNIEnv* env, jobject o)) |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
757 |
MonitorLockerEx mo(Compilation_lock, Mutex::_no_safepoint_check_flag); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
758 |
WhiteBox::compilation_locked = false; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
759 |
mo.notify_all(); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
760 |
WB_END |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
761 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
762 |
void WhiteBox::force_sweep() { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
763 |
guarantee(WhiteBoxAPI, "internal testing API :: WhiteBox has to enabled"); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
764 |
{ |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
765 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
766 |
NMethodSweeper::_should_sweep = true; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
767 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
768 |
NMethodSweeper::possibly_sweep(); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
769 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
770 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
771 |
WB_ENTRY(void, WB_ForceNMethodSweep(JNIEnv* env, jobject o)) |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
772 |
WhiteBox::force_sweep(); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
773 |
WB_END |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
774 |
|
16601 | 775 |
WB_ENTRY(jboolean, WB_IsInStringTable(JNIEnv* env, jobject o, jstring javaString)) |
776 |
ResourceMark rm(THREAD); |
|
777 |
int len; |
|
17081
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
17018
diff
changeset
|
778 |
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
|
779 |
return (StringTable::lookup(name, len) != NULL); |
16601 | 780 |
WB_END |
781 |
||
782 |
WB_ENTRY(void, WB_FullGC(JNIEnv* env, jobject o)) |
|
783 |
Universe::heap()->collector_policy()->set_should_clear_all_soft_refs(true); |
|
784 |
Universe::heap()->collect(GCCause::_last_ditch_collection); |
|
26844 | 785 |
#if INCLUDE_ALL_GCS |
786 |
if (UseG1GC) { |
|
787 |
// Needs to be cleared explicitly for G1 |
|
788 |
Universe::heap()->collector_policy()->set_should_clear_all_soft_refs(false); |
|
789 |
} |
|
790 |
#endif // INCLUDE_ALL_GCS |
|
16601 | 791 |
WB_END |
792 |
||
26183
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
793 |
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
|
794 |
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
|
795 |
WB_END |
17083 | 796 |
|
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
|
797 |
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
|
798 |
// 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
|
799 |
// (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
|
800 |
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
|
801 |
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
|
802 |
|
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
|
803 |
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
|
804 |
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
|
805 |
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
|
806 |
} |
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
|
807 |
|
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
|
808 |
c = *p; |
17083 | 809 |
WB_END |
810 |
||
23493
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
811 |
WB_ENTRY(jstring, WB_GetCPUFeatures(JNIEnv* env, jobject o)) |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
812 |
const char* cpu_features = VM_Version::cpu_features(); |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
813 |
ThreadToNativeFromVM ttn(thread); |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
814 |
jstring features_string = env->NewStringUTF(cpu_features); |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
815 |
|
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
816 |
CHECK_JNI_EXCEPTION_(env, NULL); |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
817 |
|
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
818 |
return features_string; |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
819 |
WB_END |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
820 |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
821 |
int WhiteBox::get_blob_type(const CodeBlob* code) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
822 |
guarantee(WhiteBoxAPI, "internal testing API :: WhiteBox has to enabled"); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
823 |
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
|
824 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
825 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
826 |
CodeHeap* WhiteBox::get_code_heap(int blob_type) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
827 |
guarantee(WhiteBoxAPI, "internal testing API :: WhiteBox has to enabled"); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
828 |
return CodeCache::get_code_heap(blob_type); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
829 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
830 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
831 |
struct CodeBlobStub { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
832 |
CodeBlobStub(const CodeBlob* blob) : |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
833 |
name(os::strdup(blob->name())), |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
834 |
size(blob->size()), |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
835 |
blob_type(WhiteBox::get_blob_type(blob)) { } |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
836 |
~CodeBlobStub() { os::free((void*) name); } |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
837 |
const char* const name; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
838 |
const int size; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
839 |
const int blob_type; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
840 |
}; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
841 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
842 |
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
|
843 |
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
|
844 |
CHECK_JNI_EXCEPTION_(env, NULL); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
845 |
jobjectArray result = env->NewObjectArray(3, clazz, NULL); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
846 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
847 |
jstring name = env->NewStringUTF(cb->name); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
848 |
CHECK_JNI_EXCEPTION_(env, NULL); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
849 |
env->SetObjectArrayElement(result, 0, name); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
850 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
851 |
jobject obj = integerBox(thread, env, cb->size); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
852 |
CHECK_JNI_EXCEPTION_(env, NULL); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
853 |
env->SetObjectArrayElement(result, 1, obj); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
854 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
855 |
obj = integerBox(thread, env, cb->blob_type); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
856 |
CHECK_JNI_EXCEPTION_(env, NULL); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
857 |
env->SetObjectArrayElement(result, 2, obj); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
858 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
859 |
return result; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
860 |
} |
23499 | 861 |
|
862 |
WB_ENTRY(jobjectArray, WB_GetNMethod(JNIEnv* env, jobject o, jobject method, jboolean is_osr)) |
|
863 |
ResourceMark rm(THREAD); |
|
864 |
jmethodID jmid = reflected_method_to_jmid(thread, env, method); |
|
865 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
866 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
|
867 |
nmethod* code = is_osr ? mh->lookup_osr_nmethod_for(InvocationEntryBci, CompLevel_none, false) : mh->code(); |
|
868 |
jobjectArray result = NULL; |
|
869 |
if (code == NULL) { |
|
870 |
return result; |
|
871 |
} |
|
872 |
int insts_size = code->insts_size(); |
|
873 |
||
874 |
ThreadToNativeFromVM ttn(thread); |
|
875 |
jclass clazz = env->FindClass(vmSymbols::java_lang_Object()->as_C_string()); |
|
876 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
877 |
result = env->NewObjectArray(4, clazz, NULL); |
23499 | 878 |
if (result == NULL) { |
879 |
return result; |
|
880 |
} |
|
881 |
||
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
882 |
CodeBlobStub stub(code); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
883 |
jobjectArray codeBlob = codeBlob2objectArray(thread, env, &stub); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
884 |
env->SetObjectArrayElement(result, 0, codeBlob); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
885 |
|
27450
603dbcf4f547
8054492: Casting can result in redundant null checks in generated code
kvn
parents:
27434
diff
changeset
|
886 |
jobject level = integerBox(thread, env, code->comp_level()); |
23499 | 887 |
CHECK_JNI_EXCEPTION_(env, NULL); |
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
888 |
env->SetObjectArrayElement(result, 1, level); |
23499 | 889 |
|
890 |
jbyteArray insts = env->NewByteArray(insts_size); |
|
891 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
892 |
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
|
893 |
env->SetObjectArrayElement(result, 2, insts); |
23499 | 894 |
|
27450
603dbcf4f547
8054492: Casting can result in redundant null checks in generated code
kvn
parents:
27434
diff
changeset
|
895 |
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
|
896 |
CHECK_JNI_EXCEPTION_(env, NULL); |
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
897 |
env->SetObjectArrayElement(result, 3, id); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
898 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
899 |
return result; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
900 |
WB_END |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
901 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
902 |
CodeBlob* WhiteBox::allocate_code_blob(int size, int blob_type) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
903 |
guarantee(WhiteBoxAPI, "internal testing API :: WhiteBox has to enabled"); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
904 |
BufferBlob* blob; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
905 |
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
|
906 |
if (full_size < size) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
907 |
full_size += round_to(size - full_size, oopSize); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
908 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
909 |
{ |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
910 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
911 |
blob = (BufferBlob*) CodeCache::allocate(full_size, blob_type); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
912 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
913 |
// Track memory usage statistic after releasing CodeCache_lock |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
914 |
MemoryService::track_code_cache_memory_usage(); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
915 |
::new (blob) BufferBlob("WB::DummyBlob", full_size); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
916 |
return blob; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
917 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
918 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
919 |
WB_ENTRY(jlong, WB_AllocateCodeBlob(JNIEnv* env, jobject o, jint size, jint blob_type)) |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
920 |
return (jlong) WhiteBox::allocate_code_blob(size, blob_type); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
921 |
WB_END |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
922 |
|
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
923 |
WB_ENTRY(void, WB_FreeCodeBlob(JNIEnv* env, jobject o, jlong addr)) |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
924 |
BufferBlob::free((BufferBlob*) addr); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
925 |
WB_END |
27450
603dbcf4f547
8054492: Casting can result in redundant null checks in generated code
kvn
parents:
27434
diff
changeset
|
926 |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
927 |
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
|
928 |
ResourceMark rm; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
929 |
GrowableArray<CodeBlobStub*> blobs; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
930 |
{ |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
931 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
932 |
CodeHeap* heap = WhiteBox::get_code_heap(blob_type); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
933 |
if (heap == NULL) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
934 |
return NULL; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
935 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
936 |
for (CodeBlob* cb = (CodeBlob*) heap->first(); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
937 |
cb != NULL; cb = (CodeBlob*) heap->next(cb)) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
938 |
CodeBlobStub* stub = NEW_RESOURCE_OBJ(CodeBlobStub); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
939 |
new (stub) CodeBlobStub(cb); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
940 |
blobs.append(stub); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
941 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
942 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
943 |
if (blobs.length() == 0) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
944 |
return NULL; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
945 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
946 |
ThreadToNativeFromVM ttn(thread); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
947 |
jobjectArray result = NULL; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
948 |
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
|
949 |
CHECK_JNI_EXCEPTION_(env, NULL); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
950 |
result = env->NewObjectArray(blobs.length(), clazz, NULL); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
951 |
if (result == NULL) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
952 |
return result; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
953 |
} |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
954 |
int i = 0; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
955 |
for (GrowableArrayIterator<CodeBlobStub*> it = blobs.begin(); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
956 |
it != blobs.end(); ++it) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
957 |
jobjectArray obj = codeBlob2objectArray(thread, env, *it); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
958 |
env->SetObjectArrayElement(result, i, obj); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
959 |
++i; |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
960 |
} |
23499 | 961 |
return result; |
962 |
WB_END |
|
963 |
||
27701
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
964 |
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
|
965 |
return CompileBroker::get_compilation_activity_mode(); |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
966 |
WB_END |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
967 |
|
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
968 |
WB_ENTRY(jobjectArray, WB_GetCodeBlob(JNIEnv* env, jobject o, jlong addr)) |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
969 |
ThreadToNativeFromVM ttn(thread); |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
970 |
CodeBlobStub stub((CodeBlob*) addr); |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
971 |
return codeBlob2objectArray(thread, env, &stub); |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
972 |
WB_END |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
973 |
|
24671
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
974 |
WB_ENTRY(jlong, WB_GetThreadStackSize(JNIEnv* env, jobject o)) |
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
975 |
return (jlong) Thread::current()->stack_size(); |
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
976 |
WB_END |
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
977 |
|
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
978 |
WB_ENTRY(jlong, WB_GetThreadRemainingStackSize(JNIEnv* env, jobject o)) |
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
979 |
JavaThread* t = JavaThread::current(); |
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
980 |
return (jlong) t->stack_available(os::current_stack_pointer()) - (jlong) StackShadowPages * os::vm_page_size(); |
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
981 |
WB_END |
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
982 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
983 |
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
|
984 |
return Array<u1>::bytes_to_length(bytes); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
985 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
986 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
987 |
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
|
988 |
if (size < 0) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
989 |
THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
990 |
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
|
991 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
992 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
993 |
oop class_loader_oop = JNIHandles::resolve(class_loader); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
994 |
ClassLoaderData* cld = class_loader_oop != NULL |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
995 |
? java_lang_ClassLoader::loader_data(class_loader_oop) |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
996 |
: ClassLoaderData::the_null_class_loader_data(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
997 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
998 |
void* metadata = MetadataFactory::new_writeable_array<u1>(cld, WhiteBox::array_bytes_to_length((size_t)size), thread); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
999 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1000 |
return (jlong)(uintptr_t)metadata; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1001 |
WB_END |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1002 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1003 |
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
|
1004 |
oop class_loader_oop = JNIHandles::resolve(class_loader); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1005 |
ClassLoaderData* cld = class_loader_oop != NULL |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1006 |
? java_lang_ClassLoader::loader_data(class_loader_oop) |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1007 |
: ClassLoaderData::the_null_class_loader_data(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1008 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1009 |
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
|
1010 |
WB_END |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1011 |
|
26938
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1012 |
WB_ENTRY(jlong, WB_IncMetaspaceCapacityUntilGC(JNIEnv* env, jobject wb, jlong inc)) |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1013 |
if (inc < 0) { |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1014 |
THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1015 |
err_msg("WB_IncMetaspaceCapacityUntilGC: inc is negative: " JLONG_FORMAT, inc)); |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1016 |
} |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1017 |
|
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1018 |
jlong max_size_t = (jlong) ((size_t) -1); |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1019 |
if (inc > max_size_t) { |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1020 |
THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1021 |
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
|
1022 |
} |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1023 |
|
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1024 |
size_t new_cap_until_GC = 0; |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1025 |
size_t aligned_inc = align_size_down((size_t) inc, Metaspace::commit_alignment()); |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1026 |
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
|
1027 |
if (!success) { |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1028 |
THROW_MSG_0(vmSymbols::java_lang_IllegalStateException(), |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1029 |
"WB_IncMetaspaceCapacityUntilGC: could not increase capacity until GC " |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1030 |
"due to contention with another thread"); |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1031 |
} |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1032 |
return (jlong) new_cap_until_GC; |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1033 |
WB_END |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1034 |
|
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1035 |
WB_ENTRY(jlong, WB_MetaspaceCapacityUntilGC(JNIEnv* env, jobject wb)) |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1036 |
return (jlong) MetaspaceGC::capacity_until_GC(); |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1037 |
WB_END |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1038 |
|
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1039 |
//Some convenience methods to deal with objects from java |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1040 |
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
|
1041 |
Symbol* signature_symbol) { |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1042 |
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
|
1043 |
Thread* THREAD = Thread::current(); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1044 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1045 |
//Get the class of our object |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
1046 |
Klass* arg_klass = object->klass(); |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1047 |
//Turn it into an instance-klass |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
1048 |
InstanceKlass* ik = InstanceKlass::cast(arg_klass); |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1049 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1050 |
//Create symbols to look for in the class |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1051 |
TempNewSymbol name_symbol = SymbolTable::lookup(field_name, (int) strlen(field_name), |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1052 |
THREAD); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1053 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1054 |
//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
|
1055 |
fieldDescriptor fd; |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1056 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
1057 |
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
|
1058 |
if (res == NULL) { |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1059 |
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
|
1060 |
name_symbol->as_C_string()); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1061 |
fatal("Invalid layout of preloaded class"); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1062 |
} |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1063 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1064 |
//fetch the field at the offset we've found |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1065 |
int dest_offset = fd.offset(); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1066 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1067 |
return dest_offset; |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1068 |
} |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1069 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1070 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1071 |
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
|
1072 |
int offset = offset_for_field(field_name, object, |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1073 |
vmSymbols::string_signature()); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1074 |
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
|
1075 |
if (string == NULL) { |
7b506e7b406e
7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents:
12262
diff
changeset
|
1076 |
return NULL; |
7b506e7b406e
7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents:
12262
diff
changeset
|
1077 |
} |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1078 |
const char* ret = java_lang_String::as_utf8_string(string); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1079 |
return ret; |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1080 |
} |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1081 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1082 |
bool WhiteBox::lookup_bool(const char* field_name, oop object) { |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1083 |
int offset = |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1084 |
offset_for_field(field_name, object, vmSymbols::bool_signature()); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1085 |
bool ret = (object->bool_field(offset) == JNI_TRUE); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1086 |
return ret; |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1087 |
} |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1088 |
|
26844 | 1089 |
void WhiteBox::register_methods(JNIEnv* env, jclass wbclass, JavaThread* thread, JNINativeMethod* method_array, int method_count) { |
1090 |
ResourceMark rm; |
|
1091 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
|
1092 |
||
1093 |
// one by one registration natives for exception catching |
|
1094 |
jclass no_such_method_error_klass = env->FindClass(vmSymbols::java_lang_NoSuchMethodError()->as_C_string()); |
|
1095 |
CHECK_JNI_EXCEPTION(env); |
|
1096 |
for (int i = 0, n = method_count; i < n; ++i) { |
|
1097 |
// Skip dummy entries |
|
1098 |
if (method_array[i].fnPtr == NULL) continue; |
|
1099 |
if (env->RegisterNatives(wbclass, &method_array[i], 1) != 0) { |
|
1100 |
jthrowable throwable_obj = env->ExceptionOccurred(); |
|
1101 |
if (throwable_obj != NULL) { |
|
1102 |
env->ExceptionClear(); |
|
1103 |
if (env->IsInstanceOf(throwable_obj, no_such_method_error_klass)) { |
|
1104 |
// NoSuchMethodError is thrown when a method can't be found or a method is not native. |
|
1105 |
// Ignoring the exception since it is not preventing use of other WhiteBox methods. |
|
1106 |
tty->print_cr("Warning: 'NoSuchMethodError' on register of sun.hotspot.WhiteBox::%s%s", |
|
1107 |
method_array[i].name, method_array[i].signature); |
|
1108 |
} |
|
1109 |
} else { |
|
1110 |
// Registration failed unexpectedly. |
|
1111 |
tty->print_cr("Warning: unexpected error on register of sun.hotspot.WhiteBox::%s%s. All methods will be unregistered", |
|
1112 |
method_array[i].name, method_array[i].signature); |
|
1113 |
env->UnregisterNatives(wbclass); |
|
1114 |
break; |
|
1115 |
} |
|
1116 |
} |
|
1117 |
} |
|
1118 |
} |
|
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1119 |
|
12095 | 1120 |
#define CC (char*) |
1121 |
||
1122 |
static JNINativeMethod methods[] = { |
|
1123 |
{CC"getObjectAddress", CC"(Ljava/lang/Object;)J", (void*)&WB_GetObjectAddress }, |
|
26183
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
1124 |
{CC"getObjectSize", CC"(Ljava/lang/Object;)J", (void*)&WB_GetObjectSize }, |
bbe259d3c8bc
8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents:
26157
diff
changeset
|
1125 |
{CC"isObjectInOldGen", CC"(Ljava/lang/Object;)Z", (void*)&WB_isObjectInOldGen }, |
12095 | 1126 |
{CC"getHeapOopSize", CC"()I", (void*)&WB_GetHeapOopSize }, |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1127 |
{CC"isClassAlive0", CC"(Ljava/lang/String;)Z", (void*)&WB_IsClassAlive }, |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1128 |
{CC"parseCommandLine", |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1129 |
CC"(Ljava/lang/String;[Lsun/hotspot/parser/DiagnosticCommand;)[Ljava/lang/Object;", |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1130 |
(void*) &WB_ParseCommandLine |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
1131 |
}, |
27672
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
1132 |
{CC"addToBootstrapClassLoaderSearch", CC"(Ljava/lang/String;)V", |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
1133 |
(void*)&WB_AddToBootstrapClassLoaderSearch}, |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
1134 |
{CC"addToSystemClassLoaderSearch", CC"(Ljava/lang/String;)V", |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
27642
diff
changeset
|
1135 |
(void*)&WB_AddToSystemClassLoaderSearch}, |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
1136 |
{CC"getCompressedOopsMaxHeapSize", CC"()J", |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
1137 |
(void*)&WB_GetCompressedOopsMaxHeapSize}, |
17322
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
1138 |
{CC"printHeapSizes", CC"()V", (void*)&WB_PrintHeapSizes }, |
21554
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
1139 |
{CC"runMemoryUnitTests", CC"()V", (void*)&WB_RunMemoryUnitTests}, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
1140 |
{CC"readFromNoaccessArea",CC"()V", (void*)&WB_ReadFromNoaccessArea}, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
1141 |
{CC"stressVirtualSpaceResize",CC"(JJJ)I", (void*)&WB_StressVirtualSpaceResize}, |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
1142 |
#if INCLUDE_ALL_GCS |
12095 | 1143 |
{CC"g1InConcurrentMark", CC"()Z", (void*)&WB_G1InConcurrentMark}, |
1144 |
{CC"g1IsHumongous", CC"(Ljava/lang/Object;)Z", (void*)&WB_G1IsHumongous }, |
|
1145 |
{CC"g1NumFreeRegions", CC"()J", (void*)&WB_G1NumFreeRegions }, |
|
1146 |
{CC"g1RegionSize", CC"()I", (void*)&WB_G1RegionSize }, |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
1147 |
#endif // INCLUDE_ALL_GCS |
19554
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
1148 |
#if INCLUDE_NMT |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
1149 |
{CC"NMTMalloc", CC"(J)J", (void*)&WB_NMTMalloc }, |
25946 | 1150 |
{CC"NMTMallocWithPseudoStack", CC"(JI)J", (void*)&WB_NMTMallocWithPseudoStack}, |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
1151 |
{CC"NMTFree", CC"(J)V", (void*)&WB_NMTFree }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
1152 |
{CC"NMTReserveMemory", CC"(J)J", (void*)&WB_NMTReserveMemory }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
1153 |
{CC"NMTCommitMemory", CC"(JJ)V", (void*)&WB_NMTCommitMemory }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
1154 |
{CC"NMTUncommitMemory", CC"(JJ)V", (void*)&WB_NMTUncommitMemory }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
1155 |
{CC"NMTReleaseMemory", CC"(JJ)V", (void*)&WB_NMTReleaseMemory }, |
19554
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
1156 |
{CC"NMTIsDetailSupported",CC"()Z", (void*)&WB_NMTIsDetailSupported}, |
27162
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26938
diff
changeset
|
1157 |
{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
|
1158 |
{CC"NMTGetHashSize", CC"()I", (void*)&WB_NMTGetHashSize }, |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
1159 |
#endif // INCLUDE_NMT |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1160 |
{CC"deoptimizeAll", CC"()V", (void*)&WB_DeoptimizeAll }, |
19332 | 1161 |
{CC"deoptimizeMethod", CC"(Ljava/lang/reflect/Executable;Z)I", |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1162 |
(void*)&WB_DeoptimizeMethod }, |
19332 | 1163 |
{CC"isMethodCompiled", CC"(Ljava/lang/reflect/Executable;Z)Z", |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1164 |
(void*)&WB_IsMethodCompiled }, |
19332 | 1165 |
{CC"isMethodCompilable", CC"(Ljava/lang/reflect/Executable;IZ)Z", |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1166 |
(void*)&WB_IsMethodCompilable}, |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1167 |
{CC"isMethodQueuedForCompilation", |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16694
diff
changeset
|
1168 |
CC"(Ljava/lang/reflect/Executable;)Z", (void*)&WB_IsMethodQueuedForCompilation}, |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1169 |
{CC"makeMethodNotCompilable", |
19332 | 1170 |
CC"(Ljava/lang/reflect/Executable;IZ)V", (void*)&WB_MakeMethodNotCompilable}, |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
1171 |
{CC"testSetDontInlineMethod", |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16694
diff
changeset
|
1172 |
CC"(Ljava/lang/reflect/Executable;Z)Z", (void*)&WB_TestSetDontInlineMethod}, |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
1173 |
{CC"getMethodCompilationLevel", |
19332 | 1174 |
CC"(Ljava/lang/reflect/Executable;Z)I", (void*)&WB_GetMethodCompilationLevel}, |
1175 |
{CC"getMethodEntryBci", |
|
1176 |
CC"(Ljava/lang/reflect/Executable;)I", (void*)&WB_GetMethodEntryBci}, |
|
1177 |
{CC"getCompileQueueSize", |
|
1178 |
CC"(I)I", (void*)&WB_GetCompileQueueSize}, |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
1179 |
{CC"testSetForceInlineMethod", |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16694
diff
changeset
|
1180 |
CC"(Ljava/lang/reflect/Executable;Z)Z", (void*)&WB_TestSetForceInlineMethod}, |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
1181 |
{CC"enqueueMethodForCompilation", |
19332 | 1182 |
CC"(Ljava/lang/reflect/Executable;II)Z", (void*)&WB_EnqueueMethodForCompilation}, |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
1183 |
{CC"clearMethodState", |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16694
diff
changeset
|
1184 |
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
|
1185 |
{CC"lockCompilation", CC"()V", (void*)&WB_LockCompilation}, |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
1186 |
{CC"unlockCompilation", CC"()V", (void*)&WB_UnlockCompilation}, |
27417
576e2b527e1c
8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents:
27162
diff
changeset
|
1187 |
{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
|
1188 |
{CC"isLockedVMFlag", CC"(Ljava/lang/String;)Z", (void*)&WB_IsLockedVMFlag}, |
24921 | 1189 |
{CC"setBooleanVMFlag", CC"(Ljava/lang/String;Z)V",(void*)&WB_SetBooleanVMFlag}, |
1190 |
{CC"setIntxVMFlag", CC"(Ljava/lang/String;J)V",(void*)&WB_SetIntxVMFlag}, |
|
1191 |
{CC"setUintxVMFlag", CC"(Ljava/lang/String;J)V",(void*)&WB_SetUintxVMFlag}, |
|
1192 |
{CC"setUint64VMFlag", CC"(Ljava/lang/String;J)V",(void*)&WB_SetUint64VMFlag}, |
|
25959 | 1193 |
{CC"setSizeTVMFlag", CC"(Ljava/lang/String;J)V",(void*)&WB_SetSizeTVMFlag}, |
24921 | 1194 |
{CC"setDoubleVMFlag", CC"(Ljava/lang/String;D)V",(void*)&WB_SetDoubleVMFlag}, |
1195 |
{CC"setStringVMFlag", CC"(Ljava/lang/String;Ljava/lang/String;)V", |
|
1196 |
(void*)&WB_SetStringVMFlag}, |
|
1197 |
{CC"getBooleanVMFlag", CC"(Ljava/lang/String;)Ljava/lang/Boolean;", |
|
1198 |
(void*)&WB_GetBooleanVMFlag}, |
|
1199 |
{CC"getIntxVMFlag", CC"(Ljava/lang/String;)Ljava/lang/Long;", |
|
1200 |
(void*)&WB_GetIntxVMFlag}, |
|
1201 |
{CC"getUintxVMFlag", CC"(Ljava/lang/String;)Ljava/lang/Long;", |
|
1202 |
(void*)&WB_GetUintxVMFlag}, |
|
1203 |
{CC"getUint64VMFlag", CC"(Ljava/lang/String;)Ljava/lang/Long;", |
|
1204 |
(void*)&WB_GetUint64VMFlag}, |
|
25959 | 1205 |
{CC"getSizeTVMFlag", CC"(Ljava/lang/String;)Ljava/lang/Long;", |
1206 |
(void*)&WB_GetSizeTVMFlag}, |
|
24921 | 1207 |
{CC"getDoubleVMFlag", CC"(Ljava/lang/String;)Ljava/lang/Double;", |
1208 |
(void*)&WB_GetDoubleVMFlag}, |
|
1209 |
{CC"getStringVMFlag", CC"(Ljava/lang/String;)Ljava/lang/String;", |
|
1210 |
(void*)&WB_GetStringVMFlag}, |
|
1211 |
{CC"isInStringTable", CC"(Ljava/lang/String;)Z", (void*)&WB_IsInStringTable }, |
|
16601 | 1212 |
{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
|
1213 |
{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
|
1214 |
{CC"readReservedMemory", CC"()V", (void*)&WB_ReadReservedMemory }, |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1215 |
{CC"allocateMetaspace", |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1216 |
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
|
1217 |
{CC"freeMetaspace", |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
1218 |
CC"(Ljava/lang/ClassLoader;JJ)V", (void*)&WB_FreeMetaspace }, |
26938
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1219 |
{CC"incMetaspaceCapacityUntilGC", CC"(J)J", (void*)&WB_IncMetaspaceCapacityUntilGC }, |
e0b35f8104a7
8049599: MetaspaceGC::_capacity_until_GC can overflow
ehelin
parents:
26846
diff
changeset
|
1220 |
{CC"metaspaceCapacityUntilGC", CC"()J", (void*)&WB_MetaspaceCapacityUntilGC }, |
23493
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
1221 |
{CC"getCPUFeatures", CC"()Ljava/lang/String;", (void*)&WB_GetCPUFeatures }, |
23499 | 1222 |
{CC"getNMethod", CC"(Ljava/lang/reflect/Executable;Z)[Ljava/lang/Object;", |
1223 |
(void*)&WB_GetNMethod }, |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
1224 |
{CC"forceNMethodSweep", CC"()V", (void*)&WB_ForceNMethodSweep }, |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
1225 |
{CC"allocateCodeBlob", CC"(II)J", (void*)&WB_AllocateCodeBlob }, |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
1226 |
{CC"freeCodeBlob", CC"(J)V", (void*)&WB_FreeCodeBlob }, |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27480
diff
changeset
|
1227 |
{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
|
1228 |
{CC"getCompilationActivityMode", |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
1229 |
CC"()I", (void*)&WB_GetCompilationActivityMode}, |
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27642
diff
changeset
|
1230 |
{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
|
1231 |
{CC"getThreadStackSize", CC"()J", (void*)&WB_GetThreadStackSize }, |
0ebd6fe70309
8032970: Add stack size check methods to WhiteBox API
iignatyev
parents:
24446
diff
changeset
|
1232 |
{CC"getThreadRemainingStackSize", CC"()J", (void*)&WB_GetThreadRemainingStackSize }, |
12095 | 1233 |
}; |
1234 |
||
1235 |
#undef CC |
|
1236 |
||
1237 |
JVM_ENTRY(void, JVM_RegisterWhiteBoxMethods(JNIEnv* env, jclass wbclass)) |
|
1238 |
{ |
|
1239 |
if (WhiteBoxAPI) { |
|
1240 |
// Make sure that wbclass is loaded by the null classloader |
|
1241 |
instanceKlassHandle ikh = instanceKlassHandle(JNIHandles::resolve(wbclass)->klass()); |
|
1242 |
Handle loader(ikh->class_loader()); |
|
1243 |
if (loader.is_null()) { |
|
26844 | 1244 |
WhiteBox::register_methods(env, wbclass, thread, methods, sizeof(methods) / sizeof(methods[0])); |
1245 |
WhiteBox::register_extended(env, wbclass, thread); |
|
1246 |
WhiteBox::set_used(); |
|
12095 | 1247 |
} |
1248 |
} |
|
1249 |
} |
|
1250 |
JVM_END |