Searched refs:JavaThread (Results 101 - 125 of 324) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_amd64/
H A DWin32AMD64JavaThreadPDAccess.java61 Type type = db.lookupType("JavaThread");
71 return lastJavaFPField.getValue(addr.addOffsetTo(sun.jvm.hotspot.runtime.JavaThread.getAnchorField().getOffset()));
82 public Frame getLastFramePD(JavaThread thread, Address addr) {
95 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) {
99 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) {
127 // Addr is the address of the JavaThread.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_x86/
H A DWin32X86JavaThreadPDAccess.java60 Type type = db.lookupType("JavaThread");
70 return lastJavaFPField.getValue(addr.addOffsetTo(sun.jvm.hotspot.runtime.JavaThread.getAnchorField().getOffset()));
81 public Frame getLastFramePD(JavaThread thread, Address addr) {
94 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) {
98 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) {
126 // Addr is the address of the JavaThread.
/openjdk7/hotspot/agent/test/libproc/
H A DLibprocClient.java52 for (JavaThread cur = threads.first(); cur != null; cur = cur.next()) {
83 private static JavaVFrame getLastJavaVFrame(JavaThread cur) {
152 private void checkMainThread(JavaThread thread) {
156 private void checkFrames(JavaThread thread, String[] expectedMethodNames) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DjavaFrameAnchor_sparc.hpp78 void make_walkable(JavaThread* thread);
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.hpp50 static void throw_exception(JavaThread* thread, Symbol* name,char *msg=NULL);
H A DcppInterpreter_zero.cpp69 JavaThread *thread = (JavaThread *) THREAD;
83 JavaThread *thread = (JavaThread *) THREAD;
203 JavaThread *thread = (JavaThread *) THREAD;
348 JavaThread::check_special_condition_for_native_trans(thread);
470 JavaThread *thread = (JavaThread *) THREAD;
598 JavaThread *threa
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dthread_bsd_x86.hpp52 return byte_offset_of(JavaThread, _anchor) + JavaFrameAnchor::last_Java_fp_offset();
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A DvmStructs_linux_sparc.hpp38 nonstatic_field(JavaThread, _base_of_stack_pointer, intptr_t*) \
61 /* JavaThread constants */ \
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dthread_linux_x86.hpp52 return byte_offset_of(JavaThread, _anchor) + JavaFrameAnchor::last_Java_fp_offset();
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dthread_solaris_x86.hpp49 return byte_offset_of(JavaThread, _anchor) + JavaFrameAnchor::last_Java_fp_offset();
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dthread_windows_x86.hpp52 return byte_offset_of(JavaThread, _anchor) + JavaFrameAnchor::last_Java_fp_offset();
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStack.hpp75 JavaThread::zero_stack_offset(),
96 JavaThread::top_zero_frame_offset(),
121 JavaThread::last_Java_sp_offset(),
128 JavaThread::last_Java_fp_offset(),
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadGroupReferenceImpl.java30 import sun.jvm.hotspot.runtime.JavaThread;
64 // NOTE it is not the JavaThread that we need to create
70 JavaThread jt = OopUtilities.threadOopGetJavaThread(myThreads[ii]);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DJavaThreadsPanel.java290 public JavaThread getJavaThread(int index) {
335 private JavaThread thread;
340 public CachedThread(JavaThread thread) {
344 public JavaThread getThread() {
405 JavaThread t = dataModel.getJavaThread(i);
442 JavaThread t = (JavaThread) ((CachedThread) iter.next()).getThread();
459 for (JavaThread t = threads.first(); t != null; t = t.next()) {
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsTasks.hpp85 JavaThread* _java_thread;
88 ThreadRootsTask(JavaThread* root) : _java_thread(root), _vm_thread(NULL) {}
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.cpp36 JavaThread *current_java_thread = JavaThread::current();
262 // Any JavaThread will enter here with state _thread_blocked
269 JavaThread * jt = (JavaThread *)THREAD;
379 guarantee (((JavaThread *) THREAD)->thread_state() == _thread_blocked, "invariant") ;
380 ((JavaThread *)THREAD)->set_suspend_equivalent();
388 JavaThread * jSelf = (JavaThread *) THREAD ;
H A DjvmtiThreadState.hpp78 JavaThread *_thread;
111 JvmtiThreadState(JavaThread *thread);
163 inline JavaThread *get_thread() { return _thread; }
260 // The JavaThread pointer is already available in all JVM_* functions
278 JavaThread *thread) {
328 // Can return NULL if JavaThread is exiting.
329 inline static JvmtiThreadState *state_for_while_locked(JavaThread *thread) {
345 // Can return NULL if JavaThread is exiting.
346 inline static JvmtiThreadState *state_for(JavaThread *thread) {
H A DjvmtiEnvBase.cpp477 // associated JavaThread is the current thread, then wait_for_suspend
484 JvmtiEnvBase::is_thread_fully_suspended(JavaThread* thr, bool wait_for_suspend, uint32_t *bits) {
486 if (thr != JavaThread::current()) {
550 JavaThread *
564 JvmtiEnvBase::vframeFor(JavaThread* java_thread, jint depth) {
622 JvmtiEnvBase::count_locked_objects(JavaThread *java_thread, Handle hobj) {
653 JvmtiEnvBase::get_current_contended_monitor(JavaThread *calling_thread, JavaThread *java_thread, jobject *monitor_ptr) {
690 JvmtiEnvBase::get_owned_monitors(JavaThread *calling_thread, JavaThread* java_threa
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.hpp55 compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, nmethod* nm);
78 compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DdirtyCardQueue.cpp108 void DirtyCardQueueSet::handle_zero_index_for_thread(JavaThread* t) {
119 for(JavaThread* t = Threads::first(); t; t = t->next()) {
135 // We grab the current JavaThread.
136 JavaThread* thread = JavaThread::current();
279 for (JavaThread* t = Threads::first(); t; t = t->next()) {
293 for (JavaThread* t = Threads::first(); t; t = t->next()) {
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp99 void ThreadService::add_thread(JavaThread* thread, bool daemon) {
118 void ThreadService::remove_thread(JavaThread* thread, bool daemon) {
134 void ThreadService::current_thread_exiting(JavaThread* jt) {
135 assert(jt == JavaThread::current(), "Called by current thread");
145 Handle ThreadService::get_current_contended_monitor(JavaThread* thread) {
275 void ThreadService::reset_contention_count_stat(JavaThread* thread) {
282 void ThreadService::reset_contention_time_stat(JavaThread* thread) {
296 JavaThread *currentThread, *previousThread;
299 for (JavaThread* p = Threads::first(); p != NULL; p = p->next()) {
307 for (JavaThread* j
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp157 JavaThread* thread = JavaThread::current();
168 JavaThread* thread = JavaThread::current();
310 JRT_ENTRY(void, Runtime1::new_instance(JavaThread* thread, klassOopDesc* klass))
324 JRT_ENTRY(void, Runtime1::new_type_array(JavaThread* thread, klassOopDesc* klass, jint length))
342 JRT_ENTRY(void, Runtime1::new_object_array(JavaThread* thread, klassOopDesc* array_klass, jint length))
360 JRT_ENTRY(void, Runtime1::new_multi_array(JavaThread* thread, klassOopDesc* klass, int rank, jint* dims))
370 JRT_ENTRY(void, Runtime1::unimplemented_entry(JavaThread* thread, StubID id))
375 JRT_ENTRY(void, Runtime1::throw_array_store_exception(JavaThread* threa
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DRegisterMap.java44 from another RegisterMap. In these APIs, a JavaThread is the
57 protected JavaThread thread;
81 protected RegisterMap(JavaThread thread, boolean updateMap) {
174 public JavaThread getThread() {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/linux_sparc/
H A DLinuxSPARCJavaThreadPDAccess.java55 Type type = db.lookupType("JavaThread");
78 public Frame getLastFramePD(JavaThread thread, Address addr) {
118 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) {
122 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/solaris_sparc/
H A DSolarisSPARCJavaThreadPDAccess.java55 Type type = db.lookupType("JavaThread");
79 public Frame getLastFramePD(JavaThread thread, Address addr) {
119 public RegisterMap newRegisterMap(JavaThread thread, boolean updateMap) {
123 public Frame getCurrentFrameGuess(JavaThread thread, Address addr) {

Completed in 91 milliseconds

1234567891011>>