Searched refs:JavaThread (Results 126 - 150 of 324) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DPointerLocation.java55 JavaThread tlabThread;
118 public JavaThread getTLABThread() {
266 tty.print(" for JavaThread ");
267 ((JavaThread) handleThread).printThreadIDOn(tty);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaFactoryImpl.java75 public JSJavaThread newJSJavaThread(JavaThread jthread) {
101 } else if (item instanceof JavaThread) {
102 return newJSJavaThread((JavaThread) item);
/openjdk7/hotspot/src/cpu/zero/vm/
H A DstubGenerator_zero.cpp69 JavaThread *thread = (JavaThread *) THREAD;
254 ZeroStack *stack = ((JavaThread *) THREAD)->zero_stack();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.hpp103 static bool current_thread_holds_lock(JavaThread* thread, Handle h_obj);
104 static LockOwnership query_lock_ownership(JavaThread * self, Handle h_obj);
106 static JavaThread* get_lock_owner(Handle h_obj, bool doLock);
H A DsharedRuntime.cpp217 JRT_LEAF(void, SharedRuntime::g1_wb_pre(oopDesc* orig, JavaThread *thread))
228 JRT_LEAF(void, SharedRuntime::g1_wb_post(void* card_addr, JavaThread* thread))
477 address SharedRuntime::raw_exception_handler_for_return_address(JavaThread* thread, address return_address) {
524 JRT_LEAF(address, SharedRuntime::exception_handler_for_return_address(JavaThread* thread, address return_address))
584 void SharedRuntime::throw_and_post_jvmti_exception(JavaThread *thread, Handle h_exception) {
594 void SharedRuntime::throw_and_post_jvmti_exception(JavaThread *thread, Symbol* name, const char *message) {
605 JavaThread* thread, methodOopDesc* method))
713 JRT_ENTRY(void, SharedRuntime::throw_AbstractMethodError(JavaThread* thread))
718 JRT_ENTRY(void, SharedRuntime::throw_IncompatibleClassChangeError(JavaThread* thread))
723 JRT_ENTRY(void, SharedRuntime::throw_ArithmeticException(JavaThread* threa
[all...]
H A DvframeArray.cpp49 void vframeArrayElement::free_monitors(JavaThread* jt) {
165 JavaThread* thread = (JavaThread*) Thread::current();
445 vframeArray* vframeArray::allocate(JavaThread* thread, int frame_size, GrowableArray<compiledVFrame*>* chunk,
462 void vframeArray::fill_in(JavaThread* thread,
518 JavaThread* THREAD = JavaThread::current();
565 JavaThread* jt = JavaThread::current();
573 bool vframeArray::structural_compare(JavaThread* threa
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DgenerateOptoStub.cpp89 in_bytes(JavaThread::frame_anchor_offset()) +
94 in_bytes(JavaThread::frame_anchor_offset()) +
104 Node *adr_sp = basic_plus_adr(top(), thread, in_bytes(JavaThread::last_Java_sp_offset()));
114 Node* adr_state = basic_plus_adr(top(), thread, in_bytes(JavaThread::thread_state_offset()));
227 Node* adr_last_Java_fp = basic_plus_adr(top(), thread, in_bytes(JavaThread::last_Java_fp_offset()));
236 Node* adr = basic_plus_adr(top(), thread, in_bytes(JavaThread::vm_result_offset()));
H A Druntime.cpp130 static bool check_compiled_frame(JavaThread* thread) {
213 void OptoRuntime::new_store_pre_barrier(JavaThread* thread) {
231 JRT_BLOCK_ENTRY(void, OptoRuntime::new_instance_C(klassOopDesc* klass, JavaThread* thread))
276 JRT_BLOCK_ENTRY(void, OptoRuntime::new_array_C(klassOopDesc* array_type, int len, JavaThread *thread))
314 JRT_BLOCK_ENTRY(void, OptoRuntime::new_array_nozero_C(klassOopDesc* array_type, int len, JavaThread *thread))
364 JRT_ENTRY(void, OptoRuntime::multianewarray2_C(klassOopDesc* elem_type, int len1, int len2, JavaThread *thread))
379 JRT_ENTRY(void, OptoRuntime::multianewarray3_C(klassOopDesc* elem_type, int len1, int len2, int len3, JavaThread *thread))
395 JRT_ENTRY(void, OptoRuntime::multianewarray4_C(klassOopDesc* elem_type, int len1, int len2, int len3, int len4, JavaThread *thread))
412 JRT_ENTRY(void, OptoRuntime::multianewarray5_C(klassOopDesc* elem_type, int len1, int len2, int len3, int len4, int len5, JavaThread *thread))
429 JRT_ENTRY(void, OptoRuntime::multianewarrayN_C(klassOopDesc* elem_type, arrayOopDesc* dims, JavaThread *threa
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A DattachListener_bsd.cpp409 JavaThread* thread = JavaThread::current();
440 JavaThread* thread = JavaThread::current();
456 JavaThread* thread = JavaThread::current();
/openjdk7/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp392 JavaThread* thread = JavaThread::current();
423 JavaThread* thread = JavaThread::current();
439 JavaThread* thread = JavaThread::current();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/amd64/
H A DAMD64CurrentFrameGuess.java35 (Linux/amd64) to implement JavaThread's
51 private JavaThread thread;
60 JavaThread thread) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86CurrentFrameGuess.java34 (Win32, Solaris/x86, and soon Linux) to implement JavaThread's
50 private JavaThread thread;
59 JavaThread thread) {
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpcTasks.hpp70 JavaThread* _java_thread;
73 ThreadRootsMarkingTask(JavaThread* root) : _java_thread(root), _vm_thread(NULL) {}
/openjdk7/hotspot/src/share/vm/memory/
H A DpermGen.cpp82 JavaThread* jthr = JavaThread::current();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DJavaStackTracePanel.java77 public void setJavaThread(final JavaThread thread) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DdirtyCardQueue.hpp103 static void handle_zero_index_for_thread(JavaThread* t);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.hpp147 class SurrogateLockerThread: public JavaThread {
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceRefKlass.hpp92 static bool owns_pending_list_lock(JavaThread* thread);
H A DmarkOop.hpp40 // JavaThread*:23 epoch:2 age:4 biased_lock:1 lock:2 (biased object)
47 // JavaThread*:54 epoch:2 unused:1 age:4 biased_lock:1 lock:2 (biased object)
52 // JavaThread*:54 epoch:2 cms_free:1 age:4 biased_lock:1 lock:2 (COOPs && biased object)
82 // performed. The runtime system aligns all JavaThread* pointers to
87 // [JavaThread* | epoch | age | 1 | 01] lock is biased toward given thread
102 class JavaThread;
147 // Alignment of JavaThread pointers encoded in object header required by biased locking
184 JavaThread* biased_locker() const {
186 return (JavaThread*) ((intptr_t) (mask_bits(value(), ~(biased_lock_mask_in_place | age_mask_in_place | epoch_mask_in_place))));
321 static markOop encode(JavaThread* threa
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp304 JavaThread* thread = JavaThread::current();
346 JavaThread* thread = JavaThread::current();
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCompiler.hpp82 if (JavaThread::current()->is_Compiler_thread()) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.hpp93 static void print_stack_trace(outputStream* st, JavaThread* jt,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DObjectReferenceImpl.java39 import sun.jvm.hotspot.runtime.JavaThread;
242 // in JavaThread. i.e., we count total number of times the same
244 private int countLockedObjects(JavaThread jt, Oop obj) {
263 // returns List<JavaThread>
268 // returns List<JavaThread>
273 private JavaThread owningThreadFromMonitor(Address addr) {
295 // owner, a JavaThread * or it may still be the address of the
296 // Lock word in a JavaThread's stack. A monitor can be inflated
297 // by a non-owning JavaThread, but only the owning JavaThread
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemTracker.hpp128 JavaThread* _java_thread;
355 static void thread_exiting(JavaThread* thread);
382 static MemRecorder* get_thread_recorder(JavaThread* thread);
396 size_t size, jint seq, address pc, JavaThread* thread);
426 size_t size, address pc, JavaThread* thread);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp64 // JavaThread used to wrap a thread started by an agent
69 : JavaThread(start_function_wrapper) {
76 JvmtiAgentThread::start_function_wrapper(JavaThread *thread, TRAPS) {
79 // of the thread is given in JavaThread::thread_main().
81 assert(thread == JavaThread::current(), "sanity check");
534 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type)
547 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type, jvalue value)
561 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, JavaThread* calling_thread, jint depth, int index)
702 JavaThread* cur_threa
[all...]

Completed in 74 milliseconds

1234567891011>>