src/share/vm/c1/c1_IR.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/c1/c1_IR.hpp

src/share/vm/c1/c1_IR.hpp

Print this page
rev 6132 : 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
Summary: make compiled code bang the stack by the worst case size of the interpreter frame at deoptimization points.
Reviewed-by:

*** 282,291 **** --- 282,293 ---- void add_register_oop(LIR_Opr opr); void record_debug_info(DebugInformationRecorder* recorder, int pc_offset); bool is_method_handle_invoke() const { return _is_method_handle_invoke; } void set_is_method_handle_invoke(bool x) { _is_method_handle_invoke = x; } + + int interpreter_frame_size() const; }; class IR: public CompilationResourceObj { private:
src/share/vm/c1/c1_IR.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File