Path: blob/master/src/hotspot/cpu/aarch64/c1_Defs_aarch64.hpp
40930 views
/*1* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.2* Copyright (c) 2014, Red Hat Inc. All rights reserved.3* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.4*5* This code is free software; you can redistribute it and/or modify it6* under the terms of the GNU General Public License version 2 only, as7* published by the Free Software Foundation.8*9* This code is distributed in the hope that it will be useful, but WITHOUT10* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or11* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License12* version 2 for more details (a copy is included in the LICENSE file that13* accompanied this code).14*15* You should have received a copy of the GNU General Public License version16* 2 along with this work; if not, write to the Free Software Foundation,17* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.18*19* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA20* or visit www.oracle.com if you need additional information or have any21* questions.22*23*/2425#ifndef CPU_AARCH64_C1_DEFS_AARCH64_HPP26#define CPU_AARCH64_C1_DEFS_AARCH64_HPP2728// native word offsets from memory address (little endian)29enum {30pd_lo_word_offset_in_bytes = 0,31pd_hi_word_offset_in_bytes = BytesPerWord32};3334// explicit rounding operations are required to implement the strictFP mode35enum {36pd_strict_fp_requires_explicit_rounding = false37};3839// FIXME: There are no callee-saved4041// registers42enum {43pd_nof_cpu_regs_frame_map = RegisterImpl::number_of_registers, // number of registers used during code emission44pd_nof_fpu_regs_frame_map = FloatRegisterImpl::number_of_registers, // number of registers used during code emission4546pd_nof_caller_save_cpu_regs_frame_map = 19 - 2 /* rscratch1 and rscratch2 */ R18_RESERVED_ONLY(- 1), // number of registers killed by calls47pd_nof_caller_save_fpu_regs_frame_map = 32, // number of registers killed by calls4849pd_first_callee_saved_reg = 19 - 2 /* rscratch1 and rscratch2 */ R18_RESERVED_ONLY(- 1),50pd_last_callee_saved_reg = 26 - 2 /* rscratch1 and rscratch2 */ R18_RESERVED_ONLY(- 1),5152pd_last_allocatable_cpu_reg = 16 R18_RESERVED_ONLY(- 1),5354pd_nof_cpu_regs_reg_alloc55= pd_last_allocatable_cpu_reg + 1, // number of registers that are visible to register allocator56pd_nof_fpu_regs_reg_alloc = 8, // number of registers that are visible to register allocator5758pd_nof_cpu_regs_linearscan = 32, // number of registers visible to linear scan59pd_nof_fpu_regs_linearscan = pd_nof_fpu_regs_frame_map, // number of registers visible to linear scan60pd_nof_xmm_regs_linearscan = 0, // don't have vector registers61pd_first_cpu_reg = 0,62pd_last_cpu_reg = 16 R18_RESERVED_ONLY(- 1),63pd_first_byte_reg = 0,64pd_last_byte_reg = 16 R18_RESERVED_ONLY(- 1),65pd_first_fpu_reg = pd_nof_cpu_regs_frame_map,66pd_last_fpu_reg = pd_first_fpu_reg + 31,6768pd_first_callee_saved_fpu_reg = 8 + pd_first_fpu_reg,69pd_last_callee_saved_fpu_reg = 15 + pd_first_fpu_reg,70};717273// Encoding of float value in debug info. This is true on x86 where74// floats are extended to doubles when stored in the stack, false for75// AArch64 where floats and doubles are stored in their native form.76enum {77pd_float_saved_as_double = false78};7980#endif // CPU_AARCH64_C1_DEFS_AARCH64_HPP818283