< prev index next >

src/hotspot/cpu/x86/gc/shared/cardTableBarrierSetAssembler_x86.cpp

Print this page

  1 /*
  2  * Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *

153     AddressLiteral cardtable((address)byte_map_base, relocInfo::none);
154     Address index(noreg, obj, Address::times_1);
155     card_addr = __ as_Address(ArrayAddress(cardtable, index), rscratch1);
156   }
157 
158   int dirty = CardTable::dirty_card_val();
159   if (UseCondCardMark) {
160     Label L_already_dirty;
161     __ cmpb(card_addr, dirty);
162     __ jccb(Assembler::equal, L_already_dirty);
163     __ movb(card_addr, dirty);
164     __ bind(L_already_dirty);
165   } else {
166     __ movb(card_addr, dirty);
167   }
168 }
169 
170 void CardTableBarrierSetAssembler::oop_store_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
171                                                 Address dst, Register val, Register tmp1, Register tmp2, Register tmp3) {
172   bool in_heap = (decorators & IN_HEAP) != 0;
173 
174   bool is_array = (decorators & IS_ARRAY) != 0;
175   bool on_anonymous = (decorators & ON_UNKNOWN_OOP_REF) != 0;
176   bool precise = is_array || on_anonymous;
177 
178   bool needs_post_barrier = val != noreg && in_heap;
179 
180   BarrierSetAssembler::store_at(masm, decorators, type, dst, val, noreg, noreg, noreg);
181   if (needs_post_barrier) {
182     // flatten object address if needed
183     if (!precise || (dst.index() == noreg && dst.disp() == 0)) {
184       store_check(masm, dst.base(), dst);
185     } else {
186       __ lea(tmp1, dst);
187       store_check(masm, tmp1, dst);
188     }
189   }
190 }

  1 /*
  2  * Copyright (c) 2018, 2026, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *

153     AddressLiteral cardtable((address)byte_map_base, relocInfo::none);
154     Address index(noreg, obj, Address::times_1);
155     card_addr = __ as_Address(ArrayAddress(cardtable, index), rscratch1);
156   }
157 
158   int dirty = CardTable::dirty_card_val();
159   if (UseCondCardMark) {
160     Label L_already_dirty;
161     __ cmpb(card_addr, dirty);
162     __ jccb(Assembler::equal, L_already_dirty);
163     __ movb(card_addr, dirty);
164     __ bind(L_already_dirty);
165   } else {
166     __ movb(card_addr, dirty);
167   }
168 }
169 
170 void CardTableBarrierSetAssembler::oop_store_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
171                                                 Address dst, Register val, Register tmp1, Register tmp2, Register tmp3) {
172   bool in_heap = (decorators & IN_HEAP) != 0;

173   bool is_array = (decorators & IS_ARRAY) != 0;
174   bool on_anonymous = (decorators & ON_UNKNOWN_OOP_REF) != 0;
175   bool precise = is_array || on_anonymous;
176 
177   bool needs_post_barrier = val != noreg && in_heap;
178 
179   BarrierSetAssembler::store_at(masm, decorators, type, dst, val, noreg, noreg, noreg);
180   if (needs_post_barrier) {
181     // flatten object address if needed
182     if (!precise || (dst.index() == noreg && dst.disp() == 0)) {
183       store_check(masm, dst.base(), dst);
184     } else {
185       __ lea(tmp1, dst);
186       store_check(masm, tmp1, dst);
187     }
188   }
189 }
< prev index next >