< prev index next >

src/hotspot/cpu/aarch64/stubRoutines_aarch64.hpp

Print this page

        

*** 64,73 **** --- 64,76 ---- static address _zero_blocks; 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: static address get_previous_fp_entry()
*** 134,143 **** --- 137,158 ---- static address large_array_equals() { 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; } static void set_completed() {
< prev index next >