--- old/src/share/vm/c1/c1_LIRAssembler.hpp 2016-11-03 14:16:16.000000000 -0700 +++ new/src/share/vm/c1/c1_LIRAssembler.hpp 2016-11-03 14:16:16.000000000 -0700 @@ -260,6 +260,21 @@ #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