1 /*
   2  * Copyright (c) 2018, 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 #include "precompiled.hpp"
  25 #include "c1/c1_LIRAssembler.hpp"
  26 #include "c1/c1_MacroAssembler.hpp"
  27 #include "gc/shenandoah/shenandoahBarrierSet.hpp"
  28 #include "gc/shenandoah/shenandoahBarrierSetAssembler.hpp"
  29 #include "gc/shenandoah/c1/shenandoahBarrierSetC1.hpp"
  30 
  31 #define __ masm->masm()->
  32 
  33 void LIR_OpShenandoahCompareAndSwap::emit_code(LIR_Assembler* masm) {
  34   Register addr = _addr->as_register_lo();
  35   Register newval = _new_value->as_register();
  36   Register cmpval = _cmp_value->as_register();
  37   Register tmp1 = _tmp1->as_register();
  38   Register tmp2 = _tmp2->as_register();
  39   Register tmp3 = _tmp3->as_register();
  40   Register result = result_opr()->as_register();
  41 
  42   ShenandoahBarrierSet::assembler()->storeval_barrier(masm->masm(), newval, rscratch2);
  43 
  44   if (UseCompressedOops) {
  45     __ encode_heap_oop(tmp1, cmpval);
  46     cmpval = tmp1;
  47     __ encode_heap_oop(tmp2, newval);
  48     newval = tmp2;
  49   }
  50 
  51   ShenandoahBarrierSet::assembler()->cmpxchg_oop(masm->masm(), addr, cmpval, newval, /*acquire*/ false, /*release*/ true, /*weak*/ false, /*is_cae*/ false, tmp3, result);
  52 }
  53 
  54 #undef __
  55 
  56 #ifdef ASSERT
  57 #define __ gen->lir(__FILE__, __LINE__)->
  58 #else
  59 #define __ gen->lir()->
  60 #endif
  61 
  62 LIR_Opr ShenandoahBarrierSetC1::atomic_cmpxchg_at_resolved(LIRAccess& access, LIRItem& cmp_value, LIRItem& new_value) {
  63   BasicType bt = access.type();
  64   if (access.is_oop()) {
  65     LIRGenerator *gen = access.gen();
  66     if (ShenandoahSATBBarrier) {
  67       pre_barrier(gen, access.access_emit_info(), access.decorators(), access.resolved_addr(),
  68                   LIR_OprFact::illegalOpr /* pre_val */);
  69     }
  70     if (ShenandoahCASBarrier) {
  71       cmp_value.load_item();
  72       new_value.load_item();
  73 
  74       LIR_Opr t1 = gen->new_register(T_OBJECT);
  75       LIR_Opr t2 = gen->new_register(T_OBJECT);
  76       LIR_Opr t3 = gen->new_register(T_OBJECT);
  77       LIR_Opr addr = access.resolved_addr()->as_address_ptr()->base();
  78       LIR_Opr result = gen->new_register(T_INT);
  79 
  80       __ append(new LIR_OpShenandoahCompareAndSwap(addr, cmp_value.result(), new_value.result(), t1, t2, t3, result));
  81       return result;
  82     }
  83   }
  84   return BarrierSetC1::atomic_cmpxchg_at_resolved(access, cmp_value, new_value);
  85 }
  86 
  87 LIR_Opr ShenandoahBarrierSetC1::atomic_xchg_at_resolved(LIRAccess& access, LIRItem& value) {
  88   LIRGenerator* gen = access.gen();
  89   BasicType type = access.type();
  90 
  91   LIR_Opr result = gen->new_register(type);
  92   value.load_item();
  93   LIR_Opr value_opr = value.result();
  94 
  95   if (access.is_oop()) {
  96     value_opr = storeval_barrier(access.gen(), value_opr, access.access_emit_info(), access.decorators());
  97   }
  98 
  99   assert(type == T_INT || type == T_OBJECT || type == T_ARRAY LP64_ONLY( || type == T_LONG ), "unexpected type");
 100   LIR_Opr tmp = gen->new_register(T_INT);
 101   __ xchg(access.resolved_addr(), value_opr, result, tmp);
 102 
 103   if (access.is_oop()) {
 104     result = load_reference_barrier(access.gen(), result, access.access_emit_info(), true);
 105     if (ShenandoahSATBBarrier) {
 106       pre_barrier(access.gen(), access.access_emit_info(), access.decorators(), LIR_OprFact::illegalOpr,
 107                   result /* pre_val */);
 108     }
 109   }
 110 
 111   return result;
 112 }