Path: blob/master/src/hotspot/cpu/s390/c1_LinearScan_s390.hpp
40930 views
/*1* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.2* Copyright (c) 2016 SAP SE. 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_S390_C1_LINEARSCAN_S390_HPP26#define CPU_S390_C1_LINEARSCAN_S390_HPP2728inline bool LinearScan::is_processed_reg_num(int reg_num) {29// unallocated: Z_thread, Z_fp, Z_SP, Z_R0_scratch, Z_R1_scratch, Z_R1430assert(FrameMap::Z_R14_opr->cpu_regnr() == 10, "wrong assumption below");31assert(FrameMap::Z_R0_opr->cpu_regnr() == 11, "wrong assumption below");32assert(FrameMap::Z_R1_opr->cpu_regnr() == 12, "wrong assumption below");33assert(FrameMap::Z_R8_opr->cpu_regnr() == 13, "wrong assumption below");34assert(FrameMap::Z_R9_opr->cpu_regnr() == 14, "wrong assumption below");35assert(FrameMap::Z_R15_opr->cpu_regnr() == 15, "wrong assumption below");36assert(reg_num >= 0, "invalid reg_num");37return reg_num <= FrameMap::last_cpu_reg() || reg_num >= pd_nof_cpu_regs_frame_map;38}3940inline int LinearScan::num_physical_regs(BasicType type) {41// IBM Z requires one cpu registers for long,42// and one fpu register for double.43return 1;44}4546inline bool LinearScan::requires_adjacent_regs(BasicType type) {47return false;48}4950inline bool LinearScan::is_caller_save(int assigned_reg) {51assert(assigned_reg >= 0 && assigned_reg < nof_regs, "should call this only for registers");52return true; // No callee-saved registers on IBM Z.53}5455inline void LinearScan::pd_add_temps(LIR_Op* op) {56// No special case behaviours.57}5859inline bool LinearScanWalker::pd_init_regs_for_alloc(Interval* cur) {60return false; // No special case behaviours.61}6263#endif // CPU_S390_C1_LINEARSCAN_S390_HPP646566