< prev index next >

src/hotspot/cpu/aarch64/stubRoutines_aarch64.hpp

Print this page
8248238: Adding Windows support to OpenJDK on AArch64

Summary: Adding Windows support for AArch64

Contributed-by: Ludovic Henry <luhenry@microsoft.com>, Monica Beckwith <monica.beckwith@microsoft.com>
Reviewed-by:


 175   }
 176 
 177   static address method_entry_barrier() {
 178     return _method_entry_barrier;
 179   }
 180 
 181   static bool complete() {
 182     return _completed;
 183   }
 184 
 185   static void set_completed() {
 186     _completed = true;
 187   }
 188 
 189 private:
 190   static juint    _crc_table[];
 191   static jubyte   _adler_table[];
 192   // begin trigonometric tables block. See comments in .cpp file
 193   static juint    _npio2_hw[];
 194   static jdouble   _two_over_pi[];
 195   static jdouble   _pio2[];
 196   static jdouble   _dsin_coef[];
 197   static jdouble  _dcos_coef[];
 198   // end trigonometric tables block
 199 };
 200 
 201 #endif // CPU_AARCH64_STUBROUTINES_AARCH64_HPP


 175   }
 176 
 177   static address method_entry_barrier() {
 178     return _method_entry_barrier;
 179   }
 180 
 181   static bool complete() {
 182     return _completed;
 183   }
 184 
 185   static void set_completed() {
 186     _completed = true;
 187   }
 188 
 189 private:
 190   static juint    _crc_table[];
 191   static jubyte   _adler_table[];
 192   // begin trigonometric tables block. See comments in .cpp file
 193   static juint    _npio2_hw[];
 194   static jdouble   _two_over_pi[];
 195   static julong    _pio2[];
 196   static julong    _dsin_coef[];
 197   static julong    _dcos_coef[];
 198   // end trigonometric tables block
 199 };
 200 
 201 #endif // CPU_AARCH64_STUBROUTINES_AARCH64_HPP
< prev index next >