1 /* 2 * Copyright (c) 2018, 2023, Red Hat, Inc. All rights reserved. 3 * Copyright (c) 2012, 2023 SAP SE. 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 "asm/macroAssembler.inline.hpp" 28 #include "c1/c1_LIRAssembler.hpp" 29 #include "c1/c1_MacroAssembler.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 __ block_comment("LIR_OpShenandoahCompareAndSwap (shenandaohgc) {"); 38 39 Register addr = _addr->as_register_lo(); 40 Register new_val = _new_value->as_register(); 41 Register cmp_val = _cmp_value->as_register(); 42 Register tmp1 = _tmp1->as_register(); 43 Register tmp2 = _tmp2->as_register(); 44 Register result = result_opr()->as_register(); 45 46 if (ShenandoahIUBarrier) { 47 ShenandoahBarrierSet::assembler()->iu_barrier(masm->masm(), new_val, tmp1, tmp2, 48 MacroAssembler::PRESERVATION_FRAME_LR_GP_FP_REGS); 49 } 50 51 if (UseCompressedOops) { 52 __ encode_heap_oop(cmp_val, cmp_val); 53 __ encode_heap_oop(new_val, new_val); 54 } 55 56 // There might be a volatile load before this Unsafe CAS. 57 if (support_IRIW_for_not_multiple_copy_atomic_cpu) { 58 __ sync(); 59 } else { 60 __ lwsync(); 61 } 62 63 ShenandoahBarrierSet::assembler()->cmpxchg_oop(masm->masm(), addr, cmp_val, new_val, tmp1, tmp2, 64 false, result); 65 66 if (UseCompressedOops) { 67 __ decode_heap_oop(cmp_val); 68 __ decode_heap_oop(new_val); 69 } 70 71 if (support_IRIW_for_not_multiple_copy_atomic_cpu) { 72 __ isync(); 73 } else { 74 __ sync(); 75 } 76 77 __ block_comment("} LIR_OpShenandoahCompareAndSwap (shenandaohgc)"); 78 } 79 80 #undef __ 81 82 #ifdef ASSERT 83 #define __ gen->lir(__FILE__, __LINE__)-> 84 #else 85 #define __ gen->lir()-> 86 #endif 87 88 LIR_Opr ShenandoahBarrierSetC1::atomic_cmpxchg_at_resolved(LIRAccess &access, LIRItem &cmp_value, LIRItem &new_value) { 89 BasicType bt = access.type(); 90 91 if (access.is_oop()) { 92 LIRGenerator* gen = access.gen(); 93 94 if (ShenandoahSATBBarrier) { 95 pre_barrier(gen, access.access_emit_info(), access.decorators(), access.resolved_addr(), 96 LIR_OprFact::illegalOpr); 97 } 98 99 if (ShenandoahCASBarrier) { 100 cmp_value.load_item(); 101 new_value.load_item(); 102 103 LIR_Opr t1 = gen->new_register(T_OBJECT); 104 LIR_Opr t2 = gen->new_register(T_OBJECT); 105 LIR_Opr addr = access.resolved_addr()->as_address_ptr()->base(); 106 LIR_Opr result = gen->new_register(T_INT); 107 108 __ append(new LIR_OpShenandoahCompareAndSwap(addr, cmp_value.result(), new_value.result(), t1, t2, result)); 109 110 if (ShenandoahCardBarrier) { 111 post_barrier(access, access.resolved_addr(), new_value.result()); 112 } 113 114 return result; 115 } 116 } 117 118 return BarrierSetC1::atomic_cmpxchg_at_resolved(access, cmp_value, new_value); 119 } 120 121 LIR_Opr ShenandoahBarrierSetC1::atomic_xchg_at_resolved(LIRAccess &access, LIRItem &value) { 122 LIRGenerator* gen = access.gen(); 123 BasicType type = access.type(); 124 125 LIR_Opr result = gen->new_register(type); 126 value.load_item(); 127 LIR_Opr value_opr = value.result(); 128 129 if (access.is_oop()) { 130 value_opr = iu_barrier(access.gen(), value_opr, access.access_emit_info(), access.decorators()); 131 } 132 133 assert(type == T_INT || is_reference_type(type) LP64_ONLY( || type == T_LONG ), "unexpected type"); 134 LIR_Opr tmp_xchg = gen->new_register(T_INT); 135 __ xchg(access.resolved_addr(), value_opr, result, tmp_xchg); 136 137 if (access.is_oop()) { 138 result = load_reference_barrier_impl(access.gen(), result, LIR_OprFact::addressConst(0), 139 access.decorators()); 140 141 LIR_Opr tmp_barrier = gen->new_register(type); 142 __ move(result, tmp_barrier); 143 result = tmp_barrier; 144 145 if (ShenandoahSATBBarrier) { 146 pre_barrier(access.gen(), access.access_emit_info(), access.decorators(), LIR_OprFact::illegalOpr, result); 147 } 148 149 if (ShenandoahCardBarrier) { 150 post_barrier(access, access.resolved_addr(), result); 151 } 152 } 153 154 return result; 155 }