src/cpu/sparc/vm/frame_sparc.inline.hpp

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

*** 235,244 **** --- 235,248 ---- } inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const { return (ConstantPoolCache**)sp_addr_at( LcpoolCache->sp_offset_in_saved_window()); } + + inline oop* frame::interpreter_frame_temp_oop_addr() const { + return (oop *)(fp() + interpreter_frame_oop_temp_offset); + } #endif // CC_INTERP inline JavaCallWrapper** frame::entry_frame_call_wrapper_addr() const { // note: adjust this code if the link argument in StubGenerator::call_stub() changes!