author | gziemski |
Wed, 07 May 2014 14:16:45 -0500 | |
changeset 24426 | 0a69c8cdfca9 |
parent 23848 | 2a4fff3b50c1 |
child 24429 | 4efc66ee325c |
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 |
||
27 |
#include "memory/universe.hpp" |
|
28 |
#include "oops/oop.inline.hpp" |
|
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
29 |
|
24426
0a69c8cdfca9
8038654: Separate SymbolTable and StringTable code
gziemski
parents:
23848
diff
changeset
|
30 |
#include "classfile/stringTable.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
31 |
#include "classfile/classLoaderData.hpp" |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
32 |
|
12095 | 33 |
#include "prims/whitebox.hpp" |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
34 |
#include "prims/wbtestmethods/parserTests.hpp" |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
35 |
|
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
36 |
#include "runtime/arguments.hpp" |
12095 | 37 |
#include "runtime/interfaceSupport.hpp" |
38 |
#include "runtime/os.hpp" |
|
39 |
#include "utilities/debug.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
40 |
#include "utilities/macros.hpp" |
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
|
41 |
#include "utilities/exceptions.hpp" |
12095 | 42 |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
43 |
#if INCLUDE_ALL_GCS |
12095 | 44 |
#include "gc_implementation/g1/concurrentMark.hpp" |
45 |
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp" |
|
46 |
#include "gc_implementation/g1/heapRegionRemSet.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
47 |
#endif // INCLUDE_ALL_GCS |
12095 | 48 |
|
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
49 |
#ifdef INCLUDE_NMT |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
50 |
#include "services/memTracker.hpp" |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
51 |
#endif // INCLUDE_NMT |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
52 |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
53 |
#include "compiler/compileBroker.hpp" |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
54 |
#include "runtime/compilationPolicy.hpp" |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
55 |
|
21554
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
56 |
#define SIZE_T_MAX_VALUE ((size_t) -1) |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
57 |
|
12095 | 58 |
bool WhiteBox::_used = false; |
59 |
||
60 |
WB_ENTRY(jlong, WB_GetObjectAddress(JNIEnv* env, jobject o, jobject obj)) |
|
61 |
return (jlong)(void*)JNIHandles::resolve(obj); |
|
62 |
WB_END |
|
63 |
||
64 |
WB_ENTRY(jint, WB_GetHeapOopSize(JNIEnv* env, jobject o)) |
|
65 |
return heapOopSize; |
|
66 |
WB_END |
|
67 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
68 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
69 |
class WBIsKlassAliveClosure : public KlassClosure { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
70 |
Symbol* _name; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
71 |
bool _found; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
72 |
public: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
73 |
WBIsKlassAliveClosure(Symbol* name) : _name(name), _found(false) {} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
74 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
75 |
void do_klass(Klass* k) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
76 |
if (_found) return; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
77 |
Symbol* ksym = k->name(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
78 |
if (ksym->fast_compare(_name) == 0) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
79 |
_found = true; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
80 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
81 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
82 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
83 |
bool found() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
84 |
return _found; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
85 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
86 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
87 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
88 |
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
|
89 |
Handle h_name = JNIHandles::resolve(name); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
90 |
if (h_name.is_null()) return false; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
91 |
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
|
92 |
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
|
93 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
94 |
WBIsKlassAliveClosure closure(sym); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
95 |
ClassLoaderDataGraph::classes_do(&closure); |
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 |
return closure.found(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
98 |
WB_END |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
99 |
|
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
100 |
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
|
101 |
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
|
102 |
} |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
103 |
WB_END |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
104 |
|
17322
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
105 |
WB_ENTRY(void, WB_PrintHeapSizes(JNIEnv* env, jobject o)) { |
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
106 |
CollectorPolicy * p = Universe::heap()->collector_policy(); |
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
107 |
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
|
108 |
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
|
109 |
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
|
110 |
p->space_alignment(), p->heap_alignment()); |
17322
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
111 |
} |
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
112 |
WB_END |
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
113 |
|
21554
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
114 |
#ifndef PRODUCT |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
115 |
// Forward declaration |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
116 |
void TestReservedSpace_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
117 |
void TestReserveMemorySpecial_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
118 |
void TestVirtualSpace_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
119 |
void TestMetaspaceAux_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
120 |
#endif |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
121 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
122 |
WB_ENTRY(void, WB_RunMemoryUnitTests(JNIEnv* env, jobject o)) |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
123 |
#ifndef PRODUCT |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
124 |
TestReservedSpace_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
125 |
TestReserveMemorySpecial_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
126 |
TestVirtualSpace_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
127 |
TestMetaspaceAux_test(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
128 |
#endif |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
129 |
WB_END |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
130 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
131 |
WB_ENTRY(void, WB_ReadFromNoaccessArea(JNIEnv* env, jobject o)) |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
132 |
size_t granularity = os::vm_allocation_granularity(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
133 |
ReservedHeapSpace rhs(100 * granularity, granularity, false, NULL); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
134 |
VirtualSpace vs; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
135 |
vs.initialize(rhs, 50 * granularity); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
136 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
137 |
//Check if constraints are complied |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
138 |
if (!( UseCompressedOops && rhs.base() != NULL && |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
139 |
Universe::narrow_oop_base() != NULL && |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
140 |
Universe::narrow_oop_use_implicit_null_checks() )) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
141 |
tty->print_cr("WB_ReadFromNoaccessArea method is useless:\n " |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
142 |
"\tUseCompressedOops is %d\n" |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
143 |
"\trhs.base() is "PTR_FORMAT"\n" |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
144 |
"\tUniverse::narrow_oop_base() is "PTR_FORMAT"\n" |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
145 |
"\tUniverse::narrow_oop_use_implicit_null_checks() is %d", |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
146 |
UseCompressedOops, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
147 |
rhs.base(), |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
148 |
Universe::narrow_oop_base(), |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
149 |
Universe::narrow_oop_use_implicit_null_checks()); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
150 |
return; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
151 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
152 |
tty->print_cr("Reading from no access area... "); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
153 |
tty->print_cr("*(vs.low_boundary() - rhs.noaccess_prefix() / 2 ) = %c", |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
154 |
*(vs.low_boundary() - rhs.noaccess_prefix() / 2 )); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
155 |
WB_END |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
156 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
157 |
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
|
158 |
size_t magnitude, size_t iterations) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
159 |
size_t granularity = os::vm_allocation_granularity(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
160 |
ReservedHeapSpace rhs(reserved_space_size * granularity, granularity, false, NULL); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
161 |
VirtualSpace vs; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
162 |
if (!vs.initialize(rhs, 0)) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
163 |
tty->print_cr("Failed to initialize VirtualSpace. Can't proceed."); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
164 |
return 3; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
165 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
166 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
167 |
long seed = os::random(); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
168 |
tty->print_cr("Random seed is %ld", seed); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
169 |
os::init_random(seed); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
170 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
171 |
for (size_t i = 0; i < iterations; i++) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
172 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
173 |
// Whether we will shrink or grow |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
174 |
bool shrink = os::random() % 2L == 0; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
175 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
176 |
// Get random delta to resize virtual space |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
177 |
size_t delta = (size_t)os::random() % magnitude; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
178 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
179 |
// 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
|
180 |
if (shrink && vs.committed_size() < delta) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
181 |
shrink = false; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
182 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
183 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
184 |
// Resizing by delta |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
185 |
if (shrink) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
186 |
vs.shrink_by(delta); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
187 |
} else { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
188 |
// If expanding fails expand_by will silently return false |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
189 |
vs.expand_by(delta, true); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
190 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
191 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
192 |
return 0; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
193 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
194 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
195 |
WB_ENTRY(jint, WB_StressVirtualSpaceResize(JNIEnv* env, jobject o, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
196 |
jlong reserved_space_size, jlong magnitude, jlong iterations)) |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
197 |
tty->print_cr("reservedSpaceSize="JLONG_FORMAT", magnitude="JLONG_FORMAT", " |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
198 |
"iterations="JLONG_FORMAT"\n", reserved_space_size, magnitude, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
199 |
iterations); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
200 |
if (reserved_space_size < 0 || magnitude < 0 || iterations < 0) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
201 |
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
|
202 |
return 1; |
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 |
|
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
205 |
// 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
|
206 |
// 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
|
207 |
if (sizeof(size_t) < sizeof(jlong)) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
208 |
jlong size_t_max_value = (jlong) SIZE_T_MAX_VALUE; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
209 |
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
|
210 |
|| iterations > size_t_max_value) { |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
211 |
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
|
212 |
return 2; |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
213 |
} |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
214 |
} |
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 |
return wb_stress_virtual_space_resize((size_t) reserved_space_size, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
217 |
(size_t) magnitude, (size_t) iterations); |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
218 |
WB_END |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
219 |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
220 |
#if INCLUDE_ALL_GCS |
12095 | 221 |
WB_ENTRY(jboolean, WB_G1IsHumongous(JNIEnv* env, jobject o, jobject obj)) |
222 |
G1CollectedHeap* g1 = G1CollectedHeap::heap(); |
|
223 |
oop result = JNIHandles::resolve(obj); |
|
224 |
const HeapRegion* hr = g1->heap_region_containing(result); |
|
225 |
return hr->isHumongous(); |
|
226 |
WB_END |
|
227 |
||
228 |
WB_ENTRY(jlong, WB_G1NumFreeRegions(JNIEnv* env, jobject o)) |
|
229 |
G1CollectedHeap* g1 = G1CollectedHeap::heap(); |
|
230 |
size_t nr = g1->free_regions(); |
|
231 |
return (jlong)nr; |
|
232 |
WB_END |
|
233 |
||
234 |
WB_ENTRY(jboolean, WB_G1InConcurrentMark(JNIEnv* env, jobject o)) |
|
235 |
G1CollectedHeap* g1 = G1CollectedHeap::heap(); |
|
236 |
ConcurrentMark* cm = g1->concurrent_mark(); |
|
237 |
return cm->concurrent_marking_in_progress(); |
|
238 |
WB_END |
|
239 |
||
240 |
WB_ENTRY(jint, WB_G1RegionSize(JNIEnv* env, jobject o)) |
|
241 |
return (jint)HeapRegion::GrainBytes; |
|
242 |
WB_END |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
243 |
#endif // INCLUDE_ALL_GCS |
12095 | 244 |
|
19554
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
245 |
#if INCLUDE_NMT |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
246 |
// 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
|
247 |
// NMT picks it up correctly |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
248 |
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
|
249 |
jlong addr = 0; |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
250 |
|
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
251 |
if (MemTracker::is_on() && !MemTracker::shutdown_in_progress()) { |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
252 |
addr = (jlong)(uintptr_t)os::malloc(size, mtTest); |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
253 |
} |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
254 |
|
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
255 |
return addr; |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
256 |
WB_END |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
257 |
|
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
258 |
// Free the memory allocated by NMTAllocTest |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
259 |
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
|
260 |
os::free((void*)(uintptr_t)mem, mtTest); |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
261 |
WB_END |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
262 |
|
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
263 |
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
|
264 |
jlong addr = 0; |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
265 |
|
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
266 |
if (MemTracker::is_on() && !MemTracker::shutdown_in_progress()) { |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
267 |
addr = (jlong)(uintptr_t)os::reserve_memory(size); |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
268 |
MemTracker::record_virtual_memory_type((address)addr, mtTest); |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
269 |
} |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
270 |
|
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
271 |
return addr; |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
272 |
WB_END |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
273 |
|
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
274 |
|
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
275 |
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
|
276 |
os::commit_memory((char *)(uintptr_t)addr, size, !ExecMem); |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
277 |
MemTracker::record_virtual_memory_type((address)(uintptr_t)addr, mtTest); |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
278 |
WB_END |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
279 |
|
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
280 |
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
|
281 |
os::uncommit_memory((char *)(uintptr_t)addr, size); |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
282 |
WB_END |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
283 |
|
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
284 |
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
|
285 |
os::release_memory((char *)(uintptr_t)addr, size); |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
286 |
WB_END |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
287 |
|
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
288 |
// Block until the current generation of NMT data to be merged, used to reliably test the NMT feature |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
289 |
WB_ENTRY(jboolean, WB_NMTWaitForDataMerge(JNIEnv* env)) |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
290 |
|
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
291 |
if (!MemTracker::is_on() || MemTracker::shutdown_in_progress()) { |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
292 |
return false; |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
293 |
} |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
294 |
|
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
295 |
return MemTracker::wbtest_wait_for_data_merge(); |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
296 |
WB_END |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
297 |
|
19554
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
298 |
WB_ENTRY(jboolean, WB_NMTIsDetailSupported(JNIEnv* env)) |
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
299 |
return MemTracker::tracking_level() == MemTracker::NMT_detail; |
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
300 |
WB_END |
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
301 |
|
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
302 |
#endif // INCLUDE_NMT |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
303 |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
304 |
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
|
305 |
assert(method != NULL, "method should not be null"); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
306 |
ThreadToNativeFromVM ttn(thread); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
307 |
return env->FromReflectedMethod(method); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
308 |
} |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
309 |
|
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
310 |
WB_ENTRY(void, WB_DeoptimizeAll(JNIEnv* env, jobject o)) |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
311 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
312 |
CodeCache::mark_all_nmethods_for_deoptimization(); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
313 |
VM_Deoptimize op; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
314 |
VMThread::execute(&op); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
315 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
316 |
|
19332 | 317 |
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
|
318 |
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
|
319 |
int result = 0; |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
320 |
CHECK_JNI_EXCEPTION_(env, result); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
321 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
322 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 323 |
nmethod* code; |
324 |
if (is_osr) { |
|
325 |
int bci = InvocationEntryBci; |
|
326 |
while ((code = mh->lookup_osr_nmethod_for(bci, CompLevel_none, false)) != NULL) { |
|
327 |
code->mark_for_deoptimization(); |
|
328 |
++result; |
|
329 |
bci = code->osr_entry_bci() + 1; |
|
330 |
} |
|
331 |
} else { |
|
332 |
code = mh->code(); |
|
333 |
} |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
334 |
if (code != NULL) { |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
335 |
code->mark_for_deoptimization(); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
336 |
++result; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
337 |
} |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
338 |
result += CodeCache::mark_for_deoptimization(mh()); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
339 |
if (result > 0) { |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
340 |
VM_Deoptimize op; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
341 |
VMThread::execute(&op); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
342 |
} |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
343 |
return result; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
344 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
345 |
|
19332 | 346 |
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
|
347 |
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
|
348 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
349 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
350 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 351 |
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
|
352 |
if (code == NULL) { |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
353 |
return JNI_FALSE; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
354 |
} |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
355 |
return (code->is_alive() && !code->is_marked_for_deoptimization()); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
356 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
357 |
|
19332 | 358 |
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
|
359 |
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
|
360 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
361 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
362 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 363 |
if (is_osr) { |
364 |
return CompilationPolicy::can_be_osr_compiled(mh, comp_level); |
|
365 |
} else { |
|
366 |
return CompilationPolicy::can_be_compiled(mh, comp_level); |
|
367 |
} |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
368 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
369 |
|
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
370 |
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
|
371 |
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
|
372 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
373 |
MutexLockerEx mu(Compile_lock); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
374 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
375 |
return mh->queued_for_compilation(); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
376 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
377 |
|
19332 | 378 |
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
|
379 |
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
|
380 |
CHECK_JNI_EXCEPTION_(env, CompLevel_none); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
381 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 382 |
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
|
383 |
return (code != NULL ? code->comp_level() : CompLevel_none); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
384 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
385 |
|
19332 | 386 |
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
|
387 |
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
|
388 |
CHECK_JNI_EXCEPTION(env); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
389 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 390 |
if (is_osr) { |
391 |
mh->set_not_osr_compilable(comp_level, true /* report */, "WhiteBox"); |
|
392 |
} else { |
|
393 |
mh->set_not_compilable(comp_level, true /* report */, "WhiteBox"); |
|
394 |
} |
|
395 |
WB_END |
|
396 |
||
397 |
WB_ENTRY(jint, WB_GetMethodEntryBci(JNIEnv* env, jobject o, jobject method)) |
|
398 |
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
|
399 |
CHECK_JNI_EXCEPTION_(env, InvocationEntryBci); |
19332 | 400 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
401 |
nmethod* code = mh->lookup_osr_nmethod_for(InvocationEntryBci, CompLevel_none, false); |
|
402 |
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
|
403 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
404 |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
405 |
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
|
406 |
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
|
407 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
408 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
409 |
bool result = mh->dont_inline(); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
410 |
mh->set_dont_inline(value == JNI_TRUE); |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
411 |
return result; |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
412 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
413 |
|
19332 | 414 |
WB_ENTRY(jint, WB_GetCompileQueueSize(JNIEnv* env, jobject o, jint comp_level)) |
415 |
if (comp_level == CompLevel_any) { |
|
416 |
return CompileBroker::queue_size(CompLevel_full_optimization) /* C2 */ + |
|
417 |
CompileBroker::queue_size(CompLevel_full_profile) /* C1 */; |
|
418 |
} else { |
|
419 |
return CompileBroker::queue_size(comp_level); |
|
420 |
} |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
421 |
WB_END |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
422 |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
423 |
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
|
424 |
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
|
425 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
426 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
427 |
bool result = mh->force_inline(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
428 |
mh->set_force_inline(value == JNI_TRUE); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
429 |
return result; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
430 |
WB_END |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
431 |
|
19332 | 432 |
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
|
433 |
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
|
434 |
CHECK_JNI_EXCEPTION_(env, JNI_FALSE); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
435 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
19332 | 436 |
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
|
437 |
MutexLockerEx mu(Compile_lock); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
438 |
return (mh->queued_for_compilation() || nm != NULL); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
439 |
WB_END |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
440 |
|
23848 | 441 |
class VM_WhiteBoxOperation : public VM_Operation { |
442 |
public: |
|
443 |
VM_WhiteBoxOperation() { } |
|
444 |
VMOp_Type type() const { return VMOp_WhiteBoxOperation; } |
|
445 |
bool allow_nested_vm_operations() const { return true; } |
|
446 |
}; |
|
447 |
||
448 |
class AlwaysFalseClosure : public BoolObjectClosure { |
|
449 |
public: |
|
450 |
bool do_object_b(oop p) { return false; } |
|
451 |
}; |
|
452 |
||
453 |
static AlwaysFalseClosure always_false; |
|
454 |
||
455 |
class VM_WhiteBoxCleanMethodData : public VM_WhiteBoxOperation { |
|
456 |
public: |
|
457 |
VM_WhiteBoxCleanMethodData(MethodData* mdo) : _mdo(mdo) { } |
|
458 |
void doit() { |
|
459 |
_mdo->clean_method_data(&always_false); |
|
460 |
} |
|
461 |
private: |
|
462 |
MethodData* _mdo; |
|
463 |
}; |
|
464 |
||
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
465 |
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
|
466 |
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
|
467 |
CHECK_JNI_EXCEPTION(env); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
468 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
469 |
MutexLockerEx mu(Compile_lock); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
470 |
MethodData* mdo = mh->method_data(); |
17002 | 471 |
MethodCounters* mcs = mh->method_counters(); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
472 |
|
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
473 |
if (mdo != NULL) { |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
474 |
mdo->init(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
475 |
ResourceMark rm; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
476 |
int arg_count = mdo->method()->size_of_parameters(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
477 |
for (int i = 0; i < arg_count; i++) { |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
478 |
mdo->set_arg_modified(i, 0); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
479 |
} |
23848 | 480 |
VM_WhiteBoxCleanMethodData op(mdo); |
481 |
VMThread::execute(&op); |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
482 |
} |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
483 |
|
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
484 |
mh->clear_not_c1_compilable(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
485 |
mh->clear_not_c2_compilable(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
486 |
mh->clear_not_c2_osr_compilable(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
487 |
NOT_PRODUCT(mh->set_compiled_invocation_count(0)); |
17002 | 488 |
if (mcs != NULL) { |
489 |
mcs->backedge_counter()->init(); |
|
490 |
mcs->invocation_counter()->init(); |
|
491 |
mcs->set_interpreter_invocation_count(0); |
|
492 |
mcs->set_interpreter_throwout_count(0); |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
493 |
|
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
494 |
#ifdef TIERED |
17002 | 495 |
mcs->set_rate(0.0F); |
496 |
mh->set_prev_event_count(0, THREAD); |
|
497 |
mh->set_prev_time(0, THREAD); |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
498 |
#endif |
17002 | 499 |
} |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
500 |
WB_END |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
501 |
|
16601 | 502 |
WB_ENTRY(jboolean, WB_IsInStringTable(JNIEnv* env, jobject o, jstring javaString)) |
503 |
ResourceMark rm(THREAD); |
|
504 |
int len; |
|
17081
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
17018
diff
changeset
|
505 |
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
|
506 |
return (StringTable::lookup(name, len) != NULL); |
16601 | 507 |
WB_END |
508 |
||
509 |
WB_ENTRY(void, WB_FullGC(JNIEnv* env, jobject o)) |
|
510 |
Universe::heap()->collector_policy()->set_should_clear_all_soft_refs(true); |
|
511 |
Universe::heap()->collect(GCCause::_last_ditch_collection); |
|
512 |
WB_END |
|
513 |
||
17083 | 514 |
|
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
|
515 |
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
|
516 |
// 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
|
517 |
// (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
|
518 |
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
|
519 |
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
|
520 |
|
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
|
521 |
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
|
522 |
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
|
523 |
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
|
524 |
} |
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
|
525 |
|
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
|
526 |
c = *p; |
17083 | 527 |
WB_END |
528 |
||
23493
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
529 |
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
|
530 |
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
|
531 |
ThreadToNativeFromVM ttn(thread); |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
532 |
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
|
533 |
|
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
534 |
CHECK_JNI_EXCEPTION_(env, NULL); |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
535 |
|
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
536 |
return features_string; |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
537 |
WB_END |
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
538 |
|
23499 | 539 |
|
540 |
WB_ENTRY(jobjectArray, WB_GetNMethod(JNIEnv* env, jobject o, jobject method, jboolean is_osr)) |
|
541 |
ResourceMark rm(THREAD); |
|
542 |
jmethodID jmid = reflected_method_to_jmid(thread, env, method); |
|
543 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
544 |
methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); |
|
545 |
nmethod* code = is_osr ? mh->lookup_osr_nmethod_for(InvocationEntryBci, CompLevel_none, false) : mh->code(); |
|
546 |
jobjectArray result = NULL; |
|
547 |
if (code == NULL) { |
|
548 |
return result; |
|
549 |
} |
|
550 |
int insts_size = code->insts_size(); |
|
551 |
||
552 |
ThreadToNativeFromVM ttn(thread); |
|
553 |
jclass clazz = env->FindClass(vmSymbols::java_lang_Object()->as_C_string()); |
|
554 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
555 |
result = env->NewObjectArray(2, clazz, NULL); |
|
556 |
if (result == NULL) { |
|
557 |
return result; |
|
558 |
} |
|
559 |
||
560 |
clazz = env->FindClass(vmSymbols::java_lang_Integer()->as_C_string()); |
|
561 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
562 |
jmethodID constructor = env->GetMethodID(clazz, vmSymbols::object_initializer_name()->as_C_string(), vmSymbols::int_void_signature()->as_C_string()); |
|
563 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
564 |
jobject obj = env->NewObject(clazz, constructor, code->comp_level()); |
|
565 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
566 |
env->SetObjectArrayElement(result, 0, obj); |
|
567 |
||
568 |
jbyteArray insts = env->NewByteArray(insts_size); |
|
569 |
CHECK_JNI_EXCEPTION_(env, NULL); |
|
570 |
env->SetByteArrayRegion(insts, 0, insts_size, (jbyte*) code->insts_begin()); |
|
571 |
env->SetObjectArrayElement(result, 1, insts); |
|
572 |
||
573 |
return result; |
|
574 |
WB_END |
|
575 |
||
576 |
||
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
577 |
//Some convenience methods to deal with objects from java |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
578 |
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
|
579 |
Symbol* signature_symbol) { |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
580 |
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
|
581 |
Thread* THREAD = Thread::current(); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
582 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
583 |
//Get the class of our object |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
584 |
Klass* arg_klass = object->klass(); |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
585 |
//Turn it into an instance-klass |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
586 |
InstanceKlass* ik = InstanceKlass::cast(arg_klass); |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
587 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
588 |
//Create symbols to look for in the class |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
589 |
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
|
590 |
THREAD); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
591 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
592 |
//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
|
593 |
fieldDescriptor fd; |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
594 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13200
diff
changeset
|
595 |
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
|
596 |
if (res == NULL) { |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
597 |
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
|
598 |
name_symbol->as_C_string()); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
599 |
fatal("Invalid layout of preloaded class"); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
600 |
} |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
601 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
602 |
//fetch the field at the offset we've found |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
603 |
int dest_offset = fd.offset(); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
604 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
605 |
return dest_offset; |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
606 |
} |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
607 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
608 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
609 |
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
|
610 |
int offset = offset_for_field(field_name, object, |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
611 |
vmSymbols::string_signature()); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
612 |
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
|
613 |
if (string == NULL) { |
7b506e7b406e
7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents:
12262
diff
changeset
|
614 |
return NULL; |
7b506e7b406e
7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents:
12262
diff
changeset
|
615 |
} |
12262
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
616 |
const char* ret = java_lang_String::as_utf8_string(string); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
617 |
return ret; |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
618 |
} |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
619 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
620 |
bool WhiteBox::lookup_bool(const char* field_name, oop object) { |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
621 |
int offset = |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
622 |
offset_for_field(field_name, object, vmSymbols::bool_signature()); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
623 |
bool ret = (object->bool_field(offset) == JNI_TRUE); |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
624 |
return ret; |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
625 |
} |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
626 |
|
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
627 |
|
12095 | 628 |
#define CC (char*) |
629 |
||
630 |
static JNINativeMethod methods[] = { |
|
631 |
{CC"getObjectAddress", CC"(Ljava/lang/Object;)J", (void*)&WB_GetObjectAddress }, |
|
632 |
{CC"getHeapOopSize", CC"()I", (void*)&WB_GetHeapOopSize }, |
|
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
633 |
{CC"isClassAlive0", CC"(Ljava/lang/String;)Z", (void*)&WB_IsClassAlive }, |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
634 |
{CC"parseCommandLine", |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
635 |
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
|
636 |
(void*) &WB_ParseCommandLine |
fb3b9fede660
7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents:
12095
diff
changeset
|
637 |
}, |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
638 |
{CC"getCompressedOopsMaxHeapSize", CC"()J", |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19554
diff
changeset
|
639 |
(void*)&WB_GetCompressedOopsMaxHeapSize}, |
17322
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
640 |
{CC"printHeapSizes", CC"()V", (void*)&WB_PrintHeapSizes }, |
21554
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
641 |
{CC"runMemoryUnitTests", CC"()V", (void*)&WB_RunMemoryUnitTests}, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
642 |
{CC"readFromNoaccessArea",CC"()V", (void*)&WB_ReadFromNoaccessArea}, |
20b1821f4fbd
8027237: New tests on ReservedSpace/VirtualSpace classes
mgerdin
parents:
19986
diff
changeset
|
643 |
{CC"stressVirtualSpaceResize",CC"(JJJ)I", (void*)&WB_StressVirtualSpaceResize}, |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
644 |
#if INCLUDE_ALL_GCS |
12095 | 645 |
{CC"g1InConcurrentMark", CC"()Z", (void*)&WB_G1InConcurrentMark}, |
646 |
{CC"g1IsHumongous", CC"(Ljava/lang/Object;)Z", (void*)&WB_G1IsHumongous }, |
|
647 |
{CC"g1NumFreeRegions", CC"()J", (void*)&WB_G1NumFreeRegions }, |
|
648 |
{CC"g1RegionSize", CC"()I", (void*)&WB_G1RegionSize }, |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
649 |
#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
|
650 |
#if INCLUDE_NMT |
16666
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
651 |
{CC"NMTMalloc", CC"(J)J", (void*)&WB_NMTMalloc }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
652 |
{CC"NMTFree", CC"(J)V", (void*)&WB_NMTFree }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
653 |
{CC"NMTReserveMemory", CC"(J)J", (void*)&WB_NMTReserveMemory }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
654 |
{CC"NMTCommitMemory", CC"(JJ)V", (void*)&WB_NMTCommitMemory }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
655 |
{CC"NMTUncommitMemory", CC"(JJ)V", (void*)&WB_NMTUncommitMemory }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
656 |
{CC"NMTReleaseMemory", CC"(JJ)V", (void*)&WB_NMTReleaseMemory }, |
da191c7e38d2
8009125: Add NMT tests for Virtual Memory operations
ctornqvi
parents:
16601
diff
changeset
|
657 |
{CC"NMTWaitForDataMerge", CC"()Z", (void*)&WB_NMTWaitForDataMerge}, |
19554
3f21e829c7de
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
cjplummer
parents:
19332
diff
changeset
|
658 |
{CC"NMTIsDetailSupported",CC"()Z", (void*)&WB_NMTIsDetailSupported}, |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
13728
diff
changeset
|
659 |
#endif // INCLUDE_NMT |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
660 |
{CC"deoptimizeAll", CC"()V", (void*)&WB_DeoptimizeAll }, |
19332 | 661 |
{CC"deoptimizeMethod", CC"(Ljava/lang/reflect/Executable;Z)I", |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
662 |
(void*)&WB_DeoptimizeMethod }, |
19332 | 663 |
{CC"isMethodCompiled", CC"(Ljava/lang/reflect/Executable;Z)Z", |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
664 |
(void*)&WB_IsMethodCompiled }, |
19332 | 665 |
{CC"isMethodCompilable", CC"(Ljava/lang/reflect/Executable;IZ)Z", |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
666 |
(void*)&WB_IsMethodCompilable}, |
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
667 |
{CC"isMethodQueuedForCompilation", |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16694
diff
changeset
|
668 |
CC"(Ljava/lang/reflect/Executable;)Z", (void*)&WB_IsMethodQueuedForCompilation}, |
15621
b094c56bba84
8006683: Add WhiteBox API to testing of compiler
iignatyev
parents:
15484
diff
changeset
|
669 |
{CC"makeMethodNotCompilable", |
19332 | 670 |
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
|
671 |
{CC"testSetDontInlineMethod", |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16694
diff
changeset
|
672 |
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
|
673 |
{CC"getMethodCompilationLevel", |
19332 | 674 |
CC"(Ljava/lang/reflect/Executable;Z)I", (void*)&WB_GetMethodCompilationLevel}, |
675 |
{CC"getMethodEntryBci", |
|
676 |
CC"(Ljava/lang/reflect/Executable;)I", (void*)&WB_GetMethodEntryBci}, |
|
677 |
{CC"getCompileQueueSize", |
|
678 |
CC"(I)I", (void*)&WB_GetCompileQueueSize}, |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16601
diff
changeset
|
679 |
{CC"testSetForceInlineMethod", |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16694
diff
changeset
|
680 |
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
|
681 |
{CC"enqueueMethodForCompilation", |
19332 | 682 |
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
|
683 |
{CC"clearMethodState", |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16694
diff
changeset
|
684 |
CC"(Ljava/lang/reflect/Executable;)V", (void*)&WB_ClearMethodState}, |
16601 | 685 |
{CC"isInStringTable", CC"(Ljava/lang/String;)Z", (void*)&WB_IsInStringTable }, |
686 |
{CC"fullGC", CC"()V", (void*)&WB_FullGC }, |
|
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
|
687 |
{CC"readReservedMemory", CC"()V", (void*)&WB_ReadReservedMemory }, |
23493
170c77c1103a
8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
iignatyev
parents:
22795
diff
changeset
|
688 |
{CC"getCPUFeatures", CC"()Ljava/lang/String;", (void*)&WB_GetCPUFeatures }, |
23499 | 689 |
{CC"getNMethod", CC"(Ljava/lang/reflect/Executable;Z)[Ljava/lang/Object;", |
690 |
(void*)&WB_GetNMethod }, |
|
12095 | 691 |
}; |
692 |
||
693 |
#undef CC |
|
694 |
||
695 |
JVM_ENTRY(void, JVM_RegisterWhiteBoxMethods(JNIEnv* env, jclass wbclass)) |
|
696 |
{ |
|
697 |
if (WhiteBoxAPI) { |
|
698 |
// Make sure that wbclass is loaded by the null classloader |
|
699 |
instanceKlassHandle ikh = instanceKlassHandle(JNIHandles::resolve(wbclass)->klass()); |
|
700 |
Handle loader(ikh->class_loader()); |
|
701 |
if (loader.is_null()) { |
|
17122
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
702 |
ResourceMark rm; |
12095 | 703 |
ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI |
17122
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
704 |
bool result = true; |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
705 |
// one by one registration natives for exception catching |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
706 |
jclass exceptionKlass = env->FindClass(vmSymbols::java_lang_NoSuchMethodError()->as_C_string()); |
22786
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
707 |
CHECK_JNI_EXCEPTION(env); |
17122
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
708 |
for (int i = 0, n = sizeof(methods) / sizeof(methods[0]); i < n; ++i) { |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
709 |
if (env->RegisterNatives(wbclass, methods + i, 1) != 0) { |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
710 |
result = false; |
22786
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
711 |
jthrowable throwable_obj = env->ExceptionOccurred(); |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
712 |
if (throwable_obj != NULL) { |
17122
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
713 |
env->ExceptionClear(); |
22786
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
714 |
if (env->IsInstanceOf(throwable_obj, exceptionKlass)) { |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
715 |
// j.l.NoSuchMethodError is thrown when a method can't be found or a method is not native |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
716 |
// ignoring the exception |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
717 |
tty->print_cr("Warning: 'NoSuchMethodError' on register of sun.hotspot.WhiteBox::%s%s", methods[i].name, methods[i].signature); |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
21571
diff
changeset
|
718 |
} |
17122
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
719 |
} else { |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
720 |
// register is failed w/o exception or w/ unexpected exception |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
721 |
tty->print_cr("Warning: unexpected error on register of sun.hotspot.WhiteBox::%s%s. All methods will be unregistered", methods[i].name, methods[i].signature); |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
722 |
env->UnregisterNatives(wbclass); |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
723 |
break; |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
724 |
} |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
725 |
} |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
726 |
} |
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
727 |
|
6ceb071b96de
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
iignatyev
parents:
17018
diff
changeset
|
728 |
if (result) { |
12095 | 729 |
WhiteBox::set_used(); |
730 |
} |
|
731 |
} |
|
732 |
} |
|
733 |
} |
|
734 |
JVM_END |