Skip to content

Commit 82b2f21

Browse files
committedAug 19, 2021
8272579: G1: remove unnecesary null check for G1ParScanThreadStateSet::_states slots
Reviewed-by: iwalulya, kbarrett, sjohanss
1 parent 1c80f07 commit 82b2f21

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed
 

‎src/hotspot/share/gc/g1/g1ParScanThreadState.cpp

+2-8
Original file line numberDiff line numberDiff line change
@@ -558,10 +558,7 @@ void G1ParScanThreadStateSet::flush() {
558558

559559
for (uint worker_id = 0; worker_id < _n_workers; ++worker_id) {
560560
G1ParScanThreadState* pss = _states[worker_id];
561-
562-
if (pss == NULL) {
563-
continue;
564-
}
561+
assert(pss != nullptr, "must be initialized");
565562

566563
G1GCPhaseTimes* p = _g1h->phase_times();
567564

@@ -584,10 +581,7 @@ void G1ParScanThreadStateSet::flush() {
584581
void G1ParScanThreadStateSet::record_unused_optional_region(HeapRegion* hr) {
585582
for (uint worker_index = 0; worker_index < _n_workers; ++worker_index) {
586583
G1ParScanThreadState* pss = _states[worker_index];
587-
588-
if (pss == NULL) {
589-
continue;
590-
}
584+
assert(pss != nullptr, "must be initialized");
591585

592586
size_t used_memory = pss->oops_into_optional_region(hr)->used_memory();
593587
_g1h->phase_times()->record_or_add_thread_work_item(G1GCPhaseTimes::OptScanHR, worker_index, used_memory, G1GCPhaseTimes::ScanHRUsedMemory);

0 commit comments

Comments
 (0)
Please sign in to comment.