src/cpu/x86/vm/frame_x86.inline.hpp

Print this page
rev 5992 : 8035396: Introduce accessor for tmp_oop in frame.

*** 245,254 **** --- 245,258 ---- assert(last_sp <= (intptr_t*) interpreter_frame_monitor_end(), "bad tos"); return last_sp; } } + inline oop* frame::interpreter_frame_temp_oop_addr() const { + return (oop *)(fp() + interpreter_frame_oop_temp_offset); + } + #endif /* CC_INTERP */ inline int frame::pd_oop_map_offset_adjustment() const { return 0; }