< prev index next >

src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.cpp

Print this page
rev 54116 : 8220660: [s390]: debug build broken after JDK-8220301
Reviewed-by:

*** 307,324 **** __ z_srlg(Rcard_addr, Rstore_addr, CardTable::card_shift); // Index into card table. __ z_algr(Rcard_addr, Rbase); // Explicit calculation needed for cli. Rbase = noreg; // end of lifetime // Filter young. - assert((unsigned int)G1CardTable::g1_young_card_val() <= 255, "otherwise check this code"); __ z_cli(0, Rcard_addr, G1CardTable::g1_young_card_val()); __ z_bre(filtered); // Check the card value. If dirty, we're done. // This also avoids false sharing of the (already dirty) card. __ z_sync(); // Required to support concurrent cleaning. - assert((unsigned int)G1CardTable::dirty_card_val() <= 255, "otherwise check this code"); __ z_cli(0, Rcard_addr, G1CardTable::dirty_card_val()); // Reload after membar. __ z_bre(filtered); // Storing a region crossing, non-NULL oop, card is clean. // Dirty card and log. --- 307,322 ----
< prev index next >