Path: blob/master/src/hotspot/share/c1/c1_LIRAssembler.hpp
40930 views
/*1* Copyright (c) 2000, 2021, 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_C1_C1_LIRASSEMBLER_HPP25#define SHARE_C1_C1_LIRASSEMBLER_HPP2627#include "c1/c1_CodeStubs.hpp"28#include "ci/ciMethodData.hpp"29#include "oops/methodData.hpp"30#include "utilities/macros.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();8283bool needs_clinit_barrier_on_entry(ciMethod* method) const;84void clinit_barrier(ciMethod* method);8586void jobject2reg(jobject o, Register reg);87void jobject2reg_with_patching(Register reg, CodeEmitInfo* info);8889void metadata2reg(Metadata* o, Register reg);90void klass2reg_with_patching(Register reg, CodeEmitInfo* info);9192void emit_stubs(CodeStubList* stub_list);9394// addresses95Address as_Address(LIR_Address* addr);96Address as_Address_lo(LIR_Address* addr);97Address as_Address_hi(LIR_Address* addr);9899// debug information100void add_call_info(int pc_offset, CodeEmitInfo* cinfo);101void add_debug_info_for_branch(CodeEmitInfo* info);102void add_debug_info_for_div0(int pc_offset, CodeEmitInfo* cinfo);103void add_debug_info_for_div0_here(CodeEmitInfo* info);104ImplicitNullCheckStub* add_debug_info_for_null_check(int pc_offset, CodeEmitInfo* cinfo);105ImplicitNullCheckStub* add_debug_info_for_null_check_here(CodeEmitInfo* info);106107void breakpoint();108void push(LIR_Opr opr);109void pop(LIR_Opr opr);110111// patching112void append_patching_stub(PatchingStub* stub);113void patching_epilog(PatchingStub* patch, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info);114115void comp_op(LIR_Condition condition, LIR_Opr src, LIR_Opr result, LIR_Op2* op);116117PatchingStub::PatchID patching_id(CodeEmitInfo* info);118119public:120LIR_Assembler(Compilation* c);121~LIR_Assembler();122C1_MacroAssembler* masm() const { return _masm; }123Compilation* compilation() const { return _compilation; }124ciMethod* method() const { return compilation()->method(); }125126CodeOffsets* offsets() const { return _compilation->offsets(); }127int code_offset() const;128address pc() const;129130int initial_frame_size_in_bytes() const;131int bang_size_in_bytes() const;132133// test for constants which can be encoded directly in instructions134static bool is_small_constant(LIR_Opr opr);135136static LIR_Opr receiverOpr();137static LIR_Opr osrBufferPointer();138139// stubs140void emit_slow_case_stubs();141void emit_static_call_stub();142void append_code_stub(CodeStub* op);143void add_call_info_here(CodeEmitInfo* info) { add_call_info(code_offset(), info); }144145// code patterns146int emit_exception_handler();147int emit_unwind_handler();148void emit_exception_entries(ExceptionInfoList* info_list);149int emit_deopt_handler();150151void emit_code(BlockList* hir);152void emit_block(BlockBegin* block);153void emit_lir_list(LIR_List* list);154155// any last minute peephole optimizations are performed here. In156// particular sparc uses this for delay slot filling.157void peephole(LIR_List* list);158159void return_op(LIR_Opr result, C1SafepointPollStub* code_stub);160161// returns offset of poll instruction162int safepoint_poll(LIR_Opr result, CodeEmitInfo* info);163164void const2reg (LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info);165void const2stack(LIR_Opr src, LIR_Opr dest);166void const2mem (LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide);167void reg2stack (LIR_Opr src, LIR_Opr dest, BasicType type, bool pop_fpu_stack);168void reg2reg (LIR_Opr src, LIR_Opr dest);169void reg2mem (LIR_Opr src, LIR_Opr dest, BasicType type,170LIR_PatchCode patch_code, CodeEmitInfo* info,171bool pop_fpu_stack, bool wide, bool unaligned);172void stack2reg (LIR_Opr src, LIR_Opr dest, BasicType type);173void stack2stack(LIR_Opr src, LIR_Opr dest, BasicType type);174void mem2reg (LIR_Opr src, LIR_Opr dest, BasicType type,175LIR_PatchCode patch_code,176CodeEmitInfo* info, bool wide, bool unaligned);177178void shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp);179void shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest);180181void move_regs(Register from_reg, Register to_reg);182void swap_reg(Register a, Register b);183184void emit_op0(LIR_Op0* op);185void emit_op1(LIR_Op1* op);186void emit_op2(LIR_Op2* op);187void emit_op3(LIR_Op3* op);188void emit_opBranch(LIR_OpBranch* op);189void emit_opLabel(LIR_OpLabel* op);190void emit_arraycopy(LIR_OpArrayCopy* op);191void emit_updatecrc32(LIR_OpUpdateCRC32* op);192void emit_opConvert(LIR_OpConvert* op);193void emit_alloc_obj(LIR_OpAllocObj* op);194void emit_alloc_array(LIR_OpAllocArray* op);195void emit_opTypeCheck(LIR_OpTypeCheck* op);196void emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null);197void emit_compare_and_swap(LIR_OpCompareAndSwap* op);198void emit_lock(LIR_OpLock* op);199void emit_call(LIR_OpJavaCall* op);200void emit_rtcall(LIR_OpRTCall* op);201void emit_profile_call(LIR_OpProfileCall* op);202void emit_profile_type(LIR_OpProfileType* op);203void emit_delay(LIR_OpDelay* op);204205void arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest, CodeEmitInfo* info, bool pop_fpu_stack);206void arithmetic_idiv(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr temp, LIR_Opr result, CodeEmitInfo* info);207void intrinsic_op(LIR_Code code, LIR_Opr value, LIR_Opr unused, LIR_Opr dest, LIR_Op* op);208#ifdef ASSERT209void emit_assert(LIR_OpAssert* op);210#endif211212void logic_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest);213214void roundfp_op(LIR_Opr src, LIR_Opr tmp, LIR_Opr dest, bool pop_fpu_stack);215void move_op(LIR_Opr src, LIR_Opr result, BasicType type,216LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide);217void volatile_move_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info);218void comp_mem_op(LIR_Opr src, LIR_Opr result, BasicType type, CodeEmitInfo* info); // info set for null exceptions219void comp_fl2i(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr result, LIR_Op2* op);220void cmove(LIR_Condition code, LIR_Opr left, LIR_Opr right, LIR_Opr result, BasicType type);221222void call( LIR_OpJavaCall* op, relocInfo::relocType rtype);223void ic_call( LIR_OpJavaCall* op);224void vtable_call( LIR_OpJavaCall* op);225226void osr_entry();227228void build_frame();229230void throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info);231void unwind_op(LIR_Opr exceptionOop);232void monitor_address(int monitor_ix, LIR_Opr dst);233234void align_backward_branch_target();235void align_call(LIR_Code code);236237void negate(LIR_Opr left, LIR_Opr dest, LIR_Opr tmp = LIR_OprFact::illegalOpr);238void leal(LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code = lir_patch_none, CodeEmitInfo* info = NULL);239240void rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info);241242void membar();243void membar_acquire();244void membar_release();245void membar_loadload();246void membar_storestore();247void membar_loadstore();248void membar_storeload();249void on_spin_wait();250void get_thread(LIR_Opr result);251252void verify_oop_map(CodeEmitInfo* info);253254void atomic_op(LIR_Code code, LIR_Opr src, LIR_Opr data, LIR_Opr dest, LIR_Opr tmp);255256#include CPU_HEADER(c1_LIRAssembler)257258public:259260static int call_stub_size() {261return _call_stub_size;262}263264static int exception_handler_size() {265return _exception_handler_size;266}267268static int deopt_handler_size() {269return _deopt_handler_size;270}271};272273#endif // SHARE_C1_C1_LIRASSEMBLER_HPP274275276