Searched refs:_thread_in_native (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dthread_linux_sparc.cpp95 if (jt->thread_state() == _thread_in_native) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.hpp143 assert(from != _thread_in_native, "use transition_from_native");
209 assert(thread->thread_state() == _thread_in_native, "coming from wrong thread state");
265 if (t2->thread_state() == _thread_in_native) {
277 ThreadStateTransition::transition_and_fence(_thread, _thread_in_vm, _thread_in_native);
289 trans_and_fence(_thread_in_vm, _thread_in_native);
301 trans_and_fence(_thread_in_vm, _thread_in_native);
H A Dvm_operations.cpp392 if (thr!=thr_cur && thr->thread_state() == _thread_in_native) {
402 // to wait for threads in _thread_in_native state to be quiescent.
427 if (thr!=thr_cur && thr->thread_state() == _thread_in_native) {
H A Dsafepoint.cpp559 case _thread_in_native:
579 if (state == _thread_in_native &&
H A Djava.cpp614 jt->set_thread_state(_thread_in_native);
H A DjavaCalls.cpp110 assert (_thread->thread_state() != _thread_in_native, "cannot set native pc to NULL");
H A Dfprofiler.cpp1092 case _thread_in_native:
H A Dframe.cpp292 if (state == _thread_in_native || state == _thread_in_native_trans) {
H A Dthread.cpp588 // _thread_in_native -> _thread_in_native_trans -> _thread_blocked
610 } else if (save_state == _thread_in_native && frame_anchor()->walkable()) {
2091 case _thread_in_native:
2785 case _thread_in_native: return "_thread_in_native";
H A DobjectMonitor.cpp2267 return jst == _thread_blocked || jst == _thread_in_native ;
/openjdk7/hotspot/src/share/vm/memory/
H A DgcLocker.cpp217 case _thread_in_native:
/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.cpp195 bool known_valid = (state == _thread_in_native ||
563 case _thread_in_native:
H A DjvmtiEnv.cpp697 if (jts == _thread_in_native) {
824 if (java_thread->thread_state() == _thread_in_native) {
3044 /* safepoint but since the thread was already in _thread_in_native */
3050 assert(state == _thread_in_native, "Must be _thread_in_native");
3140 /* safepoint but since the thread was already in _thread_in_native */
3146 assert(state == _thread_in_native, "Must be _thread_in_native");
H A DjvmtiExport.cpp101 ThreadStateTransition::transition_from_java(_jthread, _thread_in_native);
103 ThreadStateTransition::transition(_jthread, _saved_state, _thread_in_native);
983 real_thread->set_thread_state(_thread_in_native);
990 assert(real_thread->thread_state() == _thread_in_native,
H A DjvmtiEnvBase.cpp1217 if (jts == _thread_in_native) {
H A Djni.cpp5152 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
5247 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
5360 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkNativeWrapper.cpp199 // Change the thread state to _thread_in_native
200 CreateSetThreadState(_thread_in_native);
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp321 // Change the thread state to _thread_in_native
322 ThreadStateTransition::transition_from_java(thread, _thread_in_native);
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp740 _is_in_native = (thread->thread_state() == _thread_in_native);
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp715 // _thread_in_native : In native code. This is a safepoint region, since all oops will be in jobject handles
729 _thread_in_native = 4, // running in native code enumerator in enum:JavaThreadState
H A DvmError.cpp205 if (jt->thread_state() == _thread_in_native) {
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp393 // os::restartable_read calls skip this layer and stay in _thread_in_native
400 assert(thread_state != _thread_in_native, "Native threads skip setup_interruptible");
440 assert(thread_state == _thread_in_native, "Assumed thread_in_native");
446 assert(thread_state == _thread_in_native, "Assumed thread_in_native");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp1055 // Transition from _thread_in_Java to _thread_in_native. We are already safepoint ready.
1066 __ set(_thread_in_native, G3_scratch);
1090 // Java thread A, in _thread_in_native state, loads _not_synchronized and is preempted.
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp1078 __ movl(Address(thread, JavaThread::thread_state_offset()), _thread_in_native); local
1089 // It is safe to do this push because state is _thread_in_native and return address will be found
H A DtemplateInterpreter_x86_64.cpp1078 _thread_in_native); local

Completed in 181 milliseconds

12