Searched refs:JavaThread (Results 151 - 175 of 324) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.cpp222 for (JavaThread *cur = Threads::first(); cur != NULL; cur = cur->next()) {
236 for (JavaThread *cur = Threads::first(); cur != NULL; cur = cur->next()) {
386 for (JavaThread *cur = Threads::first(); cur != NULL; cur = cur->next()) {
435 for(JavaThread *cur = Threads::first(); cur; cur = cur->next()) {
466 for(JavaThread *current = Threads::first(); current; current = current->next()) {
557 bool SafepointSynchronize::safepoint_safe(JavaThread *thread, JavaThreadState state) {
578 void SafepointSynchronize::check_for_lazy_critical_native(JavaThread *thread, JavaThreadState state) {
613 void SafepointSynchronize::block(JavaThread *thread) {
803 void SafepointSynchronize::handle_polling_page_exception(JavaThread *thread) {
850 for(JavaThread *cur_threa
[all...]
H A DjavaCalls.cpp59 JavaThread* thread = (JavaThread *)THREAD;
96 _thread = (JavaThread *)thread;
124 assert(_thread == JavaThread::current(), "must still be the same thread");
190 void JavaCalls::call_default_constructor(JavaThread* thread, methodHandle method, Handle receiver, TRAPS) {
325 JavaThread* thread = (JavaThread*)THREAD;
524 ReportJNIFatalError((JavaThread*)_thread, "Bad JNI oop argument");
H A Dfprofiler.cpp106 JavaThread* jtp = (JavaThread*) tp;
842 JavaThread** threadsList;
855 threadsList = NEW_C_HEAP_ARRAY(JavaThread *, maxthreads, mtInternal);
857 for (JavaThread* tp = Threads::first(); tp != NULL; tp = tp->next()) {
887 JavaThread *tp = threadsList[j];
895 JavaThread *tp = threadsList[i];
945 void ThreadProfiler::record_interpreted_tick(JavaThread* thread, frame fr, TickPosition where, int* ticks) {
971 void ThreadProfiler::record_compiled_tick(JavaThread* thread, frame fr, TickPosition where) {
1008 void ThreadProfiler::record_tick_for_running_frame(JavaThread* threa
[all...]
H A Dmemprofiler.cpp124 JavaThread *cur = Threads::first();
H A DserviceThread.cpp62 // JavaThread due to lack of memory. We would have to throw an exception
81 void ServiceThread::service_thread_entry(JavaThread* jt, TRAPS) {
H A DjavaCalls.hpp68 JavaThread* _thread; // the thread to which this call belongs
83 JavaThread* thread() const { return _thread; }
196 static void call_default_constructor(JavaThread* thread, methodHandle method, Handle receiver, TRAPS);
H A Dvm_operations.hpp140 // If the thread invoking VMThread::execute((VM_Operation*) is a JavaThread,
144 // doit_epilogue() will be called by the JavaThread once the VM operation
255 JavaThread* _thread;
257 VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id);
368 ThreadSnapshot* snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
H A DsimpleThresholdPolicy.cpp185 int branch_bci, int bci, CompLevel comp_level, nmethod* nm, JavaThread* thread) {
216 void SimpleThresholdPolicy::compile(methodHandle mh, int bci, CompLevel level, JavaThread* thread) {
243 void SimpleThresholdPolicy::submit_compile(methodHandle mh, int bci, CompLevel level, JavaThread* thread) {
372 CompLevel level, nmethod* nm, JavaThread* thread) {
384 int bci, CompLevel level, nmethod* nm, JavaThread* thread) {
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp533 JavaThread* thread = JavaThread::current();
564 JavaThread* thread = JavaThread::current();
580 JavaThread* thread = JavaThread::current();
H A Dos_solaris.hpp315 static void setup_interruptible(JavaThread* thread);
316 static void setup_interruptible_already_blocked(JavaThread* thread);
317 static JavaThread* setup_interruptible();
318 static void cleanup_interruptible(JavaThread* thread);
326 static JavaThread* setup_interruptible_native();
327 static void cleanup_interruptible_native(JavaThread* thread);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp931 in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()));
1058 __ lea(t, Address(thread, JavaThread::jni_environment_offset()));
1069 __ movl(t, Address(thread, JavaThread::thread_state_offset()));
1078 __ movl(Address(thread, JavaThread::thread_state_offset()), _thread_in_native);
1114 __ movl(Address(thread, JavaThread::thread_state_offset()), _thread_in_native_trans);
1143 __ cmpl(Address(thread, JavaThread::suspend_flags_offset()), 0);
1155 JavaThread::check_special_condition_for_native_trans)));
1163 __ movl(Address(thread, JavaThread::thread_state_offset()), _thread_in_Java);
1168 __ movptr(t, Address(thread, JavaThread::active_handles_offset()));
1193 __ cmpl(Address(thread, JavaThread
[all...]
H A DtemplateInterpreter_x86_64.cpp911 in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()));
1057 __ lea(c_rarg0, Address(r15_thread, JavaThread::jni_environment_offset()));
1067 __ movl(t, Address(r15_thread, JavaThread::thread_state_offset()));
1077 __ movl(Address(r15_thread, JavaThread::thread_state_offset()),
1096 __ movl(Address(r15_thread, JavaThread::thread_state_offset()),
1122 __ cmpl(Address(r15_thread, JavaThread::suspend_flags_offset()), 0);
1137 __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, JavaThread::check_special_condition_for_native_trans)));
1144 __ movl(Address(r15_thread, JavaThread::thread_state_offset()), _thread_in_Java);
1150 __ movptr(t, Address(r15_thread, JavaThread::active_handles_offset()));
1176 __ cmpl(Address(r15_thread, JavaThread
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DPointerFinder.java64 for (JavaThread t = VM.getVM().getThreads().first(); t != null; t = t.next()) {
134 for (JavaThread t = VM.getVM().getThreads().first(); t != null; t = t.next()) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaThread.java33 * Wraps a JavaThread instance in the target VM.
38 // JavaThread retrieved from java.lang.Thread instance may be null.
44 public JSJavaThread(JavaThread jt, JSJavaFactory fac) {
187 private JavaThread jthread;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dvm_operations_g1.cpp201 JavaThread* jt = (JavaThread*)thr;
/openjdk7/hotspot/src/share/vm/oops/
H A DoopsHierarchy.hpp134 operator JavaThread* () const { return (JavaThread*)obj(); }
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkNativeWrapper.hpp146 thread(), JavaThread::thread_state_offset(),
177 JavaThread::active_handles_offset(),
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java29 import sun.jvm.hotspot.runtime.JavaThread;
48 private JavaThread myJavaThread;
54 ThreadReferenceImpl(VirtualMachine aVm, sun.jvm.hotspot.runtime.JavaThread aRef) {
55 // We are given a JavaThread and save it in our myJavaThread field.
57 // for it. JavaThread is a wrapper around a Thread Oop so we get
68 // JavaThread retrieved from java.lang.Thread instance may be null.
75 JavaThread getJavaThread() {
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DvmStructs_cms.hpp63 declare_type(SurrogateLockerThread, JavaThread) \
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp151 JavaThread* thread = NULL;
156 thread = (JavaThread*)t;
421 if (stack_bytes > JavaThread::stack_size_at_create())
422 stack_bytes = JavaThread::stack_size_at_create();
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp146 JavaThread* thread = NULL;
151 thread = (JavaThread*)t;
366 if (stack_bytes > JavaThread::stack_size_at_create())
367 stack_bytes = JavaThread::stack_size_at_create();
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiGetLoadedClasses.cpp49 JavaThread* thread = JavaThread::current();
54 JavaThread* thread = JavaThread::current();
H A DjvmtiEnvThreadState.cpp129 JvmtiEnvThreadState::JvmtiEnvThreadState(JavaThread *thread, JvmtiEnvBase *env) :
260 JavaThread *_thread;
265 VM_GetCurrentLocation(JavaThread *thread) {
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.hpp68 static void get_loaded_classes(JavaThread* cur_thread, GrowableArray<KlassHandle>* klass_handle_array);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DPStack.java168 JavaThread jthread = (JavaThread) proxyToThread.get(th);
195 private Map proxyToThread; // Map<ThreadProxy, JavaThread>
205 for (JavaThread cur = threads.first(); cur != null; cur = cur.next()) {

Completed in 70 milliseconds

1234567891011>>