Searched refs:uncommon_trap (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkRuntime.hpp91 static int uncommon_trap(JavaThread* thread, int trap_request);
H A DsharkRuntime.cpp203 int SharkRuntime::uncommon_trap(JavaThread* thread, int trap_request) { function in class:SharkRuntime
216 Deoptimization::uncommon_trap(thread, trap_request);
H A DsharkBuilder.cpp339 Value* SharkBuilder::uncommon_trap() { function in class:SharkBuilder
340 return make_function((address) SharkRuntime::uncommon_trap, "Ti", "i");
H A DsharkBuilder.hpp150 llvm::Value* uncommon_trap();
H A DsharkTopLevelBlock.cpp730 builder()->uncommon_trap(),
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse3.cpp89 uncommon_trap(Deoptimization::Reason_unhandled,
96 uncommon_trap(Deoptimization::Reason_uninitialized,
105 uncommon_trap(Deoptimization::Reason_unhandled,
221 // uncommon_trap(iter().get_field_signature_index());
371 // Generate uncommon_trap for unloaded array_class
372 uncommon_trap(Deoptimization::Reason_unloaded,
H A DparseHelper.cpp149 // This cutout lets us avoid the uncommon_trap(Reason_array_check)
182 uncommon_trap(Deoptimization::Reason_array_check,
217 // uncommon_trap
246 uncommon_trap(Deoptimization::Reason_uninitialized,
265 uncommon_trap(Deoptimization::Reason_uninitialized,
330 uncommon_trap(Deoptimization::Reason_age,
H A DgraphKit.hpp278 // and branch to an uncommon_trap if it is true (with the specified reason and must_throw)
654 void uncommon_trap(int trap_request,
659 void uncommon_trap(Deoptimization::DeoptReason reason, function in class:GraphKit
663 uncommon_trap(Deoptimization::make_trap_request(reason, action),
H A Dparse2.cpp111 uncommon_trap(Deoptimization::Reason_unloaded,
124 // the uncommon_trap path will always be taken.
143 uncommon_trap(Deoptimization::Reason_range_check,
987 uncommon_trap(Deoptimization::Reason_unreached,
1069 uncommon_trap(Deoptimization::Reason_unreached,
1208 uncommon_trap(Deoptimization::Reason_unreached,
1445 uncommon_trap(Deoptimization::make_trap_request
2185 uncommon_trap(Deoptimization::Reason_unhandled,
H A DcallGenerator.cpp192 kit.uncommon_trap(Deoptimization::Reason_null_check,
989 // Don't allow uncommon_trap to override our decision to recompile in the event
993 kit.uncommon_trap(_reason, _action, NULL, "monomorphic vcall checkcast", false, keep_exact_action);
995 kit.uncommon_trap(_reason, _action);
H A DgraphKit.cpp491 // take the uncommon_trap in the BuildCutout below.
506 uncommon_trap(reason, Deoptimization::Action_none,
630 uncommon_trap(reason, action, (ciKlass*)NULL, (char*)NULL, must_throw);
1206 uncommon_trap(Deoptimization::Reason_unloaded,
1319 uncommon_trap(reason,
1871 //------------------------------uncommon_trap----------------------------------
1873 // uncommon_trap blob. This helper function inserts a runtime call with the
1875 void GraphKit::uncommon_trap(int trap_request, function in class:GraphKit
1942 log->begin_elem("uncommon_trap bci='%d'", bci());
1975 call_addr, "uncommon_trap", no_memory_effect
[all...]
H A DdoCall.cpp346 uncommon_trap(Deoptimization::Reason_uninitialized,
416 // The other path may uncommon_trap, check for another receiver, or do a v-call.
670 uncommon_trap(Deoptimization::Reason_unloaded,
H A Dparse1.cpp376 uncommon_trap(Deoptimization::Reason_constraint,
1392 uncommon_trap(trap_index);
H A Dstringopts.cpp225 CallStaticJavaNode* call = new (C) CallStaticJavaNode(call_type, call_addr, "uncommon_trap",
787 if (call != NULL && call->_name != NULL && strcmp(call->_name, "uncommon_trap") == 0) {
801 if (call != NULL && call->_name != NULL && strcmp(call->_name, "uncommon_trap") == 0) {
1419 kit.uncommon_trap(Deoptimization::Reason_intrinsic,
H A Dlibrary_call.cpp88 // and save the stack pointer value so it can used by uncommon_trap.
1596 uncommon_trap(Deoptimization::Reason_intrinsic,
1665 // result = uncommon_trap() or runtime_call();
3515 uncommon_trap(Deoptimization::Reason_intrinsic,
3594 uncommon_trap(Deoptimization::Reason_intrinsic,
/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.hpp228 static UnrollBlock* uncommon_trap(JavaThread* thread, jint unloaded_class_index);
H A Ddeoptimization.cpp172 // This is factored, since it is both called from a JRT_LEAF (deoptimization) and a JRT_ENTRY (uncommon_trap)
554 // the beginning of uncommon_trap().
1231 // uncommon_trap() is called at the beginning of the uncommon trap
1289 xtty->begin_head("uncommon_trap thread='" UINTX_FORMAT"' %s",
1354 xtty->tail("uncommon_trap");
1677 Deoptimization::UnrollBlock* Deoptimization::uncommon_trap(JavaThread* thread, jint trap_request) { function in class:Deoptimization
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp3667 // - call the C routine Deoptimization::uncommon_trap (this function
3682 // - Deoptimization::uncommon_trap
3688 // and call Deoptimization::uncommon_trap to pack the compiled frame into
3693 __ call_VM_leaf(L7_thread_cache, CAST_FROM_FN_PTR(address, Deoptimization::uncommon_trap), G2_thread, O2klass_index);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp3196 __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, Deoptimization::uncommon_trap)));
H A DsharedRuntime_x86_64.cpp3635 // UnrollBlock* uncommon_trap(JavaThread* thread, jint unloaded_class_index);
3638 __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, Deoptimization::uncommon_trap)));

Completed in 120 milliseconds