--- old/src/hotspot/cpu/aarch64/stubRoutines_aarch64.hpp 2018-04-20 22:35:27.501468443 +0300 +++ new/src/hotspot/cpu/aarch64/stubRoutines_aarch64.hpp 2018-04-20 22:35:27.265472121 +0300 @@ -66,6 +66,9 @@ static address _has_negatives; static address _has_negatives_long; static address _large_array_equals; + static address _string_indexof_linear_ll; + static address _string_indexof_linear_uu; + static address _string_indexof_linear_ul; static bool _completed; public: @@ -136,6 +139,18 @@ return _large_array_equals; } + static address string_indexof_linear_ul() { + return _string_indexof_linear_ul; + } + + static address string_indexof_linear_ll() { + return _string_indexof_linear_ll; + } + + static address string_indexof_linear_uu() { + return _string_indexof_linear_uu; + } + static bool complete() { return _completed; }