Skip to content

Commit b0532a9

Browse files
committed
runtime: fix write-barrier-enabled phase list in gcmarkwb_m
Commit 1303957 was supposed to enable write barriers during the concurrent scan phase, but it only enabled *calls* to the write barrier during this phase. It failed to update the redundant list of write-barrier-enabled phases in gcmarkwb_m, so it still wasn't greying objects during the scan phase. This commit fixes this by replacing the redundant list of phases in gcmarkwb_m with simply checking writeBarrierEnabled. This is almost certainly redundant with checks already done in callers, but the last time we tried to remove these redundant checks everything got much slower, so I'm leaving it alone for now. Fixes #11105. Change-Id: I00230a3cb80a008e749553a8ae901b409097e4be Reviewed-on: https://go-review.googlesource.com/10801 Run-TryBot: Austin Clements <[email protected]> Reviewed-by: Minux Ma <[email protected]>
1 parent 306f8f1 commit b0532a9

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/runtime/mbarrier.go

+1-8
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,7 @@ import "unsafe"
7272
// so it depends on write barriers to track changes to pointers in
7373
// stack frames that have not been active. go:nowritebarrier
7474
func gcmarkwb_m(slot *uintptr, ptr uintptr) {
75-
switch gcphase {
76-
default:
77-
throw("gcphasework in bad gcphase")
78-
79-
case _GCoff, _GCstw, _GCsweep, _GCscan:
80-
// ok
81-
82-
case _GCmark, _GCmarktermination:
75+
if writeBarrierEnabled {
8376
if ptr != 0 && inheap(ptr) {
8477
shade(ptr)
8578
}

0 commit comments

Comments
 (0)