< prev index next >

src/hotspot/cpu/aarch64/stubRoutines_aarch64.hpp

Print this page

        

@@ -64,10 +64,13 @@
   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,10 +137,22 @@
 
   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 >