Path: blob/master/src/hotspot/cpu/ppc/c1_LIR_ppc.cpp
40930 views
/*1* Copyright (c) 2016, 2020, 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#include "precompiled.hpp"26#include "asm/register.hpp"27#include "c1/c1_LIR.hpp"2829FloatRegister LIR_OprDesc::as_float_reg() const {30return as_FloatRegister(fpu_regnr());31}3233FloatRegister LIR_OprDesc::as_double_reg() const {34return as_FloatRegister(fpu_regnrLo());35}3637// Reg2 unused.38LIR_Opr LIR_OprFact::double_fpu(int reg1, int reg2) {39assert(!as_FloatRegister(reg2)->is_valid(), "Not used on this platform");40return (LIR_Opr)(intptr_t)((reg1 << LIR_OprDesc::reg1_shift) |41(reg1 << LIR_OprDesc::reg2_shift) |42LIR_OprDesc::double_type |43LIR_OprDesc::fpu_register |44LIR_OprDesc::double_size);45}4647#ifndef PRODUCT48void LIR_Address::verify() const {49assert(scale() == times_1, "Scaled addressing mode not available on PPC and should not be used");50assert(disp() == 0 || index()->is_illegal(), "can't have both");51#ifdef _LP6452assert(base()->is_cpu_register(), "wrong base operand");53assert(index()->is_illegal() || index()->is_double_cpu(), "wrong index operand");54assert(base()->type() == T_ADDRESS || base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,55"wrong type for addresses");56#else57assert(base()->is_single_cpu(), "wrong base operand");58assert(index()->is_illegal() || index()->is_single_cpu(), "wrong index operand");59assert(base()->type() == T_ADDRESS || base()->type() == T_OBJECT || base()->type() == T_INT || base()->type() == T_METADATA,60"wrong type for addresses");61#endif62}63#endif // PRODUCT646566