< prev index next >

src/hotspot/cpu/aarch64/c1_Defs_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:


  27 #define CPU_AARCH64_C1_DEFS_AARCH64_HPP
  28 
  29 // native word offsets from memory address (little endian)
  30 enum {
  31   pd_lo_word_offset_in_bytes = 0,
  32   pd_hi_word_offset_in_bytes = BytesPerWord
  33 };
  34 
  35 // explicit rounding operations are required to implement the strictFP mode
  36 enum {
  37   pd_strict_fp_requires_explicit_rounding = false
  38 };
  39 
  40 // FIXME: There are no callee-saved
  41 
  42 // registers
  43 enum {
  44   pd_nof_cpu_regs_frame_map = RegisterImpl::number_of_registers,       // number of registers used during code emission
  45   pd_nof_fpu_regs_frame_map = FloatRegisterImpl::number_of_registers,  // number of registers used during code emission
  46 
  47   pd_nof_caller_save_cpu_regs_frame_map = 19 - 2,  // number of registers killed by calls
  48   pd_nof_caller_save_fpu_regs_frame_map = 32,  // number of registers killed by calls
  49 
  50   pd_first_callee_saved_reg = 19 - 2,
  51   pd_last_callee_saved_reg = 26 - 2,
  52 
  53   pd_last_allocatable_cpu_reg = 16,
  54 
  55   pd_nof_cpu_regs_reg_alloc
  56     = pd_last_allocatable_cpu_reg + 1,  // number of registers that are visible to register allocator
  57   pd_nof_fpu_regs_reg_alloc = 8,  // number of registers that are visible to register allocator
  58 
  59   pd_nof_cpu_regs_linearscan = 32, // number of registers visible to linear scan
  60   pd_nof_fpu_regs_linearscan = pd_nof_fpu_regs_frame_map, // number of registers visible to linear scan
  61   pd_nof_xmm_regs_linearscan = 0, // like sparc we don't have any of these
  62   pd_first_cpu_reg = 0,
  63   pd_last_cpu_reg = 16,
  64   pd_first_byte_reg = 0,
  65   pd_last_byte_reg = 16,
  66   pd_first_fpu_reg = pd_nof_cpu_regs_frame_map,
  67   pd_last_fpu_reg =  pd_first_fpu_reg + 31,
  68 
  69   pd_first_callee_saved_fpu_reg = 8 + pd_first_fpu_reg,
  70   pd_last_callee_saved_fpu_reg = 15 + pd_first_fpu_reg,
  71 };
  72 
  73 
  74 // Encoding of float value in debug info.  This is true on x86 where
  75 // floats are extended to doubles when stored in the stack, false for
  76 // AArch64 where floats and doubles are stored in their native form.
  77 enum {
  78   pd_float_saved_as_double = false
  79 };
  80 
  81 #endif // CPU_AARCH64_C1_DEFS_AARCH64_HPP


  27 #define CPU_AARCH64_C1_DEFS_AARCH64_HPP
  28 
  29 // native word offsets from memory address (little endian)
  30 enum {
  31   pd_lo_word_offset_in_bytes = 0,
  32   pd_hi_word_offset_in_bytes = BytesPerWord
  33 };
  34 
  35 // explicit rounding operations are required to implement the strictFP mode
  36 enum {
  37   pd_strict_fp_requires_explicit_rounding = false
  38 };
  39 
  40 // FIXME: There are no callee-saved
  41 
  42 // registers
  43 enum {
  44   pd_nof_cpu_regs_frame_map = RegisterImpl::number_of_registers,       // number of registers used during code emission
  45   pd_nof_fpu_regs_frame_map = FloatRegisterImpl::number_of_registers,  // number of registers used during code emission
  46 
  47   pd_nof_caller_save_cpu_regs_frame_map = 19 - 2 /* rscratch1 and rscratch2 */ WIN64_ONLY(- 1 /* r18 */),  // number of registers killed by calls
  48   pd_nof_caller_save_fpu_regs_frame_map = 32,  // number of registers killed by calls
  49 
  50   pd_first_callee_saved_reg = 19 - 2 /* rscratch1 and rscratch2 */ WIN64_ONLY(- 1 /* r18 */),
  51   pd_last_callee_saved_reg = 26 - 2 /* rscratch1 and rscratch2 */ WIN64_ONLY(- 1 /* r18 */),
  52 
  53   pd_last_allocatable_cpu_reg = 16 WIN64_ONLY(- 1 /* r18 */),
  54 
  55   pd_nof_cpu_regs_reg_alloc
  56     = pd_last_allocatable_cpu_reg + 1,  // number of registers that are visible to register allocator
  57   pd_nof_fpu_regs_reg_alloc = 8,  // number of registers that are visible to register allocator
  58 
  59   pd_nof_cpu_regs_linearscan = 32, // number of registers visible to linear scan
  60   pd_nof_fpu_regs_linearscan = pd_nof_fpu_regs_frame_map, // number of registers visible to linear scan
  61   pd_nof_xmm_regs_linearscan = 0, // like sparc we don't have any of these
  62   pd_first_cpu_reg = 0,
  63   pd_last_cpu_reg = 16 WIN64_ONLY(- 1 /* r18 */),
  64   pd_first_byte_reg = 0,
  65   pd_last_byte_reg = 16 WIN64_ONLY(- 1 /* r18 */),
  66   pd_first_fpu_reg = pd_nof_cpu_regs_frame_map,
  67   pd_last_fpu_reg =  pd_first_fpu_reg + 31,
  68 
  69   pd_first_callee_saved_fpu_reg = 8 + pd_first_fpu_reg,
  70   pd_last_callee_saved_fpu_reg = 15 + pd_first_fpu_reg,
  71 };
  72 
  73 
  74 // Encoding of float value in debug info.  This is true on x86 where
  75 // floats are extended to doubles when stored in the stack, false for
  76 // AArch64 where floats and doubles are stored in their native form.
  77 enum {
  78   pd_float_saved_as_double = false
  79 };
  80 
  81 #endif // CPU_AARCH64_C1_DEFS_AARCH64_HPP
< prev index next >