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