Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/cpu/aarch64/vm/c1_LinearScan_aarch64.hpp
32285 views
/*1* Copyright (c) 2013, Red Hat Inc.2* Copyright (c) 2005, 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_LINEARSCAN_HPP27#define CPU_AARCH64_VM_C1_LINEARSCAN_HPP2829inline bool LinearScan::is_processed_reg_num(int reg_num) {30return reg_num <= FrameMap::last_cpu_reg() || reg_num >= pd_nof_cpu_regs_frame_map;31}3233inline int LinearScan::num_physical_regs(BasicType type) {34return 1;35}363738inline bool LinearScan::requires_adjacent_regs(BasicType type) {39return false;40}4142inline bool LinearScan::is_caller_save(int assigned_reg) {43assert(assigned_reg >= 0 && assigned_reg < nof_regs, "should call this only for registers");44if (assigned_reg < pd_first_callee_saved_reg)45return true;46if (assigned_reg > pd_last_callee_saved_reg && assigned_reg < pd_first_callee_saved_fpu_reg)47return true;48if (assigned_reg > pd_last_callee_saved_fpu_reg && assigned_reg < pd_last_fpu_reg)49return true;50return false;51}525354inline void LinearScan::pd_add_temps(LIR_Op* op) {55// FIXME ??56}575859// Implementation of LinearScanWalker6061inline bool LinearScanWalker::pd_init_regs_for_alloc(Interval* cur) {62if (allocator()->gen()->is_vreg_flag_set(cur->reg_num(), LIRGenerator::callee_saved)) {63assert(cur->type() != T_FLOAT && cur->type() != T_DOUBLE, "cpu regs only");64_first_reg = pd_first_callee_saved_reg;65_last_reg = pd_last_callee_saved_reg;66return true;67} else if (cur->type() == T_INT || cur->type() == T_LONG || cur->type() == T_OBJECT || cur->type() == T_ADDRESS || cur->type() == T_METADATA) {68_first_reg = pd_first_cpu_reg;69_last_reg = pd_last_allocatable_cpu_reg;70return true;71}72return false;73}747576#endif // CPU_AARCH64_VM_C1_LINEARSCAN_HPP777879