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

src/share/vm/c1/c1_LIRAssembler.hpp

Print this page

        

*** 258,265 **** --- 258,280 ---- void atomic_op(LIR_Code code, LIR_Opr src, LIR_Opr data, LIR_Opr dest, LIR_Opr tmp); #include CPU_HEADER(c1_LIRAssembler) + static int call_stub_size() { + if (UseAOT) { + return _call_stub_size + _call_aot_stub_size; + } else { + return _call_stub_size; + } + } + + static int exception_handler_size() { + return _exception_handler_size; + } + + static int deopt_handler_size() { + return _deopt_handler_size; + } }; #endif // SHARE_VM_C1_C1_LIRASSEMBLER_HPP
src/share/vm/c1/c1_LIRAssembler.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File