--- old/src/hotspot/share/runtime/stubRoutines.hpp 2019-12-20 11:51:17.949792527 -0800 +++ new/src/hotspot/share/runtime/stubRoutines.hpp 2019-12-20 11:51:17.809792528 -0800 @@ -239,6 +239,8 @@ static address _mulAdd; static address _montgomeryMultiply; static address _montgomerySquare; + static address _bigIntegerRightShiftWorker; + static address _bigIntegerLeftShiftWorker; static address _vectorizedMismatch; @@ -414,6 +416,8 @@ static address mulAdd() { return _mulAdd; } static address montgomeryMultiply() { return _montgomeryMultiply; } static address montgomerySquare() { return _montgomerySquare; } + static address bigIntegerRightShift() { return _bigIntegerRightShiftWorker; } + static address bigIntegerLeftShift() { return _bigIntegerLeftShiftWorker; } static address vectorizedMismatch() { return _vectorizedMismatch; }