< prev index next >

src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp

Print this page

   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 "classfile/javaClasses.hpp"
  27 #include "gc/shared/barrierSet.hpp"
  28 #include "gc/shenandoah/c2/shenandoahBarrierSetC2.hpp"
  29 #include "gc/shenandoah/c2/shenandoahSupport.hpp"
  30 #include "gc/shenandoah/heuristics/shenandoahHeuristics.hpp"
  31 #include "gc/shenandoah/shenandoahBarrierSet.hpp"
  32 #include "gc/shenandoah/shenandoahCardTable.hpp"
  33 #include "gc/shenandoah/shenandoahForwarding.hpp"
  34 #include "gc/shenandoah/shenandoahHeap.hpp"
  35 #include "gc/shenandoah/shenandoahRuntime.hpp"
  36 #include "gc/shenandoah/shenandoahThreadLocalData.hpp"
  37 #include "opto/arraycopynode.hpp"
  38 #include "opto/escape.hpp"
  39 #include "opto/graphKit.hpp"
  40 #include "opto/idealKit.hpp"
  41 #include "opto/macro.hpp"
  42 #include "opto/movenode.hpp"
  43 #include "opto/narrowptrnode.hpp"

  44 #include "opto/rootnode.hpp"
  45 #include "opto/runtime.hpp"
  46 
  47 ShenandoahBarrierSetC2* ShenandoahBarrierSetC2::bsc2() {
  48   return reinterpret_cast<ShenandoahBarrierSetC2*>(BarrierSet::barrier_set()->barrier_set_c2());
  49 }
  50 
  51 ShenandoahBarrierSetC2State::ShenandoahBarrierSetC2State(Arena* comp_arena)
  52   : _load_reference_barriers(new (comp_arena) GrowableArray<ShenandoahLoadReferenceBarrierNode*>(comp_arena, 8,  0, nullptr)) {



  53 }
  54 
  55 int ShenandoahBarrierSetC2State::load_reference_barriers_count() const {
  56   return _load_reference_barriers->length();
  57 }
  58 
  59 ShenandoahLoadReferenceBarrierNode* ShenandoahBarrierSetC2State::load_reference_barrier(int idx) const {
  60   return _load_reference_barriers->at(idx);
  61 }
  62 
  63 void ShenandoahBarrierSetC2State::add_load_reference_barrier(ShenandoahLoadReferenceBarrierNode * n) {
  64   assert(!_load_reference_barriers->contains(n), "duplicate entry in barrier list");
  65   _load_reference_barriers->append(n);
  66 }

  67 
  68 void ShenandoahBarrierSetC2State::remove_load_reference_barrier(ShenandoahLoadReferenceBarrierNode * n) {
  69   if (_load_reference_barriers->contains(n)) {
  70     _load_reference_barriers->remove(n);
  71   }
  72 }
  73 
  74 #define __ kit->
  75 
  76 bool ShenandoahBarrierSetC2::satb_can_remove_pre_barrier(GraphKit* kit, PhaseValues* phase, Node* adr,
  77                                                          BasicType bt, uint adr_idx) const {
  78   intptr_t offset = 0;
  79   Node* base = AddPNode::Ideal_base_and_offset(adr, phase, offset);
  80   AllocateNode* alloc = AllocateNode::Ideal_allocation(base);
  81 
  82   if (offset == Type::OffsetBot) {
  83     return false; // cannot unalias unless there are precise offsets








  84   }
  85 
  86   if (alloc == nullptr) {
  87     return false; // No allocation found





  88   }
  89 
  90   intptr_t size_in_bytes = type2aelembytes(bt);
  91 
  92   Node* mem = __ memory(adr_idx); // start searching here...
  93 
  94   for (int cnt = 0; cnt < 50; cnt++) {
  95 
  96     if (mem->is_Store()) {
  97 
  98       Node* st_adr = mem->in(MemNode::Address);
  99       intptr_t st_offset = 0;
 100       Node* st_base = AddPNode::Ideal_base_and_offset(st_adr, phase, st_offset);
 101 
 102       if (st_base == nullptr) {
 103         break; // inscrutable pointer
 104       }
 105 
 106       // Break we have found a store with same base and offset as ours so break
 107       if (st_base == base && st_offset == offset) {
 108         break;
 109       }
 110 
 111       if (st_offset != offset && st_offset != Type::OffsetBot) {
 112         const int MAX_STORE = BytesPerLong;
 113         if (st_offset >= offset + size_in_bytes ||
 114             st_offset <= offset - MAX_STORE ||
 115             st_offset <= offset - mem->as_Store()->memory_size()) {
 116           // Success:  The offsets are provably independent.
 117           // (You may ask, why not just test st_offset != offset and be done?
 118           // The answer is that stores of different sizes can co-exist
 119           // in the same sequence of RawMem effects.  We sometimes initialize
 120           // a whole 'tile' of array elements with a single jint or jlong.)
 121           mem = mem->in(MemNode::Memory);
 122           continue; // advance through independent store memory
 123         }
 124       }
 125 
 126       if (st_base != base
 127           && MemNode::detect_ptr_independence(base, alloc, st_base,
 128                                               AllocateNode::Ideal_allocation(st_base),
 129                                               phase)) {
 130         // Success:  The bases are provably independent.
 131         mem = mem->in(MemNode::Memory);
 132         continue; // advance through independent store memory
 133       }
 134     } else if (mem->is_Proj() && mem->in(0)->is_Initialize()) {
 135 
 136       InitializeNode* st_init = mem->in(0)->as_Initialize();
 137       AllocateNode* st_alloc = st_init->allocation();
 138 
 139       // Make sure that we are looking at the same allocation site.
 140       // The alloc variable is guaranteed to not be null here from earlier check.
 141       if (alloc == st_alloc) {
 142         // Check that the initialization is storing null so that no previous store
 143         // has been moved up and directly write a reference
 144         Node* captured_store = st_init->find_captured_store(offset,
 145                                                             type2aelembytes(T_OBJECT),
 146                                                             phase);
 147         if (captured_store == nullptr || captured_store == st_init->zero_memory()) {
 148           return true;
 149         }
 150       }
 151     }
 152 
 153     // Unless there is an explicit 'continue', we must bail out here,
 154     // because 'mem' is an inscrutable memory state (e.g., a call).
 155     break;







 156   }
 157 
 158   return false;
 159 }
 160 
 161 #undef __
 162 #define __ ideal.
 163 
 164 void ShenandoahBarrierSetC2::satb_write_barrier_pre(GraphKit* kit,
 165                                                     bool do_load,
 166                                                     Node* obj,
 167                                                     Node* adr,
 168                                                     uint alias_idx,
 169                                                     Node* val,
 170                                                     const TypeOopPtr* val_type,
 171                                                     Node* pre_val,
 172                                                     BasicType bt) const {
 173   // Some sanity checks
 174   // Note: val is unused in this routine.
 175 
 176   if (do_load) {
 177     // We need to generate the load of the previous value
 178     assert(adr != nullptr, "where are loading from?");
 179     assert(pre_val == nullptr, "loaded already?");
 180     assert(val_type != nullptr, "need a type");
 181 
 182     if (ReduceInitialCardMarks
 183         && satb_can_remove_pre_barrier(kit, &kit->gvn(), adr, bt, alias_idx)) {
 184       return;
 185     }
 186 
 187   } else {
 188     // In this case both val_type and alias_idx are unused.
 189     assert(pre_val != nullptr, "must be loaded already");
 190     // Nothing to be done if pre_val is null.
 191     if (pre_val->bottom_type() == TypePtr::NULL_PTR) return;
 192     assert(pre_val->bottom_type()->basic_type() == T_OBJECT, "or we shouldn't be here");
 193   }
 194   assert(bt == T_OBJECT, "or we shouldn't be here");
 195 
 196   IdealKit ideal(kit, true);

 197 
 198   Node* tls = __ thread(); // ThreadLocalStorage





 199 
 200   Node* no_base = __ top();
 201   Node* zero  = __ ConI(0);
 202   Node* zeroX = __ ConX(0);
 203 
 204   float likely  = PROB_LIKELY(0.999);
 205   float unlikely  = PROB_UNLIKELY(0.999);



 206 
 207   // Offsets into the thread
 208   const int index_offset   = in_bytes(ShenandoahThreadLocalData::satb_mark_queue_index_offset());
 209   const int buffer_offset  = in_bytes(ShenandoahThreadLocalData::satb_mark_queue_buffer_offset());


 210 
 211   // Now the actual pointers into the thread
 212   Node* buffer_adr  = __ AddP(no_base, tls, __ ConX(buffer_offset));
 213   Node* index_adr   = __ AddP(no_base, tls, __ ConX(index_offset));

 214 
 215   // Now some of the values
 216   Node* marking;
 217   Node* gc_state = __ AddP(no_base, tls, __ ConX(in_bytes(ShenandoahThreadLocalData::gc_state_offset())));
 218   Node* ld = __ load(__ ctrl(), gc_state, TypeInt::BYTE, T_BYTE, Compile::AliasIdxRaw);
 219   marking = __ AndI(ld, __ ConI(ShenandoahHeap::MARKING));
 220   assert(ShenandoahBarrierC2Support::is_gc_state_load(ld), "Should match the shape");
 221 
 222   // if (!marking)
 223   __ if_then(marking, BoolTest::ne, zero, unlikely); {
 224     BasicType index_bt = TypeX_X->basic_type();
 225     assert(sizeof(size_t) == type2aelembytes(index_bt), "Loading Shenandoah SATBMarkQueue::_index with wrong size.");
 226     Node* index   = __ load(__ ctrl(), index_adr, TypeX_X, index_bt, Compile::AliasIdxRaw);











































































 227 
 228     if (do_load) {
 229       // load original value
 230       // alias_idx correct??
 231       pre_val = __ load(__ ctrl(), adr, val_type, bt, alias_idx);


 232     }

 233 
 234     // if (pre_val != nullptr)
 235     __ if_then(pre_val, BoolTest::ne, kit->null()); {
 236       Node* buffer  = __ load(__ ctrl(), buffer_adr, TypeRawPtr::NOTNULL, T_ADDRESS, Compile::AliasIdxRaw);
 237 
 238       // is the queue for this thread full?
 239       __ if_then(index, BoolTest::ne, zeroX, likely); {
 240 
 241         // decrement the index
 242         Node* next_index = kit->gvn().transform(new SubXNode(index, __ ConX(sizeof(intptr_t))));
 243 
 244         // Now get the buffer location we will log the previous value into and store it
 245         Node *log_addr = __ AddP(no_base, buffer, next_index);
 246         __ store(__ ctrl(), log_addr, pre_val, T_OBJECT, Compile::AliasIdxRaw, MemNode::unordered);
 247         // update the index
 248         __ store(__ ctrl(), index_adr, next_index, index_bt, Compile::AliasIdxRaw, MemNode::unordered);
 249 
 250       } __ else_(); {
 251 
 252         // logging buffer is full, call the runtime
 253         const TypeFunc *tf = ShenandoahBarrierSetC2::write_barrier_pre_Type();
 254         __ make_leaf_call(tf, CAST_FROM_FN_PTR(address, ShenandoahRuntime::write_barrier_pre), "shenandoah_wb_pre", pre_val);
 255       } __ end_if();  // (!index)
 256     } __ end_if();  // (pre_val != nullptr)
 257   } __ end_if();  // (!marking)
 258 
 259   // Final sync IdealKit and GraphKit.
 260   kit->final_sync(ideal);



 261 
 262   if (ShenandoahSATBBarrier && adr != nullptr) {
 263     Node* c = kit->control();
 264     Node* call = c->in(1)->in(1)->in(1)->in(0);
 265     assert(is_shenandoah_wb_pre_call(call), "shenandoah_wb_pre call expected");
 266     call->add_req(adr);
 267   }
 268 }
 269 
 270 bool ShenandoahBarrierSetC2::is_shenandoah_wb_pre_call(Node* call) {
 271   return call->is_CallLeaf() &&
 272          call->as_CallLeaf()->entry_point() == CAST_FROM_FN_PTR(address, ShenandoahRuntime::write_barrier_pre);
 273 }
 274 
 275 bool ShenandoahBarrierSetC2::is_shenandoah_clone_call(Node* call) {
 276   return call->is_CallLeaf() &&
 277          call->as_CallLeaf()->entry_point() == CAST_FROM_FN_PTR(address, ShenandoahRuntime::clone_barrier);
 278 }


















 279 
 280 bool ShenandoahBarrierSetC2::is_shenandoah_lrb_call(Node* call) {
 281   if (!call->is_CallLeaf()) {
 282     return false;



 283   }
 284 
 285   address entry_point = call->as_CallLeaf()->entry_point();
 286   return (entry_point == CAST_FROM_FN_PTR(address, ShenandoahRuntime::load_reference_barrier_strong)) ||
 287          (entry_point == CAST_FROM_FN_PTR(address, ShenandoahRuntime::load_reference_barrier_strong_narrow)) ||
 288          (entry_point == CAST_FROM_FN_PTR(address, ShenandoahRuntime::load_reference_barrier_weak)) ||
 289          (entry_point == CAST_FROM_FN_PTR(address, ShenandoahRuntime::load_reference_barrier_weak_narrow)) ||
 290          (entry_point == CAST_FROM_FN_PTR(address, ShenandoahRuntime::load_reference_barrier_phantom)) ||
 291          (entry_point == CAST_FROM_FN_PTR(address, ShenandoahRuntime::load_reference_barrier_phantom_narrow));
 292 }
 293 
 294 bool ShenandoahBarrierSetC2::is_shenandoah_marking_if(PhaseValues* phase, Node* n) {
 295   if (n->Opcode() != Op_If) {
 296     return false;





 297   }

 298 
 299   Node* bol = n->in(1);
 300   assert(bol->is_Bool(), "");
 301   Node* cmpx = bol->in(1);
 302   if (bol->as_Bool()->_test._test == BoolTest::ne &&
 303       cmpx->is_Cmp() && cmpx->in(2) == phase->intcon(0) &&
 304       is_shenandoah_state_load(cmpx->in(1)->in(1)) &&
 305       cmpx->in(1)->in(2)->is_Con() &&
 306       cmpx->in(1)->in(2) == phase->intcon(ShenandoahHeap::MARKING)) {
 307     return true;







 308   }

 309 
 310   return false;



 311 }
 312 
 313 bool ShenandoahBarrierSetC2::is_shenandoah_state_load(Node* n) {
 314   if (!n->is_Load()) return false;
 315   const int state_offset = in_bytes(ShenandoahThreadLocalData::gc_state_offset());
 316   return n->in(2)->is_AddP() && n->in(2)->in(2)->Opcode() == Op_ThreadLocal
 317          && n->in(2)->in(3)->is_Con()
 318          && n->in(2)->in(3)->bottom_type()->is_intptr_t()->get_con() == state_offset;
 319 }
 320 
 321 void ShenandoahBarrierSetC2::shenandoah_write_barrier_pre(GraphKit* kit,
 322                                                           bool do_load,
 323                                                           Node* obj,
 324                                                           Node* adr,
 325                                                           uint alias_idx,
 326                                                           Node* val,
 327                                                           const TypeOopPtr* val_type,
 328                                                           Node* pre_val,
 329                                                           BasicType bt) const {
 330   if (ShenandoahSATBBarrier) {
 331     IdealKit ideal(kit);
 332     kit->sync_kit(ideal);
 333 
 334     satb_write_barrier_pre(kit, do_load, obj, adr, alias_idx, val, val_type, pre_val, bt);
 335 
 336     ideal.sync_kit(kit);
 337     kit->final_sync(ideal);
 338   }
 339 }
 340 
 341 // Helper that guards and inserts a pre-barrier.
 342 void ShenandoahBarrierSetC2::insert_pre_barrier(GraphKit* kit, Node* base_oop, Node* offset,
 343                                                 Node* pre_val, bool need_mem_bar) const {
 344   // We could be accessing the referent field of a reference object. If so, when Shenandoah
 345   // is enabled, we need to log the value in the referent field in an SATB buffer.
 346   // This routine performs some compile time filters and generates suitable
 347   // runtime filters that guard the pre-barrier code.
 348   // Also add memory barrier for non volatile load from the referent field
 349   // to prevent commoning of loads across safepoint.
 350 
 351   // Some compile time checks.
 352 
 353   // If offset is a constant, is it java_lang_ref_Reference::_reference_offset?
 354   const TypeX* otype = offset->find_intptr_t_type();
 355   if (otype != nullptr && otype->is_con() &&
 356       otype->get_con() != java_lang_ref_Reference::referent_offset()) {
 357     // Constant offset but not the reference_offset so just return
 358     return;
 359   }
 360 
 361   // We only need to generate the runtime guards for instances.
 362   const TypeOopPtr* btype = base_oop->bottom_type()->isa_oopptr();
 363   if (btype != nullptr) {
 364     if (btype->isa_aryptr()) {
 365       // Array type so nothing to do
 366       return;
 367     }
 368 
 369     const TypeInstPtr* itype = btype->isa_instptr();
 370     if (itype != nullptr) {
 371       // Can the klass of base_oop be statically determined to be
 372       // _not_ a sub-class of Reference and _not_ Object?
 373       ciKlass* klass = itype->instance_klass();
 374       if (klass->is_loaded() &&
 375           !klass->is_subtype_of(kit->env()->Reference_klass()) &&
 376           !kit->env()->Object_klass()->is_subtype_of(klass)) {
 377         return;
 378       }
 379     }
 380   }
 381 
 382   // The compile time filters did not reject base_oop/offset so
 383   // we need to generate the following runtime filters
 384   //
 385   // if (offset == java_lang_ref_Reference::_reference_offset) {
 386   //   if (instance_of(base, java.lang.ref.Reference)) {
 387   //     pre_barrier(_, pre_val, ...);
 388   //   }
 389   // }
 390 
 391   float likely   = PROB_LIKELY(  0.999);
 392   float unlikely = PROB_UNLIKELY(0.999);
 393 
 394   IdealKit ideal(kit);



 395 
 396   Node* referent_off = __ ConX(java_lang_ref_Reference::referent_offset());






 397 
 398   __ if_then(offset, BoolTest::eq, referent_off, unlikely); {
 399       // Update graphKit memory and control from IdealKit.
 400       kit->sync_kit(ideal);
 401 
 402       Node* ref_klass_con = kit->makecon(TypeKlassPtr::make(kit->env()->Reference_klass()));
 403       Node* is_instof = kit->gen_instanceof(base_oop, ref_klass_con);
















 404 
 405       // Update IdealKit memory and control from graphKit.
 406       __ sync_kit(kit);











 407 
 408       Node* one = __ ConI(1);
 409       // is_instof == 0 if base_oop == nullptr
 410       __ if_then(is_instof, BoolTest::eq, one, unlikely); {













 411 
 412         // Update graphKit from IdeakKit.
 413         kit->sync_kit(ideal);



 414 
 415         // Use the pre-barrier to record the value in the referent field
 416         satb_write_barrier_pre(kit, false /* do_load */,
 417                                nullptr /* obj */, nullptr /* adr */, max_juint /* alias_idx */, nullptr /* val */, nullptr /* val_type */,
 418                                pre_val /* pre_val */,
 419                                T_OBJECT);
 420         if (need_mem_bar) {
 421           // Add memory barrier to prevent commoning reads from this field
 422           // across safepoint since GC can change its value.
 423           kit->insert_mem_bar(Op_MemBarCPUOrder);
 424         }
 425         // Update IdealKit from graphKit.
 426         __ sync_kit(kit);
 427 
 428       } __ end_if(); // _ref_type != ref_none
 429   } __ end_if(); // offset == referent_offset




 430 
 431   // Final sync IdealKit and GraphKit.
 432   kit->final_sync(ideal);






 433 }
 434 
 435 void ShenandoahBarrierSetC2::post_barrier(GraphKit* kit,
 436                                           Node* ctl,
 437                                           Node* oop_store,
 438                                           Node* obj,
 439                                           Node* adr,
 440                                           uint  adr_idx,
 441                                           Node* val,
 442                                           BasicType bt,
 443                                           bool use_precise) const {
 444   assert(ShenandoahCardBarrier, "Should have been checked by caller");
 445 
 446   // No store check needed if we're storing a null.
 447   if (val != nullptr && val->is_Con()) {
 448     // must be either an oop or null
 449     const Type* t = val->bottom_type();
 450     if (t == TypePtr::NULL_PTR || t == Type::TOP)
 451       return;
 452   }
 453 
 454   if (ReduceInitialCardMarks && obj == kit->just_allocated_object(kit->control())) {
 455     // We use card marks to track old to young references in Generational Shenandoah;
 456     // see flag ShenandoahCardBarrier above.
 457     // Objects are always allocated in the young generation and initialized
 458     // before they are promoted. There's always a safepoint (e.g. at final mark)
 459     // before an object is promoted from young to old. Promotion entails dirtying of
 460     // the cards backing promoted objects, so they will be guaranteed to be scanned
 461     // at the next remembered set scan of the old generation.
 462     // Thus, we can safely skip card-marking of initializing stores on a
 463     // freshly-allocated object. If any of the assumptions above change in
 464     // the future, this code will need to be re-examined; see check in
 465     // ShenandoahCardBarrier::on_slowpath_allocation_exit().
 466     return;
 467   }


 468 
 469   if (!use_precise) {
 470     // All card marks for a (non-array) instance are in one place:
 471     adr = obj;
 472   }
 473   // (Else it's an array (or unknown), and we want more precise card marks.)
 474   assert(adr != nullptr, "");
 475 
 476   IdealKit ideal(kit, true);
 477 
 478   Node* tls = __ thread(); // ThreadLocalStorage
 479 
 480   // Convert the pointer to an int prior to doing math on it
 481   Node* cast = __ CastPX(__ ctrl(), adr);
 482 
 483   Node* curr_ct_holder_offset = __ ConX(in_bytes(ShenandoahThreadLocalData::card_table_offset()));
 484   Node* curr_ct_holder_addr  = __ AddP(__ top(), tls, curr_ct_holder_offset);
 485   Node* curr_ct_base_addr = __ load( __ ctrl(), curr_ct_holder_addr, TypeRawPtr::NOTNULL, T_ADDRESS, Compile::AliasIdxRaw);
 486 
 487   // Divide by card size
 488   Node* card_offset = __ URShiftX( cast, __ ConI(CardTable::card_shift()) );








 489 
 490   // Combine card table base and card offset
 491   Node* card_adr = __ AddP(__ top(), curr_ct_base_addr, card_offset);

 492 
 493   // Get the alias_index for raw card-mark memory
 494   int adr_type = Compile::AliasIdxRaw;
 495   Node*   zero = __ ConI(0); // Dirty card value
 496 
 497   if (UseCondCardMark) {
 498     // The classic GC reference write barrier is typically implemented
 499     // as a store into the global card mark table.  Unfortunately
 500     // unconditional stores can result in false sharing and excessive
 501     // coherence traffic as well as false transactional aborts.
 502     // UseCondCardMark enables MP "polite" conditional card mark
 503     // stores.  In theory we could relax the load from ctrl() to
 504     // no_ctrl, but that doesn't buy much latitude.
 505     Node* card_val = __ load( __ ctrl(), card_adr, TypeInt::BYTE, T_BYTE, adr_type);
 506     __ if_then(card_val, BoolTest::ne, zero);
 507   }
 508 
 509   // Smash zero into card
 510   __ store(__ ctrl(), card_adr, zero, T_BYTE, adr_type, MemNode::unordered);
 511 
 512   if (UseCondCardMark) {
 513     __ end_if();

 514   }
 515 
 516   // Final sync IdealKit and GraphKit.
 517   kit->final_sync(ideal);













 518 }
 519 
 520 #undef __
 521 
 522 const TypeFunc* ShenandoahBarrierSetC2::_write_barrier_pre_Type              = nullptr;
 523 const TypeFunc* ShenandoahBarrierSetC2::_clone_barrier_Type                  = nullptr;
 524 const TypeFunc* ShenandoahBarrierSetC2::_load_reference_barrier_Type         = nullptr;
 525 
 526 inline const TypeFunc* ShenandoahBarrierSetC2::write_barrier_pre_Type() {
 527   assert(ShenandoahBarrierSetC2::_write_barrier_pre_Type != nullptr, "should be initialized");
 528   return ShenandoahBarrierSetC2::_write_barrier_pre_Type;
 529 }







 530 
 531 inline const TypeFunc* ShenandoahBarrierSetC2::clone_barrier_Type() {
 532   assert(ShenandoahBarrierSetC2::_clone_barrier_Type != nullptr, "should be initialized");
 533   return ShenandoahBarrierSetC2::_clone_barrier_Type;
 534 }


 535 
 536 const TypeFunc* ShenandoahBarrierSetC2::load_reference_barrier_Type() {
 537   assert(ShenandoahBarrierSetC2::_load_reference_barrier_Type != nullptr, "should be initialized");
 538   return ShenandoahBarrierSetC2::_load_reference_barrier_Type;
 539 }
 540 
 541 void ShenandoahBarrierSetC2::init() {
 542   ShenandoahBarrierSetC2::make_write_barrier_pre_Type();
 543   ShenandoahBarrierSetC2::make_clone_barrier_Type();
 544   ShenandoahBarrierSetC2::make_load_reference_barrier_Type();
 545 }

 546 
 547 void ShenandoahBarrierSetC2::make_write_barrier_pre_Type() {
 548   assert(ShenandoahBarrierSetC2::_write_barrier_pre_Type == nullptr, "should be");
 549   const Type **fields = TypeTuple::fields(1);
 550   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // original field value
 551   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields);
 552 
 553   // create result type (range)
 554   fields = TypeTuple::fields(0);
 555   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields);







 556 
 557   ShenandoahBarrierSetC2::_write_barrier_pre_Type = TypeFunc::make(domain, range);
 558 }
 559 
 560 void ShenandoahBarrierSetC2::make_clone_barrier_Type() {
 561   assert(ShenandoahBarrierSetC2::_clone_barrier_Type == nullptr, "should be");
 562   const Type **fields = TypeTuple::fields(1);
 563   fields[TypeFunc::Parms+0] = TypeOopPtr::NOTNULL; // src oop
 564   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields);
 565 
 566   // create result type (range)
 567   fields = TypeTuple::fields(0);
 568   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields);
 569 
 570   ShenandoahBarrierSetC2::_clone_barrier_Type = TypeFunc::make(domain, range);
 571 }
 572 
 573 void ShenandoahBarrierSetC2::make_load_reference_barrier_Type() {
 574   assert(ShenandoahBarrierSetC2::_load_reference_barrier_Type == nullptr, "should be");
 575   const Type **fields = TypeTuple::fields(2);
 576   fields[TypeFunc::Parms+0] = TypeOopPtr::BOTTOM; // original field value
 577   fields[TypeFunc::Parms+1] = TypeRawPtr::BOTTOM; // original load address
 578 
 579   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
 580 
 581   // create result type (range)
 582   fields = TypeTuple::fields(1);
 583   fields[TypeFunc::Parms+0] = TypeOopPtr::BOTTOM;
 584   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
 585 
 586   ShenandoahBarrierSetC2::_load_reference_barrier_Type = TypeFunc::make(domain, range);
 587 }
 588 
 589 Node* ShenandoahBarrierSetC2::store_at_resolved(C2Access& access, C2AccessValue& val) const {
 590   DecoratorSet decorators = access.decorators();
 591 
 592   const TypePtr* adr_type = access.addr().type();
 593   Node* adr = access.addr().node();

 594 
 595   bool no_keepalive = (decorators & AS_NO_KEEPALIVE) != 0;



 596 
 597   if (!access.is_oop()) {
 598     return BarrierSetC2::store_at_resolved(access, val);

 599   }
 600 
 601   if (no_keepalive) {
 602     // No keep-alive means no need for the pre-barrier.
 603     return BarrierSetC2::store_at_resolved(access, val);
 604   }
 605 
 606   if (access.is_parse_access()) {
 607     C2ParseAccess& parse_access = static_cast<C2ParseAccess&>(access);
 608     GraphKit* kit = parse_access.kit();

 609 
 610     uint adr_idx = kit->C->get_alias_index(adr_type);
 611     assert(adr_idx != Compile::AliasIdxTop, "use other store_to_memory factory" );
 612     shenandoah_write_barrier_pre(kit, true /* do_load */, /*kit->control(),*/ access.base(), adr, adr_idx, val.node(),
 613                                  static_cast<const TypeOopPtr*>(val.type()), nullptr /* pre_val */, access.type());
 614 
 615     Node* result = BarrierSetC2::store_at_resolved(access, val);




 616 
 617     if (ShenandoahCardBarrier) {
 618       const bool anonymous = (decorators & ON_UNKNOWN_OOP_REF) != 0;
 619       const bool is_array = (decorators & IS_ARRAY) != 0;
 620       const bool use_precise = is_array || anonymous;
 621       post_barrier(kit, kit->control(), access.raw_access(), access.base(),
 622                    adr, adr_idx, val.node(), access.type(), use_precise);
 623     }
 624     return result;
 625   } else {
 626     assert(access.is_opt_access(), "only for optimization passes");
 627     assert(((decorators & C2_TIGHTLY_COUPLED_ALLOC) != 0 || !ShenandoahSATBBarrier) && (decorators & C2_ARRAY_COPY) != 0, "unexpected caller of this code");
 628     return BarrierSetC2::store_at_resolved(access, val);
 629   }








 630 }
 631 
 632 Node* ShenandoahBarrierSetC2::load_at_resolved(C2Access& access, const Type* val_type) const {
 633   // 1: non-reference load, no additional barrier is needed
 634   if (!access.is_oop()) {
 635     return BarrierSetC2::load_at_resolved(access, val_type);






 636   }

 637 
 638   Node* load = BarrierSetC2::load_at_resolved(access, val_type);
 639   DecoratorSet decorators = access.decorators();
 640   BasicType type = access.type();
 641 
 642   // 2: apply LRB if needed
 643   if (ShenandoahBarrierSet::need_load_reference_barrier(decorators, type)) {
 644     load = new ShenandoahLoadReferenceBarrierNode(nullptr, load, decorators);
 645     if (access.is_parse_access()) {
 646       load = static_cast<C2ParseAccess &>(access).kit()->gvn().transform(load);
 647     } else {
 648       load = static_cast<C2OptAccess &>(access).gvn().transform(load);
 649     }
 650   }
 651 
 652   // 3: apply keep-alive barrier for java.lang.ref.Reference if needed
 653   if (ShenandoahBarrierSet::need_keep_alive_barrier(decorators, type)) {
 654     Node* top = Compile::current()->top();
 655     Node* adr = access.addr().node();
 656     Node* offset = adr->is_AddP() ? adr->in(AddPNode::Offset) : top;
 657     Node* obj = access.base();
 658 
 659     bool unknown = (decorators & ON_UNKNOWN_OOP_REF) != 0;
 660     bool on_weak_ref = (decorators & (ON_WEAK_OOP_REF | ON_PHANTOM_OOP_REF)) != 0;
 661     bool keep_alive = (decorators & AS_NO_KEEPALIVE) == 0;
 662 
 663     // If we are reading the value of the referent field of a Reference
 664     // object (either by using Unsafe directly or through reflection)
 665     // then, if SATB is enabled, we need to record the referent in an
 666     // SATB log buffer using the pre-barrier mechanism.
 667     // Also we need to add memory barrier to prevent commoning reads
 668     // from this field across safepoint since GC can change its value.
 669     if (!on_weak_ref || (unknown && (offset == top || obj == top)) || !keep_alive) {
 670       return load;
 671     }
 672 
 673     assert(access.is_parse_access(), "entry not supported at optimization time");
 674     C2ParseAccess& parse_access = static_cast<C2ParseAccess&>(access);
 675     GraphKit* kit = parse_access.kit();
 676     bool mismatched = (decorators & C2_MISMATCHED) != 0;
 677     bool is_unordered = (decorators & MO_UNORDERED) != 0;
 678     bool in_native = (decorators & IN_NATIVE) != 0;
 679     bool need_cpu_mem_bar = !is_unordered || mismatched || in_native;
 680 
 681     if (on_weak_ref) {
 682       // Use the pre-barrier to record the value in the referent field
 683       satb_write_barrier_pre(kit, false /* do_load */,
 684                              nullptr /* obj */, nullptr /* adr */, max_juint /* alias_idx */, nullptr /* val */, nullptr /* val_type */,
 685                              load /* pre_val */, T_OBJECT);
 686       // Add memory barrier to prevent commoning reads from this field
 687       // across safepoint since GC can change its value.
 688       kit->insert_mem_bar(Op_MemBarCPUOrder);
 689     } else if (unknown) {
 690       // We do not require a mem bar inside pre_barrier if need_mem_bar
 691       // is set: the barriers would be emitted by us.
 692       insert_pre_barrier(kit, obj, offset, load, !need_cpu_mem_bar);
 693     }
 694   }
 695 
 696   return load;
 697 }


 698 
 699 Node* ShenandoahBarrierSetC2::atomic_cmpxchg_val_at_resolved(C2AtomicParseAccess& access, Node* expected_val,
 700                                                              Node* new_val, const Type* value_type) const {
 701   GraphKit* kit = access.kit();
 702   if (access.is_oop()) {
 703     shenandoah_write_barrier_pre(kit, false /* do_load */,
 704                                  nullptr, nullptr, max_juint, nullptr, nullptr,
 705                                  expected_val /* pre_val */, T_OBJECT);
 706 
 707     MemNode::MemOrd mo = access.mem_node_mo();
 708     Node* mem = access.memory();
 709     Node* adr = access.addr().node();
 710     const TypePtr* adr_type = access.addr().type();
 711     Node* load_store = nullptr;
 712 
 713 #ifdef _LP64
 714     if (adr->bottom_type()->is_ptr_to_narrowoop()) {
 715       Node *newval_enc = kit->gvn().transform(new EncodePNode(new_val, new_val->bottom_type()->make_narrowoop()));
 716       Node *oldval_enc = kit->gvn().transform(new EncodePNode(expected_val, expected_val->bottom_type()->make_narrowoop()));
 717       if (ShenandoahCASBarrier) {
 718         load_store = kit->gvn().transform(new ShenandoahCompareAndExchangeNNode(kit->control(), mem, adr, newval_enc, oldval_enc, adr_type, value_type->make_narrowoop(), mo));
 719       } else {
 720         load_store = kit->gvn().transform(new CompareAndExchangeNNode(kit->control(), mem, adr, newval_enc, oldval_enc, adr_type, value_type->make_narrowoop(), mo));
 721       }
 722     } else
 723 #endif
 724     {
 725       if (ShenandoahCASBarrier) {
 726         load_store = kit->gvn().transform(new ShenandoahCompareAndExchangePNode(kit->control(), mem, adr, new_val, expected_val, adr_type, value_type->is_oopptr(), mo));
 727       } else {
 728         load_store = kit->gvn().transform(new CompareAndExchangePNode(kit->control(), mem, adr, new_val, expected_val, adr_type, value_type->is_oopptr(), mo));
 729       }
 730     }
 731 
 732     access.set_raw_access(load_store);
 733     pin_atomic_op(access);

 734 
 735 #ifdef _LP64
 736     if (adr->bottom_type()->is_ptr_to_narrowoop()) {
 737       load_store = kit->gvn().transform(new DecodeNNode(load_store, load_store->get_ptr_type()));
 738     }
 739 #endif
 740     load_store = kit->gvn().transform(new ShenandoahLoadReferenceBarrierNode(nullptr, load_store, access.decorators()));
 741     if (ShenandoahCardBarrier) {
 742       post_barrier(kit, kit->control(), access.raw_access(), access.base(),
 743                    access.addr().node(), access.alias_idx(), new_val, T_OBJECT, true);
 744     }
 745     return load_store;
 746   }
 747   return BarrierSetC2::atomic_cmpxchg_val_at_resolved(access, expected_val, new_val, value_type);
 748 }
 749 
 750 Node* ShenandoahBarrierSetC2::atomic_cmpxchg_bool_at_resolved(C2AtomicParseAccess& access, Node* expected_val,
 751                                                               Node* new_val, const Type* value_type) const {
 752   GraphKit* kit = access.kit();
 753   if (access.is_oop()) {
 754     shenandoah_write_barrier_pre(kit, false /* do_load */,
 755                                  nullptr, nullptr, max_juint, nullptr, nullptr,
 756                                  expected_val /* pre_val */, T_OBJECT);
 757     DecoratorSet decorators = access.decorators();
 758     MemNode::MemOrd mo = access.mem_node_mo();
 759     Node* mem = access.memory();
 760     bool is_weak_cas = (decorators & C2_WEAK_CMPXCHG) != 0;
 761     Node* load_store = nullptr;
 762     Node* adr = access.addr().node();
 763 #ifdef _LP64
 764     if (adr->bottom_type()->is_ptr_to_narrowoop()) {
 765       Node *newval_enc = kit->gvn().transform(new EncodePNode(new_val, new_val->bottom_type()->make_narrowoop()));
 766       Node *oldval_enc = kit->gvn().transform(new EncodePNode(expected_val, expected_val->bottom_type()->make_narrowoop()));
 767       if (ShenandoahCASBarrier) {
 768         if (is_weak_cas) {
 769           load_store = kit->gvn().transform(new ShenandoahWeakCompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
 770         } else {
 771           load_store = kit->gvn().transform(new ShenandoahCompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
 772         }
 773       } else {
 774         if (is_weak_cas) {
 775           load_store = kit->gvn().transform(new WeakCompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
 776         } else {
 777           load_store = kit->gvn().transform(new CompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
 778         }
 779       }
 780     } else
 781 #endif
 782     {
 783       if (ShenandoahCASBarrier) {
 784         if (is_weak_cas) {
 785           load_store = kit->gvn().transform(new ShenandoahWeakCompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
 786         } else {
 787           load_store = kit->gvn().transform(new ShenandoahCompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));




 788         }



 789       } else {
 790         if (is_weak_cas) {
 791           load_store = kit->gvn().transform(new WeakCompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
 792         } else {
 793           load_store = kit->gvn().transform(new CompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
 794         }
 795       }









 796     }
 797     access.set_raw_access(load_store);
 798     pin_atomic_op(access);
 799     if (ShenandoahCardBarrier) {
 800       post_barrier(kit, kit->control(), access.raw_access(), access.base(),
 801                    access.addr().node(), access.alias_idx(), new_val, T_OBJECT, true);
 802     }
 803     return load_store;
 804   }
 805   return BarrierSetC2::atomic_cmpxchg_bool_at_resolved(access, expected_val, new_val, value_type);
 806 }
 807 
 808 Node* ShenandoahBarrierSetC2::atomic_xchg_at_resolved(C2AtomicParseAccess& access, Node* val, const Type* value_type) const {
 809   GraphKit* kit = access.kit();
 810   Node* result = BarrierSetC2::atomic_xchg_at_resolved(access, val, value_type);
 811   if (access.is_oop()) {
 812     result = kit->gvn().transform(new ShenandoahLoadReferenceBarrierNode(nullptr, result, access.decorators()));
 813     shenandoah_write_barrier_pre(kit, false /* do_load */,
 814                                  nullptr, nullptr, max_juint, nullptr, nullptr,
 815                                  result /* pre_val */, T_OBJECT);
 816     if (ShenandoahCardBarrier) {
 817       post_barrier(kit, kit->control(), access.raw_access(), access.base(),
 818                    access.addr().node(), access.alias_idx(), val, T_OBJECT, true);
 819     }
 820   }
 821   return result;
 822 }

 823 
 824 
 825 bool ShenandoahBarrierSetC2::is_gc_pre_barrier_node(Node* node) const {
 826   return is_shenandoah_wb_pre_call(node);
 827 }
 828 
 829 bool ShenandoahBarrierSetC2::is_gc_barrier_node(Node* node) const {
 830   return (node->Opcode() == Op_ShenandoahLoadReferenceBarrier) ||
 831          is_shenandoah_lrb_call(node) ||
 832          is_shenandoah_wb_pre_call(node) ||
 833          is_shenandoah_clone_call(node);
 834 }
 835 
 836 Node* ShenandoahBarrierSetC2::step_over_gc_barrier(Node* c) const {
 837   if (c == nullptr) {
 838     return c;
 839   }
 840   if (c->Opcode() == Op_ShenandoahLoadReferenceBarrier) {
 841     return c->in(ShenandoahLoadReferenceBarrierNode::ValueIn);
 842   }
 843   return c;
 844 }
 845 
 846 bool ShenandoahBarrierSetC2::expand_barriers(Compile* C, PhaseIterGVN& igvn) const {
 847   return !ShenandoahBarrierC2Support::expand(C, igvn);
 848 }


 849 
 850 bool ShenandoahBarrierSetC2::optimize_loops(PhaseIdealLoop* phase, LoopOptsMode mode, VectorSet& visited, Node_Stack& nstack, Node_List& worklist) const {
 851   if (mode == LoopOptsShenandoahExpand) {
 852     assert(UseShenandoahGC, "only for shenandoah");
 853     ShenandoahBarrierC2Support::pin_and_expand(phase);
 854     return true;
 855   }
 856   return false;
 857 }
 858 
 859 bool ShenandoahBarrierSetC2::array_copy_requires_gc_barriers(bool tightly_coupled_alloc, BasicType type, bool is_clone, bool is_clone_instance, ArrayCopyPhase phase) const {
 860   bool is_oop = is_reference_type(type);
 861   if (!is_oop) {
 862     return false;
 863   }
 864   if (ShenandoahSATBBarrier && tightly_coupled_alloc) {
 865     if (phase == Optimization) {
 866       return false;
 867     }
 868     return !is_clone;
 869   }
 870   return true;
 871 }
 872 
 873 bool ShenandoahBarrierSetC2::clone_needs_barrier(Node* src, PhaseGVN& gvn) {
 874   const TypeOopPtr* src_type = gvn.type(src)->is_oopptr();
 875   if (src_type->isa_instptr() != nullptr) {
 876     ciInstanceKlass* ik = src_type->is_instptr()->instance_klass();
 877     if ((src_type->klass_is_exact() || !ik->has_subklass()) && !ik->has_injected_fields()) {
 878       if (ik->has_object_fields()) {
 879         return true;
 880       } else {
 881         if (!src_type->klass_is_exact()) {
 882           Compile::current()->dependencies()->assert_leaf_type(ik);
 883         }
 884       }
 885     } else {
 886       return true;
 887         }
 888   } else if (src_type->isa_aryptr()) {
 889     BasicType src_elem = src_type->isa_aryptr()->elem()->array_element_basic_type();
 890     if (is_reference_type(src_elem, true)) {
 891       return true;
 892     }
 893   } else {
 894     return true;
 895   }
 896   return false;
 897 }
 898 
 899 void ShenandoahBarrierSetC2::clone_at_expansion(PhaseMacroExpand* phase, ArrayCopyNode* ac) const {
 900   Node* ctrl = ac->in(TypeFunc::Control);
 901   Node* mem = ac->in(TypeFunc::Memory);
 902   Node* src_base = ac->in(ArrayCopyNode::Src);
 903   Node* src_offset = ac->in(ArrayCopyNode::SrcPos);
 904   Node* dest_base = ac->in(ArrayCopyNode::Dest);
 905   Node* dest_offset = ac->in(ArrayCopyNode::DestPos);
 906   Node* length = ac->in(ArrayCopyNode::Length);
 907 
 908   Node* src = phase->basic_plus_adr(src_base, src_offset);
 909   Node* dest = phase->basic_plus_adr(dest_base, dest_offset);
 910 
 911   if (ShenandoahCloneBarrier && clone_needs_barrier(src, phase->igvn())) {
 912     // Check if heap is has forwarded objects. If it does, we need to call into the special
 913     // routine that would fix up source references before we can continue.
 914 
 915     enum { _heap_stable = 1, _heap_unstable, PATH_LIMIT };
 916     Node* region = new RegionNode(PATH_LIMIT);
 917     Node* mem_phi = new PhiNode(region, Type::MEMORY, TypeRawPtr::BOTTOM);
 918 
 919     Node* thread = phase->transform_later(new ThreadLocalNode());
 920     Node* offset = phase->igvn().MakeConX(in_bytes(ShenandoahThreadLocalData::gc_state_offset()));
 921     Node* gc_state_addr = phase->transform_later(AddPNode::make_off_heap(thread, offset));
 922 
 923     uint gc_state_idx = Compile::AliasIdxRaw;
 924     const TypePtr* gc_state_adr_type = nullptr; // debug-mode-only argument
 925     DEBUG_ONLY(gc_state_adr_type = phase->C->get_adr_type(gc_state_idx));
 926 
 927     Node* gc_state    = phase->transform_later(new LoadBNode(ctrl, mem, gc_state_addr, gc_state_adr_type, TypeInt::BYTE, MemNode::unordered));
 928     Node* stable_and  = phase->transform_later(new AndINode(gc_state, phase->igvn().intcon(ShenandoahHeap::HAS_FORWARDED)));
 929     Node* stable_cmp  = phase->transform_later(new CmpINode(stable_and, phase->igvn().zerocon(T_INT)));
 930     Node* stable_test = phase->transform_later(new BoolNode(stable_cmp, BoolTest::ne));
 931 
 932     IfNode* stable_iff  = phase->transform_later(new IfNode(ctrl, stable_test, PROB_UNLIKELY(0.999), COUNT_UNKNOWN))->as_If();
 933     Node* stable_ctrl   = phase->transform_later(new IfFalseNode(stable_iff));
 934     Node* unstable_ctrl = phase->transform_later(new IfTrueNode(stable_iff));
 935 
 936     // Heap is stable, no need to do anything additional
 937     region->init_req(_heap_stable, stable_ctrl);
 938     mem_phi->init_req(_heap_stable, mem);
 939 
 940     // Heap is unstable, call into clone barrier stub
 941     Node* call = phase->make_leaf_call(unstable_ctrl, mem,
 942                                        ShenandoahBarrierSetC2::clone_barrier_Type(),
 943                                        CAST_FROM_FN_PTR(address, ShenandoahRuntime::clone_barrier),
 944                                        "shenandoah_clone",
 945                                        TypeRawPtr::BOTTOM,
 946                                        src_base);
 947     call = phase->transform_later(call);
 948 
 949     ctrl = phase->transform_later(new ProjNode(call, TypeFunc::Control));
 950     mem = phase->transform_later(new ProjNode(call, TypeFunc::Memory));
 951     region->init_req(_heap_unstable, ctrl);
 952     mem_phi->init_req(_heap_unstable, mem);
 953 
 954     // Wire up the actual arraycopy stub now
 955     ctrl = phase->transform_later(region);
 956     mem = phase->transform_later(mem_phi);
 957 
 958     const char* name = "arraycopy";
 959     call = phase->make_leaf_call(ctrl, mem,
 960                                  OptoRuntime::fast_arraycopy_Type(),
 961                                  phase->basictype2arraycopy(T_LONG, nullptr, nullptr, true, name, true),
 962                                  name, TypeRawPtr::BOTTOM,
 963                                  src, dest, length
 964                                  LP64_ONLY(COMMA phase->top()));
 965     call = phase->transform_later(call);
 966 
 967     // Hook up the whole thing into the graph
 968     phase->igvn().replace_node(ac, call);
 969   } else {
 970     BarrierSetC2::clone_at_expansion(phase, ac);
 971   }
 972 }
 973 
 974 
 975 // Support for macro expanded GC barriers
 976 void ShenandoahBarrierSetC2::register_potential_barrier_node(Node* node) const {
 977   if (node->Opcode() == Op_ShenandoahLoadReferenceBarrier) {
 978     state()->add_load_reference_barrier((ShenandoahLoadReferenceBarrierNode*) node);
 979   }
 980 }
 981 
 982 void ShenandoahBarrierSetC2::unregister_potential_barrier_node(Node* node) const {
 983   if (node->Opcode() == Op_ShenandoahLoadReferenceBarrier) {
 984     state()->remove_load_reference_barrier((ShenandoahLoadReferenceBarrierNode*) node);
 985   }
 986 }
 987 
 988 void ShenandoahBarrierSetC2::eliminate_gc_barrier(PhaseMacroExpand* macro, Node* node) const {
 989   if (is_shenandoah_wb_pre_call(node)) {
 990     shenandoah_eliminate_wb_pre(node, &macro->igvn());
 991   }
 992   if (ShenandoahCardBarrier && node->Opcode() == Op_CastP2X) {
 993     Node* shift = node->unique_out();
 994     Node* addp = shift->unique_out();
 995     for (DUIterator_Last jmin, j = addp->last_outs(jmin); j >= jmin; --j) {
 996       Node* mem = addp->last_out(j);
 997       if (UseCondCardMark && mem->is_Load()) {
 998         assert(mem->Opcode() == Op_LoadB, "unexpected code shape");
 999         // The load is checking if the card has been written so
1000         // replace it with zero to fold the test.
1001         macro->replace_node(mem, macro->intcon(0));
1002         continue;
1003       }
1004       assert(mem->is_Store(), "store required");
1005       macro->replace_node(mem, mem->in(MemNode::Memory));
1006     }
1007   }
1008 }
1009 
1010 void ShenandoahBarrierSetC2::shenandoah_eliminate_wb_pre(Node* call, PhaseIterGVN* igvn) const {
1011   assert(UseShenandoahGC && is_shenandoah_wb_pre_call(call), "");
1012   Node* c = call->as_Call()->proj_out(TypeFunc::Control);
1013   c = c->unique_ctrl_out();
1014   assert(c->is_Region() && c->req() == 3, "where's the pre barrier control flow?");
1015   c = c->unique_ctrl_out();
1016   assert(c->is_Region() && c->req() == 3, "where's the pre barrier control flow?");
1017   Node* iff = c->in(1)->is_IfProj() ? c->in(1)->in(0) : c->in(2)->in(0);
1018   assert(iff->is_If(), "expect test");
1019   if (!is_shenandoah_marking_if(igvn, iff)) {
1020     c = c->unique_ctrl_out();
1021     assert(c->is_Region() && c->req() == 3, "where's the pre barrier control flow?");
1022     iff = c->in(1)->is_IfProj() ? c->in(1)->in(0) : c->in(2)->in(0);
1023     assert(is_shenandoah_marking_if(igvn, iff), "expect marking test");
1024   }
1025   Node* cmpx = iff->in(1)->in(1);
1026   igvn->replace_node(cmpx, igvn->makecon(TypeInt::CC_EQ));
1027   igvn->rehash_node_delayed(call);
1028   call->del_req(call->req()-1);
1029 }
1030 
1031 void ShenandoahBarrierSetC2::enqueue_useful_gc_barrier(PhaseIterGVN* igvn, Node* node) const {
1032   if (node->Opcode() == Op_AddP && ShenandoahBarrierSetC2::has_only_shenandoah_wb_pre_uses(node)) {
1033     igvn->add_users_to_worklist(node);
1034   }
1035 }
1036 
1037 void ShenandoahBarrierSetC2::eliminate_useless_gc_barriers(Unique_Node_List &useful, Compile* C) const {
1038   for (uint i = 0; i < useful.size(); i++) {
1039     Node* n = useful.at(i);
1040     if (n->Opcode() == Op_AddP && ShenandoahBarrierSetC2::has_only_shenandoah_wb_pre_uses(n)) {
1041       for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
1042         C->record_for_igvn(n->fast_out(i));
1043       }
1044     }
1045   }
1046 
1047   for (int i = state()->load_reference_barriers_count() - 1; i >= 0; i--) {
1048     ShenandoahLoadReferenceBarrierNode* n = state()->load_reference_barrier(i);
1049     if (!useful.member(n)) {
1050       state()->remove_load_reference_barrier(n);
1051     }
1052   }
1053 }
1054 
1055 void* ShenandoahBarrierSetC2::create_barrier_state(Arena* comp_arena) const {
1056   return new(comp_arena) ShenandoahBarrierSetC2State(comp_arena);

1057 }
1058 
1059 ShenandoahBarrierSetC2State* ShenandoahBarrierSetC2::state() const {
1060   return reinterpret_cast<ShenandoahBarrierSetC2State*>(Compile::current()->barrier_set_state());


1061 }
1062 
1063 // If the BarrierSetC2 state has kept macro nodes in its compilation unit state to be
1064 // expanded later, then now is the time to do so.
1065 bool ShenandoahBarrierSetC2::expand_macro_nodes(PhaseMacroExpand* macro) const { return false; }
1066 
1067 #ifdef ASSERT
1068 void ShenandoahBarrierSetC2::verify_gc_barriers(Compile* compile, CompilePhase phase) const {
1069   if (ShenandoahVerifyOptoBarriers && phase == BarrierSetC2::BeforeMacroExpand) {
1070     ShenandoahBarrierC2Support::verify(Compile::current()->root());
1071   } else if (phase == BarrierSetC2::BeforeCodeGen) {
1072     // Verify Shenandoah pre-barriers
1073     const int gc_state_offset = in_bytes(ShenandoahThreadLocalData::gc_state_offset());
1074 
1075     Unique_Node_List visited;
1076     Node_List worklist;
1077     // We're going to walk control flow backwards starting from the Root
1078     worklist.push(compile->root());
1079     while (worklist.size() > 0) {
1080       Node *x = worklist.pop();
1081       if (x == nullptr || x == compile->top()) {
1082         continue;
1083       }
1084 
1085       if (visited.member(x)) {
1086         continue;
1087       } else {
1088         visited.push(x);
1089       }
1090 
1091       if (x->is_Region()) {
1092         for (uint i = 1; i < x->req(); i++) {
1093           worklist.push(x->in(i));











1094         }
1095       } else {
1096         worklist.push(x->in(0));
1097         // We are looking for the pattern:
1098         //                            /->ThreadLocal
1099         // If->Bool->CmpI->LoadB->AddP->ConL(marking_offset)
1100         //              \->ConI(0)
1101         // We want to verify that the If and the LoadB have the same control
1102         // See GraphKit::g1_write_barrier_pre()
1103         if (x->is_If()) {
1104           IfNode *iff = x->as_If();
1105           if (iff->in(1)->is_Bool() && iff->in(1)->in(1)->is_Cmp()) {
1106             CmpNode *cmp = iff->in(1)->in(1)->as_Cmp();
1107             if (cmp->Opcode() == Op_CmpI && cmp->in(2)->is_Con() && cmp->in(2)->bottom_type()->is_int()->get_con() == 0
1108                 && cmp->in(1)->is_Load()) {
1109               LoadNode *load = cmp->in(1)->as_Load();
1110               if (load->Opcode() == Op_LoadB && load->in(2)->is_AddP() && load->in(2)->in(2)->Opcode() == Op_ThreadLocal
1111                   && load->in(2)->in(3)->is_Con()
1112                   && load->in(2)->in(3)->bottom_type()->is_intptr_t()->get_con() == gc_state_offset) {
1113 
1114                 Node *if_ctrl = iff->in(0);
1115                 Node *load_ctrl = load->in(0);
1116 
1117                 if (if_ctrl != load_ctrl) {
1118                   // Skip possible CProj->NeverBranch in infinite loops
1119                   if ((if_ctrl->is_Proj() && if_ctrl->Opcode() == Op_CProj)
1120                       && if_ctrl->in(0)->is_NeverBranch()) {
1121                     if_ctrl = if_ctrl->in(0)->in(0);
1122                   }
1123                 }
1124                 assert(load_ctrl != nullptr && if_ctrl == load_ctrl, "controls must match");
1125               }
1126             }
1127           }
1128         }
1129       }

1130     }
1131   }
1132 }
1133 #endif
1134 
1135 Node* ShenandoahBarrierSetC2::ideal_node(PhaseGVN* phase, Node* n, bool can_reshape) const {
1136   if (is_shenandoah_wb_pre_call(n)) {
1137     uint cnt = ShenandoahBarrierSetC2::write_barrier_pre_Type()->domain()->cnt();
1138     if (n->req() > cnt) {
1139       Node* addp = n->in(cnt);
1140       if (has_only_shenandoah_wb_pre_uses(addp)) {
1141         n->del_req(cnt);
1142         if (can_reshape) {
1143           phase->is_IterGVN()->_worklist.push(addp);
1144         }
1145         return n;
1146       }
1147     }
1148   }
1149   if (n->Opcode() == Op_CmpP) {
1150     Node* in1 = n->in(1);
1151     Node* in2 = n->in(2);
1152 
1153     // If one input is null, then step over the strong LRB barriers on the other input
1154     if (in1->bottom_type() == TypePtr::NULL_PTR &&
1155         !((in2->Opcode() == Op_ShenandoahLoadReferenceBarrier) &&
1156           !ShenandoahBarrierSet::is_strong_access(((ShenandoahLoadReferenceBarrierNode*)in2)->decorators()))) {
1157       in2 = step_over_gc_barrier(in2);
1158     }
1159     if (in2->bottom_type() == TypePtr::NULL_PTR &&
1160         !((in1->Opcode() == Op_ShenandoahLoadReferenceBarrier) &&
1161           !ShenandoahBarrierSet::is_strong_access(((ShenandoahLoadReferenceBarrierNode*)in1)->decorators()))) {
1162       in1 = step_over_gc_barrier(in1);
1163     }
1164 
1165     if (in1 != n->in(1)) {
1166       n->set_req_X(1, in1, phase);
1167       assert(in2 == n->in(2), "only one change");
1168       return n;
1169     }
1170     if (in2 != n->in(2)) {
1171       n->set_req_X(2, in2, phase);
1172       return n;
1173     }
1174   } else if (can_reshape &&
1175              n->Opcode() == Op_If &&
1176              ShenandoahBarrierC2Support::is_heap_stable_test(n) &&
1177              n->in(0) != nullptr &&
1178              n->outcnt() == 2) {
1179     Node* dom = n->in(0);
1180     Node* prev_dom = n;
1181     int op = n->Opcode();
1182     int dist = 16;
1183     // Search up the dominator tree for another heap stable test
1184     while (dom->Opcode() != op    ||  // Not same opcode?
1185            !ShenandoahBarrierC2Support::is_heap_stable_test(dom) ||  // Not same input 1?
1186            prev_dom->in(0) != dom) {  // One path of test does not dominate?
1187       if (dist < 0) return nullptr;
1188 
1189       dist--;
1190       prev_dom = dom;
1191       dom = IfNode::up_one_dom(dom);
1192       if (!dom) return nullptr;
1193     }
1194 
1195     // Check that we did not follow a loop back to ourselves
1196     if (n == dom) {
1197       return nullptr;
1198     }
1199 
1200     return n->as_If()->dominated_by(prev_dom, phase->is_IterGVN(), false);
1201   }
1202 
1203   return nullptr;
1204 }
1205 
1206 bool ShenandoahBarrierSetC2::has_only_shenandoah_wb_pre_uses(Node* n) {
1207   for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
1208     Node* u = n->fast_out(i);
1209     if (!is_shenandoah_wb_pre_call(u)) {
1210       return false;
1211     }
1212   }
1213   return n->outcnt() > 0;
1214 }
1215 
1216 bool ShenandoahBarrierSetC2::final_graph_reshaping(Compile* compile, Node* n, uint opcode, Unique_Node_List& dead_nodes) const {
1217   switch (opcode) {
1218     case Op_CallLeaf:
1219     case Op_CallLeafNoFP: {
1220       assert (n->is_Call(), "");
1221       CallNode *call = n->as_Call();
1222       if (ShenandoahBarrierSetC2::is_shenandoah_wb_pre_call(call)) {
1223         uint cnt = ShenandoahBarrierSetC2::write_barrier_pre_Type()->domain()->cnt();
1224         if (call->req() > cnt) {
1225           assert(call->req() == cnt + 1, "only one extra input");
1226           Node *addp = call->in(cnt);
1227           assert(!ShenandoahBarrierSetC2::has_only_shenandoah_wb_pre_uses(addp), "useless address computation?");
1228           call->del_req(cnt);
1229         }
1230       }
1231       return false;
1232     }
1233     case Op_ShenandoahCompareAndSwapP:
1234     case Op_ShenandoahCompareAndSwapN:
1235     case Op_ShenandoahWeakCompareAndSwapN:
1236     case Op_ShenandoahWeakCompareAndSwapP:
1237     case Op_ShenandoahCompareAndExchangeP:
1238     case Op_ShenandoahCompareAndExchangeN:
1239       return true;
1240     case Op_ShenandoahLoadReferenceBarrier:
1241       assert(false, "should have been expanded already");
1242       return true;
1243     default:
1244       return false;
1245   }
1246 }
1247 
1248 bool ShenandoahBarrierSetC2::escape_add_to_con_graph(ConnectionGraph* conn_graph, PhaseGVN* gvn, Unique_Node_List* delayed_worklist, Node* n, uint opcode) const {
1249   switch (opcode) {
1250     case Op_ShenandoahCompareAndExchangeP:
1251     case Op_ShenandoahCompareAndExchangeN:
1252       conn_graph->add_objload_to_connection_graph(n, delayed_worklist);
1253       // fallthrough
1254     case Op_ShenandoahWeakCompareAndSwapP:
1255     case Op_ShenandoahWeakCompareAndSwapN:
1256     case Op_ShenandoahCompareAndSwapP:
1257     case Op_ShenandoahCompareAndSwapN:
1258       conn_graph->add_to_congraph_unsafe_access(n, opcode, delayed_worklist);
1259       return true;
1260     case Op_StoreP: {
1261       Node* adr = n->in(MemNode::Address);
1262       const Type* adr_type = gvn->type(adr);
1263       // Pointer stores in Shenandoah barriers looks like unsafe access.
1264       // Ignore such stores to be able scalar replace non-escaping
1265       // allocations.
1266       if (adr_type->isa_rawptr() && adr->is_AddP()) {
1267         Node* base = conn_graph->get_addp_base(adr);
1268         if (base->Opcode() == Op_LoadP &&
1269           base->in(MemNode::Address)->is_AddP()) {
1270           adr = base->in(MemNode::Address);
1271           Node* tls = conn_graph->get_addp_base(adr);
1272           if (tls->Opcode() == Op_ThreadLocal) {
1273              int offs = (int) gvn->find_intptr_t_con(adr->in(AddPNode::Offset), Type::OffsetBot);
1274              const int buf_offset = in_bytes(ShenandoahThreadLocalData::satb_mark_queue_buffer_offset());
1275              if (offs == buf_offset) {
1276                return true; // Pre barrier previous oop value store.
1277              }
1278           }
1279         }
1280       }
1281       return false;
1282     }
1283     case Op_ShenandoahLoadReferenceBarrier:
1284       conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, n->in(ShenandoahLoadReferenceBarrierNode::ValueIn), delayed_worklist);
1285       return true;
1286     default:
1287       // Nothing
1288       break;
1289   }
1290   return false;
1291 }
1292 
1293 bool ShenandoahBarrierSetC2::escape_add_final_edges(ConnectionGraph* conn_graph, PhaseGVN* gvn, Node* n, uint opcode) const {
1294   switch (opcode) {
1295     case Op_ShenandoahCompareAndExchangeP:
1296     case Op_ShenandoahCompareAndExchangeN: {
1297       Node *adr = n->in(MemNode::Address);
1298       conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, adr, nullptr);
1299       // fallthrough
1300     }
1301     case Op_ShenandoahCompareAndSwapP:
1302     case Op_ShenandoahCompareAndSwapN:
1303     case Op_ShenandoahWeakCompareAndSwapP:
1304     case Op_ShenandoahWeakCompareAndSwapN:
1305       return conn_graph->add_final_edges_unsafe_access(n, opcode);
1306     case Op_ShenandoahLoadReferenceBarrier:
1307       conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, n->in(ShenandoahLoadReferenceBarrierNode::ValueIn), nullptr);
1308       return true;
1309     default:
1310       // Nothing
1311       break;
1312   }
1313   return false;
1314 }
1315 
1316 bool ShenandoahBarrierSetC2::escape_has_out_with_unsafe_object(Node* n) const {
1317   return n->has_out_with(Op_ShenandoahCompareAndExchangeP) || n->has_out_with(Op_ShenandoahCompareAndExchangeN) ||
1318          n->has_out_with(Op_ShenandoahCompareAndSwapP, Op_ShenandoahCompareAndSwapN, Op_ShenandoahWeakCompareAndSwapP, Op_ShenandoahWeakCompareAndSwapN);
1319 


1320 }
1321 
1322 bool ShenandoahBarrierSetC2::matcher_find_shared_post_visit(Matcher* matcher, Node* n, uint opcode) const {
1323   switch (opcode) {
1324     case Op_ShenandoahCompareAndExchangeP:
1325     case Op_ShenandoahCompareAndExchangeN:
1326     case Op_ShenandoahWeakCompareAndSwapP:
1327     case Op_ShenandoahWeakCompareAndSwapN:
1328     case Op_ShenandoahCompareAndSwapP:
1329     case Op_ShenandoahCompareAndSwapN: {   // Convert trinary to binary-tree
1330       Node* newval = n->in(MemNode::ValueIn);
1331       Node* oldval = n->in(LoadStoreConditionalNode::ExpectedIn);
1332       Node* pair = new BinaryNode(oldval, newval);
1333       n->set_req(MemNode::ValueIn,pair);
1334       n->del_req(LoadStoreConditionalNode::ExpectedIn);
1335       return true;
1336     }
1337     default:
1338       break;
1339   }
1340   return false;
1341 }
1342 
1343 bool ShenandoahBarrierSetC2::matcher_is_store_load_barrier(Node* x, uint xop) const {
1344   return xop == Op_ShenandoahCompareAndExchangeP ||
1345          xop == Op_ShenandoahCompareAndExchangeN ||
1346          xop == Op_ShenandoahWeakCompareAndSwapP ||
1347          xop == Op_ShenandoahWeakCompareAndSwapN ||
1348          xop == Op_ShenandoahCompareAndSwapN ||
1349          xop == Op_ShenandoahCompareAndSwapP;
1350 }

   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 "classfile/javaClasses.inline.hpp"
  27 #include "gc/shared/barrierSet.hpp"
  28 #include "gc/shenandoah/c2/shenandoahBarrierSetC2.hpp"

  29 #include "gc/shenandoah/heuristics/shenandoahHeuristics.hpp"


  30 #include "gc/shenandoah/shenandoahForwarding.hpp"
  31 #include "gc/shenandoah/shenandoahHeap.hpp"
  32 #include "gc/shenandoah/shenandoahRuntime.hpp"
  33 #include "gc/shenandoah/shenandoahThreadLocalData.hpp"
  34 #include "opto/arraycopynode.hpp"
  35 #include "opto/escape.hpp"
  36 #include "opto/graphKit.hpp"
  37 #include "opto/idealKit.hpp"
  38 #include "opto/macro.hpp"

  39 #include "opto/narrowptrnode.hpp"
  40 #include "opto/output.hpp"
  41 #include "opto/rootnode.hpp"
  42 #include "opto/runtime.hpp"
  43 
  44 ShenandoahBarrierSetC2* ShenandoahBarrierSetC2::bsc2() {
  45   return reinterpret_cast<ShenandoahBarrierSetC2*>(BarrierSet::barrier_set()->barrier_set_c2());
  46 }
  47 
  48 ShenandoahBarrierSetC2State::ShenandoahBarrierSetC2State(Arena* comp_arena) :
  49     BarrierSetC2State(comp_arena),
  50     _stubs(new (comp_arena) GrowableArray<ShenandoahBarrierStubC2*>(comp_arena, 8,  0, nullptr)),
  51     _trampoline_stubs_count(0),
  52     _stubs_start_offset(0) {
  53 }
  54 
  55 static void set_barrier_data(C2Access& access, bool load, bool store) {
  56   if (!access.is_oop()) {
  57     return;
  58   }



  59 
  60   DecoratorSet decorators = access.decorators();
  61   bool tightly_coupled = (decorators & C2_TIGHTLY_COUPLED_ALLOC) != 0;
  62   bool in_heap = (decorators & IN_HEAP) != 0;
  63   bool on_weak = (decorators & ON_WEAK_OOP_REF) != 0;
  64   bool on_phantom = (decorators & ON_PHANTOM_OOP_REF) != 0;
  65 
  66   if (tightly_coupled) {
  67     access.set_barrier_data(ShenandoahBitElided);
  68     return;
  69   }



  70 
  71   uint8_t barrier_data = 0;




  72 
  73   if (load) {
  74     if (ShenandoahLoadRefBarrier) {
  75       if (on_phantom) {
  76         barrier_data |= ShenandoahBitPhantom;
  77       } else if (on_weak) {
  78         barrier_data |= ShenandoahBitWeak;
  79       } else {
  80         barrier_data |= ShenandoahBitStrong;
  81       }
  82     }
  83   }
  84 
  85   if (store) {
  86     if (ShenandoahSATBBarrier) {
  87       barrier_data |= ShenandoahBitKeepAlive;
  88     }
  89     if (ShenandoahCardBarrier && in_heap) {
  90       barrier_data |= ShenandoahBitCardMark;
  91     }
  92   }
  93 
  94   if (!in_heap) {
  95     barrier_data |= ShenandoahBitNative;
  96   }












  97 
  98   access.set_barrier_data(barrier_data);
  99 }


 100 
 101 Node* ShenandoahBarrierSetC2::load_at_resolved(C2Access& access, const Type* val_type) const {
 102   // 1: Non-reference load, no additional barrier is needed
 103   if (!access.is_oop()) {
 104     return BarrierSetC2::load_at_resolved(access, val_type);
 105   }









 106 
 107   // 2. Set barrier data for load
 108   set_barrier_data(access, /* load = */ true, /* store = */ false);
























 109 
 110   // 3. Correction: If we are reading the value of the referent field of
 111   // a Reference object, we need to record the referent resurrection.
 112   DecoratorSet decorators = access.decorators();
 113   bool on_weak = (decorators & ON_WEAK_OOP_REF) != 0;
 114   bool on_phantom = (decorators & ON_PHANTOM_OOP_REF) != 0;
 115   bool no_keepalive = (decorators & AS_NO_KEEPALIVE) != 0;
 116   bool needs_keepalive = ((on_weak || on_phantom) && !no_keepalive);
 117   if (needs_keepalive) {
 118     uint8_t barriers = access.barrier_data() | (ShenandoahSATBBarrier ? ShenandoahBitKeepAlive : 0);
 119     access.set_barrier_data(barriers);
 120   }
 121 
 122   return BarrierSetC2::load_at_resolved(access, val_type);
 123 }
 124 
 125 Node* ShenandoahBarrierSetC2::store_at_resolved(C2Access& access, C2AccessValue& val) const {
 126   // 1: Non-reference store, no additional barrier is needed
 127   if (!access.is_oop()) {
 128     return BarrierSetC2::store_at_resolved(access, val);




























 129   }

 130 
 131   // 2. Set barrier data for store
 132   set_barrier_data(access, /* load = */ false, /* store = */ true);
 133 
 134   // 3. Correction: avoid keep-alive barriers that should not do keep-alive.
 135   DecoratorSet decorators = access.decorators();
 136   bool no_keepalive = (decorators & AS_NO_KEEPALIVE) != 0;
 137   if (no_keepalive) {
 138     access.set_barrier_data(access.barrier_data() & ~ShenandoahBitKeepAlive);
 139   }
 140 
 141   return BarrierSetC2::store_at_resolved(access, val);
 142 }

 143 
 144 Node* ShenandoahBarrierSetC2::atomic_cmpxchg_val_at_resolved(C2AtomicParseAccess& access, Node* expected_val,
 145                                                              Node* new_val, const Type* value_type) const {
 146   set_barrier_data(access, /* load = */ true, /* store = */ true);
 147   return BarrierSetC2::atomic_cmpxchg_val_at_resolved(access, expected_val, new_val, value_type);
 148 }
 149 
 150 Node* ShenandoahBarrierSetC2::atomic_cmpxchg_bool_at_resolved(C2AtomicParseAccess& access, Node* expected_val,
 151                                                               Node* new_val, const Type* value_type) const {
 152   set_barrier_data(access, /* load = */ true, /* store = */ true);
 153   return BarrierSetC2::atomic_cmpxchg_bool_at_resolved(access, expected_val, new_val, value_type);
 154 }
 155 
 156 Node* ShenandoahBarrierSetC2::atomic_xchg_at_resolved(C2AtomicParseAccess& access, Node* val, const Type* value_type) const {
 157   set_barrier_data(access, /* load = */ true, /* store = */ true);
 158   return BarrierSetC2::atomic_xchg_at_resolved(access, val, value_type);
 159 }
 160 
 161 void ShenandoahBarrierSetC2::refine_store(const Node* n) {
 162   if (!ShenandoahElideBarriers) {
 163     return;
 164   }


 165 
 166   MemNode* store = n->as_Store();
 167   const Node* newval = n->in(MemNode::ValueIn);
 168   assert(newval != nullptr, "");
 169   const Type* newval_bottom = newval->bottom_type();
 170   TypePtr::PTR newval_type = newval_bottom->make_ptr()->ptr();
 171   uint8_t barrier_data = store->barrier_data();
 172   if (!newval_bottom->isa_oopptr() &&
 173       !newval_bottom->isa_narrowoop() &&
 174       newval_type != TypePtr::Null) {
 175     // newval is neither an OOP nor null, so there is no barrier to refine.
 176     assert(barrier_data == 0, "non-OOP stores should have no barrier data");
 177     return;
 178   }
 179   if (barrier_data == 0) {
 180     // No barrier to refine.
 181     return;
 182   }
 183   if (newval_type == TypePtr::Null) {
 184     barrier_data &= ~ShenandoahBitNotNull;
 185     // Simply elide post-barrier if writing null.
 186     barrier_data &= ~ShenandoahBitCardMark;
 187   } else if (newval_type == TypePtr::NotNull) {
 188     barrier_data |= ShenandoahBitNotNull;
 189   }
 190   store->set_barrier_data(barrier_data);
 191 }
 192 
 193 bool ShenandoahBarrierSetC2::can_remove_load_barrier(Node* n) {
 194   // Check if all outs feed into nodes that do not expose the oops to the rest
 195   // of the runtime system. In this case, we can elide the LRB barrier. We bail
 196   // out with false at the first sight of trouble.
 197 
 198   ResourceMark rm;
 199   VectorSet visited;
 200   Node_List worklist;
 201   worklist.push(n);
 202 
 203   while (worklist.size() > 0) {
 204     Node* n = worklist.pop();
 205     if (visited.test_set(n->_idx)) {
 206       continue;
 207     }
 208 
 209     for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
 210       Node* out = n->fast_out(i);
 211       switch (out->Opcode()) {
 212         case Op_CmpN: {
 213           if (out->in(1) == n &&
 214               out->in(2)->Opcode() == Op_ConN &&
 215               out->in(2)->get_narrowcon() == 0) {
 216             // Null check, no oop is exposed.
 217             break;
 218           } else {
 219             return false;
 220           }
 221         }
 222         case Op_CmpP: {
 223           if (out->in(1) == n &&
 224               out->in(2)->Opcode() == Op_ConP &&
 225               out->in(2)->get_ptr() == 0) {
 226             // Null check, no oop is exposed.
 227             break;
 228           } else {
 229             return false;
 230           }
 231         }
 232         case Op_DecodeN:
 233         case Op_CastPP: {
 234           // Check if any other outs are escaping.
 235           worklist.push(out);
 236           break;
 237         }
 238         case Op_CallStaticJava: {
 239           if (out->as_CallStaticJava()->is_uncommon_trap()) {
 240             // Local feeds into uncommon trap. Deopt machinery handles barriers itself.
 241             break;
 242           } else {
 243             return false;
 244           }
 245         }
 246 
 247         default: {
 248           // Paranoidly distrust any other nodes.
 249           // TODO: Check if there are other patterns that benefit from this elision.
 250           return false;
 251         }
 252       }
 253     }
 254   }
 255 
 256   // Nothing troublesome found.
 257   return true;
 258 }






 259 
 260 void ShenandoahBarrierSetC2::refine_load(Node* n) {
 261   if (!ShenandoahElideBarriers) {
 262     return;
 263   }

 264 
 265   MemNode* load = n->as_Load();
 266 
 267   uint8_t barrier_data = load->barrier_data();





 268 
 269   // Do not touch weak LRBs at all: they are responsible for shielding from
 270   // Reference.referent resurrection.
 271   if ((barrier_data & (ShenandoahBitWeak | ShenandoahBitPhantom)) != 0) {
 272     return;
 273   }
 274 
 275   if (can_remove_load_barrier(n)) {
 276     barrier_data &= ~ShenandoahBitStrong;
 277     barrier_data |= ShenandoahBitElided;


 278   }

 279 
 280   load->set_barrier_data(barrier_data);


 281 }
 282 
 283 bool ShenandoahBarrierSetC2::expand_barriers(Compile* C, PhaseIterGVN& igvn) const {
 284   ResourceMark rm;
 285   VectorSet visited;
 286   Node_List worklist;
 287   worklist.push(C->root());
 288   while (worklist.size() > 0) {
 289     Node* n = worklist.pop();
 290     if (visited.test_set(n->_idx)) {
 291       continue;
 292     }
 293     switch(n->Opcode()) {
 294       case Op_StoreP:
 295       case Op_StoreN: {
 296         refine_store(n);
 297         break;
 298       }
 299       case Op_LoadN:
 300       case Op_LoadP: {
 301         refine_load(n);
 302         break;
 303       }
 304     }
 305 
 306     for (uint j = 0; j < n->req(); j++) {
 307       Node* in = n->in(j);
 308       if (in != nullptr) {
 309         worklist.push(in);
 310       }
 311     }
 312   }
 313   return false;







 314 }
 315 
 316 // Support for macro expanded GC barriers
 317 void ShenandoahBarrierSetC2::eliminate_gc_barrier_data(Node* node) const {
 318   if (node->is_LoadStore()) {
 319     LoadStoreNode* loadstore = node->as_LoadStore();
 320     loadstore->set_barrier_data(0);
 321   } else if (node->is_Mem()) {
 322     MemNode* mem = node->as_Mem();
 323     mem->set_barrier_data(0);
 324   }
 325 }
 326 
 327 // If there are no real barrier flags on the node, strip away additional fluff.
 328 // Matcher does not care about this, and we would like to avoid invoking "barrier_data() != 0"
 329 // rules when the only flags are the irrelevant fluff.
 330 void ShenandoahBarrierSetC2::strip_extra_data(const Node* n) const {
 331   if (n->is_LoadStore()) {
 332     LoadStoreNode* load_store = n->as_LoadStore();
 333     uint8_t barrier_data = load_store->barrier_data();
 334     if ((barrier_data & ShenandoahBitsReal) == 0) {
 335       load_store->set_barrier_data(0);
 336     }
 337   } else if (n->is_Mem()) {
 338     MemNode* mem = n->as_Mem();
 339     uint8_t barrier_data = mem->barrier_data();
 340     if ((barrier_data & ShenandoahBitsReal) == 0) {
 341       mem->set_barrier_data(0);
 342     }
 343   }
 344 }
 345 
 346 void ShenandoahBarrierSetC2::strip_extra_data(Node_List& accesses) const {
 347   for (uint c = 0; c < accesses.size(); c++) {
 348     strip_extra_data(accesses.at(c));
 349   }
 350 }
 351 
 352 void ShenandoahBarrierSetC2::eliminate_gc_barrier(PhaseMacroExpand* macro, Node* node) const {
 353   eliminate_gc_barrier_data(node);




 354 }
 355 
 356 void ShenandoahBarrierSetC2::elide_dominated_barrier(MachNode* mach) const {
 357   mach->set_barrier_data(0);
















 358 }
 359 
 360 void ShenandoahBarrierSetC2::analyze_dominating_barriers() const {
 361   if (!ShenandoahElideBarriers) {















 362     return;
 363   }
 364 
 365   ResourceMark rm;
 366   Compile* const C = Compile::current();
 367   PhaseCFG* const cfg = C->cfg();


























 368 
 369   Node_List all_loads, loads, stores, atomics;
 370   Node_List load_dominators, store_dominators, atomic_dominators;
 371 
 372   for (uint i = 0; i < cfg->number_of_blocks(); ++i) {
 373     const Block* const block = cfg->get_block(i);
 374     for (uint j = 0; j < block->number_of_nodes(); ++j) {
 375       Node* const node = block->get_node(j);
 376 
 377       // Everything that happens in allocations does not need barriers.
 378       if (node->is_Phi() && is_allocation(node)) {
 379         load_dominators.push(node);
 380         store_dominators.push(node);
 381         atomic_dominators.push(node);
 382         continue;
 383       }
 384 
 385       if (!node->is_Mach()) {
 386         continue;
 387       }
 388 
 389       MachNode* const mach = node->as_Mach();
 390       switch (mach->ideal_Opcode()) {
 391 
 392         // Dominating loads have already passed through LRB and their load
 393         // locations got fixed. Subsequent barriers are no longer required.
 394         // The only exception are weak loads that have to go through LRB
 395         // to deal with dying referents.
 396         case Op_LoadP:
 397         case Op_LoadN: {
 398           if (mach->barrier_data() != 0) {
 399             all_loads.push(mach);
 400           }
 401           if ((mach->barrier_data() & ShenandoahBitStrong) != 0) {
 402             loads.push(mach);
 403             load_dominators.push(mach);
 404           }
 405           break;
 406         }
 407 
 408         // Dominating stores have recorded the old value in SATB, and made the
 409         // card table update for a location. Subsequent barriers are no longer
 410         // required.
 411         case Op_StoreP:
 412         case Op_StoreN: {
 413           if (mach->barrier_data() != 0) {
 414             stores.push(mach);
 415             load_dominators.push(mach);
 416             store_dominators.push(mach);
 417             atomic_dominators.push(mach);
 418           }
 419           break;
 420         }
 421 
 422         // Dominating atomics have dealt with everything as both loads and stores.
 423         // Therefore, subsequent barriers are no longer required.
 424         case Op_CompareAndExchangeN:
 425         case Op_CompareAndExchangeP:
 426         case Op_CompareAndSwapN:
 427         case Op_CompareAndSwapP:
 428         case Op_GetAndSetP:
 429         case Op_GetAndSetN: {
 430           if (mach->barrier_data() != 0) {
 431             atomics.push(mach);
 432             load_dominators.push(mach);
 433             store_dominators.push(mach);
 434             atomic_dominators.push(mach);
 435           }
 436           break;
 437         }
 438 
 439       default:
 440         break;
 441       }
 442     }
 443   }
 444 
 445   elide_dominated_barriers(loads, load_dominators);
 446   elide_dominated_barriers(stores, store_dominators);
 447   elide_dominated_barriers(atomics, atomic_dominators);









 448 
 449   // Also clean up extra metadata on these nodes. Dominance analysis likely left
 450   // many non-elided barriers with extra metadata, which can be stripped away.
 451   strip_extra_data(all_loads);
 452   strip_extra_data(stores);
 453   strip_extra_data(atomics);
 454 }
 455 
 456 uint ShenandoahBarrierSetC2::estimated_barrier_size(const Node* node) const {
 457   // Barrier impact on fast-path is driven by GC state checks emitted very late.
 458   // These checks are tight load-test-branch sequences, with no impact on C2 graph
 459   // size. Limiting unrolling in presence of GC barriers might turn some loops
 460   // tighter than with default unrolling, which may benefit performance due to denser
 461   // code. Testing shows it is still counter-productive.
 462   // Therefore, we report zero barrier size to let C2 do its normal thing.
 463   return 0;
 464 }
 465 
 466 bool ShenandoahBarrierSetC2::array_copy_requires_gc_barriers(bool tightly_coupled_alloc, BasicType type, bool is_clone, bool is_clone_instance, ArrayCopyPhase phase) const {
 467   bool is_oop = is_reference_type(type);
 468   if (!is_oop) {
 469     return false;













 470   }
 471   if (ShenandoahSATBBarrier && tightly_coupled_alloc) {
 472     if (phase == Optimization) {
 473       return false;
 474     }
 475     return !is_clone;









 476   }
 477   return true;
 478 }
 479 
 480 bool ShenandoahBarrierSetC2::clone_needs_barrier(const TypeOopPtr* src_type, bool& is_oop_array) {
 481   if (!ShenandoahCloneBarrier) {
 482     return false;
 483   }


 484 
 485   if (src_type->isa_instptr() != nullptr) {
 486     // Instance: need barrier only if there is a possibility of having an oop anywhere in it.
 487     ciInstanceKlass* ik = src_type->is_instptr()->instance_klass();
 488     if ((src_type->klass_is_exact() || !ik->has_subklass()) &&
 489         !ik->has_injected_fields() && !ik->has_object_fields()) {
 490       if (!src_type->klass_is_exact()) {
 491         // Class is *currently* the leaf in the hierarchy.
 492         // Record the dependency so that we deopt if this does not hold in future.
 493         Compile::current()->dependencies()->assert_leaf_type(ik);
 494       }
 495       return false;
 496     }
 497   } else if (src_type->isa_aryptr() != nullptr) {
 498     // Array: need barrier only if array is oop-bearing.
 499     BasicType src_elem = src_type->isa_aryptr()->elem()->array_element_basic_type();
 500     if (is_reference_type(src_elem, true)) {
 501       is_oop_array = true;
 502     } else {
 503       return false;
 504     }
 505   }
 506 
 507   // Assume the worst.
 508   return true;
 509 }
 510 
 511 void ShenandoahBarrierSetC2::clone(GraphKit* kit, Node* src_base, Node* dst_base, Node* size, bool is_array) const {
 512   const TypeOopPtr* src_type = kit->gvn().type(src_base)->is_oopptr();

 513 
 514   bool is_oop_array = false;
 515   if (!clone_needs_barrier(src_type, is_oop_array)) {
 516     // No barrier is needed? Just do what common BarrierSetC2 wants with it.
 517     BarrierSetC2::clone(kit, src_base, dst_base, size, is_array);
 518     return;





 519   }
 520 
 521   if (ShenandoahCloneRuntime || !is_array || !is_oop_array) {
 522     // Looks like an instance? Prepare the instance clone. This would either
 523     // be exploded into individual accesses or be left as runtime call.
 524     // Common BarrierSetC2 prepares everything for both cases.
 525     BarrierSetC2::clone(kit, src_base, dst_base, size, is_array);
 526     return;
 527   }
 528 
 529   // We are cloning the oop array. Prepare to call the normal arraycopy stub
 530   // after the expansion. Normal stub takes the number of actual type-sized
 531   // elements to copy after the base, compute the count here.
 532   Node* offset = kit->MakeConX(arrayOopDesc::base_offset_in_bytes(UseCompressedOops ? T_NARROWOOP : T_OBJECT));
 533   size = kit->gvn().transform(new SubXNode(size, offset));
 534   size = kit->gvn().transform(new URShiftXNode(size, kit->intcon(LogBytesPerHeapOop)));
 535   ArrayCopyNode* ac = ArrayCopyNode::make(kit, false, src_base, offset, dst_base, offset, size, true, false);
 536   ac->set_clone_array();
 537   Node* n = kit->gvn().transform(ac);
 538   if (n == ac) {
 539     ac->set_adr_type(TypeRawPtr::BOTTOM);
 540     kit->set_predefined_output_for_runtime_call(ac, ac->in(TypeFunc::Memory), TypeRawPtr::BOTTOM);
 541   } else {
 542     kit->set_all_memory(n);
 543   }
 544 }
 545 
 546 void ShenandoahBarrierSetC2::clone_at_expansion(PhaseMacroExpand* phase, ArrayCopyNode* ac) const {
 547   Node* const ctrl        = ac->in(TypeFunc::Control);
 548   Node* const mem         = ac->in(TypeFunc::Memory);
 549   Node* const src         = ac->in(ArrayCopyNode::Src);
 550   Node* const src_offset  = ac->in(ArrayCopyNode::SrcPos);
 551   Node* const dest        = ac->in(ArrayCopyNode::Dest);
 552   Node* const dest_offset = ac->in(ArrayCopyNode::DestPos);
 553   Node* length            = ac->in(ArrayCopyNode::Length);
 554 
 555   const TypeOopPtr* src_type = phase->igvn().type(src)->is_oopptr();
 556 
 557   bool is_oop_array = false;
 558   if (!clone_needs_barrier(src_type, is_oop_array)) {
 559     // No barrier is needed? Expand to normal HeapWord-sized arraycopy.
 560     BarrierSetC2::clone_at_expansion(phase, ac);
 561     return;
 562   }
 563 
 564   if (ShenandoahCloneRuntime || !ac->is_clone_array() || !is_oop_array) {
 565     // Still looks like an instance? Likely a large instance or reflective
 566     // clone with unknown length. Go to runtime and handle it there.
 567     clone_in_runtime(phase, ac, CAST_FROM_FN_PTR(address, ShenandoahRuntime::clone_addr()), "ShenandoahRuntime::clone");
 568     return;
 569   }
 570 
 571   // We are cloning the oop array. Call into normal oop array copy stubs.
 572   // Those stubs would call BarrierSetAssembler to handle GC barriers.


 573 
 574   // This is the full clone, so offsets should equal each other and be at array base.
 575   assert(src_offset == dest_offset, "should be equal");
 576   const jlong offset = src_offset->get_long();
 577   const TypeAryPtr* const ary_ptr = src->get_ptr_type()->isa_aryptr();
 578   BasicType bt = ary_ptr->elem()->array_element_basic_type();
 579   assert(offset == arrayOopDesc::base_offset_in_bytes(bt), "should match");
 580 
 581   const char*   copyfunc_name = "arraycopy";
 582   const address copyfunc_addr = phase->basictype2arraycopy(T_OBJECT, nullptr, nullptr, true, copyfunc_name, true);



 583 
 584   Node* const call = phase->make_leaf_call(ctrl, mem,
 585       OptoRuntime::fast_arraycopy_Type(),
 586       copyfunc_addr, copyfunc_name,
 587       TypeRawPtr::BOTTOM,
 588       phase->basic_plus_adr(src, src_offset),
 589       phase->basic_plus_adr(dest, dest_offset),
 590       length,
 591       phase->top()
 592   );
 593   phase->transform_later(call);
 594 
 595   phase->igvn().replace_node(ac, call);
 596 }
 597 
 598 void* ShenandoahBarrierSetC2::create_barrier_state(Arena* comp_arena) const {
 599   return new(comp_arena) ShenandoahBarrierSetC2State(comp_arena);









 600 }
 601 
 602 ShenandoahBarrierSetC2State* ShenandoahBarrierSetC2::state() const {
 603   return reinterpret_cast<ShenandoahBarrierSetC2State*>(Compile::current()->barrier_set_state());












 604 }
 605 
 606 void ShenandoahBarrierSetC2::print_barrier_data(outputStream* os, uint8_t data) {
 607   os->print(" Node barriers: ");
 608   if ((data & ShenandoahBitStrong) != 0) {
 609     data &= ~ShenandoahBitStrong;
 610     os->print("strong ");
 611   }
 612 
 613   if ((data & ShenandoahBitWeak) != 0) {
 614     data &= ~ShenandoahBitWeak;
 615     os->print("weak ");
 616   }
 617 
 618   if ((data & ShenandoahBitPhantom) != 0) {
 619     data &= ~ShenandoahBitPhantom;
 620     os->print("phantom ");
 621   }
 622 
 623   if ((data & ShenandoahBitElided) != 0) {
 624     data &= ~ShenandoahBitElided;
 625     os->print("elided ");
 626   }
 627 
 628   if ((data & ShenandoahBitKeepAlive) != 0) {
 629     data &= ~ShenandoahBitKeepAlive;
 630     os->print("keepalive ");
 631   }
 632 
 633   if ((data & ShenandoahBitCardMark) != 0) {
 634     data &= ~ShenandoahBitCardMark;
 635     os->print("cardmark ");
 636   }
 637 
 638   if ((data & ShenandoahBitNotNull) != 0) {
 639     data &= ~ShenandoahBitNotNull;
 640     os->print("not-null ");
 641   }
 642   os->cr();
 643 
 644   if (data > 0) {
 645     fatal("Unknown bit!");










 646   }
 647 
 648   os->print_cr(" GC configuration: %sLRB %sSATB %sCAS %sClone %sCard",
 649     (ShenandoahLoadRefBarrier ? "+" : "-"),
 650     (ShenandoahSATBBarrier    ? "+" : "-"),
 651     (ShenandoahCASBarrier     ? "+" : "-"),
 652     (ShenandoahCloneBarrier   ? "+" : "-"),
 653     (ShenandoahCardBarrier    ? "+" : "-")
 654   );
 655 }
 656 
 657 #ifdef ASSERT
 658 void ShenandoahBarrierSetC2::verify_gc_barrier_assert(bool cond, const char* msg, uint8_t bd, Node* n) {
 659   if (!cond) {
 660     stringStream ss;
 661     ss.print_cr("%s", msg);
 662     ss.print_cr("-----------------");
 663     print_barrier_data(&ss, bd);
 664     ss.print_cr("-----------------");
 665     n->dump_bfs(1, nullptr, "", &ss);
 666     report_vm_error(__FILE__, __LINE__, ss.as_string());
 667   }
 668 }
 669 
 670 void ShenandoahBarrierSetC2::verify_gc_barriers(Compile* compile, CompilePhase phase) const {
 671   if (!ShenandoahVerifyOptoBarriers) {
 672     return;









 673   }
 674 
 675   // Optimizations might have removed the remaining auxiliary flags, making some accesses completely blank.
 676   bool accept_blank = (phase == BeforeCodeGen);
 677   bool expect_load_barriers       = !accept_blank && ShenandoahLoadRefBarrier;
 678   bool expect_store_barriers      = !accept_blank && (ShenandoahSATBBarrier || ShenandoahCardBarrier);
 679   bool expect_load_store_barriers = !accept_blank && ShenandoahCASBarrier;















 680 
 681   Unique_Node_List wq;
 682   Node_Stack phis(0);
 683   VectorSet visited;



















 684 
 685   wq.push(compile->root());
 686   for (uint next = 0; next < wq.size(); next++) {
 687     Node *n = wq.at(next);
 688     int opc = n->Opcode();
 689 
 690     if (opc == Op_LoadP || opc == Op_LoadN) {
 691       uint8_t bd = n->as_Load()->barrier_data();






























 692 
 693       const TypePtr* adr_type = n->as_Load()->adr_type();
 694       if (adr_type->isa_oopptr() || adr_type->isa_narrowoop()) {
 695         verify_gc_barrier_assert(!expect_load_barriers || (bd != 0), "Oop load should have barrier data", bd, n);
 696 
 697         bool is_weak = ((bd & (ShenandoahBitWeak | ShenandoahBitPhantom)) != 0);
 698         bool is_referent = adr_type->isa_instptr() &&
 699             adr_type->is_instptr()->instance_klass()->is_subtype_of(Compile::current()->env()->Reference_klass()) &&
 700             adr_type->is_instptr()->offset() == java_lang_ref_Reference::referent_offset();










 701 
 702         verify_gc_barrier_assert(!is_weak || is_referent, "Weak load only for Reference.referent", bd, n);
 703       } else if (adr_type->isa_rawptr() || adr_type->isa_klassptr()) {
 704         // Some LoadP-s are used for T_ADDRESS loads from raw pointers. These are not oops.
 705         // Some LoadP-s are used to load class data.
 706         // TODO: Verify their barrier data.


















 707       } else {
 708         verify_gc_barrier_assert(false, "Unclassified access type", bd, n);




 709       }
 710     } else if (opc == Op_StoreP || opc == Op_StoreN) {
 711       uint8_t bd = n->as_Store()->barrier_data();
 712       const TypePtr* adr_type = n->as_Store()->adr_type();
 713       if (adr_type->isa_oopptr() || adr_type->isa_narrowoop()) {
 714         // Reference.clear stores null
 715         bool is_referent = adr_type->isa_instptr() &&
 716              adr_type->is_instptr()->instance_klass()->is_subtype_of(Compile::current()->env()->Reference_klass()) &&
 717              adr_type->is_instptr()->offset() == java_lang_ref_Reference::referent_offset();
 718 
 719         const TypePtr* val_type = n->as_Store()->in(MemNode::Memory)->adr_type();
 720         if (!is_referent && (val_type->isa_oopptr() || val_type->isa_narrowoop())) {
 721           verify_gc_barrier_assert(!expect_store_barriers || (bd != 0), "Oop store should have barrier data", bd, n);
 722         }
 723       } else if (adr_type->isa_rawptr() || adr_type->isa_klassptr()) {
 724         // Similar to LoadP-s, some of these accesses are raw, and some are handling oops.
 725         // TODO: Verify their barrier data.
 726       } else {
 727         verify_gc_barrier_assert(false, "Unclassified access type", bd, n);




 728       }
 729     } else if (opc == Op_WeakCompareAndSwapP || opc == Op_WeakCompareAndSwapN ||
 730                opc == Op_CompareAndExchangeP || opc == Op_CompareAndExchangeN ||
 731                opc == Op_CompareAndSwapP     || opc == Op_CompareAndSwapN ||
 732                opc == Op_GetAndSetP          || opc == Op_GetAndSetN) {
 733       uint8_t bd = n->as_LoadStore()->barrier_data();
 734       verify_gc_barrier_assert(!expect_load_store_barriers || (bd != 0), "Oop load-store should have barrier data", bd, n);
 735     } else if (n->is_Mem()) {
 736       uint8_t bd = MemNode::barrier_data(n); // FIXME: LOL HotSpot, why not n->as_Mem()? LoadStore is both is_Mem() and not as_Mem().
 737       verify_gc_barrier_assert(bd == 0, "Other mem nodes should have no barrier data", bd, n);
 738     }










 739 
 740     for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
 741       Node* m = n->fast_out(i);
 742       wq.push(m);








 743     }
 744   }

 745 }
 746 #endif
 747 
 748 static ShenandoahBarrierSetC2State* barrier_set_state() {
 749   return reinterpret_cast<ShenandoahBarrierSetC2State*>(Compile::current()->barrier_set_state());

 750 }
 751 
 752 int ShenandoahBarrierSetC2::estimate_stub_size() const {
 753   GrowableArray<ShenandoahBarrierStubC2*>* const stubs = barrier_set_state()->stubs();
 754   assert(stubs->is_empty(), "Lifecycle: no stubs were yet created");
 755   return 0;

 756 }
 757 
 758 void ShenandoahBarrierSetC2::emit_stubs(CodeBuffer& cb) const {
 759   MacroAssembler masm(&cb);







 760 
 761   PhaseOutput* const output = Compile::current()->output();
 762   assert(masm.offset() <= output->buffer_sizing_data()->_code,
 763          "Stubs are assumed to be emitted directly after code and code_size is a hard limit on where it can start");
 764   barrier_set_state()->set_stubs_start_offset(masm.offset());
 765   barrier_set_state()->set_save_slots_stack_offset(output->gc_barrier_save_slots_offset_in_bytes());
 766 
 767   // Stub generation counts all stubs as skipped for the sake of inlining policy.
 768   // This is critical for performance, check it.
 769 #ifdef ASSERT
 770   int offset_before = masm.offset();
 771   int skipped_before = cb.total_skipped_instructions_size();
 772 #endif


 773 
 774   GrowableArray<ShenandoahBarrierStubC2*>* const stubs = barrier_set_state()->stubs();
 775   for (int i = 0; i < stubs->length(); i++) {
 776     // Make sure there is enough space in the code buffer
 777     if (cb.insts()->maybe_expand_to_ensure_remaining(PhaseOutput::MAX_inst_size) && cb.blob() == nullptr) {
 778       ciEnv::current()->record_failure("CodeCache is full");
 779       return;


 780     }
 781     stubs->at(i)->emit_code(masm);
 782   }


 783 
 784 #ifdef ASSERT
 785   int offset_after = masm.offset();
 786   int skipped_after = cb.total_skipped_instructions_size();
 787   assert(offset_after - offset_before == skipped_after - skipped_before,
 788          "All stubs are counted as skipped. masm: %d - %d = %d, cb: %d - %d = %d",
 789         offset_after, offset_before, offset_after - offset_before,
 790         skipped_after, skipped_before, skipped_after - skipped_before);
 791 #endif

















 792 
 793   masm.flush();








































































 794 }
 795 
 796 void ShenandoahBarrierStubC2::register_stub(ShenandoahBarrierStubC2* stub) {
 797   if (!Compile::current()->output()->in_scratch_emit_size()) {
 798     barrier_set_state()->stubs()->append(stub);


 799   }
 800 }
 801 
 802 void ShenandoahBarrierStubC2::inc_trampoline_stubs_count() {
 803   if (!Compile::current()->output()->in_scratch_emit_size()) {
 804     barrier_set_state()->inc_trampoline_stubs_count();
 805   }
 806 }
 807 
 808 int ShenandoahBarrierStubC2::trampoline_stubs_count() {
 809   return barrier_set_state()->trampoline_stubs_count();


















 810 }
 811 
 812 int ShenandoahBarrierStubC2::stubs_start_offset() {
 813   return barrier_set_state()->stubs_start_offset();

















 814 }
 815 
 816 int ShenandoahBarrierStubC2::save_slots_stack_offset() {
 817   return barrier_set_state()->save_slots_stack_offset();


 818 }
 819 
 820 int ShenandoahBarrierStubC2::push_save_slot() {
 821   assert(_save_slots_idx < ShenandoahBarrierSetC2::bsc2()->reserved_slots(), "Enough slots are reserved");
 822   return save_slots_stack_offset() + (_save_slots_idx++) * sizeof(address);













 823 }
 824 
 825 int ShenandoahBarrierStubC2::pop_save_slot() {
 826   assert(_save_slots_idx > 0, "About to underflow");
 827   return save_slots_stack_offset() + (--_save_slots_idx) * sizeof(address);
 828 }
 829 
 830 ShenandoahBarrierStubC2* ShenandoahBarrierStubC2::create(const MachNode* node, Register obj, Address addr, bool narrow, bool do_load, int offset) {
 831   auto* stub = new (Compile::current()->comp_arena()) ShenandoahBarrierStubC2(node, obj, addr, narrow, do_load, offset);
 832   ShenandoahBarrierStubC2::register_stub(stub);
 833   return stub;
 834 }
 835 
 836 address ShenandoahBarrierStubC2::keepalive_runtime_entry_addr(SaveMode save_mode) {
 837   switch (save_mode) {
 838     case SaveMode::Nothing:
 839       return SharedRuntime::shenandoah_keepalive_none();
 840     case SaveMode::GP:
 841       return SharedRuntime::shenandoah_keepalive_gp();
 842     case SaveMode::All:
 843       return SharedRuntime::shenandoah_keepalive_all();
 844   }
 845   ShouldNotReachHere();
 846   return nullptr;
 847 }















 848 
 849 address ShenandoahBarrierStubC2::lrb_runtime_entry_addr(SaveMode save_mode) {
 850   bool is_strong  = (_node->barrier_data() & ShenandoahBitStrong)  != 0;
 851   bool is_weak    = (_node->barrier_data() & ShenandoahBitWeak)    != 0;
 852   bool is_phantom = (_node->barrier_data() & ShenandoahBitPhantom) != 0;
 853 
 854   switch (save_mode) {
 855     case SaveMode::Nothing: {
 856       if (_narrow) {
 857         if (is_strong) {
 858           return SharedRuntime::shenandoah_lrb_strong_narrow_none();
 859         } else if (is_weak) {
 860           return SharedRuntime::shenandoah_lrb_weak_narrow_none();
 861         } else if (is_phantom) {
 862           return SharedRuntime::shenandoah_lrb_phantom_narrow_none();
 863         }
 864       } else {
 865         if (is_strong) {
 866           return SharedRuntime::shenandoah_lrb_strong_none();
 867         } else if (is_weak) {
 868           return SharedRuntime::shenandoah_lrb_weak_none();
 869         } else if (is_phantom) {
 870           return SharedRuntime::shenandoah_lrb_phantom_none();


























 871         }
 872       }
 873       break;
 874     }



 875 
 876     case SaveMode::GP: {
 877       if (_narrow) {
 878         if (is_strong) {
 879           return SharedRuntime::shenandoah_lrb_strong_narrow_gp();
 880         } else if (is_weak) {
 881           return SharedRuntime::shenandoah_lrb_weak_narrow_gp();
 882         } else if (is_phantom) {
 883           return SharedRuntime::shenandoah_lrb_phantom_narrow_gp();

 884         }
 885       } else {
 886         if (is_strong) {
 887           return SharedRuntime::shenandoah_lrb_strong_gp();
 888         } else if (is_weak) {
 889           return SharedRuntime::shenandoah_lrb_weak_gp();
 890         } else if (is_phantom) {
 891           return SharedRuntime::shenandoah_lrb_phantom_gp();













































































 892         }
 893       }
 894       break;
 895     }














 896 
 897     case SaveMode::All: {
 898       if (_narrow) {
 899         if (is_strong) {
 900           return SharedRuntime::shenandoah_lrb_strong_narrow_all();
 901         } else if (is_weak) {
 902           return SharedRuntime::shenandoah_lrb_weak_narrow_all();
 903         } else if (is_phantom) {
 904           return SharedRuntime::shenandoah_lrb_phantom_narrow_all();
 905         }
 906       } else {
 907         if (is_strong) {
 908           return SharedRuntime::shenandoah_lrb_strong_all();
 909         } else if (is_weak) {
 910           return SharedRuntime::shenandoah_lrb_weak_all();
 911         } else if (is_phantom) {
 912           return SharedRuntime::shenandoah_lrb_phantom_all();















 913         }
 914       }







 915       break;











 916     }











 917   }






 918 
 919   ShouldNotReachHere();
 920   return nullptr;
 921 }
 922 
 923 bool ShenandoahBarrierSetC2State::needs_liveness_data(const MachNode* mach) const {
 924   // Nodes that require slow-path stubs need liveness data.
 925   return ShenandoahBarrierStubC2::needs_slow_barrier(mach);
















 926 }
 927 
 928 bool ShenandoahBarrierSetC2State::needs_livein_data() const {
 929   return true;





 930 }
< prev index next >