--- old/src/share/vm/runtime/stubRoutines.hpp 2015-11-25 16:10:45.661029600 -0800 +++ new/src/share/vm/runtime/stubRoutines.hpp 2015-11-25 16:10:45.211984700 -0800 @@ -209,6 +209,10 @@ static address _dexp; static address _dlog; + static address _dsin; + static address _dcos; + static address _dlibm_sin_cos_huge; + static address _dlibm_reduce_pi04l; // These are versions of the java.lang.Math methods which perform // the same operations as the intrinsic version. They are used for @@ -378,6 +382,10 @@ static address dexp() { return _dexp; } static address dlog() { return _dlog; } + static address dsin() { return _dsin; } + static address dcos() { return _dcos; } + static address dlibm_reduce_pi04l() { return _dlibm_reduce_pi04l; } + static address dlibm_sin_cos_huge() { return _dlibm_sin_cos_huge; } static address select_fill_function(BasicType t, bool aligned, const char* &name);