Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/c1/c1_LIRAssembler.hpp
32285 views
/*1* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_C1_C1_LIRASSEMBLER_HPP25#define SHARE_VM_C1_C1_LIRASSEMBLER_HPP2627#include "c1/c1_CodeStubs.hpp"28#include "ci/ciMethodData.hpp"29#include "oops/methodData.hpp"30#include "utilities/top.hpp"3132class Compilation;33class ScopeValue;34class BarrierSet;3536class LIR_Assembler: public CompilationResourceObj {37private:38C1_MacroAssembler* _masm;39CodeStubList* _slow_case_stubs;40BarrierSet* _bs;4142Compilation* _compilation;43FrameMap* _frame_map;44BlockBegin* _current_block;4546Instruction* _pending_non_safepoint;47int _pending_non_safepoint_offset;4849Label _unwind_handler_entry;5051#ifdef ASSERT52BlockList _branch_target_blocks;53void check_no_unbound_labels();54#endif5556FrameMap* frame_map() const { return _frame_map; }5758void set_current_block(BlockBegin* b) { _current_block = b; }59BlockBegin* current_block() const { return _current_block; }6061// non-safepoint debug info management62void flush_debug_info(int before_pc_offset) {63if (_pending_non_safepoint != NULL) {64if (_pending_non_safepoint_offset < before_pc_offset)65record_non_safepoint_debug_info();66_pending_non_safepoint = NULL;67}68}69void process_debug_info(LIR_Op* op);70void record_non_safepoint_debug_info();7172// unified bailout support73void bailout(const char* msg) const { compilation()->bailout(msg); }74bool bailed_out() const { return compilation()->bailed_out(); }7576// code emission patterns and accessors77void check_codespace();78bool needs_icache(ciMethod* method) const;7980// returns offset of icache check81int check_icache();8283void jobject2reg(jobject o, Register reg);84void jobject2reg_with_patching(Register reg, CodeEmitInfo* info);8586void metadata2reg(Metadata* o, Register reg);87void klass2reg_with_patching(Register reg, CodeEmitInfo* info);8889void emit_stubs(CodeStubList* stub_list);9091// addresses92Address as_Address(LIR_Address* addr);93Address as_Address_lo(LIR_Address* addr);94Address as_Address_hi(LIR_Address* addr);9596// debug information97void add_call_info(int pc_offset, CodeEmitInfo* cinfo);98void add_debug_info_for_branch(CodeEmitInfo* info);99void add_debug_info_for_div0(int pc_offset, CodeEmitInfo* cinfo);100void add_debug_info_for_div0_here(CodeEmitInfo* info);101void add_debug_info_for_null_check(int pc_offset, CodeEmitInfo* cinfo);102void add_debug_info_for_null_check_here(CodeEmitInfo* info);103104void set_24bit_FPU();105void reset_FPU();106void fpop();107void fxch(int i);108void fld(int i);109void ffree(int i);110111void breakpoint();112void push(LIR_Opr opr);113void pop(LIR_Opr opr);114115// patching116void append_patching_stub(PatchingStub* stub);117void patching_epilog(PatchingStub* patch, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info);118119void comp_op(LIR_Condition condition, LIR_Opr src, LIR_Opr result, LIR_Op2* op);120121PatchingStub::PatchID patching_id(CodeEmitInfo* info);122123public:124LIR_Assembler(Compilation* c);125~LIR_Assembler();126C1_MacroAssembler* masm() const { return _masm; }127Compilation* compilation() const { return _compilation; }128ciMethod* method() const { return compilation()->method(); }129130CodeOffsets* offsets() const { return _compilation->offsets(); }131int code_offset() const;132address pc() const;133134int initial_frame_size_in_bytes() const;135int bang_size_in_bytes() const;136137// test for constants which can be encoded directly in instructions138static bool is_small_constant(LIR_Opr opr);139140static LIR_Opr receiverOpr();141static LIR_Opr osrBufferPointer();142143// stubs144void emit_slow_case_stubs();145void emit_static_call_stub();146void append_code_stub(CodeStub* op);147void add_call_info_here(CodeEmitInfo* info) { add_call_info(code_offset(), info); }148149// code patterns150int emit_exception_handler();151int emit_unwind_handler();152void emit_exception_entries(ExceptionInfoList* info_list);153int emit_deopt_handler();154155void emit_code(BlockList* hir);156void emit_block(BlockBegin* block);157void emit_lir_list(LIR_List* list);158159// any last minute peephole optimizations are performed here. In160// particular sparc uses this for delay slot filling.161void peephole(LIR_List* list);162163void emit_string_compare(LIR_Opr left, LIR_Opr right, LIR_Opr dst, CodeEmitInfo* info);164165void return_op(LIR_Opr result);166167// returns offset of poll instruction168int safepoint_poll(LIR_Opr result, CodeEmitInfo* info);169170void const2reg (LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info);171void const2stack(LIR_Opr src, LIR_Opr dest);172void const2mem (LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide);173void reg2stack (LIR_Opr src, LIR_Opr dest, BasicType type, bool pop_fpu_stack);174void reg2reg (LIR_Opr src, LIR_Opr dest);175void reg2mem (LIR_Opr src, LIR_Opr dest, BasicType type,176LIR_PatchCode patch_code, CodeEmitInfo* info,177bool pop_fpu_stack, bool wide, bool unaligned);178void stack2reg (LIR_Opr src, LIR_Opr dest, BasicType type);179void stack2stack(LIR_Opr src, LIR_Opr dest, BasicType type);180void mem2reg (LIR_Opr src, LIR_Opr dest, BasicType type,181LIR_PatchCode patch_code,182CodeEmitInfo* info, bool wide, bool unaligned);183184void prefetchr (LIR_Opr src);185void prefetchw (LIR_Opr src);186187void shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp);188void shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest);189190void move_regs(Register from_reg, Register to_reg);191void swap_reg(Register a, Register b);192193void emit_op0(LIR_Op0* op);194void emit_op1(LIR_Op1* op);195void emit_op2(LIR_Op2* op);196void emit_op3(LIR_Op3* op);197void emit_opBranch(LIR_OpBranch* op);198void emit_opLabel(LIR_OpLabel* op);199void emit_arraycopy(LIR_OpArrayCopy* op);200void emit_updatecrc32(LIR_OpUpdateCRC32* op);201void emit_opConvert(LIR_OpConvert* op);202void emit_alloc_obj(LIR_OpAllocObj* op);203void emit_alloc_array(LIR_OpAllocArray* op);204void emit_opTypeCheck(LIR_OpTypeCheck* op);205void emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null);206void emit_compare_and_swap(LIR_OpCompareAndSwap* op);207void emit_lock(LIR_OpLock* op);208void emit_call(LIR_OpJavaCall* op);209void emit_rtcall(LIR_OpRTCall* op);210void emit_profile_call(LIR_OpProfileCall* op);211void emit_profile_type(LIR_OpProfileType* op);212void emit_delay(LIR_OpDelay* op);213214void arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest, CodeEmitInfo* info, bool pop_fpu_stack);215void arithmetic_idiv(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr temp, LIR_Opr result, CodeEmitInfo* info);216void intrinsic_op(LIR_Code code, LIR_Opr value, LIR_Opr unused, LIR_Opr dest, LIR_Op* op);217#ifdef ASSERT218void emit_assert(LIR_OpAssert* op);219#endif220221void logic_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest);222223void roundfp_op(LIR_Opr src, LIR_Opr tmp, LIR_Opr dest, bool pop_fpu_stack);224void move_op(LIR_Opr src, LIR_Opr result, BasicType type,225LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide);226void volatile_move_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info);227void comp_mem_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info); // info set for null exceptions228void comp_fl2i(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr result, LIR_Op2* op);229void cmove(LIR_Condition code, LIR_Opr left, LIR_Opr right, LIR_Opr result, BasicType type);230231void call( LIR_OpJavaCall* op, relocInfo::relocType rtype);232void ic_call( LIR_OpJavaCall* op);233void vtable_call( LIR_OpJavaCall* op);234235void osr_entry();236237void build_frame();238239void throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info);240void unwind_op(LIR_Opr exceptionOop);241void monitor_address(int monitor_ix, LIR_Opr dst);242243void align_backward_branch_target();244void align_call(LIR_Code code);245246void negate(LIR_Opr left, LIR_Opr dest);247void leal(LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info);248249void rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info);250251void membar();252void membar_acquire();253void membar_release();254void membar_loadload();255void membar_storestore();256void membar_loadstore();257void membar_storeload();258void get_thread(LIR_Opr result);259260void verify_oop_map(CodeEmitInfo* info);261262void atomic_op(LIR_Code code, LIR_Opr src, LIR_Opr data, LIR_Opr dest, LIR_Opr tmp);263264#ifdef TARGET_ARCH_x86265# include "c1_LIRAssembler_x86.hpp"266#endif267#ifdef TARGET_ARCH_aarch32268# include "c1_LIRAssembler_aarch32.hpp"269#endif270#ifdef TARGET_ARCH_aarch64271# include "c1_LIRAssembler_aarch64.hpp"272#endif273#ifdef TARGET_ARCH_sparc274# include "c1_LIRAssembler_sparc.hpp"275#endif276#ifdef TARGET_ARCH_arm277# include "c1_LIRAssembler_arm.hpp"278#endif279#ifdef TARGET_ARCH_ppc280# include "c1_LIRAssembler_ppc.hpp"281#endif282283};284285#endif // SHARE_VM_C1_C1_LIRASSEMBLER_HPP286287288