aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/chan.c
blob: 4559c0f2d0d28a8d8503a30ecfd70a4a4694d38f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
// AUTO-GENERATED by autogen.sh; DO NOT EDIT

#include "runtime.h"
#include "arch.h"
#include "go-type.h"
#include "race.h"
#include "malloc.h"
#include "chan.h"

#line 13 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
uint32 runtime_Hchansize = sizeof ( Hchan ) ; 
#line 15 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void dequeueg ( WaitQ* ) ; 
static SudoG* dequeue ( WaitQ* ) ; 
static void enqueue ( WaitQ* , SudoG* ) ; 
static void racesync ( Hchan* , SudoG* ) ; 
#line 20 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static Hchan* 
makechan ( ChanType *t , int64 hint ) 
{ 
Hchan *c; 
uintptr n; 
const Type *elem; 
#line 27 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
elem = t->__element_type; 
#line 30 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( elem->__size >= ( 1<<16 ) ) 
runtime_throw ( "makechan: invalid channel element type" ) ; 
#line 33 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( hint < 0 || ( intgo ) hint != hint || ( elem->__size > 0 && ( uintptr ) hint > ( MaxMem - sizeof ( *c ) ) / elem->__size ) ) 
runtime_panicstring ( "makechan: size out of range" ) ; 
#line 36 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
n = sizeof ( *c ) ; 
n = ROUND ( n , elem->__align ) ; 
#line 40 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
c = ( Hchan* ) runtime_mallocgc ( sizeof ( *c ) + hint*elem->__size , ( uintptr ) t | TypeInfo_Chan , 0 ) ; 
c->elemsize = elem->__size; 
c->elemtype = elem; 
c->dataqsiz = hint; 
#line 45 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) 
runtime_printf ( "makechan: chan=%p; elemsize=%D; dataqsiz=%D\n" , 
c , ( int64 ) elem->__size , ( int64 ) c->dataqsiz ) ; 
#line 49 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
return c; 
} 
Hchan* reflect_makechan(ChanType* t, uint64 size) __asm__ (GOSYM_PREFIX "reflect.makechan");
Hchan* reflect_makechan(ChanType* t, uint64 size)
{
  Hchan* c;
#line 52 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	c = makechan(t, size);
return c;
}

#line 56 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
Hchan* 
__go_new_channel ( ChanType *t , uintptr hint ) 
{ 
return makechan ( t , hint ) ; 
} 
#line 62 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
Hchan* 
__go_new_channel_big ( ChanType *t , uint64 hint ) 
{ 
return makechan ( t , hint ) ; 
} 
#line 82 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static bool 
chansend ( ChanType *t , Hchan *c , byte *ep , bool block , void *pc ) 
{ 
SudoG *sg; 
SudoG mysg; 
G* gp; 
int64 t0; 
G* g; 
#line 91 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
g = runtime_g ( ) ; 
#line 93 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) 
runtime_racereadobjectpc ( ep , t->__element_type , runtime_getcallerpc ( &t ) , chansend ) ; 
#line 96 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( c == nil ) { 
USED ( t ) ; 
if ( !block ) 
return false; 
runtime_park ( nil , nil , "chan send (nil chan)" ) ; 
return false; 
} 
#line 104 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( runtime_gcwaiting ( ) ) 
runtime_gosched ( ) ; 
#line 107 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) { 
runtime_printf ( "chansend: chan=%p\n" , c ) ; 
} 
#line 111 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
t0 = 0; 
mysg.releasetime = 0; 
if ( runtime_blockprofilerate > 0 ) { 
t0 = runtime_cputicks ( ) ; 
mysg.releasetime = -1; 
} 
#line 118 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
runtime_lock ( c ) ; 
if ( raceenabled ) 
runtime_racereadpc ( c , pc , chansend ) ; 
if ( c->closed ) 
goto closed; 
#line 124 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( c->dataqsiz > 0 ) 
goto asynch; 
#line 127 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sg = dequeue ( &c->recvq ) ; 
if ( sg != nil ) { 
if ( raceenabled ) 
racesync ( c , sg ) ; 
runtime_unlock ( c ) ; 
#line 133 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
gp = sg->g; 
gp->param = sg; 
if ( sg->elem != nil ) 
runtime_memmove ( sg->elem , ep , c->elemsize ) ; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
return true; 
} 
#line 143 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( !block ) { 
runtime_unlock ( c ) ; 
return false; 
} 
#line 148 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
mysg.elem = ep; 
mysg.g = g; 
mysg.selectdone = nil; 
g->param = nil; 
enqueue ( &c->sendq , &mysg ) ; 
runtime_parkunlock ( c , "chan send" ) ; 
#line 155 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( g->param == nil ) { 
runtime_lock ( c ) ; 
if ( !c->closed ) 
runtime_throw ( "chansend: spurious wakeup" ) ; 
goto closed; 
} 
#line 162 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( mysg.releasetime > 0 ) 
runtime_blockevent ( mysg.releasetime - t0 , 2 ) ; 
#line 165 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
return true; 
#line 167 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
asynch: 
if ( c->closed ) 
goto closed; 
#line 171 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( c->qcount >= c->dataqsiz ) { 
if ( !block ) { 
runtime_unlock ( c ) ; 
return false; 
} 
mysg.g = g; 
mysg.elem = nil; 
mysg.selectdone = nil; 
enqueue ( &c->sendq , &mysg ) ; 
runtime_parkunlock ( c , "chan send" ) ; 
#line 182 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
runtime_lock ( c ) ; 
goto asynch; 
} 
#line 186 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) 
runtime_racerelease ( chanbuf ( c , c->sendx ) ) ; 
#line 189 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
runtime_memmove ( chanbuf ( c , c->sendx ) , ep , c->elemsize ) ; 
if ( ++c->sendx == c->dataqsiz ) 
c->sendx = 0; 
c->qcount++; 
#line 194 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sg = dequeue ( &c->recvq ) ; 
if ( sg != nil ) { 
gp = sg->g; 
runtime_unlock ( c ) ; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
} else 
runtime_unlock ( c ) ; 
if ( mysg.releasetime > 0 ) 
runtime_blockevent ( mysg.releasetime - t0 , 2 ) ; 
return true; 
#line 207 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
closed: 
runtime_unlock ( c ) ; 
runtime_panicstring ( "send on closed channel" ) ; 
return false; 
} 
#line 214 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static bool 
chanrecv ( ChanType *t , Hchan* c , byte *ep , bool block , bool *received ) 
{ 
SudoG *sg; 
SudoG mysg; 
G *gp; 
int64 t0; 
G *g; 
#line 223 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( runtime_gcwaiting ( ) ) 
runtime_gosched ( ) ; 
#line 228 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) 
runtime_printf ( "chanrecv: chan=%p\n" , c ) ; 
#line 231 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
g = runtime_g ( ) ; 
#line 233 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( c == nil ) { 
USED ( t ) ; 
if ( !block ) 
return false; 
runtime_park ( nil , nil , "chan receive (nil chan)" ) ; 
return false; 
} 
#line 241 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
t0 = 0; 
mysg.releasetime = 0; 
if ( runtime_blockprofilerate > 0 ) { 
t0 = runtime_cputicks ( ) ; 
mysg.releasetime = -1; 
} 
#line 248 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
runtime_lock ( c ) ; 
if ( c->dataqsiz > 0 ) 
goto asynch; 
#line 252 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( c->closed ) 
goto closed; 
#line 255 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sg = dequeue ( &c->sendq ) ; 
if ( sg != nil ) { 
if ( raceenabled ) 
racesync ( c , sg ) ; 
runtime_unlock ( c ) ; 
#line 261 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( ep != nil ) 
runtime_memmove ( ep , sg->elem , c->elemsize ) ; 
gp = sg->g; 
gp->param = sg; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
#line 269 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( received != nil ) 
*received = true; 
return true; 
} 
#line 274 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( !block ) { 
runtime_unlock ( c ) ; 
return false; 
} 
#line 279 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
mysg.elem = ep; 
mysg.g = g; 
mysg.selectdone = nil; 
g->param = nil; 
enqueue ( &c->recvq , &mysg ) ; 
runtime_parkunlock ( c , "chan receive" ) ; 
#line 286 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( g->param == nil ) { 
runtime_lock ( c ) ; 
if ( !c->closed ) 
runtime_throw ( "chanrecv: spurious wakeup" ) ; 
goto closed; 
} 
#line 293 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( received != nil ) 
*received = true; 
if ( mysg.releasetime > 0 ) 
runtime_blockevent ( mysg.releasetime - t0 , 2 ) ; 
return true; 
#line 299 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
asynch: 
if ( c->qcount <= 0 ) { 
if ( c->closed ) 
goto closed; 
#line 304 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( !block ) { 
runtime_unlock ( c ) ; 
if ( received != nil ) 
*received = false; 
return false; 
} 
mysg.g = g; 
mysg.elem = nil; 
mysg.selectdone = nil; 
enqueue ( &c->recvq , &mysg ) ; 
runtime_parkunlock ( c , "chan receive" ) ; 
#line 316 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
runtime_lock ( c ) ; 
goto asynch; 
} 
#line 320 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) 
runtime_raceacquire ( chanbuf ( c , c->recvx ) ) ; 
#line 323 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( ep != nil ) 
runtime_memmove ( ep , chanbuf ( c , c->recvx ) , c->elemsize ) ; 
runtime_memclr ( chanbuf ( c , c->recvx ) , c->elemsize ) ; 
if ( ++c->recvx == c->dataqsiz ) 
c->recvx = 0; 
c->qcount--; 
#line 330 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sg = dequeue ( &c->sendq ) ; 
if ( sg != nil ) { 
gp = sg->g; 
runtime_unlock ( c ) ; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
} else 
runtime_unlock ( c ) ; 
#line 340 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( received != nil ) 
*received = true; 
if ( mysg.releasetime > 0 ) 
runtime_blockevent ( mysg.releasetime - t0 , 2 ) ; 
return true; 
#line 346 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
closed: 
if ( ep != nil ) 
runtime_memclr ( ep , c->elemsize ) ; 
if ( received != nil ) 
*received = false; 
if ( raceenabled ) 
runtime_raceacquire ( c ) ; 
runtime_unlock ( c ) ; 
if ( mysg.releasetime > 0 ) 
runtime_blockevent ( mysg.releasetime - t0 , 2 ) ; 
return true; 
} 
#line 361 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
void 
__go_send_small ( ChanType *t , Hchan* c , uint64 val ) 
{ 
union 
{ 
byte b[sizeof ( uint64 ) ]; 
uint64 v; 
} u; 
byte *v; 
#line 371 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
u.v = val; 
#ifndef WORDS_BIGENDIAN 
v = u.b; 
#else 
v = u.b + sizeof ( uint64 ) - t->__element_type->__size; 
#endif 
chansend ( t , c , v , true , runtime_getcallerpc ( &t ) ) ; 
} 
#line 382 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
void 
__go_send_big ( ChanType *t , Hchan* c , byte* v ) 
{ 
chansend ( t , c , v , true , runtime_getcallerpc ( &t ) ) ; 
} 
#line 390 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
void 
__go_receive ( ChanType *t , Hchan* c , byte* v ) 
{ 
chanrecv ( t , c , v , true , nil ) ; 
} 
#line 396 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
_Bool runtime_chanrecv2 ( ChanType *t , Hchan* c , byte* v ) 
__asm__ ( GOSYM_PREFIX "runtime.chanrecv2" ) ; 
#line 399 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
_Bool 
runtime_chanrecv2 ( ChanType *t , Hchan* c , byte* v ) 
{ 
bool received = false; 
#line 404 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
chanrecv ( t , c , v , true , &received ) ; 
return received; 
} 
bool runtime_selectnbsend(ChanType* t, Hchan* c, byte* elem) __asm__ (GOSYM_PREFIX "runtime.selectnbsend");
bool runtime_selectnbsend(ChanType* t, Hchan* c, byte* elem)
{
  bool selected;
#line 425 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	selected = chansend(t, c, elem, false, runtime_getcallerpc(&t));
return selected;
}
bool runtime_selectnbrecv(ChanType* t, byte* elem, Hchan* c) __asm__ (GOSYM_PREFIX "runtime.selectnbrecv");
bool runtime_selectnbrecv(ChanType* t, byte* elem, Hchan* c)
{
  bool selected;
#line 446 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	selected = chanrecv(t, c, elem, false, nil);
return selected;
}
bool runtime_selectnbrecv2(ChanType* t, byte* elem, bool* received, Hchan* c) __asm__ (GOSYM_PREFIX "runtime.selectnbrecv2");
bool runtime_selectnbrecv2(ChanType* t, byte* elem, bool* received, Hchan* c)
{
  bool selected;
#line 467 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	bool r;

	selected = chanrecv(t, c, elem, false, received == nil ? nil : &r);
	if(received != nil)
		*received = r;
return selected;
}
bool reflect_chansend(ChanType* t, Hchan* c, byte* elem, bool nb) __asm__ (GOSYM_PREFIX "reflect.chansend");
bool reflect_chansend(ChanType* t, Hchan* c, byte* elem, bool nb)
{
  bool selected;
#line 475 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	selected = chansend(t, c, elem, !nb, runtime_getcallerpc(&t));
return selected;
}
struct reflect_chanrecv_ret {
  bool selected;
  bool received;
};
struct reflect_chanrecv_ret reflect_chanrecv(ChanType* t, Hchan* c, bool nb, byte* elem) __asm__ (GOSYM_PREFIX "reflect.chanrecv");
struct reflect_chanrecv_ret reflect_chanrecv(ChanType* t, Hchan* c, bool nb, byte* elem)
{
  bool selected;
  bool received;
#line 479 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	received = false;
	selected = chanrecv(t, c, elem, !nb, &received);
  {
    struct reflect_chanrecv_ret __ret;
    __ret.selected = selected;
    __ret.received = received;
    return __ret;
  }
}

#line 484 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static Select* newselect ( int32 ) ; 
byte* runtime_newselect(int32 size) __asm__ (GOSYM_PREFIX "runtime.newselect");
byte* runtime_newselect(int32 size)
{
  byte* sel;
#line 486 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

 	sel = (byte*)newselect(size);
return sel;
}

#line 490 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static Select* 
newselect ( int32 size ) 
{ 
int32 n; 
Select *sel; 
#line 496 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
n = 0; 
if ( size > 1 ) 
n = size-1; 
#line 504 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sel = runtime_mal ( sizeof ( *sel ) + 
n*sizeof ( sel->scase[0] ) + 
size*sizeof ( sel->lockorder[0] ) + 
size*sizeof ( sel->pollorder[0] ) ) ; 
#line 509 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sel->tcase = size; 
sel->ncase = 0; 
sel->lockorder = ( void* ) ( sel->scase + size ) ; 
sel->pollorder = ( void* ) ( sel->lockorder + size ) ; 
#line 514 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) 
runtime_printf ( "newselect s=%p size=%d\n" , sel , size ) ; 
return sel; 
} 
#line 520 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void selectsend ( Select *sel , Hchan *c , int index , void *elem ) ; 
void runtime_selectsend(Select* sel, Hchan* c, byte* elem, int32 index) __asm__ (GOSYM_PREFIX "runtime.selectsend");
void runtime_selectsend(Select* sel, Hchan* c, byte* elem, int32 index)
{
#line 522 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	// nil cases do not compete
	if(c != nil)
		selectsend(sel, c, index, elem);
}

#line 528 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
selectsend ( Select *sel , Hchan *c , int index , void *elem ) 
{ 
int32 i; 
Scase *cas; 
#line 534 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
i = sel->ncase; 
if ( i >= sel->tcase ) 
runtime_throw ( "selectsend: too many cases" ) ; 
sel->ncase = i+1; 
cas = &sel->scase[i]; 
#line 540 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
cas->index = index; 
cas->chan = c; 
cas->kind = CaseSend; 
cas->sg.elem = elem; 
#line 545 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) 
runtime_printf ( "selectsend s=%p index=%d chan=%p\n" , 
sel , cas->index , cas->chan ) ; 
} 
#line 551 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void selectrecv ( Select *sel , Hchan *c , int index , void *elem , bool* ) ; 
void runtime_selectrecv(Select* sel, Hchan* c, byte* elem, int32 index) __asm__ (GOSYM_PREFIX "runtime.selectrecv");
void runtime_selectrecv(Select* sel, Hchan* c, byte* elem, int32 index)
{
#line 553 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	// nil cases do not compete
	if(c != nil)
		selectrecv(sel, c, index, elem, nil);
}
void runtime_selectrecv2(Select* sel, Hchan* c, byte* elem, bool* received, int32 index) __asm__ (GOSYM_PREFIX "runtime.selectrecv2");
void runtime_selectrecv2(Select* sel, Hchan* c, byte* elem, bool* received, int32 index)
{
#line 559 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	// nil cases do not compete
	if(c != nil)
		selectrecv(sel, c, index, elem, received);
}

#line 565 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
selectrecv ( Select *sel , Hchan *c , int index , void *elem , bool *received ) 
{ 
int32 i; 
Scase *cas; 
#line 571 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
i = sel->ncase; 
if ( i >= sel->tcase ) 
runtime_throw ( "selectrecv: too many cases" ) ; 
sel->ncase = i+1; 
cas = &sel->scase[i]; 
cas->index = index; 
cas->chan = c; 
#line 579 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
cas->kind = CaseRecv; 
cas->sg.elem = elem; 
cas->receivedp = received; 
#line 583 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) 
runtime_printf ( "selectrecv s=%p index=%d chan=%p\n" , 
sel , cas->index , cas->chan ) ; 
} 
#line 589 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void selectdefault ( Select* , int ) ; 
void runtime_selectdefault(Select* sel, int32 index) __asm__ (GOSYM_PREFIX "runtime.selectdefault");
void runtime_selectdefault(Select* sel, int32 index)
{
#line 591 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	selectdefault(sel, index);
}

#line 595 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
selectdefault ( Select *sel , int32 index ) 
{ 
int32 i; 
Scase *cas; 
#line 601 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
i = sel->ncase; 
if ( i >= sel->tcase ) 
runtime_throw ( "selectdefault: too many cases" ) ; 
sel->ncase = i+1; 
cas = &sel->scase[i]; 
cas->index = index; 
cas->chan = nil; 
#line 609 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
cas->kind = CaseDefault; 
#line 611 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) 
runtime_printf ( "selectdefault s=%p index=%d\n" , 
sel , cas->index ) ; 
} 
#line 616 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
sellock ( Select *sel ) 
{ 
uint32 i; 
Hchan *c , *c0; 
#line 622 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
c = nil; 
for ( i=0; i<sel->ncase; i++ ) { 
c0 = sel->lockorder[i]; 
if ( c0 && c0 != c ) { 
c = sel->lockorder[i]; 
runtime_lock ( c ) ; 
} 
} 
} 
#line 632 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
selunlock ( Select *sel ) 
{ 
int32 i , n , r; 
Hchan *c; 
#line 646 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
n = ( int32 ) sel->ncase; 
r = 0; 
#line 649 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( n>0 && sel->lockorder[0] == nil ) 
r = 1; 
for ( i = n-1; i >= r; i-- ) { 
c = sel->lockorder[i]; 
if ( i>0 && sel->lockorder[i-1] == c ) 
continue; 
runtime_unlock ( c ) ; 
} 
} 
#line 659 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static bool 
selparkcommit ( G *gp , void *sel ) 
{ 
USED ( gp ) ; 
selunlock ( sel ) ; 
return true; 
} 
void runtime_block() __asm__ (GOSYM_PREFIX "runtime.block");
void runtime_block()
{
#line 667 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	runtime_park(nil, nil, "select (no cases)");	// forever
}

#line 671 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static int selectgo ( Select** ) ; 
int32 runtime_selectgo(Select* sel) __asm__ (GOSYM_PREFIX "runtime.selectgo");
int32 runtime_selectgo(Select* sel)
{
  int32 ret;
#line 675 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	return selectgo(&sel);
return ret;
}

#line 679 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static int 
selectgo ( Select **selp ) 
{ 
Select *sel; 
uint32 o , i , j , k , done; 
int64 t0; 
Scase *cas , *dfl; 
Hchan *c; 
SudoG *sg; 
G *gp; 
int index; 
G *g; 
#line 692 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sel = *selp; 
if ( runtime_gcwaiting ( ) ) 
runtime_gosched ( ) ; 
#line 696 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) 
runtime_printf ( "select: sel=%p\n" , sel ) ; 
#line 699 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
g = runtime_g ( ) ; 
#line 701 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
t0 = 0; 
if ( runtime_blockprofilerate > 0 ) { 
t0 = runtime_cputicks ( ) ; 
for ( i=0; i<sel->ncase; i++ ) 
sel->scase[i].sg.releasetime = -1; 
} 
#line 717 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
for ( i=0; i<sel->ncase; i++ ) 
sel->pollorder[i] = i; 
for ( i=1; i<sel->ncase; i++ ) { 
o = sel->pollorder[i]; 
j = runtime_fastrand1 ( ) % ( i+1 ) ; 
sel->pollorder[i] = sel->pollorder[j]; 
sel->pollorder[j] = o; 
} 
#line 728 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
for ( i=0; i<sel->ncase; i++ ) { 
j = i; 
c = sel->scase[j].chan; 
while ( j > 0 && sel->lockorder[k= ( j-1 ) /2] < c ) { 
sel->lockorder[j] = sel->lockorder[k]; 
j = k; 
} 
sel->lockorder[j] = c; 
} 
for ( i=sel->ncase; i-->0; ) { 
c = sel->lockorder[i]; 
sel->lockorder[i] = sel->lockorder[0]; 
j = 0; 
for ( ;; ) { 
k = j*2+1; 
if ( k >= i ) 
break; 
if ( k+1 < i && sel->lockorder[k] < sel->lockorder[k+1] ) 
k++; 
if ( c < sel->lockorder[k] ) { 
sel->lockorder[j] = sel->lockorder[k]; 
j = k; 
continue; 
} 
break; 
} 
sel->lockorder[j] = c; 
} 
#line 763 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sellock ( sel ) ; 
#line 765 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
loop: 
#line 767 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
dfl = nil; 
for ( i=0; i<sel->ncase; i++ ) { 
o = sel->pollorder[i]; 
cas = &sel->scase[o]; 
c = cas->chan; 
#line 773 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
switch ( cas->kind ) { 
case CaseRecv: 
if ( c->dataqsiz > 0 ) { 
if ( c->qcount > 0 ) 
goto asyncrecv; 
} else { 
sg = dequeue ( &c->sendq ) ; 
if ( sg != nil ) 
goto syncrecv; 
} 
if ( c->closed ) 
goto rclose; 
break; 
#line 787 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
case CaseSend: 
if ( raceenabled ) 
runtime_racereadpc ( c , runtime_selectgo , chansend ) ; 
if ( c->closed ) 
goto sclose; 
if ( c->dataqsiz > 0 ) { 
if ( c->qcount < c->dataqsiz ) 
goto asyncsend; 
} else { 
sg = dequeue ( &c->recvq ) ; 
if ( sg != nil ) 
goto syncsend; 
} 
break; 
#line 802 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
case CaseDefault: 
dfl = cas; 
break; 
} 
} 
#line 808 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( dfl != nil ) { 
selunlock ( sel ) ; 
cas = dfl; 
goto retc; 
} 
#line 816 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
done = 0; 
for ( i=0; i<sel->ncase; i++ ) { 
o = sel->pollorder[i]; 
cas = &sel->scase[o]; 
c = cas->chan; 
sg = &cas->sg; 
sg->g = g; 
sg->selectdone = &done; 
#line 825 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
switch ( cas->kind ) { 
case CaseRecv: 
enqueue ( &c->recvq , sg ) ; 
break; 
#line 830 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
case CaseSend: 
enqueue ( &c->sendq , sg ) ; 
break; 
} 
} 
#line 836 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
g->param = nil; 
runtime_park ( selparkcommit , sel , "select" ) ; 
#line 839 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sellock ( sel ) ; 
sg = g->param; 
#line 844 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
for ( i=0; i<sel->ncase; i++ ) { 
cas = &sel->scase[i]; 
if ( cas != ( Scase* ) sg ) { 
c = cas->chan; 
if ( cas->kind == CaseSend ) 
dequeueg ( &c->sendq ) ; 
else 
dequeueg ( &c->recvq ) ; 
} 
} 
#line 855 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( sg == nil ) 
goto loop; 
#line 858 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
cas = ( Scase* ) sg; 
c = cas->chan; 
#line 861 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( c->dataqsiz > 0 ) 
runtime_throw ( "selectgo: shouldn't happen" ) ; 
#line 864 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( debug ) 
runtime_printf ( "wait-return: sel=%p c=%p cas=%p kind=%d\n" , 
sel , c , cas , cas->kind ) ; 
#line 868 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( cas->kind == CaseRecv ) { 
if ( cas->receivedp != nil ) 
*cas->receivedp = true; 
} 
#line 873 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) { 
if ( cas->kind == CaseRecv && cas->sg.elem != nil ) 
runtime_racewriteobjectpc ( cas->sg.elem , c->elemtype , selectgo , chanrecv ) ; 
else if ( cas->kind == CaseSend ) 
runtime_racereadobjectpc ( cas->sg.elem , c->elemtype , selectgo , chansend ) ; 
} 
#line 880 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
selunlock ( sel ) ; 
goto retc; 
#line 883 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
asyncrecv: 
#line 885 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) { 
if ( cas->sg.elem != nil ) 
runtime_racewriteobjectpc ( cas->sg.elem , c->elemtype , selectgo , chanrecv ) ; 
runtime_raceacquire ( chanbuf ( c , c->recvx ) ) ; 
} 
if ( cas->receivedp != nil ) 
*cas->receivedp = true; 
if ( cas->sg.elem != nil ) 
runtime_memmove ( cas->sg.elem , chanbuf ( c , c->recvx ) , c->elemsize ) ; 
runtime_memclr ( chanbuf ( c , c->recvx ) , c->elemsize ) ; 
if ( ++c->recvx == c->dataqsiz ) 
c->recvx = 0; 
c->qcount--; 
sg = dequeue ( &c->sendq ) ; 
if ( sg != nil ) { 
gp = sg->g; 
selunlock ( sel ) ; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
} else { 
selunlock ( sel ) ; 
} 
goto retc; 
#line 910 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
asyncsend: 
#line 912 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) { 
runtime_racerelease ( chanbuf ( c , c->sendx ) ) ; 
runtime_racereadobjectpc ( cas->sg.elem , c->elemtype , selectgo , chansend ) ; 
} 
runtime_memmove ( chanbuf ( c , c->sendx ) , cas->sg.elem , c->elemsize ) ; 
if ( ++c->sendx == c->dataqsiz ) 
c->sendx = 0; 
c->qcount++; 
sg = dequeue ( &c->recvq ) ; 
if ( sg != nil ) { 
gp = sg->g; 
selunlock ( sel ) ; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
} else { 
selunlock ( sel ) ; 
} 
goto retc; 
#line 932 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
syncrecv: 
#line 934 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) { 
if ( cas->sg.elem != nil ) 
runtime_racewriteobjectpc ( cas->sg.elem , c->elemtype , selectgo , chanrecv ) ; 
racesync ( c , sg ) ; 
} 
selunlock ( sel ) ; 
if ( debug ) 
runtime_printf ( "syncrecv: sel=%p c=%p o=%d\n" , sel , c , o ) ; 
if ( cas->receivedp != nil ) 
*cas->receivedp = true; 
if ( cas->sg.elem != nil ) 
runtime_memmove ( cas->sg.elem , sg->elem , c->elemsize ) ; 
gp = sg->g; 
gp->param = sg; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
goto retc; 
#line 953 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
rclose: 
#line 955 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
selunlock ( sel ) ; 
if ( cas->receivedp != nil ) 
*cas->receivedp = false; 
if ( cas->sg.elem != nil ) 
runtime_memclr ( cas->sg.elem , c->elemsize ) ; 
if ( raceenabled ) 
runtime_raceacquire ( c ) ; 
goto retc; 
#line 964 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
syncsend: 
#line 966 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) { 
runtime_racereadobjectpc ( cas->sg.elem , c->elemtype , selectgo , chansend ) ; 
racesync ( c , sg ) ; 
} 
selunlock ( sel ) ; 
if ( debug ) 
runtime_printf ( "syncsend: sel=%p c=%p o=%d\n" , sel , c , o ) ; 
if ( sg->elem != nil ) 
runtime_memmove ( sg->elem , cas->sg.elem , c->elemsize ) ; 
gp = sg->g; 
gp->param = sg; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
#line 981 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
retc: 
#line 983 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
index = cas->index; 
if ( cas->sg.releasetime > 0 ) 
runtime_blockevent ( cas->sg.releasetime - t0 , 2 ) ; 
runtime_free ( sel ) ; 
return index; 
#line 989 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
sclose: 
#line 991 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
selunlock ( sel ) ; 
runtime_panicstring ( "send on closed channel" ) ; 
return 0; 
} 
#line 997 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
typedef struct runtimeSelect runtimeSelect; 
struct runtimeSelect 
{ 
uintptr dir; 
ChanType *typ; 
Hchan *ch; 
byte *val; 
} ; 
#line 1007 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
enum SelectDir { 
SelectSend = 1 , 
SelectRecv , 
SelectDefault , 
} ; 
struct reflect_rselect_ret {
  intgo chosen;
  bool recvOK;
};
struct reflect_rselect_ret reflect_rselect(Slice cases) __asm__ (GOSYM_PREFIX "reflect.rselect");
struct reflect_rselect_ret reflect_rselect(Slice cases)
{
  intgo chosen;
  bool recvOK;
#line 1013 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	int32 i;
	Select *sel;
	runtimeSelect* rcase, *rc;

	chosen = -1;
	recvOK = false;

	rcase = (runtimeSelect*)cases.__values;

	sel = newselect(cases.__count);
	for(i=0; i<cases.__count; i++) {
		rc = &rcase[i];
		switch(rc->dir) {
		case SelectDefault:
			selectdefault(sel, i);
			break;
		case SelectSend:
			if(rc->ch == nil)
				break;
			selectsend(sel, rc->ch, i, rc->val);
			break;
		case SelectRecv:
			if(rc->ch == nil)
				break;
			selectrecv(sel, rc->ch, i, rc->val, &recvOK);
			break;
		}
	}

	chosen = (intgo)(uintptr)selectgo(&sel);
  {
    struct reflect_rselect_ret __ret;
    __ret.chosen = chosen;
    __ret.recvOK = recvOK;
    return __ret;
  }
}

#line 1046 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void closechan ( Hchan *c , void *pc ) ; 
void runtime_closechan(Hchan* c) __asm__ (GOSYM_PREFIX "runtime.closechan");
void runtime_closechan(Hchan* c)
{
#line 1048 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	closechan(c, runtime_getcallerpc(&c));
}
void reflect_chanclose(Hchan* c) __asm__ (GOSYM_PREFIX "reflect.chanclose");
void reflect_chanclose(Hchan* c)
{
#line 1052 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	closechan(c, runtime_getcallerpc(&c));
}

#line 1056 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
closechan ( Hchan *c , void *pc ) 
{ 
SudoG *sg; 
G* gp; 
#line 1062 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( c == nil ) 
runtime_panicstring ( "close of nil channel" ) ; 
#line 1065 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( runtime_gcwaiting ( ) ) 
runtime_gosched ( ) ; 
#line 1068 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
runtime_lock ( c ) ; 
if ( c->closed ) { 
runtime_unlock ( c ) ; 
runtime_panicstring ( "close of closed channel" ) ; 
} 
#line 1074 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( raceenabled ) { 
runtime_racewritepc ( c , pc , runtime_closechan ) ; 
runtime_racerelease ( c ) ; 
} 
#line 1079 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
c->closed = true; 
#line 1082 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
for ( ;; ) { 
sg = dequeue ( &c->recvq ) ; 
if ( sg == nil ) 
break; 
gp = sg->g; 
gp->param = nil; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
} 
#line 1094 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
for ( ;; ) { 
sg = dequeue ( &c->sendq ) ; 
if ( sg == nil ) 
break; 
gp = sg->g; 
gp->param = nil; 
if ( sg->releasetime ) 
sg->releasetime = runtime_cputicks ( ) ; 
runtime_ready ( gp ) ; 
} 
#line 1105 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
runtime_unlock ( c ) ; 
} 
#line 1108 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
void 
__go_builtin_close ( Hchan *c ) 
{ 
runtime_closechan ( c ) ; 
} 
intgo reflect_chanlen(Hchan* c) __asm__ (GOSYM_PREFIX "reflect.chanlen");
intgo reflect_chanlen(Hchan* c)
{
  intgo len;
#line 1114 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	if(c == nil)
		len = 0;
	else
		len = c->qcount;
return len;
}

#line 1121 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
intgo 
__go_chan_len ( Hchan *c ) 
{ 
return reflect_chanlen ( c ) ; 
} 
intgo reflect_chancap(Hchan* c) __asm__ (GOSYM_PREFIX "reflect.chancap");
intgo reflect_chancap(Hchan* c)
{
  intgo cap;
#line 1127 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"

	if(c == nil)
		cap = 0;
	else
		cap = c->dataqsiz;
return cap;
}

#line 1134 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
intgo 
__go_chan_cap ( Hchan *c ) 
{ 
return reflect_chancap ( c ) ; 
} 
#line 1140 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static SudoG* 
dequeue ( WaitQ *q ) 
{ 
SudoG *sgp; 
#line 1145 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
loop: 
sgp = q->first; 
if ( sgp == nil ) 
return nil; 
q->first = sgp->link; 
#line 1152 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( sgp->selectdone != nil ) { 
#line 1154 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
if ( *sgp->selectdone != 0 || !runtime_cas ( sgp->selectdone , 0 , 1 ) ) 
goto loop; 
} 
#line 1158 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
return sgp; 
} 
#line 1161 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
dequeueg ( WaitQ *q ) 
{ 
SudoG **l , *sgp , *prevsgp; 
G *g; 
#line 1167 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
g = runtime_g ( ) ; 
prevsgp = nil; 
for ( l=&q->first; ( sgp=*l ) != nil; l=&sgp->link , prevsgp=sgp ) { 
if ( sgp->g == g ) { 
*l = sgp->link; 
if ( q->last == sgp ) 
q->last = prevsgp; 
break; 
} 
} 
} 
#line 1179 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
enqueue ( WaitQ *q , SudoG *sgp ) 
{ 
sgp->link = nil; 
if ( q->first == nil ) { 
q->first = sgp; 
q->last = sgp; 
return; 
} 
q->last->link = sgp; 
q->last = sgp; 
} 
#line 1192 "../../../trunk/libgo/runtime/../../../trunk/libgo/runtime/chan.goc"
static void 
racesync ( Hchan *c , SudoG *sg ) 
{ 
runtime_racerelease ( chanbuf ( c , 0 ) ) ; 
runtime_raceacquireg ( sg->g , chanbuf ( c , 0 ) ) ; 
runtime_racereleaseg ( sg->g , chanbuf ( c , 0 ) ) ; 
runtime_raceacquire ( chanbuf ( c , 0 ) ) ; 
}