hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.hpp

Print this page

        

*** 66,88 **** assert(top_zero_frame() == NULL, "junk on stack after Java call"); } public: void set_last_Java_frame() { ! set_last_Java_frame(top_zero_frame()); } void reset_last_Java_frame() { ! set_last_Java_frame(NULL); } ! void set_last_Java_frame(ZeroFrame* frame) { ! frame_anchor()->set_last_Java_sp((intptr_t *) frame); } private: frame pd_last_frame() { assert(has_last_Java_frame(), "must have last_Java_sp() when suspended"); ! return frame(last_Java_sp(), zero_stack()->sp()); } public: // Check for pending suspend requests and pending asynchronous // exceptions. There are separate accessors for these, but --- 66,93 ---- assert(top_zero_frame() == NULL, "junk on stack after Java call"); } public: void set_last_Java_frame() { ! set_last_Java_frame(top_zero_frame(), zero_stack()->sp()); } void reset_last_Java_frame() { ! frame_anchor()->zap(); } ! void set_last_Java_frame(ZeroFrame* fp, intptr_t* sp) { ! frame_anchor()->set(sp, NULL, fp); ! } ! ! public: ! ZeroFrame* last_Java_fp() { ! return frame_anchor()->last_Java_fp(); } private: frame pd_last_frame() { assert(has_last_Java_frame(), "must have last_Java_sp() when suspended"); ! return frame(last_Java_fp(), last_Java_sp()); } public: // Check for pending suspend requests and pending asynchronous // exceptions. There are separate accessors for these, but