Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/cpu/aarch64/vm/c1_Defs_aarch64.hpp
32285 views
/*1* Copyright (c) 2013, Red Hat Inc.2* Copyright (c) 2000, 2010, Oracle and/or its affiliates.3* All rights reserved.4* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.5*6* This code is free software; you can redistribute it and/or modify it7* under the terms of the GNU General Public License version 2 only, as8* published by the Free Software Foundation.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*24*/2526#ifndef CPU_AARCH64_VM_C1_DEFS_AARCH64_HPP27#define CPU_AARCH64_VM_C1_DEFS_AARCH64_HPP2829// native word offsets from memory address (little endian)30enum {31pd_lo_word_offset_in_bytes = 0,32pd_hi_word_offset_in_bytes = BytesPerWord33};3435// explicit rounding operations are required to implement the strictFP mode36enum {37pd_strict_fp_requires_explicit_rounding = false38};3940// FIXME: There are no callee-saved4142// registers43enum {44pd_nof_cpu_regs_frame_map = RegisterImpl::number_of_registers, // number of registers used during code emission45pd_nof_fpu_regs_frame_map = FloatRegisterImpl::number_of_registers, // number of registers used during code emission4647pd_nof_caller_save_cpu_regs_frame_map = 19 - 2, // number of registers killed by calls48pd_nof_caller_save_fpu_regs_frame_map = 32, // number of registers killed by calls4950pd_first_callee_saved_reg = 19 - 2,51pd_last_callee_saved_reg = 26 - 2,5253pd_last_allocatable_cpu_reg = 16,5455pd_nof_cpu_regs_reg_alloc56= pd_last_allocatable_cpu_reg + 1, // number of registers that are visible to register allocator57pd_nof_fpu_regs_reg_alloc = 8, // number of registers that are visible to register allocator5859pd_nof_cpu_regs_linearscan = 32, // number of registers visible to linear scan60pd_nof_fpu_regs_linearscan = pd_nof_fpu_regs_frame_map, // number of registers visible to linear scan61pd_nof_xmm_regs_linearscan = 0, // like sparc we don't have any of these62pd_first_cpu_reg = 0,63pd_last_cpu_reg = 16,64pd_first_byte_reg = 0,65pd_last_byte_reg = 16,66pd_first_fpu_reg = pd_nof_cpu_regs_frame_map,67pd_last_fpu_reg = pd_first_fpu_reg + 31,6869pd_first_callee_saved_fpu_reg = 8 + pd_first_fpu_reg,70pd_last_callee_saved_fpu_reg = 15 + pd_first_fpu_reg,71};727374// Encoding of float value in debug info. This is true on x86 where75// floats are extended to doubles when stored in the stack, false for76// AArch64 where floats and doubles are stored in their native form.77enum {78pd_float_saved_as_double = false79};8081#endif // CPU_AARCH64_VM_C1_DEFS_AARCH64_HPP828384