1 /*
   2  * Copyright (c) 2018, 2019, Red Hat, Inc. All rights reserved.
   3  *
   4  * This code is free software; you can redistribute it and/or modify it
   5  * under the terms of the GNU General Public License version 2 only, as
   6  * published by the Free Software Foundation.
   7  *
   8  * This code is distributed in the hope that it will be useful, but WITHOUT
   9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11  * version 2 for more details (a copy is included in the LICENSE file that
  12  * accompanied this code).
  13  *
  14  * You should have received a copy of the GNU General Public License version
  15  * 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 USA
  19  * or visit www.oracle.com if you need additional information or have any
  20  * questions.
  21  *
  22  */
  23 
  24 #ifndef CPU_X86_GC_SHENANDOAH_SHENANDOAHBARRIERSETASSEMBLER_X86_HPP
  25 #define CPU_X86_GC_SHENANDOAH_SHENANDOAHBARRIERSETASSEMBLER_X86_HPP
  26 
  27 #include "asm/macroAssembler.hpp"
  28 #include "gc/shared/barrierSetAssembler.hpp"
  29 #ifdef COMPILER1
  30 class LIR_Assembler;
  31 class ShenandoahPreBarrierStub;
  32 class ShenandoahLoadReferenceBarrierStub;
  33 class StubAssembler;
  34 #endif
  35 class StubCodeGenerator;
  36 
  37 class ShenandoahBarrierSetAssembler: public BarrierSetAssembler {
  38 private:
  39 
  40   static address _shenandoah_lrb;
  41 
  42   void satb_write_barrier_pre(MacroAssembler* masm,
  43                               Register obj,
  44                               Register pre_val,
  45                               Register thread,
  46                               Register tmp,
  47                               bool tosca_live,
  48                               bool expand_call);
  49 
  50   void shenandoah_write_barrier_pre(MacroAssembler* masm,
  51                                     Register obj,
  52                                     Register pre_val,
  53                                     Register thread,
  54                                     Register tmp,
  55                                     bool tosca_live,
  56                                     bool expand_call);
  57 
  58   void resolve_forward_pointer(MacroAssembler* masm, Register dst, Register tmp = noreg);
  59   void resolve_forward_pointer_not_null(MacroAssembler* masm, Register dst, Register tmp = noreg);
  60 
  61   void load_reference_barrier_not_null(MacroAssembler* masm, Register dst);
  62 
  63   void storeval_barrier_impl(MacroAssembler* masm, Register dst, Register tmp);
  64 
  65   address generate_shenandoah_lrb(StubCodeGenerator* cgen);
  66 
  67   // Generate cset check. If obj is not in cset, branch to done label, otherwise fall through
  68   // obj: Register holding the oop, preserved
  69   // tmp1, tmp2: temp registers, trashed
  70   void gen_cset_check(MacroAssembler* masm, Register obj, Register tmp1, Register tmp2, Label& done);
  71 
  72   // Generate check if object is resolved. Branch to resolved label, if not. Otherwise return resolved
  73   // object in obj register.
  74   // obj: object, resolved object on normal return
  75   // tmp: temp register, trashed
  76   void gen_resolved_check(MacroAssembler* masm, Register obj, Register tmp, Label& not_resolved);
  77 
  78 public:
  79   static address shenandoah_lrb();
  80 
  81   void storeval_barrier(MacroAssembler* masm, Register dst, Register tmp);
  82 #ifdef COMPILER1
  83   void gen_pre_barrier_stub(LIR_Assembler* ce, ShenandoahPreBarrierStub* stub);
  84   void gen_load_reference_barrier_stub(LIR_Assembler* ce, ShenandoahLoadReferenceBarrierStub* stub);
  85   void generate_c1_pre_barrier_runtime_stub(StubAssembler* sasm);
  86   void generate_c1_load_reference_barrier_runtime_stub(StubAssembler* sasm);
  87 #endif
  88 
  89   void load_reference_barrier(MacroAssembler* masm, Register dst);
  90   void load_reference_barrier_native(MacroAssembler* masm, Register dst);
  91 
  92   void cmpxchg_oop(MacroAssembler* masm,
  93                    Register res, Address addr, Register oldval, Register newval,
  94                    bool exchange, Register tmp1, Register tmp2);
  95   virtual void arraycopy_prologue(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
  96                                   Register src, Register dst, Register count);
  97   virtual void arraycopy_epilogue(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
  98                                   Register src, Register dst, Register count);
  99   virtual void load_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
 100                        Register dst, Address src, Register tmp1, Register tmp_thread);
 101   virtual void store_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
 102                         Address dst, Register val, Register tmp1, Register tmp2);
 103 
 104   virtual void barrier_stubs_init();
 105 
 106 };
 107 
 108 #endif // CPU_X86_GC_SHENANDOAH_SHENANDOAHBARRIERSETASSEMBLER_X86_HPP