]> Cypherpunks.ru repositories - gostls13.git/commitdiff
sync: use atomic.Uint32 in Once
authormstmdev <mstmdev@gmail.com>
Fri, 6 Oct 2023 19:00:52 +0000 (19:00 +0000)
committerGopher Robot <gobot@golang.org>
Fri, 6 Oct 2023 21:01:50 +0000 (21:01 +0000)
Change-Id: If9089f8afd78de3e62cd575f642ff96ab69e2099
GitHub-Last-Rev: 14165018d67e84685dcf84be0320623ccb3afc0e
GitHub-Pull-Request: golang/go#63386
Reviewed-on: https://go-review.googlesource.com/c/go/+/532895
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Michael Pratt <mpratt@google.com>

src/sync/once.go
test/inline_sync.go

index b6399cfc3d100a657f545000cf651e4a95ccd737..3f58707e1cfc51e00eeec55a8770550649f64ca0 100644 (file)
@@ -21,7 +21,7 @@ type Once struct {
        // The hot path is inlined at every call site.
        // Placing done first allows more compact instructions on some architectures (amd64/386),
        // and fewer instructions (to calculate offset) on other architectures.
-       done uint32
+       done atomic.Uint32
        m    Mutex
 }
 
@@ -48,7 +48,7 @@ type Once struct {
 func (o *Once) Do(f func()) {
        // Note: Here is an incorrect implementation of Do:
        //
-       //      if atomic.CompareAndSwapUint32(&o.done, 0, 1) {
+       //      if o.done.CompareAndSwap(0, 1) {
        //              f()
        //      }
        //
@@ -58,9 +58,9 @@ func (o *Once) Do(f func()) {
        // call f, and the second would return immediately, without
        // waiting for the first's call to f to complete.
        // This is why the slow path falls back to a mutex, and why
-       // the atomic.StoreUint32 must be delayed until after f returns.
+       // the o.done.Store must be delayed until after f returns.
 
-       if atomic.LoadUint32(&o.done) == 0 {
+       if o.done.Load() == 0 {
                // Outlined slow-path to allow inlining of the fast-path.
                o.doSlow(f)
        }
@@ -69,8 +69,8 @@ func (o *Once) Do(f func()) {
 func (o *Once) doSlow(f func()) {
        o.m.Lock()
        defer o.m.Unlock()
-       if o.done == 0 {
-               defer atomic.StoreUint32(&o.done, 1)
+       if o.done.Load() == 0 {
+               defer o.done.Store(1)
                f()
        }
 }
index 69e2a0ead6eb9ccc98ef63354ecd7d446b0900ca..eaa2176d5fdc3dfeaa8c67182533ce4a0bb7854b 100644 (file)
@@ -37,7 +37,7 @@ var once *sync.Once
 
 func small7() { // ERROR "can inline small7"
        // the Do fast path should be inlined
-       once.Do(small5) // ERROR "inlining call to sync\.\(\*Once\)\.Do"
+       once.Do(small5) // ERROR "inlining call to sync\.\(\*Once\)\.Do" "inlining call to atomic\.\(\*Uint32\)\.Load"
 }
 
 var rwmutex *sync.RWMutex