src/share/vm/runtime/thread.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8004128_2 Cdiff src/share/vm/runtime/thread.cpp

src/share/vm/runtime/thread.cpp

Print this page

        

*** 2645,2668 **** } } } - // GC support - static void frame_gc_epilogue(frame* f, const RegisterMap* map) { f->gc_epilogue(); } - - void JavaThread::gc_epilogue() { - frames_do(frame_gc_epilogue); - } - - - static void frame_gc_prologue(frame* f, const RegisterMap* map) { f->gc_prologue(); } - - void JavaThread::gc_prologue() { - frames_do(frame_gc_prologue); - } - // If the caller is a NamedThread, then remember, in the current scope, // the given JavaThread in its _processed_thread field. class RememberProcessedThread: public StackObj { NamedThread* _cur_thr; public: --- 2645,2654 ----
*** 4147,4168 **** ALL_JAVA_THREADS(p) { p->metadata_do(f); } } - void Threads::gc_epilogue() { - ALL_JAVA_THREADS(p) { - p->gc_epilogue(); - } - } - - void Threads::gc_prologue() { - ALL_JAVA_THREADS(p) { - p->gc_prologue(); - } - } - void Threads::deoptimized_wrt_marked_nmethods() { ALL_JAVA_THREADS(p) { p->deoptimized_wrt_marked_nmethods(); } } --- 4133,4142 ----
src/share/vm/runtime/thread.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File