duke@435: /* never@1363: * Copyright 2000-2009 Sun Microsystems, Inc. All Rights Reserved. duke@435: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: * duke@435: * This code is free software; you can redistribute it and/or modify it duke@435: * under the terms of the GNU General Public License version 2 only, as duke@435: * published by the Free Software Foundation. duke@435: * duke@435: * This code is distributed in the hope that it will be useful, but WITHOUT duke@435: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: * version 2 for more details (a copy is included in the LICENSE file that duke@435: * accompanied this code). duke@435: * duke@435: * You should have received a copy of the GNU General Public License version duke@435: * 2 along with this work; if not, write to the Free Software Foundation, duke@435: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: * duke@435: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, duke@435: * CA 95054 USA or visit www.sun.com if you need additional information or duke@435: * have any questions. duke@435: * duke@435: */ duke@435: duke@435: // native word offsets from memory address (big endian) duke@435: enum { duke@435: pd_lo_word_offset_in_bytes = BytesPerInt, duke@435: pd_hi_word_offset_in_bytes = 0 duke@435: }; duke@435: duke@435: duke@435: // explicit rounding operations are not required to implement the strictFP mode duke@435: enum { duke@435: pd_strict_fp_requires_explicit_rounding = false duke@435: }; duke@435: duke@435: duke@435: // registers duke@435: enum { duke@435: pd_nof_cpu_regs_frame_map = 32, // number of registers used during code emission never@1363: pd_nof_caller_save_cpu_regs_frame_map = 10, // number of cpu registers killed by calls duke@435: pd_nof_cpu_regs_reg_alloc = 20, // number of registers that are visible to register allocator duke@435: pd_nof_cpu_regs_linearscan = 32,// number of registers visible linear scan duke@435: pd_first_cpu_reg = 0, duke@435: pd_last_cpu_reg = 31, duke@435: pd_last_allocatable_cpu_reg = 19, duke@435: pd_first_callee_saved_reg = 0, duke@435: pd_last_callee_saved_reg = 13, duke@435: duke@435: pd_nof_fpu_regs_frame_map = 32, // number of registers used during code emission duke@435: pd_nof_caller_save_fpu_regs_frame_map = 32, // number of fpu registers killed by calls duke@435: pd_nof_fpu_regs_reg_alloc = 32, // number of registers that are visible to register allocator duke@435: pd_nof_fpu_regs_linearscan = 32, // number of registers visible to linear scan duke@435: pd_first_fpu_reg = pd_nof_cpu_regs_frame_map, duke@435: pd_last_fpu_reg = pd_nof_cpu_regs_frame_map + pd_nof_fpu_regs_frame_map - 1, duke@435: duke@435: pd_nof_xmm_regs_linearscan = 0, duke@435: pd_nof_caller_save_xmm_regs = 0, duke@435: pd_first_xmm_reg = -1, duke@435: pd_last_xmm_reg = -1 duke@435: }; duke@435: duke@435: duke@435: // for debug info: a float value in a register is saved in single precision by runtime stubs duke@435: enum { duke@435: pd_float_saved_as_double = false duke@435: };