blob: b18b44ce61c71baa6c19c193fb64858babc1ef28 [file] [log] [blame]
Keith Randall1d8fa7f2014-09-02 14:13:29 -07001// Copyright 2009 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
5package runtime
6
7// This file contains the implementation of Go select statements.
8
9import "unsafe"
10
11const (
12 debugSelect = false
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030013
14 // scase.kind
15 caseRecv = iota
16 caseSend
17 caseDefault
Keith Randall1d8fa7f2014-09-02 14:13:29 -070018)
19
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030020// Select statement header.
21// Known to compiler.
22// Changes here must also be made in src/cmd/internal/gc/select.go's selecttype.
23type hselect struct {
24 tcase uint16 // total count of scase[]
25 ncase uint16 // currently filled scase[]
26 pollorder *uint16 // case poll order
27 lockorder **hchan // channel lock order
28 scase [1]scase // one per case (in order of appearance)
29}
30
31// Select case descriptor.
32// Known to compiler.
33// Changes here must also be made in src/cmd/internal/gc/select.go's selecttype.
34type scase struct {
35 elem unsafe.Pointer // data element
36 c *hchan // chan
37 pc uintptr // return pc
38 kind uint16
39 so uint16 // vararg of selected bool
40 receivedp *bool // pointer to received bool (recv2)
41 releasetime int64
42}
43
Keith Randall1d8fa7f2014-09-02 14:13:29 -070044var (
Russ Cox0e07f1c2014-09-03 11:10:38 -040045 chansendpc = funcPC(chansend)
46 chanrecvpc = funcPC(chanrecv)
Keith Randall1d8fa7f2014-09-02 14:13:29 -070047)
48
Keith Randall1d8fa7f2014-09-02 14:13:29 -070049func selectsize(size uintptr) uintptr {
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030050 selsize := unsafe.Sizeof(hselect{}) +
51 (size-1)*unsafe.Sizeof(hselect{}.scase[0]) +
52 size*unsafe.Sizeof(*hselect{}.lockorder) +
53 size*unsafe.Sizeof(*hselect{}.pollorder)
Keith Randall1d8fa7f2014-09-02 14:13:29 -070054 return round(selsize, _Int64Align)
55}
56
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030057func newselect(sel *hselect, selsize int64, size int32) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -070058 if selsize != int64(selectsize(uintptr(size))) {
59 print("runtime: bad select size ", selsize, ", want ", selectsize(uintptr(size)), "\n")
Keith Randallb2a950b2014-12-27 20:58:00 -080060 throw("bad select size")
Keith Randall1d8fa7f2014-09-02 14:13:29 -070061 }
62 sel.tcase = uint16(size)
63 sel.ncase = 0
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030064 sel.lockorder = (**hchan)(add(unsafe.Pointer(&sel.scase), uintptr(size)*unsafe.Sizeof(hselect{}.scase[0])))
65 sel.pollorder = (*uint16)(add(unsafe.Pointer(sel.lockorder), uintptr(size)*unsafe.Sizeof(*hselect{}.lockorder)))
Keith Randall1d8fa7f2014-09-02 14:13:29 -070066
67 if debugSelect {
68 print("newselect s=", sel, " size=", size, "\n")
69 }
70}
71
72//go:nosplit
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030073func selectsend(sel *hselect, c *hchan, elem unsafe.Pointer) (selected bool) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -070074 // nil cases do not compete
75 if c != nil {
76 selectsendImpl(sel, c, getcallerpc(unsafe.Pointer(&sel)), elem, uintptr(unsafe.Pointer(&selected))-uintptr(unsafe.Pointer(&sel)))
77 }
78 return
79}
80
81// cut in half to give stack a chance to split
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030082func selectsendImpl(sel *hselect, c *hchan, pc uintptr, elem unsafe.Pointer, so uintptr) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -070083 i := sel.ncase
84 if i >= sel.tcase {
Keith Randallb2a950b2014-12-27 20:58:00 -080085 throw("selectsend: too many cases")
Keith Randall1d8fa7f2014-09-02 14:13:29 -070086 }
87 sel.ncase = i + 1
88 cas := (*scase)(add(unsafe.Pointer(&sel.scase), uintptr(i)*unsafe.Sizeof(sel.scase[0])))
89
90 cas.pc = pc
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030091 cas.c = c
Keith Randall1d8fa7f2014-09-02 14:13:29 -070092 cas.so = uint16(so)
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030093 cas.kind = caseSend
Keith Randall1d8fa7f2014-09-02 14:13:29 -070094 cas.elem = elem
95
96 if debugSelect {
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +030097 print("selectsend s=", sel, " pc=", hex(cas.pc), " chan=", cas.c, " so=", cas.so, "\n")
Keith Randall1d8fa7f2014-09-02 14:13:29 -070098 }
99}
100
101//go:nosplit
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300102func selectrecv(sel *hselect, c *hchan, elem unsafe.Pointer) (selected bool) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700103 // nil cases do not compete
104 if c != nil {
105 selectrecvImpl(sel, c, getcallerpc(unsafe.Pointer(&sel)), elem, nil, uintptr(unsafe.Pointer(&selected))-uintptr(unsafe.Pointer(&sel)))
106 }
107 return
108}
109
110//go:nosplit
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300111func selectrecv2(sel *hselect, c *hchan, elem unsafe.Pointer, received *bool) (selected bool) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700112 // nil cases do not compete
113 if c != nil {
114 selectrecvImpl(sel, c, getcallerpc(unsafe.Pointer(&sel)), elem, received, uintptr(unsafe.Pointer(&selected))-uintptr(unsafe.Pointer(&sel)))
115 }
116 return
117}
118
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300119func selectrecvImpl(sel *hselect, c *hchan, pc uintptr, elem unsafe.Pointer, received *bool, so uintptr) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700120 i := sel.ncase
121 if i >= sel.tcase {
Keith Randallb2a950b2014-12-27 20:58:00 -0800122 throw("selectrecv: too many cases")
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700123 }
124 sel.ncase = i + 1
125 cas := (*scase)(add(unsafe.Pointer(&sel.scase), uintptr(i)*unsafe.Sizeof(sel.scase[0])))
126 cas.pc = pc
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300127 cas.c = c
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700128 cas.so = uint16(so)
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300129 cas.kind = caseRecv
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700130 cas.elem = elem
131 cas.receivedp = received
132
133 if debugSelect {
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300134 print("selectrecv s=", sel, " pc=", hex(cas.pc), " chan=", cas.c, " so=", cas.so, "\n")
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700135 }
136}
137
138//go:nosplit
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300139func selectdefault(sel *hselect) (selected bool) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700140 selectdefaultImpl(sel, getcallerpc(unsafe.Pointer(&sel)), uintptr(unsafe.Pointer(&selected))-uintptr(unsafe.Pointer(&sel)))
141 return
142}
143
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300144func selectdefaultImpl(sel *hselect, callerpc uintptr, so uintptr) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700145 i := sel.ncase
146 if i >= sel.tcase {
Keith Randallb2a950b2014-12-27 20:58:00 -0800147 throw("selectdefault: too many cases")
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700148 }
149 sel.ncase = i + 1
150 cas := (*scase)(add(unsafe.Pointer(&sel.scase), uintptr(i)*unsafe.Sizeof(sel.scase[0])))
151 cas.pc = callerpc
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300152 cas.c = nil
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700153 cas.so = uint16(so)
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300154 cas.kind = caseDefault
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700155
156 if debugSelect {
157 print("selectdefault s=", sel, " pc=", hex(cas.pc), " so=", cas.so, "\n")
158 }
159}
160
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300161func sellock(sel *hselect) {
Michael Hudson-Doyleab4df702015-04-11 10:01:54 +1200162 lockslice := slice{unsafe.Pointer(sel.lockorder), int(sel.ncase), int(sel.ncase)}
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700163 lockorder := *(*[]*hchan)(unsafe.Pointer(&lockslice))
164 var c *hchan
165 for _, c0 := range lockorder {
166 if c0 != nil && c0 != c {
167 c = c0
168 lock(&c.lock)
169 }
170 }
171}
172
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300173func selunlock(sel *hselect) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700174 // We must be very careful here to not touch sel after we have unlocked
175 // the last lock, because sel can be freed right after the last unlock.
176 // Consider the following situation.
177 // First M calls runtime·park() in runtime·selectgo() passing the sel.
178 // Once runtime·park() has unlocked the last lock, another M makes
179 // the G that calls select runnable again and schedules it for execution.
180 // When the G runs on another M, it locks all the locks and frees sel.
181 // Now if the first M touches sel, it will access freed memory.
182 n := int(sel.ncase)
183 r := 0
Michael Hudson-Doyleab4df702015-04-11 10:01:54 +1200184 lockslice := slice{unsafe.Pointer(sel.lockorder), n, n}
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700185 lockorder := *(*[]*hchan)(unsafe.Pointer(&lockslice))
186 // skip the default case
187 if n > 0 && lockorder[0] == nil {
188 r = 1
189 }
190 for i := n - 1; i >= r; i-- {
191 c := lockorder[i]
192 if i > 0 && c == lockorder[i-1] {
193 continue // will unlock it on the next iteration
194 }
195 unlock(&c.lock)
196 }
197}
198
Russ Coxb2cdf302014-11-11 17:08:33 -0500199func selparkcommit(gp *g, sel unsafe.Pointer) bool {
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300200 selunlock((*hselect)(sel))
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700201 return true
202}
203
204func block() {
Dmitry Vyukov919fd242015-02-21 21:01:40 +0300205 gopark(nil, nil, "select (no cases)", traceEvGoStop, 1) // forever
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700206}
207
208// overwrites return pc on stack to signal which case of the select
209// to run, so cannot appear at the top of a split stack.
210//go:nosplit
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300211func selectgo(sel *hselect) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700212 pc, offset := selectgoImpl(sel)
213 *(*bool)(add(unsafe.Pointer(&sel), uintptr(offset))) = true
214 setcallerpc(unsafe.Pointer(&sel), pc)
215}
216
217// selectgoImpl returns scase.pc and scase.so for the select
218// case which fired.
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300219func selectgoImpl(sel *hselect) (uintptr, uint16) {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700220 if debugSelect {
221 print("select: sel=", sel, "\n")
222 }
223
Michael Hudson-Doyleab4df702015-04-11 10:01:54 +1200224 scaseslice := slice{unsafe.Pointer(&sel.scase), int(sel.ncase), int(sel.ncase)}
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700225 scases := *(*[]scase)(unsafe.Pointer(&scaseslice))
226
227 var t0 int64
228 if blockprofilerate > 0 {
229 t0 = cputicks()
230 for i := 0; i < int(sel.ncase); i++ {
231 scases[i].releasetime = -1
232 }
233 }
234
235 // The compiler rewrites selects that statically have
236 // only 0 or 1 cases plus default into simpler constructs.
237 // The only way we can end up with such small sel.ncase
238 // values here is for a larger select in which most channels
239 // have been nilled out. The general code handles those
240 // cases correctly, and they are rare enough not to bother
241 // optimizing (and needing to test).
242
243 // generate permuted order
Michael Hudson-Doyleab4df702015-04-11 10:01:54 +1200244 pollslice := slice{unsafe.Pointer(sel.pollorder), int(sel.ncase), int(sel.ncase)}
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700245 pollorder := *(*[]uint16)(unsafe.Pointer(&pollslice))
Josh Bleecher Snyder9a0fd972015-04-27 10:46:02 -0700246 for i := 1; i < int(sel.ncase); i++ {
Keith Randall3306d112014-09-02 14:33:33 -0700247 j := int(fastrand1()) % (i + 1)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700248 pollorder[i] = pollorder[j]
Josh Bleecher Snyderfd5540e2014-12-18 11:48:39 -0800249 pollorder[j] = uint16(i)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700250 }
251
252 // sort the cases by Hchan address to get the locking order.
253 // simple heap sort, to guarantee n log n time and constant stack footprint.
Michael Hudson-Doyleab4df702015-04-11 10:01:54 +1200254 lockslice := slice{unsafe.Pointer(sel.lockorder), int(sel.ncase), int(sel.ncase)}
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700255 lockorder := *(*[]*hchan)(unsafe.Pointer(&lockslice))
256 for i := 0; i < int(sel.ncase); i++ {
257 j := i
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300258 c := scases[j].c
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700259 for j > 0 && lockorder[(j-1)/2].sortkey() < c.sortkey() {
260 k := (j - 1) / 2
261 lockorder[j] = lockorder[k]
262 j = k
263 }
264 lockorder[j] = c
265 }
266 for i := int(sel.ncase) - 1; i >= 0; i-- {
267 c := lockorder[i]
268 lockorder[i] = lockorder[0]
269 j := 0
270 for {
271 k := j*2 + 1
272 if k >= i {
273 break
274 }
275 if k+1 < i && lockorder[k].sortkey() < lockorder[k+1].sortkey() {
276 k++
277 }
278 if c.sortkey() < lockorder[k].sortkey() {
279 lockorder[j] = lockorder[k]
280 j = k
281 continue
282 }
283 break
284 }
285 lockorder[j] = c
286 }
287 /*
288 for i := 0; i+1 < int(sel.ncase); i++ {
289 if lockorder[i].sortkey() > lockorder[i+1].sortkey() {
290 print("i=", i, " x=", lockorder[i], " y=", lockorder[i+1], "\n")
Keith Randallb2a950b2014-12-27 20:58:00 -0800291 throw("select: broken sort")
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700292 }
293 }
294 */
295
296 // lock all the channels involved in the select
297 sellock(sel)
298
299 var (
300 gp *g
301 done uint32
302 sg *sudog
303 c *hchan
304 k *scase
305 sglist *sudog
306 sgnext *sudog
Dmitry Vyukov4396ea92015-03-11 18:29:12 +0300307 futile byte
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700308 )
309
310loop:
311 // pass 1 - look for something already waiting
312 var dfl *scase
313 var cas *scase
314 for i := 0; i < int(sel.ncase); i++ {
315 cas = &scases[pollorder[i]]
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300316 c = cas.c
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700317
318 switch cas.kind {
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300319 case caseRecv:
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700320 if c.dataqsiz > 0 {
321 if c.qcount > 0 {
322 goto asyncrecv
323 }
324 } else {
325 sg = c.sendq.dequeue()
326 if sg != nil {
327 goto syncrecv
328 }
329 }
330 if c.closed != 0 {
331 goto rclose
332 }
333
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300334 case caseSend:
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700335 if raceenabled {
336 racereadpc(unsafe.Pointer(c), cas.pc, chansendpc)
337 }
338 if c.closed != 0 {
339 goto sclose
340 }
341 if c.dataqsiz > 0 {
342 if c.qcount < c.dataqsiz {
343 goto asyncsend
344 }
345 } else {
346 sg = c.recvq.dequeue()
347 if sg != nil {
348 goto syncsend
349 }
350 }
351
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300352 case caseDefault:
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700353 dfl = cas
354 }
355 }
356
357 if dfl != nil {
358 selunlock(sel)
359 cas = dfl
360 goto retc
361 }
362
363 // pass 2 - enqueue on all chans
364 gp = getg()
365 done = 0
366 for i := 0; i < int(sel.ncase); i++ {
367 cas = &scases[pollorder[i]]
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300368 c = cas.c
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700369 sg := acquireSudog()
370 sg.g = gp
Keith Randallcd5b1442015-03-11 12:58:47 -0700371 // Note: selectdone is adjusted for stack copies in stack1.go:adjustsudogs
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700372 sg.selectdone = (*uint32)(noescape(unsafe.Pointer(&done)))
373 sg.elem = cas.elem
374 sg.releasetime = 0
375 if t0 != 0 {
376 sg.releasetime = -1
377 }
378 sg.waitlink = gp.waiting
379 gp.waiting = sg
380
381 switch cas.kind {
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300382 case caseRecv:
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700383 c.recvq.enqueue(sg)
384
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300385 case caseSend:
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700386 c.sendq.enqueue(sg)
387 }
388 }
389
390 // wait for someone to wake us up
391 gp.param = nil
Dmitry Vyukov4396ea92015-03-11 18:29:12 +0300392 gopark(selparkcommit, unsafe.Pointer(sel), "select", traceEvGoBlockSelect|futile, 2)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700393
394 // someone woke us up
395 sellock(sel)
396 sg = (*sudog)(gp.param)
Russ Coxa3630c92014-10-02 16:49:11 -0400397 gp.param = nil
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700398
399 // pass 3 - dequeue from unsuccessful chans
400 // otherwise they stack up on quiet channels
401 // record the successful case, if any.
402 // We singly-linked up the SudoGs in case order, so when
403 // iterating through the linked list they are in reverse order.
404 cas = nil
405 sglist = gp.waiting
Russ Coxa3630c92014-10-02 16:49:11 -0400406 // Clear all elem before unlinking from gp.waiting.
407 for sg1 := gp.waiting; sg1 != nil; sg1 = sg1.waitlink {
Russ Cox13da3602014-10-03 15:33:29 -0400408 sg1.selectdone = nil
Russ Coxa3630c92014-10-02 16:49:11 -0400409 sg1.elem = nil
410 }
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700411 gp.waiting = nil
412 for i := int(sel.ncase) - 1; i >= 0; i-- {
413 k = &scases[pollorder[i]]
414 if sglist.releasetime > 0 {
415 k.releasetime = sglist.releasetime
416 }
417 if sg == sglist {
Keith Randall8eb8b402014-12-08 10:11:08 -0800418 // sg has already been dequeued by the G that woke us up.
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700419 cas = k
420 } else {
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300421 c = k.c
422 if k.kind == caseSend {
Keith Randalle330cc12014-10-18 21:02:49 -0700423 c.sendq.dequeueSudoG(sglist)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700424 } else {
Keith Randalle330cc12014-10-18 21:02:49 -0700425 c.recvq.dequeueSudoG(sglist)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700426 }
427 }
428 sgnext = sglist.waitlink
Russ Coxb3932ba2014-11-16 16:44:45 -0500429 sglist.waitlink = nil
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700430 releaseSudog(sglist)
431 sglist = sgnext
432 }
433
434 if cas == nil {
Dmitry Vyukov4396ea92015-03-11 18:29:12 +0300435 futile = traceFutileWakeup
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700436 goto loop
437 }
438
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300439 c = cas.c
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700440
441 if c.dataqsiz > 0 {
Keith Randallb2a950b2014-12-27 20:58:00 -0800442 throw("selectgo: shouldn't happen")
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700443 }
444
445 if debugSelect {
446 print("wait-return: sel=", sel, " c=", c, " cas=", cas, " kind=", cas.kind, "\n")
447 }
448
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300449 if cas.kind == caseRecv {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700450 if cas.receivedp != nil {
451 *cas.receivedp = true
452 }
453 }
454
455 if raceenabled {
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300456 if cas.kind == caseRecv && cas.elem != nil {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700457 raceWriteObjectPC(c.elemtype, cas.elem, cas.pc, chanrecvpc)
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300458 } else if cas.kind == caseSend {
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700459 raceReadObjectPC(c.elemtype, cas.elem, cas.pc, chansendpc)
460 }
461 }
462
463 selunlock(sel)
464 goto retc
465
466asyncrecv:
467 // can receive from buffer
468 if raceenabled {
469 if cas.elem != nil {
470 raceWriteObjectPC(c.elemtype, cas.elem, cas.pc, chanrecvpc)
471 }
472 raceacquire(chanbuf(c, c.recvx))
473 racerelease(chanbuf(c, c.recvx))
474 }
475 if cas.receivedp != nil {
476 *cas.receivedp = true
477 }
478 if cas.elem != nil {
Russ Cox54bb4dc2014-12-29 10:07:47 -0500479 typedmemmove(c.elemtype, cas.elem, chanbuf(c, c.recvx))
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700480 }
481 memclr(chanbuf(c, c.recvx), uintptr(c.elemsize))
482 c.recvx++
483 if c.recvx == c.dataqsiz {
484 c.recvx = 0
485 }
486 c.qcount--
487 sg = c.sendq.dequeue()
488 if sg != nil {
489 gp = sg.g
490 selunlock(sel)
491 if sg.releasetime != 0 {
492 sg.releasetime = cputicks()
493 }
Dmitry Vyukov919fd242015-02-21 21:01:40 +0300494 goready(gp, 3)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700495 } else {
496 selunlock(sel)
497 }
498 goto retc
499
500asyncsend:
501 // can send to buffer
502 if raceenabled {
503 raceacquire(chanbuf(c, c.sendx))
504 racerelease(chanbuf(c, c.sendx))
505 raceReadObjectPC(c.elemtype, cas.elem, cas.pc, chansendpc)
506 }
Russ Cox54bb4dc2014-12-29 10:07:47 -0500507 typedmemmove(c.elemtype, chanbuf(c, c.sendx), cas.elem)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700508 c.sendx++
509 if c.sendx == c.dataqsiz {
510 c.sendx = 0
511 }
512 c.qcount++
513 sg = c.recvq.dequeue()
514 if sg != nil {
515 gp = sg.g
516 selunlock(sel)
517 if sg.releasetime != 0 {
518 sg.releasetime = cputicks()
519 }
Dmitry Vyukov919fd242015-02-21 21:01:40 +0300520 goready(gp, 3)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700521 } else {
522 selunlock(sel)
523 }
524 goto retc
525
526syncrecv:
527 // can receive from sleeping sender (sg)
528 if raceenabled {
529 if cas.elem != nil {
530 raceWriteObjectPC(c.elemtype, cas.elem, cas.pc, chanrecvpc)
531 }
532 racesync(c, sg)
533 }
534 selunlock(sel)
535 if debugSelect {
536 print("syncrecv: sel=", sel, " c=", c, "\n")
537 }
538 if cas.receivedp != nil {
539 *cas.receivedp = true
540 }
541 if cas.elem != nil {
Russ Cox54bb4dc2014-12-29 10:07:47 -0500542 typedmemmove(c.elemtype, cas.elem, sg.elem)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700543 }
Russ Coxa3630c92014-10-02 16:49:11 -0400544 sg.elem = nil
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700545 gp = sg.g
546 gp.param = unsafe.Pointer(sg)
547 if sg.releasetime != 0 {
548 sg.releasetime = cputicks()
549 }
Dmitry Vyukov919fd242015-02-21 21:01:40 +0300550 goready(gp, 3)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700551 goto retc
552
553rclose:
554 // read at end of closed channel
555 selunlock(sel)
556 if cas.receivedp != nil {
557 *cas.receivedp = false
558 }
559 if cas.elem != nil {
560 memclr(cas.elem, uintptr(c.elemsize))
561 }
562 if raceenabled {
563 raceacquire(unsafe.Pointer(c))
564 }
565 goto retc
566
567syncsend:
568 // can send to sleeping receiver (sg)
569 if raceenabled {
570 raceReadObjectPC(c.elemtype, cas.elem, cas.pc, chansendpc)
571 racesync(c, sg)
572 }
573 selunlock(sel)
574 if debugSelect {
575 print("syncsend: sel=", sel, " c=", c, "\n")
576 }
577 if sg.elem != nil {
Russ Cox8c3533c2015-07-11 11:53:58 -0400578 syncsend(c, sg, cas.elem)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700579 }
Russ Coxa3630c92014-10-02 16:49:11 -0400580 sg.elem = nil
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700581 gp = sg.g
582 gp.param = unsafe.Pointer(sg)
583 if sg.releasetime != 0 {
584 sg.releasetime = cputicks()
585 }
Dmitry Vyukov919fd242015-02-21 21:01:40 +0300586 goready(gp, 3)
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700587
588retc:
589 if cas.releasetime > 0 {
590 blockevent(cas.releasetime-t0, 2)
591 }
592 return cas.pc, cas.so
593
594sclose:
595 // send on closed channel
596 selunlock(sel)
597 panic("send on closed channel")
598}
599
600func (c *hchan) sortkey() uintptr {
601 // TODO(khr): if we have a moving garbage collector, we'll need to
602 // change this function.
603 return uintptr(unsafe.Pointer(c))
604}
605
606// A runtimeSelect is a single case passed to rselect.
607// This must match ../reflect/value.go:/runtimeSelect
608type runtimeSelect struct {
609 dir selectDir
610 typ unsafe.Pointer // channel type (not used here)
611 ch *hchan // channel
612 val unsafe.Pointer // ptr to data (SendDir) or ptr to receive buffer (RecvDir)
613}
614
615// These values must match ../reflect/value.go:/SelectDir.
616type selectDir int
617
618const (
619 _ selectDir = iota
620 selectSend // case Chan <- Send
621 selectRecv // case <-Chan:
622 selectDefault // default
623)
624
Russ Cox7a524a12014-12-22 13:27:53 -0500625//go:linkname reflect_rselect reflect.rselect
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700626func reflect_rselect(cases []runtimeSelect) (chosen int, recvOK bool) {
627 // flagNoScan is safe here, because all objects are also referenced from cases.
628 size := selectsize(uintptr(len(cases)))
Dmitry Vyukovfcc164d2015-02-14 16:42:51 +0300629 sel := (*hselect)(mallocgc(size, nil, flagNoScan))
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700630 newselect(sel, int64(size), int32(len(cases)))
631 r := new(bool)
632 for i := range cases {
633 rc := &cases[i]
634 switch rc.dir {
635 case selectDefault:
636 selectdefaultImpl(sel, uintptr(i), 0)
637 case selectSend:
638 if rc.ch == nil {
639 break
640 }
641 selectsendImpl(sel, rc.ch, uintptr(i), rc.val, 0)
642 case selectRecv:
643 if rc.ch == nil {
644 break
645 }
646 selectrecvImpl(sel, rc.ch, uintptr(i), rc.val, r, 0)
647 }
648 }
649
650 pc, _ := selectgoImpl(sel)
651 chosen = int(pc)
652 recvOK = *r
653 return
654}
655
Keith Randall8eb8b402014-12-08 10:11:08 -0800656func (q *waitq) dequeueSudoG(sgp *sudog) {
657 x := sgp.prev
658 y := sgp.next
659 if x != nil {
660 if y != nil {
661 // middle of queue
662 x.next = y
663 y.prev = x
664 sgp.next = nil
665 sgp.prev = nil
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700666 return
667 }
Keith Randall8eb8b402014-12-08 10:11:08 -0800668 // end of queue
669 x.next = nil
670 q.last = x
671 sgp.prev = nil
672 return
673 }
674 if y != nil {
675 // start of queue
676 y.prev = nil
677 q.first = y
678 sgp.next = nil
679 return
680 }
681
682 // x==y==nil. Either sgp is the only element in the queue,
683 // or it has already been removed. Use q.first to disambiguate.
684 if q.first == sgp {
685 q.first = nil
686 q.last = nil
Keith Randall1d8fa7f2014-09-02 14:13:29 -0700687 }
688}