< prev index next >

src/hotspot/share/runtime/stubRoutines.hpp

Print this page

        

*** 237,246 **** --- 237,248 ---- static address _multiplyToLen; static address _squareToLen; static address _mulAdd; static address _montgomeryMultiply; static address _montgomerySquare; + static address _bigIntegerRightShiftWorker; + static address _bigIntegerLeftShiftWorker; static address _vectorizedMismatch; static address _dexp; static address _dlog;
*** 412,421 **** --- 414,425 ---- static address multiplyToLen() { return _multiplyToLen; } static address squareToLen() { return _squareToLen; } 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; } static address dexp() { return _dexp; } static address dlog() { return _dlog; }
< prev index next >