Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 1 | // Copyright 2011 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | // +build darwin nacl netbsd openbsd plan9 solaris windows |
| 6 | |
| 7 | package runtime |
| 8 | |
| 9 | import "unsafe" |
| 10 | |
| 11 | // This implementation depends on OS-specific implementations of |
| 12 | // |
| 13 | // uintptr runtime·semacreate(void) |
| 14 | // Create a semaphore, which will be assigned to m->waitsema. |
| 15 | // The zero value is treated as absence of any semaphore, |
| 16 | // so be sure to return a non-zero value. |
| 17 | // |
| 18 | // int32 runtime·semasleep(int64 ns) |
| 19 | // If ns < 0, acquire m->waitsema and return 0. |
| 20 | // If ns >= 0, try to acquire m->waitsema for at most ns nanoseconds. |
| 21 | // Return 0 if the semaphore was acquired, -1 if interrupted or timed out. |
| 22 | // |
| 23 | // int32 runtime·semawakeup(M *mp) |
| 24 | // Wake up mp, which is or will soon be sleeping on mp->waitsema. |
| 25 | // |
| 26 | const ( |
| 27 | locked uintptr = 1 |
| 28 | |
| 29 | active_spin = 4 |
| 30 | active_spin_cnt = 30 |
| 31 | passive_spin = 1 |
| 32 | ) |
| 33 | |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 34 | func lock(l *mutex) { |
| 35 | gp := getg() |
| 36 | if gp.m.locks < 0 { |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 37 | throw("runtime·lock: lock count") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 38 | } |
| 39 | gp.m.locks++ |
| 40 | |
| 41 | // Speculative grab for lock. |
| 42 | if casuintptr(&l.key, 0, locked) { |
| 43 | return |
| 44 | } |
| 45 | if gp.m.waitsema == 0 { |
| 46 | gp.m.waitsema = semacreate() |
| 47 | } |
| 48 | |
| 49 | // On uniprocessor's, no point spinning. |
| 50 | // On multiprocessors, spin for ACTIVE_SPIN attempts. |
| 51 | spin := 0 |
| 52 | if ncpu > 1 { |
| 53 | spin = active_spin |
| 54 | } |
| 55 | Loop: |
| 56 | for i := 0; ; i++ { |
| 57 | v := atomicloaduintptr(&l.key) |
| 58 | if v&locked == 0 { |
| 59 | // Unlocked. Try to lock. |
| 60 | if casuintptr(&l.key, v, v|locked) { |
| 61 | return |
| 62 | } |
| 63 | i = 0 |
| 64 | } |
| 65 | if i < spin { |
| 66 | procyield(active_spin_cnt) |
| 67 | } else if i < spin+passive_spin { |
| 68 | osyield() |
| 69 | } else { |
| 70 | // Someone else has it. |
| 71 | // l->waitm points to a linked list of M's waiting |
| 72 | // for this lock, chained through m->nextwaitm. |
| 73 | // Queue this M. |
| 74 | for { |
| 75 | gp.m.nextwaitm = (*m)((unsafe.Pointer)(v &^ locked)) |
| 76 | if casuintptr(&l.key, v, uintptr(unsafe.Pointer(gp.m))|locked) { |
| 77 | break |
| 78 | } |
| 79 | v = atomicloaduintptr(&l.key) |
| 80 | if v&locked == 0 { |
| 81 | continue Loop |
| 82 | } |
| 83 | } |
| 84 | if v&locked != 0 { |
| 85 | // Queued. Wait. |
| 86 | semasleep(-1) |
| 87 | i = 0 |
| 88 | } |
| 89 | } |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | func unlock(l *mutex) { |
| 94 | gp := getg() |
| 95 | var mp *m |
| 96 | for { |
| 97 | v := atomicloaduintptr(&l.key) |
| 98 | if v == locked { |
| 99 | if casuintptr(&l.key, locked, 0) { |
| 100 | break |
| 101 | } |
| 102 | } else { |
| 103 | // Other M's are waiting for the lock. |
| 104 | // Dequeue an M. |
| 105 | mp = (*m)((unsafe.Pointer)(v &^ locked)) |
| 106 | if casuintptr(&l.key, v, uintptr(unsafe.Pointer(mp.nextwaitm))) { |
| 107 | // Dequeued an M. Wake it. |
| 108 | semawakeup(mp) |
| 109 | break |
| 110 | } |
| 111 | } |
| 112 | } |
| 113 | gp.m.locks-- |
| 114 | if gp.m.locks < 0 { |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 115 | throw("runtime·unlock: lock count") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 116 | } |
| 117 | if gp.m.locks == 0 && gp.preempt { // restore the preemption request in case we've cleared it in newstack |
Russ Cox | e6d3511 | 2015-01-05 16:29:21 +0000 | [diff] [blame] | 118 | gp.stackguard0 = stackPreempt |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 119 | } |
| 120 | } |
| 121 | |
| 122 | // One-time notifications. |
| 123 | func noteclear(n *note) { |
| 124 | n.key = 0 |
| 125 | } |
| 126 | |
| 127 | func notewakeup(n *note) { |
| 128 | var v uintptr |
| 129 | for { |
| 130 | v = atomicloaduintptr(&n.key) |
| 131 | if casuintptr(&n.key, v, locked) { |
| 132 | break |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | // Successfully set waitm to locked. |
| 137 | // What was it before? |
| 138 | switch { |
| 139 | case v == 0: |
| 140 | // Nothing was waiting. Done. |
| 141 | case v == locked: |
| 142 | // Two notewakeups! Not allowed. |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 143 | throw("notewakeup - double wakeup") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 144 | default: |
| 145 | // Must be the waiting m. Wake it up. |
| 146 | semawakeup((*m)(unsafe.Pointer(v))) |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | func notesleep(n *note) { |
| 151 | gp := getg() |
| 152 | if gp != gp.m.g0 { |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 153 | throw("notesleep not on g0") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 154 | } |
| 155 | if gp.m.waitsema == 0 { |
| 156 | gp.m.waitsema = semacreate() |
| 157 | } |
| 158 | if !casuintptr(&n.key, 0, uintptr(unsafe.Pointer(gp.m))) { |
| 159 | // Must be locked (got wakeup). |
| 160 | if n.key != locked { |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 161 | throw("notesleep - waitm out of sync") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 162 | } |
| 163 | return |
| 164 | } |
| 165 | // Queued. Sleep. |
| 166 | gp.m.blocked = true |
| 167 | semasleep(-1) |
| 168 | gp.m.blocked = false |
| 169 | } |
| 170 | |
| 171 | //go:nosplit |
Russ Cox | 93805d7 | 2014-09-03 23:10:15 -0400 | [diff] [blame] | 172 | func notetsleep_internal(n *note, ns int64, gp *g, deadline int64) bool { |
| 173 | // gp and deadline are logically local variables, but they are written |
| 174 | // as parameters so that the stack space they require is charged |
| 175 | // to the caller. |
| 176 | // This reduces the nosplit footprint of notetsleep_internal. |
| 177 | gp = getg() |
| 178 | |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 179 | // Register for wakeup on n->waitm. |
| 180 | if !casuintptr(&n.key, 0, uintptr(unsafe.Pointer(gp.m))) { |
| 181 | // Must be locked (got wakeup). |
| 182 | if n.key != locked { |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 183 | throw("notetsleep - waitm out of sync") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 184 | } |
| 185 | return true |
| 186 | } |
| 187 | if ns < 0 { |
| 188 | // Queued. Sleep. |
| 189 | gp.m.blocked = true |
| 190 | semasleep(-1) |
| 191 | gp.m.blocked = false |
| 192 | return true |
| 193 | } |
Russ Cox | 93805d7 | 2014-09-03 23:10:15 -0400 | [diff] [blame] | 194 | |
| 195 | deadline = nanotime() + ns |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 196 | for { |
| 197 | // Registered. Sleep. |
| 198 | gp.m.blocked = true |
| 199 | if semasleep(ns) >= 0 { |
| 200 | gp.m.blocked = false |
| 201 | // Acquired semaphore, semawakeup unregistered us. |
| 202 | // Done. |
| 203 | return true |
| 204 | } |
| 205 | gp.m.blocked = false |
| 206 | // Interrupted or timed out. Still registered. Semaphore not acquired. |
| 207 | ns = deadline - nanotime() |
| 208 | if ns <= 0 { |
| 209 | break |
| 210 | } |
| 211 | // Deadline hasn't arrived. Keep sleeping. |
| 212 | } |
| 213 | |
| 214 | // Deadline arrived. Still registered. Semaphore not acquired. |
| 215 | // Want to give up and return, but have to unregister first, |
| 216 | // so that any notewakeup racing with the return does not |
| 217 | // try to grant us the semaphore when we don't expect it. |
| 218 | for { |
| 219 | v := atomicloaduintptr(&n.key) |
| 220 | switch v { |
| 221 | case uintptr(unsafe.Pointer(gp.m)): |
| 222 | // No wakeup yet; unregister if possible. |
| 223 | if casuintptr(&n.key, v, 0) { |
| 224 | return false |
| 225 | } |
| 226 | case locked: |
| 227 | // Wakeup happened so semaphore is available. |
| 228 | // Grab it to avoid getting out of sync. |
| 229 | gp.m.blocked = true |
| 230 | if semasleep(-1) < 0 { |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 231 | throw("runtime: unable to acquire - semaphore out of sync") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 232 | } |
| 233 | gp.m.blocked = false |
| 234 | return true |
| 235 | default: |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 236 | throw("runtime: unexpected waitm - semaphore out of sync") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 237 | } |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | func notetsleep(n *note, ns int64) bool { |
| 242 | gp := getg() |
Austin Clements | 28b5118 | 2015-01-30 15:30:41 -0500 | [diff] [blame^] | 243 | if gp != gp.m.g0 && gp.m.preemptoff != "" { |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 244 | throw("notetsleep not on g0") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 245 | } |
| 246 | if gp.m.waitsema == 0 { |
| 247 | gp.m.waitsema = semacreate() |
| 248 | } |
Russ Cox | 93805d7 | 2014-09-03 23:10:15 -0400 | [diff] [blame] | 249 | return notetsleep_internal(n, ns, nil, 0) |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | // same as runtime·notetsleep, but called on user g (not g0) |
| 253 | // calls only nosplit functions between entersyscallblock/exitsyscall |
| 254 | func notetsleepg(n *note, ns int64) bool { |
| 255 | gp := getg() |
| 256 | if gp == gp.m.g0 { |
Keith Randall | b2a950b | 2014-12-27 20:58:00 -0800 | [diff] [blame] | 257 | throw("notetsleepg on g0") |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 258 | } |
| 259 | if gp.m.waitsema == 0 { |
| 260 | gp.m.waitsema = semacreate() |
| 261 | } |
Russ Cox | b2cdf30 | 2014-11-11 17:08:33 -0500 | [diff] [blame] | 262 | entersyscallblock(0) |
Russ Cox | 93805d7 | 2014-09-03 23:10:15 -0400 | [diff] [blame] | 263 | ok := notetsleep_internal(n, ns, nil, 0) |
Russ Cox | b2cdf30 | 2014-11-11 17:08:33 -0500 | [diff] [blame] | 264 | exitsyscall(0) |
Russ Cox | 3a7f664 | 2014-08-29 16:20:48 -0400 | [diff] [blame] | 265 | return ok |
| 266 | } |