Path: blob/master/src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.hpp
40930 views
/*1* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.2* Copyright (c) 2012, 2015 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_PPC_C1_LIRASSEMBLER_PPC_HPP26#define CPU_PPC_C1_LIRASSEMBLER_PPC_HPP2728private:2930//////////////////////////////////////////////////////////////////////////////31// PPC64 load/store emission32//33// The PPC ld/st instructions cannot accomodate displacements > 16 bits long.34// The following "pseudo" instructions (load/store) make it easier to35// use the indexed addressing mode by allowing 32 bit displacements:36//3738void explicit_null_check(Register addr, CodeEmitInfo* info);3940int store(LIR_Opr from_reg, Register base, int offset, BasicType type, bool wide, bool unaligned);41int store(LIR_Opr from_reg, Register base, Register disp, BasicType type, bool wide);4243int load(Register base, int offset, LIR_Opr to_reg, BasicType type, bool wide, bool unaligned);44int load(Register base, Register disp, LIR_Opr to_reg, BasicType type, bool wide);4546int shift_amount(BasicType t);4748// Record the type of the receiver in ReceiverTypeData.49void type_profile_helper(Register mdo, int mdo_offset_bias,50ciMethodData *md, ciProfileData *data,51Register recv, Register tmp1, Label* update_done);52// Setup pointers to MDO, MDO slot, also compute offset bias to access the slot.53void setup_md_access(ciMethod* method, int bci,54ciMethodData*& md, ciProfileData*& data, int& mdo_offset_bias);55public:56static const ConditionRegister BOOL_RESULT;5758// Emit trampoline stub for call. Call bailout() if failed. Return true on success.59bool emit_trampoline_stub_for_call(address target, Register Rtoc = noreg);6061enum {62_static_call_stub_size = 4 * BytesPerInstWord + MacroAssembler::b64_patchable_size, // or smaller63_call_stub_size = _static_call_stub_size + MacroAssembler::trampoline_stub_size, // or smaller64_exception_handler_size = MacroAssembler::b64_patchable_size, // or smaller65_deopt_handler_size = MacroAssembler::bl64_patchable_size66};6768// '_static_call_stub_size' is only used on ppc (see LIR_Assembler::emit_static_call_stub()69// in c1_LIRAssembler_ppc.cpp. The other, shared getters are defined in c1_LIRAssembler.hpp70static int static_call_stub_size() {71return _static_call_stub_size;72}7374#endif // CPU_PPC_C1_LIRASSEMBLER_PPC_HPP757677