]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: make write barrier code amenable to paired loads/stores
authorKeith Randall <khr@golang.org>
Sun, 24 Nov 2024 01:35:02 +0000 (17:35 -0800)
committerKeith Randall <khr@golang.org>
Thu, 13 Feb 2025 22:08:14 +0000 (14:08 -0800)
commit187fd2698d2f9fc2fc52aa7d4c0922552f848e98
tree5d0e7f24d705e201037a919179c2af61933aa77f
parenta0029e95e5d6f15cab70e533d447c75aa4211636
cmd/compile: make write barrier code amenable to paired loads/stores

It currently isn't because it does load/store/load/store/...
Rework to do overwrite processing in pairs so it is instead
load/load/store/store/...

Change-Id: If7be629bc4048da5f2386dafb8f05759b79e9e2b
Reviewed-on: https://go-review.googlesource.com/c/go/+/631495
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
src/cmd/compile/internal/ssa/writebarrier.go
test/codegen/writebarrier.go