author | rkennke |
Mon, 04 Jun 2018 23:01:48 +0200 | |
changeset 50389 | 7e8c0409a747 |
parent 50180 | ffa644980dff |
child 50860 | 480a96a43b62 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47634
diff
changeset
|
2 |
* Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5252
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5252
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5252
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/systemDictionary.hpp" |
|
27 |
#include "classfile/vmSymbols.hpp" |
|
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25351
diff
changeset
|
28 |
#include "code/codeCache.hpp" |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
49449
diff
changeset
|
29 |
#include "code/compiledMethod.inline.hpp" |
7397 | 30 |
#include "code/compiledIC.hpp" |
31 |
#include "code/icBuffer.hpp" |
|
32 |
#include "code/nmethod.hpp" |
|
33 |
#include "code/pcDesc.hpp" |
|
34 |
#include "code/scopeDesc.hpp" |
|
35 |
#include "code/vtableStubs.hpp" |
|
36 |
#include "compiler/compileBroker.hpp" |
|
37 |
#include "compiler/oopMap.hpp" |
|
30764 | 38 |
#include "gc/g1/heapRegion.hpp" |
39 |
#include "gc/shared/barrierSet.hpp" |
|
40 |
#include "gc/shared/collectedHeap.hpp" |
|
49594
898ef81cbc0e
8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents:
49480
diff
changeset
|
41 |
#include "gc/shared/gcLocker.hpp" |
7397 | 42 |
#include "interpreter/bytecode.hpp" |
43 |
#include "interpreter/interpreter.hpp" |
|
44 |
#include "interpreter/linkResolver.hpp" |
|
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
45 |
#include "logging/log.hpp" |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42895
diff
changeset
|
46 |
#include "logging/logStream.hpp" |
7397 | 47 |
#include "memory/oopFactory.hpp" |
37248 | 48 |
#include "memory/resourceArea.hpp" |
7397 | 49 |
#include "oops/objArrayKlass.hpp" |
50 |
#include "oops/oop.inline.hpp" |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
35216
diff
changeset
|
51 |
#include "oops/typeArrayOop.inline.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25351
diff
changeset
|
52 |
#include "opto/ad.hpp" |
7397 | 53 |
#include "opto/addnode.hpp" |
54 |
#include "opto/callnode.hpp" |
|
55 |
#include "opto/cfgnode.hpp" |
|
56 |
#include "opto/graphKit.hpp" |
|
57 |
#include "opto/machnode.hpp" |
|
58 |
#include "opto/matcher.hpp" |
|
59 |
#include "opto/memnode.hpp" |
|
60 |
#include "opto/mulnode.hpp" |
|
61 |
#include "opto/runtime.hpp" |
|
62 |
#include "opto/subnode.hpp" |
|
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39962
diff
changeset
|
63 |
#include "runtime/atomic.hpp" |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
49449
diff
changeset
|
64 |
#include "runtime/frame.inline.hpp" |
7397 | 65 |
#include "runtime/handles.inline.hpp" |
49449
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49347
diff
changeset
|
66 |
#include "runtime/interfaceSupport.inline.hpp" |
7397 | 67 |
#include "runtime/javaCalls.hpp" |
68 |
#include "runtime/sharedRuntime.hpp" |
|
69 |
#include "runtime/signature.hpp" |
|
70 |
#include "runtime/threadCritical.hpp" |
|
71 |
#include "runtime/vframe.hpp" |
|
72 |
#include "runtime/vframeArray.hpp" |
|
73 |
#include "runtime/vframe_hp.hpp" |
|
74 |
#include "utilities/copy.hpp" |
|
75 |
#include "utilities/preserveException.hpp" |
|
1 | 76 |
|
77 |
||
78 |
// For debugging purposes: |
|
79 |
// To force FullGCALot inside a runtime function, add the following two lines |
|
80 |
// |
|
81 |
// Universe::release_fullgc_alot_dummy(); |
|
82 |
// MarkSweep::invoke(0, "Debugging"); |
|
83 |
// |
|
84 |
// At command line specify the parameters: -XX:+FullGCALot -XX:FullGCALotStart=100000000 |
|
85 |
||
86 |
||
87 |
||
88 |
||
89 |
// Compiled code entry points |
|
90 |
address OptoRuntime::_new_instance_Java = NULL; |
|
91 |
address OptoRuntime::_new_array_Java = NULL; |
|
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
92 |
address OptoRuntime::_new_array_nozero_Java = NULL; |
1 | 93 |
address OptoRuntime::_multianewarray2_Java = NULL; |
94 |
address OptoRuntime::_multianewarray3_Java = NULL; |
|
95 |
address OptoRuntime::_multianewarray4_Java = NULL; |
|
96 |
address OptoRuntime::_multianewarray5_Java = NULL; |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
97 |
address OptoRuntime::_multianewarrayN_Java = NULL; |
1 | 98 |
address OptoRuntime::_vtable_must_compile_Java = NULL; |
99 |
address OptoRuntime::_complete_monitor_locking_Java = NULL; |
|
31856 | 100 |
address OptoRuntime::_monitor_notify_Java = NULL; |
101 |
address OptoRuntime::_monitor_notifyAll_Java = NULL; |
|
1 | 102 |
address OptoRuntime::_rethrow_Java = NULL; |
103 |
||
104 |
address OptoRuntime::_slow_arraycopy_Java = NULL; |
|
105 |
address OptoRuntime::_register_finalizer_Java = NULL; |
|
106 |
||
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
8921
diff
changeset
|
107 |
ExceptionBlob* OptoRuntime::_exception_blob; |
1 | 108 |
|
109 |
// This should be called in an assertion at the start of OptoRuntime routines |
|
110 |
// which are entered from compiled code (all of them) |
|
17379 | 111 |
#ifdef ASSERT |
1 | 112 |
static bool check_compiled_frame(JavaThread* thread) { |
113 |
assert(thread->last_frame().is_runtime_frame(), "cannot call runtime directly from compiled code"); |
|
114 |
RegisterMap map(thread, false); |
|
115 |
frame caller = thread->last_frame().sender(&map); |
|
116 |
assert(caller.is_compiled_frame(), "not being called from compiled like code"); |
|
117 |
return true; |
|
118 |
} |
|
17379 | 119 |
#endif // ASSERT |
1 | 120 |
|
121 |
||
122 |
#define gen(env, var, type_func_gen, c_func, fancy_jump, pass_tls, save_arg_regs, return_pc) \ |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20703
diff
changeset
|
123 |
var = generate_stub(env, type_func_gen, CAST_FROM_FN_PTR(address, c_func), #var, fancy_jump, pass_tls, save_arg_regs, return_pc); \ |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20703
diff
changeset
|
124 |
if (var == NULL) { return false; } |
1 | 125 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20703
diff
changeset
|
126 |
bool OptoRuntime::generate(ciEnv* env) { |
1 | 127 |
|
128 |
generate_exception_blob(); |
|
129 |
||
130 |
// Note: tls: Means fetching the return oop out of the thread-local storage |
|
131 |
// |
|
132 |
// variable/name type-function-gen , runtime method ,fncy_jp, tls,save_args,retpc |
|
133 |
// ------------------------------------------------------------------------------------------------------------------------------- |
|
134 |
gen(env, _new_instance_Java , new_instance_Type , new_instance_C , 0 , true , false, false); |
|
135 |
gen(env, _new_array_Java , new_array_Type , new_array_C , 0 , true , false, false); |
|
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
136 |
gen(env, _new_array_nozero_Java , new_array_Type , new_array_nozero_C , 0 , true , false, false); |
1 | 137 |
gen(env, _multianewarray2_Java , multianewarray2_Type , multianewarray2_C , 0 , true , false, false); |
138 |
gen(env, _multianewarray3_Java , multianewarray3_Type , multianewarray3_C , 0 , true , false, false); |
|
139 |
gen(env, _multianewarray4_Java , multianewarray4_Type , multianewarray4_C , 0 , true , false, false); |
|
140 |
gen(env, _multianewarray5_Java , multianewarray5_Type , multianewarray5_C , 0 , true , false, false); |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
141 |
gen(env, _multianewarrayN_Java , multianewarrayN_Type , multianewarrayN_C , 0 , true , false, false); |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20703
diff
changeset
|
142 |
gen(env, _complete_monitor_locking_Java , complete_monitor_enter_Type , SharedRuntime::complete_monitor_locking_C, 0, false, false, false); |
31856 | 143 |
gen(env, _monitor_notify_Java , monitor_notify_Type , monitor_notify_C , 0 , false, false, false); |
144 |
gen(env, _monitor_notifyAll_Java , monitor_notify_Type , monitor_notifyAll_C , 0 , false, false, false); |
|
1 | 145 |
gen(env, _rethrow_Java , rethrow_Type , rethrow_C , 2 , true , false, true ); |
146 |
||
147 |
gen(env, _slow_arraycopy_Java , slow_arraycopy_Type , SharedRuntime::slow_arraycopy_C , 0 , false, false, false); |
|
148 |
gen(env, _register_finalizer_Java , register_finalizer_Type , register_finalizer , 0 , false, false, false); |
|
149 |
||
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20703
diff
changeset
|
150 |
return true; |
1 | 151 |
} |
152 |
||
153 |
#undef gen |
|
154 |
||
155 |
||
156 |
// Helper method to do generation of RunTimeStub's |
|
157 |
address OptoRuntime::generate_stub( ciEnv* env, |
|
158 |
TypeFunc_generator gen, address C_function, |
|
159 |
const char *name, int is_fancy_jump, |
|
160 |
bool pass_tls, |
|
161 |
bool save_argument_registers, |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33063
diff
changeset
|
162 |
bool return_pc) { |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33063
diff
changeset
|
163 |
|
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33063
diff
changeset
|
164 |
// Matching the default directive, we currently have no method to match. |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33063
diff
changeset
|
165 |
DirectiveSet* directive = DirectivesStack::getDefaultDirective(CompileBroker::compiler(CompLevel_full_optimization)); |
1 | 166 |
ResourceMark rm; |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33063
diff
changeset
|
167 |
Compile C( env, gen, C_function, name, is_fancy_jump, pass_tls, save_argument_registers, return_pc, directive); |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33063
diff
changeset
|
168 |
DirectivesStack::release(directive); |
1 | 169 |
return C.stub_entry_point(); |
170 |
} |
|
171 |
||
172 |
const char* OptoRuntime::stub_name(address entry) { |
|
173 |
#ifndef PRODUCT |
|
174 |
CodeBlob* cb = CodeCache::find_blob(entry); |
|
175 |
RuntimeStub* rs =(RuntimeStub *)cb; |
|
176 |
assert(rs != NULL && rs->is_runtime_stub(), "not a runtime stub"); |
|
177 |
return rs->name(); |
|
178 |
#else |
|
179 |
// Fast implementation for product mode (maybe it should be inlined too) |
|
180 |
return "runtime stub"; |
|
181 |
#endif |
|
182 |
} |
|
183 |
||
184 |
||
185 |
//============================================================================= |
|
186 |
// Opto compiler runtime routines |
|
187 |
//============================================================================= |
|
188 |
||
189 |
||
190 |
//=============================allocation====================================== |
|
191 |
// We failed the fast-path allocation. Now we need to do a scavenge or GC |
|
192 |
// and try allocation again. |
|
193 |
||
194 |
// object allocation |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
195 |
JRT_BLOCK_ENTRY(void, OptoRuntime::new_instance_C(Klass* klass, JavaThread* thread)) |
1 | 196 |
JRT_BLOCK; |
197 |
#ifndef PRODUCT |
|
198 |
SharedRuntime::_new_instance_ctr++; // new instance requires GC |
|
199 |
#endif |
|
200 |
assert(check_compiled_frame(thread), "incorrect caller"); |
|
201 |
||
202 |
// These checks are cheap to make and support reflective allocation. |
|
14488 | 203 |
int lh = klass->layout_helper(); |
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
204 |
if (Klass::layout_helper_needs_slow_path(lh) || !InstanceKlass::cast(klass)->is_initialized()) { |
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
205 |
Handle holder(THREAD, klass->klass_holder()); // keep the klass alive |
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
206 |
klass->check_valid_for_instantiation(false, THREAD); |
1 | 207 |
if (!HAS_PENDING_EXCEPTION) { |
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
208 |
InstanceKlass::cast(klass)->initialize(THREAD); |
1 | 209 |
} |
210 |
} |
|
211 |
||
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
212 |
if (!HAS_PENDING_EXCEPTION) { |
1 | 213 |
// Scavenge and allocate an instance. |
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
214 |
Handle holder(THREAD, klass->klass_holder()); // keep the klass alive |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
215 |
oop result = InstanceKlass::cast(klass)->allocate_instance(THREAD); |
1 | 216 |
thread->set_vm_result(result); |
217 |
||
218 |
// Pass oops back through thread local storage. Our apparent type to Java |
|
219 |
// is that we return an oop, but we can block on exit from this routine and |
|
220 |
// a GC can trash the oop in C's return register. The generated stub will |
|
221 |
// fetch the oop from TLS after any possible GC. |
|
222 |
} |
|
223 |
||
224 |
deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION); |
|
225 |
JRT_BLOCK_END; |
|
226 |
||
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47634
diff
changeset
|
227 |
// inform GC that we won't do card marks for initializing writes. |
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47634
diff
changeset
|
228 |
SharedRuntime::on_slowpath_allocation_exit(thread); |
1 | 229 |
JRT_END |
230 |
||
231 |
||
232 |
// array allocation |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
233 |
JRT_BLOCK_ENTRY(void, OptoRuntime::new_array_C(Klass* array_type, int len, JavaThread *thread)) |
1 | 234 |
JRT_BLOCK; |
235 |
#ifndef PRODUCT |
|
236 |
SharedRuntime::_new_array_ctr++; // new array requires GC |
|
237 |
#endif |
|
238 |
assert(check_compiled_frame(thread), "incorrect caller"); |
|
239 |
||
240 |
// Scavenge and allocate an instance. |
|
241 |
oop result; |
|
242 |
||
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33208
diff
changeset
|
243 |
if (array_type->is_typeArray_klass()) { |
1 | 244 |
// The oopFactory likes to work with the element type. |
245 |
// (We could bypass the oopFactory, since it doesn't add much value.) |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
246 |
BasicType elem_type = TypeArrayKlass::cast(array_type)->element_type(); |
1 | 247 |
result = oopFactory::new_typeArray(elem_type, len, THREAD); |
248 |
} else { |
|
249 |
// Although the oopFactory likes to work with the elem_type, |
|
250 |
// the compiler prefers the array_type, since it must already have |
|
251 |
// that latter value in hand for the fast path. |
|
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
252 |
Handle holder(THREAD, array_type->klass_holder()); // keep the array klass alive |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
253 |
Klass* elem_type = ObjArrayKlass::cast(array_type)->element_klass(); |
1 | 254 |
result = oopFactory::new_objArray(elem_type, len, THREAD); |
255 |
} |
|
256 |
||
257 |
// Pass oops back through thread local storage. Our apparent type to Java |
|
258 |
// is that we return an oop, but we can block on exit from this routine and |
|
259 |
// a GC can trash the oop in C's return register. The generated stub will |
|
260 |
// fetch the oop from TLS after any possible GC. |
|
261 |
deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION); |
|
262 |
thread->set_vm_result(result); |
|
263 |
JRT_BLOCK_END; |
|
264 |
||
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47634
diff
changeset
|
265 |
// inform GC that we won't do card marks for initializing writes. |
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47634
diff
changeset
|
266 |
SharedRuntime::on_slowpath_allocation_exit(thread); |
1 | 267 |
JRT_END |
268 |
||
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
269 |
// array allocation without zeroing |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
270 |
JRT_BLOCK_ENTRY(void, OptoRuntime::new_array_nozero_C(Klass* array_type, int len, JavaThread *thread)) |
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
271 |
JRT_BLOCK; |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
272 |
#ifndef PRODUCT |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
273 |
SharedRuntime::_new_array_ctr++; // new array requires GC |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
274 |
#endif |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
275 |
assert(check_compiled_frame(thread), "incorrect caller"); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
276 |
|
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
277 |
// Scavenge and allocate an instance. |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
278 |
oop result; |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
279 |
|
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33208
diff
changeset
|
280 |
assert(array_type->is_typeArray_klass(), "should be called only for type array"); |
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
281 |
// The oopFactory likes to work with the element type. |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
282 |
BasicType elem_type = TypeArrayKlass::cast(array_type)->element_type(); |
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
283 |
result = oopFactory::new_typeArray_nozero(elem_type, len, THREAD); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
284 |
|
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
285 |
// Pass oops back through thread local storage. Our apparent type to Java |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
286 |
// is that we return an oop, but we can block on exit from this routine and |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
287 |
// a GC can trash the oop in C's return register. The generated stub will |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
288 |
// fetch the oop from TLS after any possible GC. |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
289 |
deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
290 |
thread->set_vm_result(result); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
291 |
JRT_BLOCK_END; |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
292 |
|
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47634
diff
changeset
|
293 |
|
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47634
diff
changeset
|
294 |
// inform GC that we won't do card marks for initializing writes. |
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47634
diff
changeset
|
295 |
SharedRuntime::on_slowpath_allocation_exit(thread); |
10987
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
296 |
|
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
297 |
oop result = thread->vm_result(); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
298 |
if ((len > 0) && (result != NULL) && |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
299 |
is_deoptimized_caller_frame(thread)) { |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
300 |
// Zero array here if the caller is deoptimized. |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
301 |
int size = ((typeArrayOop)result)->object_size(); |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
302 |
BasicType elem_type = TypeArrayKlass::cast(array_type)->element_type(); |
10987
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
303 |
const size_t hs = arrayOopDesc::header_size(elem_type); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
304 |
// Align to next 8 bytes to avoid trashing arrays's length. |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
305 |
const size_t aligned_hs = align_object_offset(hs); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
306 |
HeapWord* obj = (HeapWord*)result; |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
307 |
if (aligned_hs > hs) { |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
308 |
Copy::zero_to_words(obj+hs, aligned_hs-hs); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
309 |
} |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
310 |
// Optimized zeroing. |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
311 |
Copy::fill_to_aligned_words(obj+aligned_hs, size-aligned_hs); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
312 |
} |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
313 |
|
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
314 |
JRT_END |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10508
diff
changeset
|
315 |
|
1 | 316 |
// Note: multianewarray for one dimension is handled inline by GraphKit::new_array. |
317 |
||
318 |
// multianewarray for 2 dimensions |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
319 |
JRT_ENTRY(void, OptoRuntime::multianewarray2_C(Klass* elem_type, int len1, int len2, JavaThread *thread)) |
1 | 320 |
#ifndef PRODUCT |
321 |
SharedRuntime::_multi2_ctr++; // multianewarray for 1 dimension |
|
322 |
#endif |
|
323 |
assert(check_compiled_frame(thread), "incorrect caller"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
324 |
assert(elem_type->is_klass(), "not a class"); |
1 | 325 |
jint dims[2]; |
326 |
dims[0] = len1; |
|
327 |
dims[1] = len2; |
|
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
328 |
Handle holder(THREAD, elem_type->klass_holder()); // keep the klass alive |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
329 |
oop obj = ArrayKlass::cast(elem_type)->multi_allocate(2, dims, THREAD); |
1 | 330 |
deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION); |
331 |
thread->set_vm_result(obj); |
|
332 |
JRT_END |
|
333 |
||
334 |
// multianewarray for 3 dimensions |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
335 |
JRT_ENTRY(void, OptoRuntime::multianewarray3_C(Klass* elem_type, int len1, int len2, int len3, JavaThread *thread)) |
1 | 336 |
#ifndef PRODUCT |
337 |
SharedRuntime::_multi3_ctr++; // multianewarray for 1 dimension |
|
338 |
#endif |
|
339 |
assert(check_compiled_frame(thread), "incorrect caller"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
340 |
assert(elem_type->is_klass(), "not a class"); |
1 | 341 |
jint dims[3]; |
342 |
dims[0] = len1; |
|
343 |
dims[1] = len2; |
|
344 |
dims[2] = len3; |
|
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
345 |
Handle holder(THREAD, elem_type->klass_holder()); // keep the klass alive |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
346 |
oop obj = ArrayKlass::cast(elem_type)->multi_allocate(3, dims, THREAD); |
1 | 347 |
deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION); |
348 |
thread->set_vm_result(obj); |
|
349 |
JRT_END |
|
350 |
||
351 |
// multianewarray for 4 dimensions |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
352 |
JRT_ENTRY(void, OptoRuntime::multianewarray4_C(Klass* elem_type, int len1, int len2, int len3, int len4, JavaThread *thread)) |
1 | 353 |
#ifndef PRODUCT |
354 |
SharedRuntime::_multi4_ctr++; // multianewarray for 1 dimension |
|
355 |
#endif |
|
356 |
assert(check_compiled_frame(thread), "incorrect caller"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
357 |
assert(elem_type->is_klass(), "not a class"); |
1 | 358 |
jint dims[4]; |
359 |
dims[0] = len1; |
|
360 |
dims[1] = len2; |
|
361 |
dims[2] = len3; |
|
362 |
dims[3] = len4; |
|
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
363 |
Handle holder(THREAD, elem_type->klass_holder()); // keep the klass alive |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
364 |
oop obj = ArrayKlass::cast(elem_type)->multi_allocate(4, dims, THREAD); |
1 | 365 |
deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION); |
366 |
thread->set_vm_result(obj); |
|
367 |
JRT_END |
|
368 |
||
369 |
// multianewarray for 5 dimensions |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
370 |
JRT_ENTRY(void, OptoRuntime::multianewarray5_C(Klass* elem_type, int len1, int len2, int len3, int len4, int len5, JavaThread *thread)) |
1 | 371 |
#ifndef PRODUCT |
372 |
SharedRuntime::_multi5_ctr++; // multianewarray for 1 dimension |
|
373 |
#endif |
|
374 |
assert(check_compiled_frame(thread), "incorrect caller"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
375 |
assert(elem_type->is_klass(), "not a class"); |
1 | 376 |
jint dims[5]; |
377 |
dims[0] = len1; |
|
378 |
dims[1] = len2; |
|
379 |
dims[2] = len3; |
|
380 |
dims[3] = len4; |
|
381 |
dims[4] = len5; |
|
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
382 |
Handle holder(THREAD, elem_type->klass_holder()); // keep the klass alive |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
383 |
oop obj = ArrayKlass::cast(elem_type)->multi_allocate(5, dims, THREAD); |
1 | 384 |
deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION); |
385 |
thread->set_vm_result(obj); |
|
386 |
JRT_END |
|
387 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
388 |
JRT_ENTRY(void, OptoRuntime::multianewarrayN_C(Klass* elem_type, arrayOopDesc* dims, JavaThread *thread)) |
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
389 |
assert(check_compiled_frame(thread), "incorrect caller"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
390 |
assert(elem_type->is_klass(), "not a class"); |
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
391 |
assert(oop(dims)->is_typeArray(), "not an array"); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
392 |
|
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
393 |
ResourceMark rm; |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
394 |
jint len = dims->length(); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
395 |
assert(len > 0, "Dimensions array should contain data"); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
396 |
jint *c_dims = NEW_RESOURCE_ARRAY(jint, len); |
50389
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
50180
diff
changeset
|
397 |
ArrayAccess<>::arraycopy_to_native<>(dims, typeArrayOopDesc::element_offset<jint>(0), |
7e8c0409a747
8198285: More consistent Access API for arraycopy
rkennke
parents:
50180
diff
changeset
|
398 |
c_dims, len); |
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
399 |
|
36603
0bc3ad031d60
8141420: Compiler runtime entries don't hold Klass* from being GCed
vlivanov
parents:
35499
diff
changeset
|
400 |
Handle holder(THREAD, elem_type->klass_holder()); // keep the klass alive |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13742
diff
changeset
|
401 |
oop obj = ArrayKlass::cast(elem_type)->multi_allocate(len, c_dims, THREAD); |
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
402 |
deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
403 |
thread->set_vm_result(obj); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
404 |
JRT_END |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
405 |
|
31856 | 406 |
JRT_BLOCK_ENTRY(void, OptoRuntime::monitor_notify_C(oopDesc* obj, JavaThread *thread)) |
407 |
||
408 |
// Very few notify/notifyAll operations find any threads on the waitset, so |
|
409 |
// the dominant fast-path is to simply return. |
|
410 |
// Relatedly, it's critical that notify/notifyAll be fast in order to |
|
411 |
// reduce lock hold times. |
|
412 |
if (!SafepointSynchronize::is_synchronizing()) { |
|
413 |
if (ObjectSynchronizer::quick_notify(obj, thread, false)) { |
|
414 |
return; |
|
415 |
} |
|
416 |
} |
|
417 |
||
418 |
// This is the case the fast-path above isn't provisioned to handle. |
|
419 |
// The fast-path is designed to handle frequently arising cases in an efficient manner. |
|
420 |
// (The fast-path is just a degenerate variant of the slow-path). |
|
421 |
// Perform the dreaded state transition and pass control into the slow-path. |
|
422 |
JRT_BLOCK; |
|
423 |
Handle h_obj(THREAD, obj); |
|
424 |
ObjectSynchronizer::notify(h_obj, CHECK); |
|
425 |
JRT_BLOCK_END; |
|
426 |
JRT_END |
|
427 |
||
428 |
JRT_BLOCK_ENTRY(void, OptoRuntime::monitor_notifyAll_C(oopDesc* obj, JavaThread *thread)) |
|
429 |
||
430 |
if (!SafepointSynchronize::is_synchronizing() ) { |
|
431 |
if (ObjectSynchronizer::quick_notify(obj, thread, true)) { |
|
432 |
return; |
|
433 |
} |
|
434 |
} |
|
435 |
||
436 |
// This is the case the fast-path above isn't provisioned to handle. |
|
437 |
// The fast-path is designed to handle frequently arising cases in an efficient manner. |
|
438 |
// (The fast-path is just a degenerate variant of the slow-path). |
|
439 |
// Perform the dreaded state transition and pass control into the slow-path. |
|
440 |
JRT_BLOCK; |
|
441 |
Handle h_obj(THREAD, obj); |
|
442 |
ObjectSynchronizer::notifyall(h_obj, CHECK); |
|
443 |
JRT_BLOCK_END; |
|
444 |
JRT_END |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
445 |
|
1 | 446 |
const TypeFunc *OptoRuntime::new_instance_Type() { |
447 |
// create input type (domain) |
|
448 |
const Type **fields = TypeTuple::fields(1); |
|
449 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Klass to be allocated |
|
450 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
451 |
||
452 |
// create result type (range) |
|
453 |
fields = TypeTuple::fields(1); |
|
454 |
fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop |
|
455 |
||
456 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
457 |
||
458 |
return TypeFunc::make(domain, range); |
|
459 |
} |
|
460 |
||
461 |
||
462 |
const TypeFunc *OptoRuntime::athrow_Type() { |
|
463 |
// create input type (domain) |
|
464 |
const Type **fields = TypeTuple::fields(1); |
|
465 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Klass to be allocated |
|
466 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
467 |
||
468 |
// create result type (range) |
|
469 |
fields = TypeTuple::fields(0); |
|
470 |
||
471 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields); |
|
472 |
||
473 |
return TypeFunc::make(domain, range); |
|
474 |
} |
|
475 |
||
476 |
||
477 |
const TypeFunc *OptoRuntime::new_array_Type() { |
|
478 |
// create input type (domain) |
|
479 |
const Type **fields = TypeTuple::fields(2); |
|
480 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // element klass |
|
481 |
fields[TypeFunc::Parms+1] = TypeInt::INT; // array size |
|
482 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); |
|
483 |
||
484 |
// create result type (range) |
|
485 |
fields = TypeTuple::fields(1); |
|
486 |
fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop |
|
487 |
||
488 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
489 |
||
490 |
return TypeFunc::make(domain, range); |
|
491 |
} |
|
492 |
||
493 |
const TypeFunc *OptoRuntime::multianewarray_Type(int ndim) { |
|
494 |
// create input type (domain) |
|
495 |
const int nargs = ndim + 1; |
|
496 |
const Type **fields = TypeTuple::fields(nargs); |
|
497 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // element klass |
|
498 |
for( int i = 1; i < nargs; i++ ) |
|
499 |
fields[TypeFunc::Parms + i] = TypeInt::INT; // array size |
|
500 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+nargs, fields); |
|
501 |
||
502 |
// create result type (range) |
|
503 |
fields = TypeTuple::fields(1); |
|
504 |
fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop |
|
505 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
506 |
||
507 |
return TypeFunc::make(domain, range); |
|
508 |
} |
|
509 |
||
510 |
const TypeFunc *OptoRuntime::multianewarray2_Type() { |
|
511 |
return multianewarray_Type(2); |
|
512 |
} |
|
513 |
||
514 |
const TypeFunc *OptoRuntime::multianewarray3_Type() { |
|
515 |
return multianewarray_Type(3); |
|
516 |
} |
|
517 |
||
518 |
const TypeFunc *OptoRuntime::multianewarray4_Type() { |
|
519 |
return multianewarray_Type(4); |
|
520 |
} |
|
521 |
||
522 |
const TypeFunc *OptoRuntime::multianewarray5_Type() { |
|
523 |
return multianewarray_Type(5); |
|
524 |
} |
|
525 |
||
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
526 |
const TypeFunc *OptoRuntime::multianewarrayN_Type() { |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
527 |
// create input type (domain) |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
528 |
const Type **fields = TypeTuple::fields(2); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
529 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // element klass |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
530 |
fields[TypeFunc::Parms+1] = TypeInstPtr::NOTNULL; // array of dim sizes |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
531 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
532 |
|
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
533 |
// create result type (range) |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
534 |
fields = TypeTuple::fields(1); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
535 |
fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
536 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
537 |
|
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
538 |
return TypeFunc::make(domain, range); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
539 |
} |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
9976
diff
changeset
|
540 |
|
1 | 541 |
const TypeFunc *OptoRuntime::uncommon_trap_Type() { |
542 |
// create input type (domain) |
|
543 |
const Type **fields = TypeTuple::fields(1); |
|
22551 | 544 |
fields[TypeFunc::Parms+0] = TypeInt::INT; // trap_reason (deopt reason and action) |
1 | 545 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); |
546 |
||
547 |
// create result type (range) |
|
548 |
fields = TypeTuple::fields(0); |
|
549 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields); |
|
550 |
||
551 |
return TypeFunc::make(domain, range); |
|
552 |
} |
|
553 |
||
554 |
//----------------------------------------------------------------------------- |
|
555 |
// Monitor Handling |
|
556 |
const TypeFunc *OptoRuntime::complete_monitor_enter_Type() { |
|
557 |
// create input type (domain) |
|
558 |
const Type **fields = TypeTuple::fields(2); |
|
559 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Object to be Locked |
|
560 |
fields[TypeFunc::Parms+1] = TypeRawPtr::BOTTOM; // Address of stack location for lock |
|
561 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); |
|
562 |
||
563 |
// create result type (range) |
|
564 |
fields = TypeTuple::fields(0); |
|
565 |
||
566 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields); |
|
567 |
||
568 |
return TypeFunc::make(domain,range); |
|
569 |
} |
|
570 |
||
571 |
||
572 |
//----------------------------------------------------------------------------- |
|
573 |
const TypeFunc *OptoRuntime::complete_monitor_exit_Type() { |
|
574 |
// create input type (domain) |
|
30244 | 575 |
const Type **fields = TypeTuple::fields(3); |
1 | 576 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Object to be Locked |
30244 | 577 |
fields[TypeFunc::Parms+1] = TypeRawPtr::BOTTOM; // Address of stack location for lock - BasicLock |
578 |
fields[TypeFunc::Parms+2] = TypeRawPtr::BOTTOM; // Thread pointer (Self) |
|
31856 | 579 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+3, fields); |
1 | 580 |
|
581 |
// create result type (range) |
|
582 |
fields = TypeTuple::fields(0); |
|
583 |
||
31856 | 584 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields); |
585 |
||
586 |
return TypeFunc::make(domain, range); |
|
587 |
} |
|
1 | 588 |
|
31856 | 589 |
const TypeFunc *OptoRuntime::monitor_notify_Type() { |
590 |
// create input type (domain) |
|
591 |
const Type **fields = TypeTuple::fields(1); |
|
592 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Object to be Locked |
|
593 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
594 |
||
595 |
// create result type (range) |
|
596 |
fields = TypeTuple::fields(0); |
|
597 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields); |
|
598 |
return TypeFunc::make(domain, range); |
|
1 | 599 |
} |
600 |
||
601 |
const TypeFunc* OptoRuntime::flush_windows_Type() { |
|
602 |
// create input type (domain) |
|
603 |
const Type** fields = TypeTuple::fields(1); |
|
604 |
fields[TypeFunc::Parms+0] = NULL; // void |
|
605 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms, fields); |
|
606 |
||
607 |
// create result type |
|
608 |
fields = TypeTuple::fields(1); |
|
609 |
fields[TypeFunc::Parms+0] = NULL; // void |
|
610 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields); |
|
611 |
||
612 |
return TypeFunc::make(domain, range); |
|
613 |
} |
|
614 |
||
615 |
const TypeFunc* OptoRuntime::l2f_Type() { |
|
616 |
// create input type (domain) |
|
617 |
const Type **fields = TypeTuple::fields(2); |
|
618 |
fields[TypeFunc::Parms+0] = TypeLong::LONG; |
|
619 |
fields[TypeFunc::Parms+1] = Type::HALF; |
|
620 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); |
|
621 |
||
622 |
// create result type (range) |
|
623 |
fields = TypeTuple::fields(1); |
|
624 |
fields[TypeFunc::Parms+0] = Type::FLOAT; |
|
625 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
626 |
||
627 |
return TypeFunc::make(domain, range); |
|
628 |
} |
|
629 |
||
630 |
const TypeFunc* OptoRuntime::modf_Type() { |
|
631 |
const Type **fields = TypeTuple::fields(2); |
|
632 |
fields[TypeFunc::Parms+0] = Type::FLOAT; |
|
633 |
fields[TypeFunc::Parms+1] = Type::FLOAT; |
|
634 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); |
|
635 |
||
636 |
// create result type (range) |
|
637 |
fields = TypeTuple::fields(1); |
|
638 |
fields[TypeFunc::Parms+0] = Type::FLOAT; |
|
639 |
||
640 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
641 |
||
642 |
return TypeFunc::make(domain, range); |
|
643 |
} |
|
644 |
||
645 |
const TypeFunc *OptoRuntime::Math_D_D_Type() { |
|
646 |
// create input type (domain) |
|
647 |
const Type **fields = TypeTuple::fields(2); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
648 |
// Symbol* name of class to be loaded |
1 | 649 |
fields[TypeFunc::Parms+0] = Type::DOUBLE; |
650 |
fields[TypeFunc::Parms+1] = Type::HALF; |
|
651 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); |
|
652 |
||
653 |
// create result type (range) |
|
654 |
fields = TypeTuple::fields(2); |
|
655 |
fields[TypeFunc::Parms+0] = Type::DOUBLE; |
|
656 |
fields[TypeFunc::Parms+1] = Type::HALF; |
|
657 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+2, fields); |
|
658 |
||
659 |
return TypeFunc::make(domain, range); |
|
660 |
} |
|
661 |
||
662 |
const TypeFunc* OptoRuntime::Math_DD_D_Type() { |
|
663 |
const Type **fields = TypeTuple::fields(4); |
|
664 |
fields[TypeFunc::Parms+0] = Type::DOUBLE; |
|
665 |
fields[TypeFunc::Parms+1] = Type::HALF; |
|
666 |
fields[TypeFunc::Parms+2] = Type::DOUBLE; |
|
667 |
fields[TypeFunc::Parms+3] = Type::HALF; |
|
668 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+4, fields); |
|
669 |
||
670 |
// create result type (range) |
|
671 |
fields = TypeTuple::fields(2); |
|
672 |
fields[TypeFunc::Parms+0] = Type::DOUBLE; |
|
673 |
fields[TypeFunc::Parms+1] = Type::HALF; |
|
674 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+2, fields); |
|
675 |
||
676 |
return TypeFunc::make(domain, range); |
|
677 |
} |
|
678 |
||
12377
ae6def2813e0
7160570: Intrinsification support for tracing framework
rbackman
parents:
10987
diff
changeset
|
679 |
//-------------- currentTimeMillis, currentTimeNanos, etc |
1 | 680 |
|
12377
ae6def2813e0
7160570: Intrinsification support for tracing framework
rbackman
parents:
10987
diff
changeset
|
681 |
const TypeFunc* OptoRuntime::void_long_Type() { |
1 | 682 |
// create input type (domain) |
683 |
const Type **fields = TypeTuple::fields(0); |
|
684 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+0, fields); |
|
685 |
||
686 |
// create result type (range) |
|
687 |
fields = TypeTuple::fields(2); |
|
688 |
fields[TypeFunc::Parms+0] = TypeLong::LONG; |
|
689 |
fields[TypeFunc::Parms+1] = Type::HALF; |
|
690 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+2, fields); |
|
691 |
||
692 |
return TypeFunc::make(domain, range); |
|
693 |
} |
|
694 |
||
695 |
// arraycopy stub variations: |
|
696 |
enum ArrayCopyType { |
|
697 |
ac_fast, // void(ptr, ptr, size_t) |
|
698 |
ac_checkcast, // int(ptr, ptr, size_t, size_t, ptr) |
|
699 |
ac_slow, // void(ptr, int, ptr, int, int) |
|
700 |
ac_generic // int(ptr, int, ptr, int, int) |
|
701 |
}; |
|
702 |
||
703 |
static const TypeFunc* make_arraycopy_Type(ArrayCopyType act) { |
|
704 |
// create input type (domain) |
|
705 |
int num_args = (act == ac_fast ? 3 : 5); |
|
706 |
int num_size_args = (act == ac_fast ? 1 : act == ac_checkcast ? 2 : 0); |
|
707 |
int argcnt = num_args; |
|
708 |
LP64_ONLY(argcnt += num_size_args); // halfwords for lengths |
|
709 |
const Type** fields = TypeTuple::fields(argcnt); |
|
710 |
int argp = TypeFunc::Parms; |
|
711 |
fields[argp++] = TypePtr::NOTNULL; // src |
|
712 |
if (num_size_args == 0) { |
|
713 |
fields[argp++] = TypeInt::INT; // src_pos |
|
714 |
} |
|
715 |
fields[argp++] = TypePtr::NOTNULL; // dest |
|
716 |
if (num_size_args == 0) { |
|
717 |
fields[argp++] = TypeInt::INT; // dest_pos |
|
718 |
fields[argp++] = TypeInt::INT; // length |
|
719 |
} |
|
720 |
while (num_size_args-- > 0) { |
|
721 |
fields[argp++] = TypeX_X; // size in whatevers (size_t) |
|
722 |
LP64_ONLY(fields[argp++] = Type::HALF); // other half of long length |
|
723 |
} |
|
724 |
if (act == ac_checkcast) { |
|
725 |
fields[argp++] = TypePtr::NOTNULL; // super_klass |
|
726 |
} |
|
727 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding of act"); |
|
728 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
|
729 |
||
730 |
// create result type if needed |
|
731 |
int retcnt = (act == ac_checkcast || act == ac_generic ? 1 : 0); |
|
732 |
fields = TypeTuple::fields(1); |
|
733 |
if (retcnt == 0) |
|
734 |
fields[TypeFunc::Parms+0] = NULL; // void |
|
735 |
else |
|
736 |
fields[TypeFunc::Parms+0] = TypeInt::INT; // status result, if needed |
|
737 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+retcnt, fields); |
|
738 |
return TypeFunc::make(domain, range); |
|
739 |
} |
|
740 |
||
741 |
const TypeFunc* OptoRuntime::fast_arraycopy_Type() { |
|
742 |
// This signature is simple: Two base pointers and a size_t. |
|
743 |
return make_arraycopy_Type(ac_fast); |
|
744 |
} |
|
745 |
||
746 |
const TypeFunc* OptoRuntime::checkcast_arraycopy_Type() { |
|
747 |
// An extension of fast_arraycopy_Type which adds type checking. |
|
748 |
return make_arraycopy_Type(ac_checkcast); |
|
749 |
} |
|
750 |
||
751 |
const TypeFunc* OptoRuntime::slow_arraycopy_Type() { |
|
752 |
// This signature is exactly the same as System.arraycopy. |
|
753 |
// There are no intptr_t (int/long) arguments. |
|
754 |
return make_arraycopy_Type(ac_slow); |
|
755 |
} |
|
756 |
||
757 |
const TypeFunc* OptoRuntime::generic_arraycopy_Type() { |
|
758 |
// This signature is like System.arraycopy, except that it returns status. |
|
759 |
return make_arraycopy_Type(ac_generic); |
|
760 |
} |
|
761 |
||
762 |
||
6433 | 763 |
const TypeFunc* OptoRuntime::array_fill_Type() { |
22834
3e2df6a4a28c
8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents:
22820
diff
changeset
|
764 |
const Type** fields; |
6770
a67870aaedb3
6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents:
6433
diff
changeset
|
765 |
int argp = TypeFunc::Parms; |
22834
3e2df6a4a28c
8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents:
22820
diff
changeset
|
766 |
// create input type (domain): pointer, int, size_t |
31590
427d073af867
8086069: Adapt runtime calls to recent intrinsics to pass ints as long
goetz
parents:
31584
diff
changeset
|
767 |
fields = TypeTuple::fields(3 LP64_ONLY( + 1)); |
427d073af867
8086069: Adapt runtime calls to recent intrinsics to pass ints as long
goetz
parents:
31584
diff
changeset
|
768 |
fields[argp++] = TypePtr::NOTNULL; |
427d073af867
8086069: Adapt runtime calls to recent intrinsics to pass ints as long
goetz
parents:
31584
diff
changeset
|
769 |
fields[argp++] = TypeInt::INT; |
6770
a67870aaedb3
6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents:
6433
diff
changeset
|
770 |
fields[argp++] = TypeX_X; // size in whatevers (size_t) |
a67870aaedb3
6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents:
6433
diff
changeset
|
771 |
LP64_ONLY(fields[argp++] = Type::HALF); // other half of long length |
a67870aaedb3
6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents:
6433
diff
changeset
|
772 |
const TypeTuple *domain = TypeTuple::make(argp, fields); |
6433 | 773 |
|
774 |
// create result type |
|
775 |
fields = TypeTuple::fields(1); |
|
776 |
fields[TypeFunc::Parms+0] = NULL; // void |
|
777 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields); |
|
778 |
||
779 |
return TypeFunc::make(domain, range); |
|
780 |
} |
|
781 |
||
14132 | 782 |
// for aescrypt encrypt/decrypt operations, just three pointers returning void (length is constant) |
783 |
const TypeFunc* OptoRuntime::aescrypt_block_Type() { |
|
784 |
// create input type (domain) |
|
785 |
int num_args = 3; |
|
22505 | 786 |
if (Matcher::pass_original_key_for_aes()) { |
787 |
num_args = 4; |
|
788 |
} |
|
14132 | 789 |
int argcnt = num_args; |
790 |
const Type** fields = TypeTuple::fields(argcnt); |
|
791 |
int argp = TypeFunc::Parms; |
|
792 |
fields[argp++] = TypePtr::NOTNULL; // src |
|
793 |
fields[argp++] = TypePtr::NOTNULL; // dest |
|
794 |
fields[argp++] = TypePtr::NOTNULL; // k array |
|
22505 | 795 |
if (Matcher::pass_original_key_for_aes()) { |
796 |
fields[argp++] = TypePtr::NOTNULL; // original k array |
|
797 |
} |
|
14132 | 798 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
799 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
|
800 |
||
801 |
// no result type needed |
|
802 |
fields = TypeTuple::fields(1); |
|
803 |
fields[TypeFunc::Parms+0] = NULL; // void |
|
804 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields); |
|
805 |
return TypeFunc::make(domain, range); |
|
806 |
} |
|
807 |
||
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
808 |
/** |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
809 |
* int updateBytesCRC32(int crc, byte* b, int len) |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
810 |
*/ |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
811 |
const TypeFunc* OptoRuntime::updateBytesCRC32_Type() { |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
812 |
// create input type (domain) |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
813 |
int num_args = 3; |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
814 |
int argcnt = num_args; |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
815 |
const Type** fields = TypeTuple::fields(argcnt); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
816 |
int argp = TypeFunc::Parms; |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
817 |
fields[argp++] = TypeInt::INT; // crc |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
818 |
fields[argp++] = TypePtr::NOTNULL; // src |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
819 |
fields[argp++] = TypeInt::INT; // len |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
820 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
821 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
822 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
823 |
// result type needed |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
824 |
fields = TypeTuple::fields(1); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
825 |
fields[TypeFunc::Parms+0] = TypeInt::INT; // crc result |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
826 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
827 |
return TypeFunc::make(domain, range); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
828 |
} |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17379
diff
changeset
|
829 |
|
31515 | 830 |
/** |
831 |
* int updateBytesCRC32C(int crc, byte* buf, int len, int* table) |
|
832 |
*/ |
|
833 |
const TypeFunc* OptoRuntime::updateBytesCRC32C_Type() { |
|
834 |
// create input type (domain) |
|
835 |
int num_args = 4; |
|
836 |
int argcnt = num_args; |
|
837 |
const Type** fields = TypeTuple::fields(argcnt); |
|
838 |
int argp = TypeFunc::Parms; |
|
839 |
fields[argp++] = TypeInt::INT; // crc |
|
840 |
fields[argp++] = TypePtr::NOTNULL; // buf |
|
841 |
fields[argp++] = TypeInt::INT; // len |
|
842 |
fields[argp++] = TypePtr::NOTNULL; // table |
|
843 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
|
844 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
|
845 |
||
846 |
// result type needed |
|
847 |
fields = TypeTuple::fields(1); |
|
848 |
fields[TypeFunc::Parms+0] = TypeInt::INT; // crc result |
|
849 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
850 |
return TypeFunc::make(domain, range); |
|
851 |
} |
|
852 |
||
32581 | 853 |
/** |
854 |
* int updateBytesAdler32(int adler, bytes* b, int off, int len) |
|
855 |
*/ |
|
856 |
const TypeFunc* OptoRuntime::updateBytesAdler32_Type() { |
|
857 |
// create input type (domain) |
|
858 |
int num_args = 3; |
|
859 |
int argcnt = num_args; |
|
860 |
const Type** fields = TypeTuple::fields(argcnt); |
|
861 |
int argp = TypeFunc::Parms; |
|
862 |
fields[argp++] = TypeInt::INT; // crc |
|
863 |
fields[argp++] = TypePtr::NOTNULL; // src + offset |
|
864 |
fields[argp++] = TypeInt::INT; // len |
|
865 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
|
866 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
|
867 |
||
868 |
// result type needed |
|
869 |
fields = TypeTuple::fields(1); |
|
870 |
fields[TypeFunc::Parms+0] = TypeInt::INT; // crc result |
|
871 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
872 |
return TypeFunc::make(domain, range); |
|
873 |
} |
|
874 |
||
24328
bddefb356fba
8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents:
23528
diff
changeset
|
875 |
// for cipherBlockChaining calls of aescrypt encrypt/decrypt, four pointers and a length, returning int |
14132 | 876 |
const TypeFunc* OptoRuntime::cipherBlockChaining_aescrypt_Type() { |
877 |
// create input type (domain) |
|
878 |
int num_args = 5; |
|
22505 | 879 |
if (Matcher::pass_original_key_for_aes()) { |
880 |
num_args = 6; |
|
881 |
} |
|
14132 | 882 |
int argcnt = num_args; |
883 |
const Type** fields = TypeTuple::fields(argcnt); |
|
884 |
int argp = TypeFunc::Parms; |
|
885 |
fields[argp++] = TypePtr::NOTNULL; // src |
|
886 |
fields[argp++] = TypePtr::NOTNULL; // dest |
|
887 |
fields[argp++] = TypePtr::NOTNULL; // k array |
|
888 |
fields[argp++] = TypePtr::NOTNULL; // r array |
|
889 |
fields[argp++] = TypeInt::INT; // src len |
|
22505 | 890 |
if (Matcher::pass_original_key_for_aes()) { |
891 |
fields[argp++] = TypePtr::NOTNULL; // original k array |
|
892 |
} |
|
14132 | 893 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
894 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
|
895 |
||
22505 | 896 |
// returning cipher len (int) |
14132 | 897 |
fields = TypeTuple::fields(1); |
22505 | 898 |
fields[TypeFunc::Parms+0] = TypeInt::INT; |
899 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
14132 | 900 |
return TypeFunc::make(domain, range); |
901 |
} |
|
902 |
||
35154 | 903 |
//for counterMode calls of aescrypt encrypt/decrypt, four pointers and a length, returning int |
904 |
const TypeFunc* OptoRuntime::counterMode_aescrypt_Type() { |
|
905 |
// create input type (domain) |
|
906 |
int num_args = 7; |
|
907 |
if (Matcher::pass_original_key_for_aes()) { |
|
908 |
num_args = 8; |
|
909 |
} |
|
910 |
int argcnt = num_args; |
|
911 |
const Type** fields = TypeTuple::fields(argcnt); |
|
912 |
int argp = TypeFunc::Parms; |
|
913 |
fields[argp++] = TypePtr::NOTNULL; // src |
|
914 |
fields[argp++] = TypePtr::NOTNULL; // dest |
|
915 |
fields[argp++] = TypePtr::NOTNULL; // k array |
|
916 |
fields[argp++] = TypePtr::NOTNULL; // counter array |
|
917 |
fields[argp++] = TypeInt::INT; // src len |
|
918 |
fields[argp++] = TypePtr::NOTNULL; // saved_encCounter |
|
919 |
fields[argp++] = TypePtr::NOTNULL; // saved used addr |
|
920 |
if (Matcher::pass_original_key_for_aes()) { |
|
921 |
fields[argp++] = TypePtr::NOTNULL; // original k array |
|
922 |
} |
|
923 |
assert(argp == TypeFunc::Parms + argcnt, "correct decoding"); |
|
924 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms + argcnt, fields); |
|
925 |
// returning cipher len (int) |
|
926 |
fields = TypeTuple::fields(1); |
|
927 |
fields[TypeFunc::Parms + 0] = TypeInt::INT; |
|
928 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms + 1, fields); |
|
929 |
return TypeFunc::make(domain, range); |
|
930 |
} |
|
931 |
||
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
932 |
/* |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
933 |
* void implCompress(byte[] buf, int ofs) |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
934 |
*/ |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
935 |
const TypeFunc* OptoRuntime::sha_implCompress_Type() { |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
936 |
// create input type (domain) |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
937 |
int num_args = 2; |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
938 |
int argcnt = num_args; |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
939 |
const Type** fields = TypeTuple::fields(argcnt); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
940 |
int argp = TypeFunc::Parms; |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
941 |
fields[argp++] = TypePtr::NOTNULL; // buf |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
942 |
fields[argp++] = TypePtr::NOTNULL; // state |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
943 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
944 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
945 |
|
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
946 |
// no result type needed |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
947 |
fields = TypeTuple::fields(1); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
948 |
fields[TypeFunc::Parms+0] = NULL; // void |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
949 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
950 |
return TypeFunc::make(domain, range); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
951 |
} |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
952 |
|
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
953 |
/* |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
954 |
* int implCompressMultiBlock(byte[] b, int ofs, int limit) |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
955 |
*/ |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
956 |
const TypeFunc* OptoRuntime::digestBase_implCompressMB_Type() { |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
957 |
// create input type (domain) |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
958 |
int num_args = 4; |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
959 |
int argcnt = num_args; |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
960 |
const Type** fields = TypeTuple::fields(argcnt); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
961 |
int argp = TypeFunc::Parms; |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
962 |
fields[argp++] = TypePtr::NOTNULL; // buf |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
963 |
fields[argp++] = TypePtr::NOTNULL; // state |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
964 |
fields[argp++] = TypeInt::INT; // ofs |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
965 |
fields[argp++] = TypeInt::INT; // limit |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
966 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
967 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
968 |
|
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
969 |
// returning ofs (int) |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
970 |
fields = TypeTuple::fields(1); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
971 |
fields[TypeFunc::Parms+0] = TypeInt::INT; // ofs |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
972 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
973 |
return TypeFunc::make(domain, range); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
974 |
} |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24429
diff
changeset
|
975 |
|
26434
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
976 |
const TypeFunc* OptoRuntime::multiplyToLen_Type() { |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
977 |
// create input type (domain) |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
978 |
int num_args = 6; |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
979 |
int argcnt = num_args; |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
980 |
const Type** fields = TypeTuple::fields(argcnt); |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
981 |
int argp = TypeFunc::Parms; |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
982 |
fields[argp++] = TypePtr::NOTNULL; // x |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
983 |
fields[argp++] = TypeInt::INT; // xlen |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
984 |
fields[argp++] = TypePtr::NOTNULL; // y |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
985 |
fields[argp++] = TypeInt::INT; // ylen |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
986 |
fields[argp++] = TypePtr::NOTNULL; // z |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
987 |
fields[argp++] = TypeInt::INT; // zlen |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
988 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
989 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
990 |
|
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
991 |
// no result type needed |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
992 |
fields = TypeTuple::fields(1); |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
993 |
fields[TypeFunc::Parms+0] = NULL; |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
994 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields); |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
995 |
return TypeFunc::make(domain, range); |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
996 |
} |
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
997 |
|
31129
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
998 |
const TypeFunc* OptoRuntime::squareToLen_Type() { |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
999 |
// create input type (domain) |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1000 |
int num_args = 4; |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1001 |
int argcnt = num_args; |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1002 |
const Type** fields = TypeTuple::fields(argcnt); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1003 |
int argp = TypeFunc::Parms; |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1004 |
fields[argp++] = TypePtr::NOTNULL; // x |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1005 |
fields[argp++] = TypeInt::INT; // len |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1006 |
fields[argp++] = TypePtr::NOTNULL; // z |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1007 |
fields[argp++] = TypeInt::INT; // zlen |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1008 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1009 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1010 |
|
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1011 |
// no result type needed |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1012 |
fields = TypeTuple::fields(1); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1013 |
fields[TypeFunc::Parms+0] = NULL; |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1014 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1015 |
return TypeFunc::make(domain, range); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1016 |
} |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1017 |
|
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1018 |
// for mulAdd calls, 2 pointers and 3 ints, returning int |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1019 |
const TypeFunc* OptoRuntime::mulAdd_Type() { |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1020 |
// create input type (domain) |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1021 |
int num_args = 5; |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1022 |
int argcnt = num_args; |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1023 |
const Type** fields = TypeTuple::fields(argcnt); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1024 |
int argp = TypeFunc::Parms; |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1025 |
fields[argp++] = TypePtr::NOTNULL; // out |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1026 |
fields[argp++] = TypePtr::NOTNULL; // in |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1027 |
fields[argp++] = TypeInt::INT; // offset |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1028 |
fields[argp++] = TypeInt::INT; // len |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1029 |
fields[argp++] = TypeInt::INT; // k |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1030 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1031 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1032 |
|
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1033 |
// returning carry (int) |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1034 |
fields = TypeTuple::fields(1); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1035 |
fields[TypeFunc::Parms+0] = TypeInt::INT; |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1036 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1037 |
return TypeFunc::make(domain, range); |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1038 |
} |
02ee7609f0e1
8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents:
30764
diff
changeset
|
1039 |
|
31583
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1040 |
const TypeFunc* OptoRuntime::montgomeryMultiply_Type() { |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1041 |
// create input type (domain) |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1042 |
int num_args = 7; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1043 |
int argcnt = num_args; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1044 |
const Type** fields = TypeTuple::fields(argcnt); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1045 |
int argp = TypeFunc::Parms; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1046 |
fields[argp++] = TypePtr::NOTNULL; // a |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1047 |
fields[argp++] = TypePtr::NOTNULL; // b |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1048 |
fields[argp++] = TypePtr::NOTNULL; // n |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1049 |
fields[argp++] = TypeInt::INT; // len |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1050 |
fields[argp++] = TypeLong::LONG; // inv |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1051 |
fields[argp++] = Type::HALF; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1052 |
fields[argp++] = TypePtr::NOTNULL; // result |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1053 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1054 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1055 |
|
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1056 |
// result type needed |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1057 |
fields = TypeTuple::fields(1); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1058 |
fields[TypeFunc::Parms+0] = TypePtr::NOTNULL; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1059 |
|
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1060 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1061 |
return TypeFunc::make(domain, range); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1062 |
} |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1063 |
|
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1064 |
const TypeFunc* OptoRuntime::montgomerySquare_Type() { |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1065 |
// create input type (domain) |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1066 |
int num_args = 6; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1067 |
int argcnt = num_args; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1068 |
const Type** fields = TypeTuple::fields(argcnt); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1069 |
int argp = TypeFunc::Parms; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1070 |
fields[argp++] = TypePtr::NOTNULL; // a |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1071 |
fields[argp++] = TypePtr::NOTNULL; // n |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1072 |
fields[argp++] = TypeInt::INT; // len |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1073 |
fields[argp++] = TypeLong::LONG; // inv |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1074 |
fields[argp++] = Type::HALF; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1075 |
fields[argp++] = TypePtr::NOTNULL; // result |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1076 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1077 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1078 |
|
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1079 |
// result type needed |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1080 |
fields = TypeTuple::fields(1); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1081 |
fields[TypeFunc::Parms+0] = TypePtr::NOTNULL; |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1082 |
|
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1083 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1084 |
return TypeFunc::make(domain, range); |
eb5bea7b4835
8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents:
31129
diff
changeset
|
1085 |
} |
26434
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
1086 |
|
35110
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1087 |
const TypeFunc* OptoRuntime::vectorizedMismatch_Type() { |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1088 |
// create input type (domain) |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1089 |
int num_args = 4; |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1090 |
int argcnt = num_args; |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1091 |
const Type** fields = TypeTuple::fields(argcnt); |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1092 |
int argp = TypeFunc::Parms; |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1093 |
fields[argp++] = TypePtr::NOTNULL; // obja |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1094 |
fields[argp++] = TypePtr::NOTNULL; // objb |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1095 |
fields[argp++] = TypeInt::INT; // length, number of elements |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1096 |
fields[argp++] = TypeInt::INT; // log2scale, element size |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1097 |
assert(argp == TypeFunc::Parms + argcnt, "correct decoding"); |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1098 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms + argcnt, fields); |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1099 |
|
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1100 |
//return mismatch index (int) |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1101 |
fields = TypeTuple::fields(1); |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1102 |
fields[TypeFunc::Parms + 0] = TypeInt::INT; |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1103 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms + 1, fields); |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1104 |
return TypeFunc::make(domain, range); |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1105 |
} |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
33626
diff
changeset
|
1106 |
|
31404
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1107 |
// GHASH block processing |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1108 |
const TypeFunc* OptoRuntime::ghash_processBlocks_Type() { |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1109 |
int argcnt = 4; |
26434
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
1110 |
|
31404
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1111 |
const Type** fields = TypeTuple::fields(argcnt); |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1112 |
int argp = TypeFunc::Parms; |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1113 |
fields[argp++] = TypePtr::NOTNULL; // state |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1114 |
fields[argp++] = TypePtr::NOTNULL; // subkeyH |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1115 |
fields[argp++] = TypePtr::NOTNULL; // data |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1116 |
fields[argp++] = TypeInt::INT; // blocks |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1117 |
assert(argp == TypeFunc::Parms+argcnt, "correct decoding"); |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1118 |
const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1119 |
|
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1120 |
// result type needed |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1121 |
fields = TypeTuple::fields(1); |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1122 |
fields[TypeFunc::Parms+0] = NULL; // void |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1123 |
const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields); |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1124 |
return TypeFunc::make(domain, range); |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
31129
diff
changeset
|
1125 |
} |
26434
09ad55e5f486
8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents:
25949
diff
changeset
|
1126 |
|
1 | 1127 |
//------------- Interpreter state access for on stack replacement |
1128 |
const TypeFunc* OptoRuntime::osr_end_Type() { |
|
1129 |
// create input type (domain) |
|
1130 |
const Type **fields = TypeTuple::fields(1); |
|
1131 |
fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // OSR temp buf |
|
1132 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
1133 |
||
1134 |
// create result type |
|
1135 |
fields = TypeTuple::fields(1); |
|
1136 |
// fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // locked oop |
|
1137 |
fields[TypeFunc::Parms+0] = NULL; // void |
|
1138 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields); |
|
1139 |
return TypeFunc::make(domain, range); |
|
1140 |
} |
|
1141 |
||
1142 |
//-------------- methodData update helpers |
|
1143 |
||
1144 |
const TypeFunc* OptoRuntime::profile_receiver_type_Type() { |
|
1145 |
// create input type (domain) |
|
1146 |
const Type **fields = TypeTuple::fields(2); |
|
1147 |
fields[TypeFunc::Parms+0] = TypeAryPtr::NOTNULL; // methodData pointer |
|
1148 |
fields[TypeFunc::Parms+1] = TypeInstPtr::BOTTOM; // receiver oop |
|
1149 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); |
|
1150 |
||
1151 |
// create result type |
|
1152 |
fields = TypeTuple::fields(1); |
|
1153 |
fields[TypeFunc::Parms+0] = NULL; // void |
|
1154 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields); |
|
1155 |
return TypeFunc::make(domain,range); |
|
1156 |
} |
|
1157 |
||
1158 |
JRT_LEAF(void, OptoRuntime::profile_receiver_type_C(DataLayout* data, oopDesc* receiver)) |
|
1159 |
if (receiver == NULL) return; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
1160 |
Klass* receiver_klass = receiver->klass(); |
1 | 1161 |
|
1162 |
intptr_t* mdp = ((intptr_t*)(data)) + DataLayout::header_size_in_cells(); |
|
1163 |
int empty_row = -1; // free row, if any is encountered |
|
1164 |
||
1165 |
// ReceiverTypeData* vc = new ReceiverTypeData(mdp); |
|
1166 |
for (uint row = 0; row < ReceiverTypeData::row_limit(); row++) { |
|
1167 |
// if (vc->receiver(row) == receiver_klass) |
|
1168 |
int receiver_off = ReceiverTypeData::receiver_cell_index(row); |
|
1169 |
intptr_t row_recv = *(mdp + receiver_off); |
|
1170 |
if (row_recv == (intptr_t) receiver_klass) { |
|
1171 |
// vc->set_receiver_count(row, vc->receiver_count(row) + DataLayout::counter_increment); |
|
1172 |
int count_off = ReceiverTypeData::receiver_count_cell_index(row); |
|
1173 |
*(mdp + count_off) += DataLayout::counter_increment; |
|
1174 |
return; |
|
1175 |
} else if (row_recv == 0) { |
|
1176 |
// else if (vc->receiver(row) == NULL) |
|
1177 |
empty_row = (int) row; |
|
1178 |
} |
|
1179 |
} |
|
1180 |
||
1181 |
if (empty_row != -1) { |
|
1182 |
int receiver_off = ReceiverTypeData::receiver_cell_index(empty_row); |
|
1183 |
// vc->set_receiver(empty_row, receiver_klass); |
|
1184 |
*(mdp + receiver_off) = (intptr_t) receiver_klass; |
|
1185 |
// vc->set_receiver_count(empty_row, DataLayout::counter_increment); |
|
1186 |
int count_off = ReceiverTypeData::receiver_count_cell_index(empty_row); |
|
1187 |
*(mdp + count_off) = DataLayout::counter_increment; |
|
4754
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
4637
diff
changeset
|
1188 |
} else { |
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
4637
diff
changeset
|
1189 |
// Receiver did not match any saved receiver and there is no empty row for it. |
4892
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1190 |
// Increment total counter to indicate polymorphic case. |
24425 | 1191 |
intptr_t* count_p = (intptr_t*)(((uint8_t*)(data)) + in_bytes(CounterData::count_offset())); |
4754
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
4637
diff
changeset
|
1192 |
*count_p += DataLayout::counter_increment; |
1 | 1193 |
} |
1194 |
JRT_END |
|
1195 |
||
1196 |
//------------------------------------------------------------------------------------- |
|
1197 |
// register policy |
|
1198 |
||
1199 |
bool OptoRuntime::is_callee_saved_register(MachRegisterNumbers reg) { |
|
1200 |
assert(reg >= 0 && reg < _last_Mach_Reg, "must be a machine register"); |
|
1201 |
switch (register_save_policy[reg]) { |
|
1202 |
case 'C': return false; //SOC |
|
1203 |
case 'E': return true ; //SOE |
|
1204 |
case 'N': return false; //NS |
|
1205 |
case 'A': return false; //AS |
|
1206 |
} |
|
1207 |
ShouldNotReachHere(); |
|
1208 |
return false; |
|
1209 |
} |
|
1210 |
||
1211 |
//----------------------------------------------------------------------- |
|
1212 |
// Exceptions |
|
1213 |
// |
|
1214 |
||
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1215 |
static void trace_exception(outputStream* st, oop exception_oop, address exception_pc, const char* msg); |
1 | 1216 |
|
1217 |
// The method is an entry that is always called by a C++ method not |
|
1218 |
// directly from compiled code. Compiled code will call the C++ method following. |
|
1219 |
// We can't allow async exception to be installed during exception processing. |
|
1220 |
JRT_ENTRY_NO_ASYNC(address, OptoRuntime::handle_exception_C_helper(JavaThread* thread, nmethod* &nm)) |
|
1221 |
||
1222 |
// Do not confuse exception_oop with pending_exception. The exception_oop |
|
1223 |
// is only used to pass arguments into the method. Not for general |
|
1224 |
// exception handling. DO NOT CHANGE IT to use pending_exception, since |
|
1225 |
// the runtime stubs checks this on exit. |
|
1226 |
assert(thread->exception_oop() != NULL, "exception oop is found"); |
|
1227 |
address handler_address = NULL; |
|
1228 |
||
1229 |
Handle exception(thread, thread->exception_oop()); |
|
20703
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1230 |
address pc = thread->exception_pc(); |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1231 |
|
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1232 |
// Clear out the exception oop and pc since looking up an |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1233 |
// exception handler can cause class loading, which might throw an |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1234 |
// exception and those fields are expected to be clear during |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1235 |
// normal bytecode execution. |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1236 |
thread->clear_exception_oop_and_pc(); |
1 | 1237 |
|
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42895
diff
changeset
|
1238 |
LogTarget(Info, exceptions) lt; |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42895
diff
changeset
|
1239 |
if (lt.is_enabled()) { |
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1240 |
ResourceMark rm; |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42895
diff
changeset
|
1241 |
LogStream ls(lt); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42895
diff
changeset
|
1242 |
trace_exception(&ls, exception(), pc, ""); |
1 | 1243 |
} |
20703
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1244 |
|
1 | 1245 |
// for AbortVMOnException flag |
33208
5ec6ffa63c57
8136577: Make AbortVMOnException available in product builds
poonam
parents:
33063
diff
changeset
|
1246 |
Exceptions::debug_check_abort(exception); |
1 | 1247 |
|
20703
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1248 |
#ifdef ASSERT |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1249 |
if (!(exception->is_a(SystemDictionary::Throwable_klass()))) { |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1250 |
// should throw an exception here |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1251 |
ShouldNotReachHere(); |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1252 |
} |
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1253 |
#endif |
1 | 1254 |
|
1255 |
// new exception handling: this method is entered only from adapters |
|
1256 |
// exceptions from compiled java methods are handled in compiled code |
|
1257 |
// using rethrow node |
|
1258 |
||
1259 |
nm = CodeCache::find_nmethod(pc); |
|
1260 |
assert(nm != NULL, "No NMethod found"); |
|
1261 |
if (nm->is_native_method()) { |
|
20703
2de7fe0e9693
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
twisti
parents:
18507
diff
changeset
|
1262 |
fatal("Native method should not have path to exception handling"); |
1 | 1263 |
} else { |
1264 |
// we are switching to old paradigm: search for exception handler in caller_frame |
|
1265 |
// instead in exception handler of caller_frame.sender() |
|
1266 |
||
4761
bdb7375a1fee
6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents:
4637
diff
changeset
|
1267 |
if (JvmtiExport::can_post_on_exceptions()) { |
1 | 1268 |
// "Full-speed catching" is not necessary here, |
1269 |
// since we're notifying the VM on every catch. |
|
1270 |
// Force deoptimization and the rest of the lookup |
|
1271 |
// will be fine. |
|
14835
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1272 |
deoptimize_caller_frame(thread); |
1 | 1273 |
} |
1274 |
||
1275 |
// Check the stack guard pages. If enabled, look for handler in this frame; |
|
1276 |
// otherwise, forcibly unwind the frame. |
|
1277 |
// |
|
1278 |
// 4826555: use default current sp for reguard_stack instead of &nm: it's more accurate. |
|
1279 |
bool force_unwind = !thread->reguard_stack(); |
|
1280 |
bool deopting = false; |
|
1281 |
if (nm->is_deopt_pc(pc)) { |
|
1282 |
deopting = true; |
|
1283 |
RegisterMap map(thread, false); |
|
1284 |
frame deoptee = thread->last_frame().sender(&map); |
|
1285 |
assert(deoptee.is_deoptimized_frame(), "must be deopted"); |
|
1286 |
// Adjust the pc back to the original throwing pc |
|
1287 |
pc = deoptee.pc(); |
|
1288 |
} |
|
1289 |
||
1290 |
// If we are forcing an unwind because of stack overflow then deopt is |
|
22807 | 1291 |
// irrelevant since we are throwing the frame away anyway. |
1 | 1292 |
|
1293 |
if (deopting && !force_unwind) { |
|
1294 |
handler_address = SharedRuntime::deopt_blob()->unpack_with_exception(); |
|
1295 |
} else { |
|
1296 |
||
1297 |
handler_address = |
|
1298 |
force_unwind ? NULL : nm->handler_for_exception_and_pc(exception, pc); |
|
1299 |
||
1300 |
if (handler_address == NULL) { |
|
41057
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1301 |
bool recursive_exception = false; |
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1302 |
handler_address = SharedRuntime::compute_compiled_exc_handler(nm, pc, exception, force_unwind, true, recursive_exception); |
1 | 1303 |
assert (handler_address != NULL, "must have compiled handler"); |
10731
ffe24d6f0575
6865265: JVM crashes with "missing exception handler" error
kvn
parents:
10566
diff
changeset
|
1304 |
// Update the exception cache only when the unwind was not forced |
ffe24d6f0575
6865265: JVM crashes with "missing exception handler" error
kvn
parents:
10566
diff
changeset
|
1305 |
// and there didn't happen another exception during the computation of the |
41057
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1306 |
// compiled exception handler. Checking for exception oop equality is not |
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1307 |
// sufficient because some exceptions are pre-allocated and reused. |
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1308 |
if (!force_unwind && !recursive_exception) { |
1 | 1309 |
nm->add_handler_for_exception_and_pc(exception,pc,handler_address); |
1310 |
} |
|
1311 |
} else { |
|
41057
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1312 |
#ifdef ASSERT |
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1313 |
bool recursive_exception = false; |
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1314 |
address computed_address = SharedRuntime::compute_compiled_exc_handler(nm, pc, exception, force_unwind, true, recursive_exception); |
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1315 |
vmassert(recursive_exception || (handler_address == computed_address), "Handler address inconsistency: " PTR_FORMAT " != " PTR_FORMAT, |
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1316 |
p2i(handler_address), p2i(computed_address)); |
f77b9d9e0e4c
8164480: Crash with assert(handler_address == SharedRuntime::compute_compiled_exc_handler(..) failed: Must be the same
thartmann
parents:
40655
diff
changeset
|
1317 |
#endif |
1 | 1318 |
} |
1319 |
} |
|
1320 |
||
1321 |
thread->set_exception_pc(pc); |
|
1322 |
thread->set_exception_handler_pc(handler_address); |
|
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4030
diff
changeset
|
1323 |
|
5046 | 1324 |
// Check if the exception PC is a MethodHandle call site. |
5252
58f23871a5b6
6941529: SharedRuntime::raw_exception_handler_for_return_address must reset thread MethodHandle flag
twisti
parents:
5046
diff
changeset
|
1325 |
thread->set_is_method_handle_return(nm->is_method_handle_return(pc)); |
1 | 1326 |
} |
1327 |
||
1328 |
// Restore correct return pc. Was saved above. |
|
1329 |
thread->set_exception_oop(exception()); |
|
1330 |
return handler_address; |
|
1331 |
||
1332 |
JRT_END |
|
1333 |
||
1334 |
// We are entering here from exception_blob |
|
1335 |
// If there is a compiled exception handler in this method, we will continue there; |
|
1336 |
// otherwise we will unwind the stack and continue at the caller of top frame method |
|
1337 |
// Note we enter without the usual JRT wrapper. We will call a helper routine that |
|
1338 |
// will do the normal VM entry. We do it this way so that we can see if the nmethod |
|
1339 |
// we looked up the handler for has been deoptimized in the meantime. If it has been |
|
22807 | 1340 |
// we must not use the handler and instead return the deopt blob. |
1 | 1341 |
address OptoRuntime::handle_exception_C(JavaThread* thread) { |
1342 |
// |
|
1343 |
// We are in Java not VM and in debug mode we have a NoHandleMark |
|
1344 |
// |
|
1345 |
#ifndef PRODUCT |
|
1346 |
SharedRuntime::_find_handler_ctr++; // find exception handler |
|
1347 |
#endif |
|
1348 |
debug_only(NoHandleMark __hm;) |
|
1349 |
nmethod* nm = NULL; |
|
1350 |
address handler_address = NULL; |
|
1351 |
{ |
|
1352 |
// Enter the VM |
|
1353 |
||
1354 |
ResetNoHandleMark rnhm; |
|
1355 |
handler_address = handle_exception_C_helper(thread, nm); |
|
1356 |
} |
|
1357 |
||
1358 |
// Back in java: Use no oops, DON'T safepoint |
|
1359 |
||
1360 |
// Now check to see if the handler we are returning is in a now |
|
1361 |
// deoptimized frame |
|
1362 |
||
1363 |
if (nm != NULL) { |
|
1364 |
RegisterMap map(thread, false); |
|
1365 |
frame caller = thread->last_frame().sender(&map); |
|
1366 |
#ifdef ASSERT |
|
1367 |
assert(caller.is_compiled_frame(), "must be"); |
|
1368 |
#endif // ASSERT |
|
1369 |
if (caller.is_deoptimized_frame()) { |
|
1370 |
handler_address = SharedRuntime::deopt_blob()->unpack_with_exception(); |
|
1371 |
} |
|
1372 |
} |
|
1373 |
return handler_address; |
|
1374 |
} |
|
1375 |
||
1376 |
//------------------------------rethrow---------------------------------------- |
|
1377 |
// We get here after compiled code has executed a 'RethrowNode'. The callee |
|
1378 |
// is either throwing or rethrowing an exception. The callee-save registers |
|
1379 |
// have been restored, synchronized objects have been unlocked and the callee |
|
1380 |
// stack frame has been removed. The return address was passed in. |
|
1381 |
// Exception oop is passed as the 1st argument. This routine is then called |
|
1382 |
// from the stub. On exit, we know where to jump in the caller's code. |
|
1383 |
// After this C code exits, the stub will pop his frame and end in a jump |
|
1384 |
// (instead of a return). We enter the caller's default handler. |
|
1385 |
// |
|
1386 |
// This must be JRT_LEAF: |
|
1387 |
// - caller will not change its state as we cannot block on exit, |
|
1388 |
// therefore raw_exception_handler_for_return_address is all it takes |
|
1389 |
// to handle deoptimized blobs |
|
1390 |
// |
|
1391 |
// However, there needs to be a safepoint check in the middle! So compiled |
|
1392 |
// safepoints are completely watertight. |
|
1393 |
// |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35216
diff
changeset
|
1394 |
// Thus, it cannot be a leaf since it contains the NoGCVerifier. |
1 | 1395 |
// |
1396 |
// *THIS IS NOT RECOMMENDED PROGRAMMING STYLE* |
|
1397 |
// |
|
1398 |
address OptoRuntime::rethrow_C(oopDesc* exception, JavaThread* thread, address ret_pc) { |
|
1399 |
#ifndef PRODUCT |
|
1400 |
SharedRuntime::_rethrow_ctr++; // count rethrows |
|
1401 |
#endif |
|
1402 |
assert (exception != NULL, "should have thrown a NULLPointerException"); |
|
1403 |
#ifdef ASSERT |
|
4571 | 1404 |
if (!(exception->is_a(SystemDictionary::Throwable_klass()))) { |
1 | 1405 |
// should throw an exception here |
1406 |
ShouldNotReachHere(); |
|
1407 |
} |
|
1408 |
#endif |
|
1409 |
||
1410 |
thread->set_vm_result(exception); |
|
1411 |
// Frame not compiled (handles deoptimization blob) |
|
5046 | 1412 |
return SharedRuntime::raw_exception_handler_for_return_address(thread, ret_pc); |
1 | 1413 |
} |
1414 |
||
1415 |
||
1416 |
const TypeFunc *OptoRuntime::rethrow_Type() { |
|
1417 |
// create input type (domain) |
|
1418 |
const Type **fields = TypeTuple::fields(1); |
|
1419 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Exception oop |
|
1420 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1,fields); |
|
1421 |
||
1422 |
// create result type (range) |
|
1423 |
fields = TypeTuple::fields(1); |
|
1424 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Exception oop |
|
1425 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields); |
|
1426 |
||
1427 |
return TypeFunc::make(domain, range); |
|
1428 |
} |
|
1429 |
||
1430 |
||
1431 |
void OptoRuntime::deoptimize_caller_frame(JavaThread *thread, bool doit) { |
|
14835
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1432 |
// Deoptimize the caller before continuing, as the compiled |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1433 |
// exception handler table may not be valid. |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1434 |
if (!StressCompiledExceptionHandlers && doit) { |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1435 |
deoptimize_caller_frame(thread); |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1436 |
} |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1437 |
} |
1 | 1438 |
|
14835
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1439 |
void OptoRuntime::deoptimize_caller_frame(JavaThread *thread) { |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1440 |
// Called from within the owner thread, so no need for safepoint |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1441 |
RegisterMap reg_map(thread); |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1442 |
frame stub_frame = thread->last_frame(); |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1443 |
assert(stub_frame.is_runtime_frame() || exception_blob()->contains(stub_frame.pc()), "sanity check"); |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1444 |
frame caller_frame = stub_frame.sender(®_map); |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1445 |
|
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1446 |
// Deoptimize the caller frame. |
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14488
diff
changeset
|
1447 |
Deoptimization::deoptimize_frame(thread, caller_frame.id()); |
1 | 1448 |
} |
1449 |
||
1450 |
||
10987
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1451 |
bool OptoRuntime::is_deoptimized_caller_frame(JavaThread *thread) { |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1452 |
// Called from within the owner thread, so no need for safepoint |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1453 |
RegisterMap reg_map(thread); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1454 |
frame stub_frame = thread->last_frame(); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1455 |
assert(stub_frame.is_runtime_frame() || exception_blob()->contains(stub_frame.pc()), "sanity check"); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1456 |
frame caller_frame = stub_frame.sender(®_map); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1457 |
return caller_frame.is_deoptimized_frame(); |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1458 |
} |
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1459 |
|
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10972
diff
changeset
|
1460 |
|
1 | 1461 |
const TypeFunc *OptoRuntime::register_finalizer_Type() { |
1462 |
// create input type (domain) |
|
1463 |
const Type **fields = TypeTuple::fields(1); |
|
1464 |
fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // oop; Receiver |
|
1465 |
// // The JavaThread* is passed to each routine as the last argument |
|
1466 |
// fields[TypeFunc::Parms+1] = TypeRawPtr::NOTNULL; // JavaThread *; Executing thread |
|
1467 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1,fields); |
|
1468 |
||
1469 |
// create result type (range) |
|
1470 |
fields = TypeTuple::fields(0); |
|
1471 |
||
1472 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields); |
|
1473 |
||
1474 |
return TypeFunc::make(domain,range); |
|
1475 |
} |
|
1476 |
||
1477 |
||
1478 |
//----------------------------------------------------------------------------- |
|
1479 |
// Dtrace support. entry and exit probes have the same signature |
|
1480 |
const TypeFunc *OptoRuntime::dtrace_method_entry_exit_Type() { |
|
1481 |
// create input type (domain) |
|
1482 |
const Type **fields = TypeTuple::fields(2); |
|
1483 |
fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // Thread-local storage |
|
13742
9180987e305d
7195816: NPG: Crash in c1_ValueType - ShouldNotReachHere
roland
parents:
13728
diff
changeset
|
1484 |
fields[TypeFunc::Parms+1] = TypeMetadataPtr::BOTTOM; // Method*; Method we are entering |
1 | 1485 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); |
1486 |
||
1487 |
// create result type (range) |
|
1488 |
fields = TypeTuple::fields(0); |
|
1489 |
||
1490 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields); |
|
1491 |
||
1492 |
return TypeFunc::make(domain,range); |
|
1493 |
} |
|
1494 |
||
1495 |
const TypeFunc *OptoRuntime::dtrace_object_alloc_Type() { |
|
1496 |
// create input type (domain) |
|
1497 |
const Type **fields = TypeTuple::fields(2); |
|
1498 |
fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // Thread-local storage |
|
1499 |
fields[TypeFunc::Parms+1] = TypeInstPtr::NOTNULL; // oop; newly allocated object |
|
1500 |
||
1501 |
const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); |
|
1502 |
||
1503 |
// create result type (range) |
|
1504 |
fields = TypeTuple::fields(0); |
|
1505 |
||
1506 |
const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields); |
|
1507 |
||
1508 |
return TypeFunc::make(domain,range); |
|
1509 |
} |
|
1510 |
||
1511 |
||
1512 |
JRT_ENTRY_NO_ASYNC(void, OptoRuntime::register_finalizer(oopDesc* obj, JavaThread* thread)) |
|
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46701
diff
changeset
|
1513 |
assert(oopDesc::is_oop(obj), "must be a valid oop"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
1514 |
assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
1515 |
InstanceKlass::register_finalizer(instanceOop(obj), CHECK); |
1 | 1516 |
JRT_END |
1517 |
||
1518 |
//----------------------------------------------------------------------------- |
|
1519 |
||
1520 |
NamedCounter * volatile OptoRuntime::_named_counters = NULL; |
|
1521 |
||
1522 |
// |
|
1523 |
// dump the collected NamedCounters. |
|
1524 |
// |
|
1525 |
void OptoRuntime::print_named_counters() { |
|
1526 |
int total_lock_count = 0; |
|
1527 |
int eliminated_lock_count = 0; |
|
1528 |
||
1529 |
NamedCounter* c = _named_counters; |
|
1530 |
while (c) { |
|
1531 |
if (c->tag() == NamedCounter::LockCounter || c->tag() == NamedCounter::EliminatedLockCounter) { |
|
1532 |
int count = c->count(); |
|
1533 |
if (count > 0) { |
|
1534 |
bool eliminated = c->tag() == NamedCounter::EliminatedLockCounter; |
|
1535 |
if (Verbose) { |
|
1536 |
tty->print_cr("%d %s%s", count, c->name(), eliminated ? " (eliminated)" : ""); |
|
1537 |
} |
|
1538 |
total_lock_count += count; |
|
1539 |
if (eliminated) { |
|
1540 |
eliminated_lock_count += count; |
|
1541 |
} |
|
1542 |
} |
|
1543 |
} else if (c->tag() == NamedCounter::BiasedLockingCounter) { |
|
1544 |
BiasedLockingCounters* blc = ((BiasedLockingNamedCounter*)c)->counters(); |
|
1545 |
if (blc->nonzero()) { |
|
1546 |
tty->print_cr("%s", c->name()); |
|
1547 |
blc->print_on(tty); |
|
1548 |
} |
|
23491 | 1549 |
#if INCLUDE_RTM_OPT |
1550 |
} else if (c->tag() == NamedCounter::RTMLockingCounter) { |
|
1551 |
RTMLockingCounters* rlc = ((RTMLockingNamedCounter*)c)->counters(); |
|
1552 |
if (rlc->nonzero()) { |
|
1553 |
tty->print_cr("%s", c->name()); |
|
1554 |
rlc->print_on(tty); |
|
1555 |
} |
|
1556 |
#endif |
|
1 | 1557 |
} |
1558 |
c = c->next(); |
|
1559 |
} |
|
1560 |
if (total_lock_count > 0) { |
|
1561 |
tty->print_cr("dynamic locks: %d", total_lock_count); |
|
1562 |
if (eliminated_lock_count) { |
|
1563 |
tty->print_cr("eliminated locks: %d (%d%%)", eliminated_lock_count, |
|
1564 |
(int)(eliminated_lock_count * 100.0 / total_lock_count)); |
|
1565 |
} |
|
1566 |
} |
|
1567 |
} |
|
1568 |
||
1569 |
// |
|
1570 |
// Allocate a new NamedCounter. The JVMState is used to generate the |
|
1571 |
// name which consists of method@line for the inlining tree. |
|
1572 |
// |
|
1573 |
||
1574 |
NamedCounter* OptoRuntime::new_named_counter(JVMState* youngest_jvms, NamedCounter::CounterTag tag) { |
|
1575 |
int max_depth = youngest_jvms->depth(); |
|
1576 |
||
1577 |
// Visit scopes from youngest to oldest. |
|
1578 |
bool first = true; |
|
1579 |
stringStream st; |
|
1580 |
for (int depth = max_depth; depth >= 1; depth--) { |
|
1581 |
JVMState* jvms = youngest_jvms->of_depth(depth); |
|
1582 |
ciMethod* m = jvms->has_method() ? jvms->method() : NULL; |
|
1583 |
if (!first) { |
|
1584 |
st.print(" "); |
|
1585 |
} else { |
|
1586 |
first = false; |
|
1587 |
} |
|
1588 |
int bci = jvms->bci(); |
|
1589 |
if (bci < 0) bci = 0; |
|
1590 |
st.print("%s.%s@%d", m->holder()->name()->as_utf8(), m->name()->as_utf8(), bci); |
|
1591 |
// To print linenumbers instead of bci use: m->line_number_from_bci(bci) |
|
1592 |
} |
|
1593 |
NamedCounter* c; |
|
1594 |
if (tag == NamedCounter::BiasedLockingCounter) { |
|
25949 | 1595 |
c = new BiasedLockingNamedCounter(st.as_string()); |
23491 | 1596 |
} else if (tag == NamedCounter::RTMLockingCounter) { |
25949 | 1597 |
c = new RTMLockingNamedCounter(st.as_string()); |
1 | 1598 |
} else { |
25949 | 1599 |
c = new NamedCounter(st.as_string(), tag); |
1 | 1600 |
} |
1601 |
||
1602 |
// atomically add the new counter to the head of the list. We only |
|
1603 |
// add counters so this is safe. |
|
1604 |
NamedCounter* head; |
|
1605 |
do { |
|
23491 | 1606 |
c->set_next(NULL); |
1 | 1607 |
head = _named_counters; |
1608 |
c->set_next(head); |
|
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47216
diff
changeset
|
1609 |
} while (Atomic::cmpxchg(c, &_named_counters, head) != head); |
1 | 1610 |
return c; |
1611 |
} |
|
1612 |
||
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1613 |
int trace_exception_counter = 0; |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1614 |
static void trace_exception(outputStream* st, oop exception_oop, address exception_pc, const char* msg) { |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1615 |
trace_exception_counter++; |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1616 |
stringStream tempst; |
1 | 1617 |
|
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1618 |
tempst.print("%d [Exception (%s): ", trace_exception_counter, msg); |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1619 |
exception_oop->print_value_on(&tempst); |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1620 |
tempst.print(" in "); |
1 | 1621 |
CodeBlob* blob = CodeCache::find_blob(exception_pc); |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37248
diff
changeset
|
1622 |
if (blob->is_compiled()) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37248
diff
changeset
|
1623 |
CompiledMethod* cm = blob->as_compiled_method_or_null(); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
37248
diff
changeset
|
1624 |
cm->method()->print_value_on(&tempst); |
1 | 1625 |
} else if (blob->is_runtime_stub()) { |
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1626 |
tempst.print("<runtime-stub>"); |
1 | 1627 |
} else { |
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1628 |
tempst.print("<unknown>"); |
1 | 1629 |
} |
35216
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1630 |
tempst.print(" at " INTPTR_FORMAT, p2i(exception_pc)); |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1631 |
tempst.print("]"); |
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1632 |
|
71c463a17b3b
8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
33626
diff
changeset
|
1633 |
st->print_raw_cr(tempst.as_string()); |
1 | 1634 |
} |