Skip to content

Commit 1bed23a

Browse files
committedSep 6, 2022
8293353: [BACKOUT] G1: Remove redundant is-marking-active checks in C1 barrier
Reviewed-by: kbarrett, mdoerr, tschatzl
1 parent 4955835 commit 1bed23a

File tree

6 files changed

+51
-0
lines changed

6 files changed

+51
-0
lines changed
 

‎src/hotspot/cpu/aarch64/gc/g1/g1BarrierSetAssembler_aarch64.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,15 @@ void G1BarrierSetAssembler::generate_c1_pre_barrier_runtime_stub(StubAssembler*
380380
Label done;
381381
Label runtime;
382382

383+
// Is marking still active?
384+
if (in_bytes(SATBMarkQueue::byte_width_of_active()) == 4) {
385+
__ ldrw(tmp, in_progress);
386+
} else {
387+
assert(in_bytes(SATBMarkQueue::byte_width_of_active()) == 1, "Assumption");
388+
__ ldrb(tmp, in_progress);
389+
}
390+
__ cbzw(tmp, done);
391+
383392
// Can we store original value in the thread's buffer?
384393
__ ldr(tmp, queue_index);
385394
__ cbz(tmp, runtime);

‎src/hotspot/cpu/arm/gc/g1/g1BarrierSetAssembler_arm.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,11 @@ void G1BarrierSetAssembler::generate_c1_pre_barrier_runtime_stub(StubAssembler*
382382
Label done;
383383
Label runtime;
384384

385+
// Is marking still active?
386+
assert(in_bytes(SATBMarkQueue::byte_width_of_active()) == 1, "Assumption");
387+
__ ldrb(R1, queue_active);
388+
__ cbz(R1, done);
389+
385390
__ ldr(r_index_1, queue_index);
386391
__ ldr(r_pre_val_0, Address(SP, nb_saved_regs*wordSize));
387392
__ ldr(r_buffer_2, buffer);

‎src/hotspot/cpu/ppc/gc/g1/g1BarrierSetAssembler_ppc.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,16 @@ void G1BarrierSetAssembler::generate_c1_pre_barrier_runtime_stub(StubAssembler*
469469
__ std(tmp, -16, R1_SP);
470470
__ std(tmp2, -24, R1_SP);
471471

472+
// Is marking still active?
473+
if (in_bytes(SATBMarkQueue::byte_width_of_active()) == 4) {
474+
__ lwz(tmp, satb_q_active_byte_offset, R16_thread);
475+
} else {
476+
assert(in_bytes(SATBMarkQueue::byte_width_of_active()) == 1, "Assumption");
477+
__ lbz(tmp, satb_q_active_byte_offset, R16_thread);
478+
}
479+
__ cmpdi(CCR0, tmp, 0);
480+
__ beq(CCR0, marking_not_active);
481+
472482
__ bind(restart);
473483
// Load the index into the SATB buffer. SATBMarkQueue::_index is a
474484
// size_t so ld_ptr is appropriate.

‎src/hotspot/cpu/riscv/gc/g1/g1BarrierSetAssembler_riscv.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,15 @@ void G1BarrierSetAssembler::generate_c1_pre_barrier_runtime_stub(StubAssembler*
369369
Label done;
370370
Label runtime;
371371

372+
// Is marking still active?
373+
if (in_bytes(SATBMarkQueue::byte_width_of_active()) == 4) { // 4-byte width
374+
__ lwu(tmp, in_progress);
375+
} else {
376+
assert(in_bytes(SATBMarkQueue::byte_width_of_active()) == 1, "Assumption");
377+
__ lbu(tmp, in_progress);
378+
}
379+
__ beqz(tmp, done);
380+
372381
// Can we store original value in the thread's buffer?
373382
__ ld(tmp, queue_index);
374383
__ beqz(tmp, runtime);

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

+9
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,15 @@ void G1BarrierSetAssembler::generate_c1_pre_barrier_runtime_stub(StubAssembler*
488488
__ z_stg(tmp, 0*BytesPerWord + FrameMap::first_available_sp_in_frame, Z_SP);
489489
__ z_stg(tmp2, 1*BytesPerWord + FrameMap::first_available_sp_in_frame, Z_SP);
490490

491+
// Is marking still active?
492+
if (in_bytes(SATBMarkQueue::byte_width_of_active()) == 4) {
493+
__ load_and_test_int(tmp, Address(Z_thread, satb_q_active_byte_offset));
494+
} else {
495+
assert(in_bytes(SATBMarkQueue::byte_width_of_active()) == 1, "Assumption");
496+
__ load_and_test_byte(tmp, Address(Z_thread, satb_q_active_byte_offset));
497+
}
498+
__ z_bre(marking_not_active); // Activity indicator is zero, so there is no marking going on currently.
499+
491500
__ bind(restart);
492501
// Load the index into the SATB buffer. SATBMarkQueue::_index is a
493502
// size_t so ld_ptr is appropriate.

‎src/hotspot/cpu/x86/gc/g1/g1BarrierSetAssembler_x86.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,15 @@ void G1BarrierSetAssembler::generate_c1_pre_barrier_runtime_stub(StubAssembler*
468468
Label done;
469469
Label runtime;
470470

471+
// Is marking still active?
472+
if (in_bytes(SATBMarkQueue::byte_width_of_active()) == 4) {
473+
__ cmpl(queue_active, 0);
474+
} else {
475+
assert(in_bytes(SATBMarkQueue::byte_width_of_active()) == 1, "Assumption");
476+
__ cmpb(queue_active, 0);
477+
}
478+
__ jcc(Assembler::equal, done);
479+
471480
// Can we store original value in the thread's buffer?
472481

473482
__ movptr(tmp, queue_index);

0 commit comments

Comments
 (0)
Please sign in to comment.