< prev index next >

src/cpu/aarch64/vm/stubRoutines_aarch64.hpp

Print this page

        

@@ -60,10 +60,13 @@
   static address _float_sign_flip;
   static address _double_sign_mask;
   static address _double_sign_flip;
 
   static address _zero_blocks;
+
+  static address _has_negatives;
+  static address _has_negatives_long;
   static bool _completed;
 
  public:
 
   static address get_previous_fp_entry()

@@ -118,10 +121,18 @@
 
   static address zero_blocks() {
     return _zero_blocks;
   }
 
+  static address has_negatives() {
+    return _has_negatives;
+  }
+
+  static address has_negatives_long() {
+      return _has_negatives_long;
+  }
+
   static bool complete() {
     return _completed;
   }
 
   static void set_completed() {
< prev index next >