Searched defs:compile_handles (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp1978 JNIHandleBlock* compile_handles = JNIHandleBlock::allocate_block(thread); local
1979 assert(compile_handles != NULL && java_handles != NULL, "should not be NULL");
1980 compile_handles->set_pop_frame_link(java_handles); // make sure java handles get gc'd.
1981 thread->set_active_handles(compile_handles);
1993 JNIHandleBlock* compile_handles = thread->active_handles(); local
1994 JNIHandleBlock* java_handles = compile_handles->pop_frame_link();
1996 compile_handles->set_pop_frame_link(NULL);
1997 JNIHandleBlock::release_block(compile_handles, thread); // may block

Completed in 49 milliseconds