1 /*
  2  * Copyright (c) 2018, 2019, Red Hat, Inc. All rights reserved.
  3  * Copyright (c) 2020, 2021, Huawei Technologies Co., Ltd. All rights reserved.
  4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  5  *
  6  * This code is free software; you can redistribute it and/or modify it
  7  * under the terms of the GNU General Public License version 2 only, as
  8  * published by the Free Software Foundation.
  9  *
 10  * This code is distributed in the hope that it will be useful, but WITHOUT
 11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 13  * version 2 for more details (a copy is included in the LICENSE file that
 14  * accompanied this code).
 15  *
 16  * You should have received a copy of the GNU General Public License version
 17  * 2 along with this work; if not, write to the Free Software Foundation,
 18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 19  *
 20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 21  * or visit www.oracle.com if you need additional information or have any
 22  * questions.
 23  *
 24  */
 25 
 26 #include "precompiled.hpp"
 27 #include "c1/c1_LIRAssembler.hpp"
 28 #include "c1/c1_MacroAssembler.hpp"
 29 #include "gc/shared/gc_globals.hpp"
 30 #include "gc/shenandoah/shenandoahBarrierSet.hpp"
 31 #include "gc/shenandoah/shenandoahBarrierSetAssembler.hpp"
 32 #include "gc/shenandoah/c1/shenandoahBarrierSetC1.hpp"
 33 
 34 #define __ masm->masm()->
 35 
 36 void LIR_OpShenandoahCompareAndSwap::emit_code(LIR_Assembler* masm) {
 37   Register addr = _addr->as_register_lo();
 38   Register newval = _new_value->as_register();
 39   Register cmpval = _cmp_value->as_register();
 40   Register tmp1 = _tmp1->as_register();
 41   Register tmp2 = _tmp2->as_register();
 42   Register result = result_opr()->as_register();
 43 
 44   ShenandoahBarrierSet::assembler()->iu_barrier(masm->masm(), newval, t1);
 45 
 46   if (UseCompressedOops) {
 47     __ encode_heap_oop(tmp1, cmpval);
 48     cmpval = tmp1;
 49     __ encode_heap_oop(tmp2, newval);
 50     newval = tmp2;
 51   }
 52 
 53   ShenandoahBarrierSet::assembler()->cmpxchg_oop(masm->masm(), addr, cmpval, newval, /* acquire */ Assembler::aq,
 54                                                  /* release */ Assembler::rl, /* is_cae */ false, result);
 55 }
 56 
 57 #undef __
 58 
 59 #ifdef ASSERT
 60 #define __ gen->lir(__FILE__, __LINE__)->
 61 #else
 62 #define __ gen->lir()->
 63 #endif
 64 
 65 LIR_Opr ShenandoahBarrierSetC1::atomic_cmpxchg_at_resolved(LIRAccess& access, LIRItem& cmp_value, LIRItem& new_value) {
 66   BasicType bt = access.type();
 67   if (access.is_oop()) {
 68     LIRGenerator *gen = access.gen();
 69     if (ShenandoahSATBBarrier) {
 70       pre_barrier(gen, access.access_emit_info(), access.decorators(), access.resolved_addr(),
 71                   LIR_OprFact::illegalOpr /* pre_val */);
 72     }
 73     if (ShenandoahCASBarrier) {
 74       cmp_value.load_item();
 75       new_value.load_item();
 76 
 77       LIR_Opr tmp1 = gen->new_register(T_OBJECT);
 78       LIR_Opr tmp2 = gen->new_register(T_OBJECT);
 79       LIR_Opr addr = access.resolved_addr()->as_address_ptr()->base();
 80       LIR_Opr result = gen->new_register(T_INT);
 81 
 82       __ append(new LIR_OpShenandoahCompareAndSwap(addr, cmp_value.result(), new_value.result(), tmp1, tmp2, result));
 83       return result;
 84     }
 85   }
 86   return BarrierSetC1::atomic_cmpxchg_at_resolved(access, cmp_value, new_value);
 87 }
 88 
 89 LIR_Opr ShenandoahBarrierSetC1::atomic_xchg_at_resolved(LIRAccess& access, LIRItem& value) {
 90   LIRGenerator* gen = access.gen();
 91   BasicType type = access.type();
 92 
 93   LIR_Opr result = gen->new_register(type);
 94   value.load_item();
 95   LIR_Opr value_opr = value.result();
 96 
 97   if (access.is_oop()) {
 98     value_opr = iu_barrier(access.gen(), value_opr, access.access_emit_info(), access.decorators());
 99   }
100 
101   assert(type == T_INT || is_reference_type(type) LP64_ONLY( || type == T_LONG ), "unexpected type");
102   LIR_Opr tmp = gen->new_register(T_INT);
103   __ xchg(access.resolved_addr(), value_opr, result, tmp);
104 
105   if (access.is_oop()) {
106     result = load_reference_barrier(access.gen(), result, LIR_OprFact::addressConst(0), access.decorators());
107     LIR_Opr tmp_opr = gen->new_register(type);
108     __ move(result, tmp_opr);
109     result = tmp_opr;
110     if (ShenandoahSATBBarrier) {
111       pre_barrier(access.gen(), access.access_emit_info(), access.decorators(), LIR_OprFact::illegalOpr,
112                   result /* pre_val */);
113     }
114   }
115 
116   return result;
117 }