ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/State.xs
(Generate patch)

Comparing Coro/Coro/State.xs (file contents):
Revision 1.287 by root, Mon Nov 17 07:03:12 2008 UTC vs.
Revision 1.314 by root, Thu Nov 20 03:24:39 2008 UTC

16 16
17#ifdef WIN32 17#ifdef WIN32
18# undef setjmp 18# undef setjmp
19# undef longjmp 19# undef longjmp
20# undef _exit 20# undef _exit
21# define setjmp _setjmp // deep magic, don't ask 21# define setjmp _setjmp /* deep magic */
22#else 22#else
23# include <inttypes.h> /* most portable stdint.h */ 23# include <inttypes.h> /* most portable stdint.h */
24#endif 24#endif
25 25
26#ifdef HAVE_MMAP 26#ifdef HAVE_MMAP
55 55
56#define PERL_VERSION_ATLEAST(a,b,c) \ 56#define PERL_VERSION_ATLEAST(a,b,c) \
57 (PERL_REVISION > (a) \ 57 (PERL_REVISION > (a) \
58 || (PERL_REVISION == (a) \ 58 || (PERL_REVISION == (a) \
59 && (PERL_VERSION > (b) \ 59 && (PERL_VERSION > (b) \
60 || (PERL_VERSION == (b) && PERLSUBVERSION >= (c))))) 60 || (PERL_VERSION == (b) && PERL_SUBVERSION >= (c)))))
61 61
62#if !PERL_VERSION_ATLEAST (5,6,0) 62#if !PERL_VERSION_ATLEAST (5,6,0)
63# ifndef PL_ppaddr 63# ifndef PL_ppaddr
64# define PL_ppaddr ppaddr 64# define PL_ppaddr ppaddr
65# endif 65# endif
95# define GV_NOTQUAL 0 95# define GV_NOTQUAL 0
96#endif 96#endif
97#ifndef newSV 97#ifndef newSV
98# define newSV(l) NEWSV(0,l) 98# define newSV(l) NEWSV(0,l)
99#endif 99#endif
100#ifndef CvISXSUB_on
101# define CvISXSUB_on(cv) (void)cv
102#endif
103#ifndef CvISXSUB
104# define CvISXSUB(cv) (CvXSUB (cv) ? TRUE : FALSE)
105#endif
100 106
101/* 5.8.7 */ 107/* 5.8.7 */
102#ifndef SvRV_set 108#ifndef SvRV_set
103# define SvRV_set(s,v) SvRV(s) = (v) 109# define SvRV_set(s,v) SvRV(s) = (v)
104#endif 110#endif
117#endif 123#endif
118 124
119/* The next macros try to return the current stack pointer, in an as 125/* The next macros try to return the current stack pointer, in an as
120 * portable way as possible. */ 126 * portable way as possible. */
121#if __GNUC__ >= 4 127#if __GNUC__ >= 4
128# define dSTACKLEVEL int stacklevel_dummy
122# define dSTACKLEVEL void *stacklevel = __builtin_frame_address (0) 129# define STACKLEVEL __builtin_frame_address (0)
123#else 130#else
124# define dSTACKLEVEL volatile void *stacklevel = (volatile void *)&stacklevel 131# define dSTACKLEVEL volatile void *stacklevel
132# define STACKLEVEL ((void *)&stacklevel)
125#endif 133#endif
126 134
127#define IN_DESTRUCT (PL_main_cv == Nullcv) 135#define IN_DESTRUCT (PL_main_cv == Nullcv)
128 136
129#if __GNUC__ >= 3 137#if __GNUC__ >= 3
140#define expect_true(expr) expect ((expr) != 0, 1) 148#define expect_true(expr) expect ((expr) != 0, 1)
141 149
142#define NOINLINE attribute ((noinline)) 150#define NOINLINE attribute ((noinline))
143 151
144#include "CoroAPI.h" 152#include "CoroAPI.h"
153#define GCoroAPI (&coroapi) /* very sneaky */
145 154
146#ifdef USE_ITHREADS 155#ifdef USE_ITHREADS
147# if CORO_PTHREAD 156# if CORO_PTHREAD
148static void *coro_thx; 157static void *coro_thx;
149# endif 158# endif
150#endif 159#endif
151 160
152static double (*nvtime)(); /* so why doesn't it take void? */ 161static double (*nvtime)(); /* so why doesn't it take void? */
162
163/* we hijack an hopefully unused CV flag for our purposes */
164#define CVf_SLF 0x4000
165static OP *pp_slf (pTHX);
153 166
154static U32 cctx_gen; 167static U32 cctx_gen;
155static size_t cctx_stacksize = CORO_STACKSIZE; 168static size_t cctx_stacksize = CORO_STACKSIZE;
156static struct CoroAPI coroapi; 169static struct CoroAPI coroapi;
157static AV *main_mainstack; /* used to differentiate between $main and others */ 170static AV *main_mainstack; /* used to differentiate between $main and others */
166static HV *hv_sig; /* %SIG */ 179static HV *hv_sig; /* %SIG */
167 180
168/* async_pool helper stuff */ 181/* async_pool helper stuff */
169static SV *sv_pool_rss; 182static SV *sv_pool_rss;
170static SV *sv_pool_size; 183static SV *sv_pool_size;
184static SV *sv_async_pool_idle;
171static AV *av_async_pool; 185static AV *av_async_pool;
186static SV *sv_Coro;
187static CV *cv_pool_handler;
188static CV *cv_coro_new;
172 189
173/* Coro::AnyEvent */ 190/* Coro::AnyEvent */
174static SV *sv_activity; 191static SV *sv_activity;
175 192
176static struct coro_cctx *cctx_first; 193static struct coro_cctx *cctx_first;
236 /* state data */ 253 /* state data */
237 struct CoroSLF slf_frame; /* saved slf frame */ 254 struct CoroSLF slf_frame; /* saved slf frame */
238 AV *mainstack; 255 AV *mainstack;
239 perl_slots *slot; /* basically the saved sp */ 256 perl_slots *slot; /* basically the saved sp */
240 257
258 CV *startcv; /* the CV to execute */
241 AV *args; /* data associated with this coroutine (initial args) */ 259 AV *args; /* data associated with this coroutine (initial args) */
242 int refcnt; /* coroutines are refcounted, yes */ 260 int refcnt; /* coroutines are refcounted, yes */
243 int flags; /* CF_ flags */ 261 int flags; /* CF_ flags */
244 HV *hv; /* the perl hash associated with this coro, if any */ 262 HV *hv; /* the perl hash associated with this coro, if any */
245 void (*on_destroy)(pTHX_ struct coro *coro); 263 void (*on_destroy)(pTHX_ struct coro *coro);
246 264
247 /* statistics */ 265 /* statistics */
248 int usecount; /* number of transfers to this coro */ 266 int usecount; /* number of transfers to this coro */
249 267
250 /* coro process data */ 268 /* coro process data */
251 int prio; 269 int prio;
252 SV *throw; /* exception to be thrown */ 270 SV *except; /* exception to be thrown */
271 SV *rouse_cb;
253 272
254 /* async_pool */ 273 /* async_pool */
255 SV *saved_deffh; 274 SV *saved_deffh;
275 SV *invoke_cb;
276 AV *invoke_av;
256 277
257 /* linked list */ 278 /* linked list */
258 struct coro *next, *prev; 279 struct coro *next, *prev;
259}; 280};
260 281
263 284
264/* the following variables are effectively part of the perl context */ 285/* the following variables are effectively part of the perl context */
265/* and get copied between struct coro and these variables */ 286/* and get copied between struct coro and these variables */
266/* the mainr easonw e don't support windows process emulation */ 287/* the mainr easonw e don't support windows process emulation */
267static struct CoroSLF slf_frame; /* the current slf frame */ 288static struct CoroSLF slf_frame; /* the current slf frame */
268static SV *coro_throw;
269 289
270/** Coro ********************************************************************/ 290/** Coro ********************************************************************/
271 291
272#define PRIO_MAX 3 292#define PRIO_MAX 3
273#define PRIO_HIGH 1 293#define PRIO_HIGH 1
278 298
279/* for Coro.pm */ 299/* for Coro.pm */
280static SV *coro_current; 300static SV *coro_current;
281static SV *coro_readyhook; 301static SV *coro_readyhook;
282static AV *coro_ready [PRIO_MAX - PRIO_MIN + 1]; 302static AV *coro_ready [PRIO_MAX - PRIO_MIN + 1];
303static CV *cv_coro_run, *cv_coro_terminate;
283static struct coro *coro_first; 304static struct coro *coro_first;
284#define coro_nready coroapi.nready 305#define coro_nready coroapi.nready
285 306
286/** lowlevel stuff **********************************************************/ 307/** lowlevel stuff **********************************************************/
287 308
311#if PERL_VERSION_ATLEAST (5,10,0) 332#if PERL_VERSION_ATLEAST (5,10,0)
312 /* silence stupid and wrong 5.10 warning that I am unable to switch off */ 333 /* silence stupid and wrong 5.10 warning that I am unable to switch off */
313 get_hv (name, create); 334 get_hv (name, create);
314#endif 335#endif
315 return get_hv (name, create); 336 return get_hv (name, create);
337}
338
339/* may croak */
340INLINE CV *
341coro_sv_2cv (pTHX_ SV *sv)
342{
343 HV *st;
344 GV *gvp;
345 return sv_2cv (sv, &st, &gvp, 0);
316} 346}
317 347
318static AV * 348static AV *
319coro_clone_padlist (pTHX_ CV *cv) 349coro_clone_padlist (pTHX_ CV *cv)
320{ 350{
439 else 469 else
440 { 470 {
441#if CORO_PREFER_PERL_FUNCTIONS 471#if CORO_PREFER_PERL_FUNCTIONS
442 /* this is probably cleaner? but also slower! */ 472 /* this is probably cleaner? but also slower! */
443 /* in practise, it seems to be less stable */ 473 /* in practise, it seems to be less stable */
444 CV *cp = Perl_cv_clone (cv); 474 CV *cp = Perl_cv_clone (aTHX_ cv);
445 CvPADLIST (cv) = CvPADLIST (cp); 475 CvPADLIST (cv) = CvPADLIST (cp);
446 CvPADLIST (cp) = 0; 476 CvPADLIST (cp) = 0;
447 SvREFCNT_dec (cp); 477 SvREFCNT_dec (cp);
448#else 478#else
449 CvPADLIST (cv) = coro_clone_padlist (aTHX_ cv); 479 CvPADLIST (cv) = coro_clone_padlist (aTHX_ cv);
502 532
503 PUTBACK; 533 PUTBACK;
504 } 534 }
505 535
506 slf_frame = c->slf_frame; 536 slf_frame = c->slf_frame;
507 coro_throw = c->throw; 537 CORO_THROW = c->except;
508} 538}
509 539
510static void 540static void
511save_perl (pTHX_ Coro__State c) 541save_perl (pTHX_ Coro__State c)
512{ 542{
513 c->throw = coro_throw; 543 c->except = CORO_THROW;
514 c->slf_frame = slf_frame; 544 c->slf_frame = slf_frame;
515 545
516 { 546 {
517 dSP; 547 dSP;
518 I32 cxix = cxstack_ix; 548 I32 cxix = cxstack_ix;
593 * of perl.c:init_stacks, except that it uses less memory 623 * of perl.c:init_stacks, except that it uses less memory
594 * on the (sometimes correct) assumption that coroutines do 624 * on the (sometimes correct) assumption that coroutines do
595 * not usually need a lot of stackspace. 625 * not usually need a lot of stackspace.
596 */ 626 */
597#if CORO_PREFER_PERL_FUNCTIONS 627#if CORO_PREFER_PERL_FUNCTIONS
598# define coro_init_stacks init_stacks 628# define coro_init_stacks(thx) init_stacks ()
599#else 629#else
600static void 630static void
601coro_init_stacks (pTHX) 631coro_init_stacks (pTHX)
602{ 632{
603 PL_curstackinfo = new_stackinfo(32, 8); 633 PL_curstackinfo = new_stackinfo(32, 8);
666#if !PERL_VERSION_ATLEAST (5,10,0) 696#if !PERL_VERSION_ATLEAST (5,10,0)
667 Safefree (PL_retstack); 697 Safefree (PL_retstack);
668#endif 698#endif
669} 699}
670 700
701#define CORO_RSS \
702 rss += sizeof (SYM (curstackinfo)); \
703 rss += (SYM (curstackinfo->si_cxmax) + 1) * sizeof (PERL_CONTEXT); \
704 rss += sizeof (SV) + sizeof (struct xpvav) + (1 + AvMAX (SYM (curstack))) * sizeof (SV *); \
705 rss += SYM (tmps_max) * sizeof (SV *); \
706 rss += (SYM (markstack_max) - SYM (markstack_ptr)) * sizeof (I32); \
707 rss += SYM (scopestack_max) * sizeof (I32); \
708 rss += SYM (savestack_max) * sizeof (ANY);
709
671static size_t 710static size_t
672coro_rss (pTHX_ struct coro *coro) 711coro_rss (pTHX_ struct coro *coro)
673{ 712{
674 size_t rss = sizeof (*coro); 713 size_t rss = sizeof (*coro);
675 714
676 if (coro->mainstack) 715 if (coro->mainstack)
677 { 716 {
678 perl_slots tmp_slot;
679 perl_slots *slot;
680
681 if (coro->flags & CF_RUNNING) 717 if (coro->flags & CF_RUNNING)
682 { 718 {
683 slot = &tmp_slot; 719 #define SYM(sym) PL_ ## sym
684 720 CORO_RSS;
685 #define VAR(name,type) slot->name = PL_ ## name;
686 # include "state.h"
687 #undef VAR 721 #undef SYM
688 } 722 }
689 else 723 else
690 slot = coro->slot;
691
692 if (slot)
693 { 724 {
694 rss += sizeof (slot->curstackinfo); 725 #define SYM(sym) coro->slot->sym
695 rss += (slot->curstackinfo->si_cxmax + 1) * sizeof (PERL_CONTEXT); 726 CORO_RSS;
696 rss += sizeof (SV) + sizeof (struct xpvav) + (1 + AvMAX (slot->curstack)) * sizeof (SV *); 727 #undef SYM
697 rss += slot->tmps_max * sizeof (SV *);
698 rss += (slot->markstack_max - slot->markstack_ptr) * sizeof (I32);
699 rss += slot->scopestack_max * sizeof (I32);
700 rss += slot->savestack_max * sizeof (ANY);
701
702#if !PERL_VERSION_ATLEAST (5,10,0)
703 rss += slot->retstack_max * sizeof (OP *);
704#endif
705 } 728 }
706 } 729 }
707 730
708 return rss; 731 return rss;
709} 732}
811slf_check_nop (pTHX_ struct CoroSLF *frame) 834slf_check_nop (pTHX_ struct CoroSLF *frame)
812{ 835{
813 return 0; 836 return 0;
814} 837}
815 838
839static UNOP coro_setup_op;
840
816static void NOINLINE /* noinline to keep it out of the transfer fast path */ 841static void NOINLINE /* noinline to keep it out of the transfer fast path */
817coro_setup (pTHX_ struct coro *coro) 842coro_setup (pTHX_ struct coro *coro)
818{ 843{
819 /* 844 /*
820 * emulate part of the perl startup here. 845 * emulate part of the perl startup here.
848 { 873 {
849 dSP; 874 dSP;
850 UNOP myop; 875 UNOP myop;
851 876
852 Zero (&myop, 1, UNOP); 877 Zero (&myop, 1, UNOP);
853 myop.op_next = Nullop; 878 myop.op_next = Nullop;
879 myop.op_type = OP_ENTERSUB;
854 myop.op_flags = OPf_WANT_VOID; 880 myop.op_flags = OPf_WANT_VOID;
855 881
856 PUSHMARK (SP); 882 PUSHMARK (SP);
857 XPUSHs (sv_2mortal (av_shift (GvAV (PL_defgv)))); 883 PUSHs ((SV *)coro->startcv);
858 PUTBACK; 884 PUTBACK;
859 PL_op = (OP *)&myop; 885 PL_op = (OP *)&myop;
860 PL_op = PL_ppaddr[OP_ENTERSUB](aTHX); 886 PL_op = PL_ppaddr[OP_ENTERSUB](aTHX);
861 SPAGAIN;
862 } 887 }
863 888
864 /* this newly created coroutine might be run on an existing cctx which most 889 /* this newly created coroutine might be run on an existing cctx which most
865 * likely was suspended in pp_slf, so we have to emulate entering pp_slf here. 890 * likely was suspended in pp_slf, so we have to emulate entering pp_slf here.
866 */ 891 */
867 slf_frame.prepare = prepare_nop; /* provide a nop function for an eventual pp_slf */ 892 slf_frame.prepare = prepare_nop; /* provide a nop function for an eventual pp_slf */
868 slf_frame.check = slf_check_nop; /* signal pp_slf to not repeat */ 893 slf_frame.check = slf_check_nop; /* signal pp_slf to not repeat */
869 894
870 coro_throw = coro->throw; 895 /* and we have to provide the pp_slf op in any case, so pp_slf can skip it */
896 coro_setup_op.op_next = PL_op;
897 coro_setup_op.op_type = OP_CUSTOM;
898 coro_setup_op.op_ppaddr = pp_slf;
899 /* no flags etc. required, as an init function won't be called */
900
901 PL_op = (OP *)&coro_setup_op;
902
903 /* copy throw, in case it was set before coro_setup */
904 CORO_THROW = coro->except;
871} 905}
872 906
873static void 907static void
874coro_destruct (pTHX_ struct coro *coro) 908coro_destruct (pTHX_ struct coro *coro)
875{ 909{
899 933
900 SvREFCNT_dec (PL_diehook); 934 SvREFCNT_dec (PL_diehook);
901 SvREFCNT_dec (PL_warnhook); 935 SvREFCNT_dec (PL_warnhook);
902 936
903 SvREFCNT_dec (coro->saved_deffh); 937 SvREFCNT_dec (coro->saved_deffh);
904 SvREFCNT_dec (coro_throw); 938 SvREFCNT_dec (coro->rouse_cb);
939 SvREFCNT_dec (coro->invoke_cb);
940 SvREFCNT_dec (coro->invoke_av);
905 941
906 coro_destruct_stacks (aTHX); 942 coro_destruct_stacks (aTHX);
907} 943}
908 944
909INLINE void 945INLINE void
996 SAVETMPS; 1032 SAVETMPS;
997 EXTEND (SP, 3); 1033 EXTEND (SP, 3);
998 PUSHMARK (SP); 1034 PUSHMARK (SP);
999 PUSHs (&PL_sv_yes); 1035 PUSHs (&PL_sv_yes);
1000 PUSHs (fullname); 1036 PUSHs (fullname);
1001 PUSHs (CxHASARGS (cx) ? sv_2mortal (newRV_inc ((SV *)cx->blk_sub.argarray)) : &PL_sv_undef); 1037 PUSHs (CxHASARGS (cx) ? sv_2mortal (newRV_inc ((SV *)cx->blk_sub.argarray)) : &PL_sv_undef);
1002 PUTBACK; 1038 PUTBACK;
1003 cb = hv_fetch ((HV *)SvRV (coro_current), "_trace_sub_cb", sizeof ("_trace_sub_cb") - 1, 0); 1039 cb = hv_fetch ((HV *)SvRV (coro_current), "_trace_sub_cb", sizeof ("_trace_sub_cb") - 1, 0);
1004 if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD); 1040 if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
1005 SPAGAIN; 1041 SPAGAIN;
1006 FREETMPS; 1042 FREETMPS;
1038 1074
1039 TAINT_NOT; 1075 TAINT_NOT;
1040 return 0; 1076 return 0;
1041} 1077}
1042 1078
1079static struct coro_cctx *cctx_ssl_cctx;
1080static struct CoroSLF cctx_ssl_frame;
1081
1043static void 1082static void
1044prepare_set_stacklevel (struct coro_transfer_args *ta, struct coro_cctx *cctx) 1083slf_prepare_set_stacklevel (pTHX_ struct coro_transfer_args *ta)
1045{ 1084{
1046 ta->prev = (struct coro *)cctx; 1085 ta->prev = (struct coro *)cctx_ssl_cctx;
1047 ta->next = 0; 1086 ta->next = 0;
1048} 1087}
1049 1088
1050/* inject a fake call to Coro::State::_cctx_init into the execution */ 1089static int
1051/* _cctx_init should be careful, as it could be called at almost any time */ 1090slf_check_set_stacklevel (pTHX_ struct CoroSLF *frame)
1052/* during execution of a perl program */ 1091{
1053/* also initialises PL_top_env */ 1092 *frame = cctx_ssl_frame;
1093
1094 return frame->check (aTHX_ frame); /* execute the restored frame - there must be one */
1095}
1096
1097/* initialises PL_top_env and injects a pseudo-slf-call to set the stacklevel */
1054static void NOINLINE 1098static void NOINLINE
1055cctx_prepare (pTHX_ coro_cctx *cctx) 1099cctx_prepare (pTHX_ coro_cctx *cctx)
1056{ 1100{
1057 dSP;
1058 UNOP myop;
1059
1060 PL_top_env = &PL_start_env; 1101 PL_top_env = &PL_start_env;
1061 1102
1062 if (cctx->flags & CC_TRACE) 1103 if (cctx->flags & CC_TRACE)
1063 PL_runops = runops_trace; 1104 PL_runops = runops_trace;
1064 1105
1065 Zero (&myop, 1, UNOP); 1106 /* we already must be executing an SLF op, there is no other valid way
1066 myop.op_next = PL_op; 1107 * that can lead to creation of a new cctx */
1067 myop.op_flags = OPf_WANT_VOID | OPf_STACKED; 1108 assert (("FATAL: can't prepare slf-less cctx in Coro module (please report)",
1109 slf_frame.prepare && PL_op->op_ppaddr == pp_slf));
1068 1110
1069 PUSHMARK (SP); 1111 /* we must emulate leaving pp_slf, which is done inside slf_check_set_stacklevel */
1070 EXTEND (SP, 2); 1112 cctx_ssl_cctx = cctx;
1071 PUSHs (sv_2mortal (newSViv ((IV)cctx))); 1113 cctx_ssl_frame = slf_frame;
1072 PUSHs ((SV *)get_cv ("Coro::State::_cctx_init", FALSE)); 1114
1073 PUTBACK; 1115 slf_frame.prepare = slf_prepare_set_stacklevel;
1074 PL_op = (OP *)&myop; 1116 slf_frame.check = slf_check_set_stacklevel;
1075 PL_op = PL_ppaddr[OP_ENTERSUB](aTHX);
1076 SPAGAIN;
1077} 1117}
1078 1118
1079/* the tail of transfer: execute stuff we can only do after a transfer */ 1119/* the tail of transfer: execute stuff we can only do after a transfer */
1080INLINE void 1120INLINE void
1081transfer_tail (pTHX) 1121transfer_tail (pTHX)
1108 transfer_tail (aTHX); 1148 transfer_tail (aTHX);
1109 1149
1110 /* somebody or something will hit me for both perl_run and PL_restartop */ 1150 /* somebody or something will hit me for both perl_run and PL_restartop */
1111 PL_restartop = PL_op; 1151 PL_restartop = PL_op;
1112 perl_run (PL_curinterp); 1152 perl_run (PL_curinterp);
1153 /*
1154 * Unfortunately, there is no way to get at the return values of the
1155 * coro body here, as perl_run destroys these
1156 */
1113 1157
1114 /* 1158 /*
1115 * If perl-run returns we assume exit() was being called or the coro 1159 * If perl-run returns we assume exit() was being called or the coro
1116 * fell off the end, which seems to be the only valid (non-bug) 1160 * fell off the end, which seems to be the only valid (non-bug)
1117 * reason for perl_run to return. We try to exit by jumping to the 1161 * reason for perl_run to return. We try to exit by jumping to the
1297 dSTACKLEVEL; 1341 dSTACKLEVEL;
1298 1342
1299 /* sometimes transfer is only called to set idle_sp */ 1343 /* sometimes transfer is only called to set idle_sp */
1300 if (expect_false (!next)) 1344 if (expect_false (!next))
1301 { 1345 {
1302 ((coro_cctx *)prev)->idle_sp = (void *)stacklevel; 1346 ((coro_cctx *)prev)->idle_sp = STACKLEVEL;
1303 assert (((coro_cctx *)prev)->idle_te = PL_top_env); /* just for the side-effect when asserts are enabled */ 1347 assert (((coro_cctx *)prev)->idle_te = PL_top_env); /* just for the side-effect when asserts are enabled */
1304 } 1348 }
1305 else if (expect_true (prev != next)) 1349 else if (expect_true (prev != next))
1306 { 1350 {
1307 coro_cctx *prev__cctx; 1351 coro_cctx *prev__cctx;
1332 1376
1333 prev__cctx = prev->cctx; 1377 prev__cctx = prev->cctx;
1334 1378
1335 /* possibly untie and reuse the cctx */ 1379 /* possibly untie and reuse the cctx */
1336 if (expect_true ( 1380 if (expect_true (
1337 prev__cctx->idle_sp == (void *)stacklevel 1381 prev__cctx->idle_sp == STACKLEVEL
1338 && !(prev__cctx->flags & CC_TRACE) 1382 && !(prev__cctx->flags & CC_TRACE)
1339 && !force_cctx 1383 && !force_cctx
1340 )) 1384 ))
1341 { 1385 {
1342 /* I assume that stacklevel is a stronger indicator than PL_top_env changes */ 1386 /* I assume that stacklevel is a stronger indicator than PL_top_env changes */
1409 1453
1410 coro->slot = 0; 1454 coro->slot = 0;
1411 } 1455 }
1412 1456
1413 cctx_destroy (coro->cctx); 1457 cctx_destroy (coro->cctx);
1458 SvREFCNT_dec (coro->startcv);
1414 SvREFCNT_dec (coro->args); 1459 SvREFCNT_dec (coro->args);
1460 SvREFCNT_dec (CORO_THROW);
1415 1461
1416 if (coro->next) coro->next->prev = coro->prev; 1462 if (coro->next) coro->next->prev = coro->prev;
1417 if (coro->prev) coro->prev->next = coro->next; 1463 if (coro->prev) coro->prev->next = coro->next;
1418 if (coro == coro_first) coro_first = coro->next; 1464 if (coro == coro_first) coro_first = coro->next;
1419 1465
1473 1519
1474 prepare_transfer (aTHX_ &ta, prev_sv, next_sv); 1520 prepare_transfer (aTHX_ &ta, prev_sv, next_sv);
1475 TRANSFER (ta, 1); 1521 TRANSFER (ta, 1);
1476} 1522}
1477 1523
1524/*****************************************************************************/
1525/* gensub: simple closure generation utility */
1526
1527#define GENSUB_ARG CvXSUBANY (cv).any_ptr
1528
1529/* create a closure from XS, returns a code reference */
1530/* the arg can be accessed via GENSUB_ARG from the callback */
1531/* the callback must use dXSARGS/XSRETURN */
1532static SV *
1533gensub (pTHX_ void (*xsub)(pTHX_ CV *), void *arg)
1534{
1535 CV *cv = (CV *)newSV (0);
1536
1537 sv_upgrade ((SV *)cv, SVt_PVCV);
1538
1539 CvANON_on (cv);
1540 CvISXSUB_on (cv);
1541 CvXSUB (cv) = xsub;
1542 GENSUB_ARG = arg;
1543
1544 return newRV_noinc ((SV *)cv);
1545}
1546
1478/** Coro ********************************************************************/ 1547/** Coro ********************************************************************/
1479 1548
1480INLINE void 1549INLINE void
1481coro_enq (pTHX_ struct coro *coro) 1550coro_enq (pTHX_ struct coro *coro)
1482{ 1551{
1525 ENTER; 1594 ENTER;
1526 SAVETMPS; 1595 SAVETMPS;
1527 1596
1528 PUSHMARK (SP); 1597 PUSHMARK (SP);
1529 PUTBACK; 1598 PUTBACK;
1530 call_sv (sv_hook, G_DISCARD); 1599 call_sv (sv_hook, G_VOID | G_DISCARD);
1531 SPAGAIN;
1532 1600
1533 FREETMPS; 1601 FREETMPS;
1534 LEAVE; 1602 LEAVE;
1535 } 1603 }
1536 1604
1563 ENTER; 1631 ENTER;
1564 SAVETMPS; 1632 SAVETMPS;
1565 1633
1566 PUSHMARK (SP); 1634 PUSHMARK (SP);
1567 PUTBACK; 1635 PUTBACK;
1568 call_sv (get_sv ("Coro::idle", FALSE), G_DISCARD); 1636 call_sv (get_sv ("Coro::idle", FALSE), G_VOID | G_DISCARD);
1569 SPAGAIN;
1570 1637
1571 FREETMPS; 1638 FREETMPS;
1572 LEAVE; 1639 LEAVE;
1573 continue; 1640 continue;
1574 } 1641 }
1684 coro->slot->runops = RUNOPS_DEFAULT; 1751 coro->slot->runops = RUNOPS_DEFAULT;
1685 } 1752 }
1686} 1753}
1687 1754
1688/*****************************************************************************/ 1755/*****************************************************************************/
1756/* async pool handler */
1757
1758static int
1759slf_check_pool_handler (pTHX_ struct CoroSLF *frame)
1760{
1761 HV *hv = (HV *)SvRV (coro_current);
1762 struct coro *coro = (struct coro *)frame->data;
1763
1764 if (!coro->invoke_cb)
1765 return 1; /* loop till we have invoke */
1766 else
1767 {
1768 hv_store (hv, "desc", sizeof ("desc") - 1,
1769 newSVpvn ("[async_pool]", sizeof ("[async_pool]") - 1), 0);
1770
1771 coro->saved_deffh = SvREFCNT_inc_NN ((SV *)PL_defoutgv);
1772
1773 {
1774 dSP;
1775 XPUSHs (sv_2mortal (coro->invoke_cb)); coro->invoke_cb = 0;
1776 PUTBACK;
1777 }
1778
1779 SvREFCNT_dec (GvAV (PL_defgv));
1780 GvAV (PL_defgv) = coro->invoke_av;
1781 coro->invoke_av = 0;
1782
1783 return 0;
1784 }
1785}
1786
1787static void
1788slf_init_pool_handler (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
1789{
1790 HV *hv = (HV *)SvRV (coro_current);
1791 struct coro *coro = SvSTATE_hv ((SV *)hv);
1792
1793 if (expect_true (coro->saved_deffh))
1794 {
1795 /* subsequent iteration */
1796 SvREFCNT_dec ((SV *)PL_defoutgv); PL_defoutgv = (GV *)coro->saved_deffh;
1797 coro->saved_deffh = 0;
1798
1799 if (coro_rss (aTHX_ coro) > SvUV (sv_pool_rss)
1800 || av_len (av_async_pool) + 1 >= SvIV (sv_pool_size))
1801 {
1802 coro->invoke_cb = SvREFCNT_inc_NN ((SV *)cv_coro_terminate);
1803 coro->invoke_av = newAV ();
1804
1805 frame->prepare = prepare_nop;
1806 }
1807 else
1808 {
1809 av_clear (GvAV (PL_defgv));
1810 hv_store (hv, "desc", sizeof ("desc") - 1, SvREFCNT_inc_NN (sv_async_pool_idle), 0);
1811
1812 coro->prio = 0;
1813
1814 if (coro->cctx && (coro->cctx->flags & CC_TRACE))
1815 api_trace (aTHX_ coro_current, 0);
1816
1817 frame->prepare = prepare_schedule;
1818 av_push (av_async_pool, SvREFCNT_inc (hv));
1819 }
1820 }
1821 else
1822 {
1823 /* first iteration, simply fall through */
1824 frame->prepare = prepare_nop;
1825 }
1826
1827 frame->check = slf_check_pool_handler;
1828 frame->data = (void *)coro;
1829}
1830
1831/*****************************************************************************/
1832/* rouse callback */
1833
1834#define CORO_MAGIC_type_rouse PERL_MAGIC_ext
1835
1836static void
1837coro_rouse_callback (pTHX_ CV *cv)
1838{
1839 dXSARGS;
1840 SV *data = (SV *)GENSUB_ARG;
1841
1842 if (SvTYPE (SvRV (data)) != SVt_PVAV)
1843 {
1844 /* first call, set args */
1845 AV *av = newAV ();
1846 SV *coro = SvRV (data);
1847
1848 SvRV_set (data, (SV *)av);
1849 api_ready (aTHX_ coro);
1850 SvREFCNT_dec (coro);
1851
1852 /* better take a full copy of the arguments */
1853 while (items--)
1854 av_store (av, items, newSVsv (ST (items)));
1855 }
1856
1857 XSRETURN_EMPTY;
1858}
1859
1860static int
1861slf_check_rouse_wait (pTHX_ struct CoroSLF *frame)
1862{
1863 SV *data = (SV *)frame->data;
1864
1865 if (CORO_THROW)
1866 return 0;
1867
1868 if (SvTYPE (SvRV (data)) != SVt_PVAV)
1869 return 1;
1870
1871 /* now push all results on the stack */
1872 {
1873 dSP;
1874 AV *av = (AV *)SvRV (data);
1875 int i;
1876
1877 EXTEND (SP, AvFILLp (av) + 1);
1878 for (i = 0; i <= AvFILLp (av); ++i)
1879 PUSHs (sv_2mortal (AvARRAY (av)[i]));
1880
1881 /* we have stolen the elements, so ste length to zero and free */
1882 AvFILLp (av) = -1;
1883 av_undef (av);
1884
1885 PUTBACK;
1886 }
1887
1888 return 0;
1889}
1890
1891static void
1892slf_init_rouse_wait (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
1893{
1894 SV *cb;
1895
1896 if (items)
1897 cb = arg [0];
1898 else
1899 {
1900 struct coro *coro = SvSTATE_current;
1901
1902 if (!coro->rouse_cb)
1903 croak ("Coro::rouse_wait called without rouse callback, and no default rouse callback found either,");
1904
1905 cb = sv_2mortal (coro->rouse_cb);
1906 coro->rouse_cb = 0;
1907 }
1908
1909 if (!SvROK (cb)
1910 || SvTYPE (SvRV (cb)) != SVt_PVCV
1911 || CvXSUB ((CV *)SvRV (cb)) != coro_rouse_callback)
1912 croak ("Coro::rouse_wait called with illegal callback argument,");
1913
1914 {
1915 CV *cv = (CV *)SvRV (cb); /* for GENSUB_ARG */
1916 SV *data = (SV *)GENSUB_ARG;
1917
1918 frame->data = (void *)data;
1919 frame->prepare = SvTYPE (SvRV (data)) == SVt_PVAV ? prepare_nop : prepare_schedule;
1920 frame->check = slf_check_rouse_wait;
1921 }
1922}
1923
1924static SV *
1925coro_new_rouse_cb (pTHX)
1926{
1927 HV *hv = (HV *)SvRV (coro_current);
1928 struct coro *coro = SvSTATE_hv (hv);
1929 SV *data = newRV_inc ((SV *)hv);
1930 SV *cb = gensub (aTHX_ coro_rouse_callback, (void *)data);
1931
1932 sv_magicext (SvRV (cb), data, CORO_MAGIC_type_rouse, 0, 0, 0);
1933 SvREFCNT_dec (data); /* magicext increases the refcount */
1934
1935 SvREFCNT_dec (coro->rouse_cb);
1936 coro->rouse_cb = SvREFCNT_inc_NN (cb);
1937
1938 return cb;
1939}
1940
1941/*****************************************************************************/
1689/* schedule-like-function opcode (SLF) */ 1942/* schedule-like-function opcode (SLF) */
1690 1943
1691static UNOP slf_restore; /* restore stack as entersub did, for first-re-run */ 1944static UNOP slf_restore; /* restore stack as entersub did, for first-re-run */
1692static const CV *slf_cv; 1945static const CV *slf_cv;
1693static SV **slf_argv; 1946static SV **slf_argv;
1714 1967
1715 RETURNOP (slf_restore.op_first); 1968 RETURNOP (slf_restore.op_first);
1716} 1969}
1717 1970
1718static void 1971static void
1719slf_prepare_set_stacklevel (pTHX_ struct coro_transfer_args *ta)
1720{
1721 prepare_set_stacklevel (ta, (struct coro_cctx *)slf_frame.data);
1722}
1723
1724static void
1725slf_init_set_stacklevel (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
1726{
1727 assert (("FATAL: set_stacklevel needs the coro cctx as sole argument", items == 1));
1728
1729 frame->prepare = slf_prepare_set_stacklevel;
1730 frame->check = slf_check_nop;
1731 frame->data = (void *)SvIV (arg [0]);
1732}
1733
1734static void
1735slf_prepare_transfer (pTHX_ struct coro_transfer_args *ta) 1972slf_prepare_transfer (pTHX_ struct coro_transfer_args *ta)
1736{ 1973{
1737 SV **arg = (SV **)slf_frame.data; 1974 SV **arg = (SV **)slf_frame.data;
1738 1975
1739 prepare_transfer (aTHX_ ta, arg [0], arg [1]); 1976 prepare_transfer (aTHX_ ta, arg [0], arg [1]);
1768slf_init_cede_notself (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items) 2005slf_init_cede_notself (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
1769{ 2006{
1770 frame->prepare = prepare_cede_notself; 2007 frame->prepare = prepare_cede_notself;
1771 frame->check = slf_check_nop; 2008 frame->check = slf_check_nop;
1772} 2009}
1773
1774/* we hijack an hopefully unused CV flag for our purposes */
1775#define CVf_SLF 0x4000
1776 2010
1777/* 2011/*
1778 * these not obviously related functions are all rolled into one 2012 * these not obviously related functions are all rolled into one
1779 * function to increase chances that they all will call transfer with the same 2013 * function to increase chances that they all will call transfer with the same
1780 * stack offset 2014 * stack offset
1836 } 2070 }
1837 while (slf_frame.check (aTHX_ &slf_frame)); 2071 while (slf_frame.check (aTHX_ &slf_frame));
1838 2072
1839 slf_frame.prepare = 0; /* invalidate the frame, we are done processing it */ 2073 slf_frame.prepare = 0; /* invalidate the frame, we are done processing it */
1840 2074
1841 /* return value handling - mostly like entersub */
1842 {
1843 dSP;
1844 SV **bot = PL_stack_base + checkmark;
1845 int gimme = GIMME_V;
1846
1847 /* make sure we put something on the stack in scalar context */
1848 if (gimme == G_SCALAR)
1849 {
1850 if (sp == bot)
1851 XPUSHs (&PL_sv_undef);
1852
1853 SP = bot + 1;
1854 }
1855
1856 PUTBACK;
1857 }
1858
1859 /* exception handling */ 2075 /* exception handling */
1860 if (expect_false (coro_throw)) 2076 if (expect_false (CORO_THROW))
1861 { 2077 {
1862 SV *exception = sv_2mortal (coro_throw); 2078 SV *exception = sv_2mortal (CORO_THROW);
1863 2079
1864 coro_throw = 0; 2080 CORO_THROW = 0;
1865 sv_setsv (ERRSV, exception); 2081 sv_setsv (ERRSV, exception);
1866 croak (0); 2082 croak (0);
2083 }
2084
2085 /* return value handling - mostly like entersub */
2086 /* make sure we put something on the stack in scalar context */
2087 if (GIMME_V == G_SCALAR)
2088 {
2089 dSP;
2090 SV **bot = PL_stack_base + checkmark;
2091
2092 if (sp == bot) /* too few, push undef */
2093 bot [1] = &PL_sv_undef;
2094 else if (sp != bot + 1) /* too many, take last one */
2095 bot [1] = *sp;
2096
2097 SP = bot + 1;
2098
2099 PUTBACK;
1867 } 2100 }
1868 2101
1869 return NORMAL; 2102 return NORMAL;
1870} 2103}
1871 2104
1993 PerlIOBuf_get_cnt, 2226 PerlIOBuf_get_cnt,
1994 PerlIOBuf_set_ptrcnt, 2227 PerlIOBuf_set_ptrcnt,
1995}; 2228};
1996 2229
1997/*****************************************************************************/ 2230/*****************************************************************************/
2231/* Coro::Semaphore & Coro::Signal */
2232
2233static SV *
2234coro_waitarray_new (pTHX_ int count)
2235{
2236 /* a semaphore contains a counter IV in $sem->[0] and any waiters after that */
2237 AV *av = newAV ();
2238 SV **ary;
2239
2240 /* unfortunately, building manually saves memory */
2241 Newx (ary, 2, SV *);
2242 AvALLOC (av) = ary;
2243 /*AvARRAY (av) = ary;*/
2244 SvPVX ((SV *)av) = (char *)ary; /* 5.8.8 needs this syntax instead of AvARRAY = ary */
2245 AvMAX (av) = 1;
2246 AvFILLp (av) = 0;
2247 ary [0] = newSViv (count);
2248
2249 return newRV_noinc ((SV *)av);
2250}
2251
1998/* Coro::Semaphore */ 2252/* semaphore */
1999 2253
2000static void 2254static void
2001coro_semaphore_adjust (pTHX_ AV *av, IV adjust) 2255coro_semaphore_adjust (pTHX_ AV *av, IV adjust)
2002{ 2256{
2003 SV *count_sv = AvARRAY (av)[0]; 2257 SV *count_sv = AvARRAY (av)[0];
2015 AvARRAY (av)[0] = AvARRAY (av)[1]; 2269 AvARRAY (av)[0] = AvARRAY (av)[1];
2016 AvARRAY (av)[1] = count_sv; 2270 AvARRAY (av)[1] = count_sv;
2017 cb = av_shift (av); 2271 cb = av_shift (av);
2018 2272
2019 if (SvOBJECT (cb)) 2273 if (SvOBJECT (cb))
2274 {
2020 api_ready (aTHX_ cb); 2275 api_ready (aTHX_ cb);
2021 else 2276 --count;
2022 croak ("callbacks not yet supported"); 2277 }
2278 else if (SvTYPE (cb) == SVt_PVCV)
2279 {
2280 dSP;
2281 PUSHMARK (SP);
2282 XPUSHs (sv_2mortal (newRV_inc ((SV *)av)));
2283 PUTBACK;
2284 call_sv (cb, G_VOID | G_DISCARD | G_EVAL | G_KEEPERR);
2285 }
2023 2286
2024 SvREFCNT_dec (cb); 2287 SvREFCNT_dec (cb);
2025
2026 --count;
2027 } 2288 }
2028} 2289}
2029 2290
2030static void 2291static void
2031coro_semaphore_on_destroy (pTHX_ struct coro *coro) 2292coro_semaphore_on_destroy (pTHX_ struct coro *coro)
2033 /* call $sem->adjust (0) to possibly wake up some other waiters */ 2294 /* call $sem->adjust (0) to possibly wake up some other waiters */
2034 coro_semaphore_adjust (aTHX_ (AV *)coro->slf_frame.data, 0); 2295 coro_semaphore_adjust (aTHX_ (AV *)coro->slf_frame.data, 0);
2035} 2296}
2036 2297
2037static int 2298static int
2038slf_check_semaphore_down (pTHX_ struct CoroSLF *frame) 2299slf_check_semaphore_down_or_wait (pTHX_ struct CoroSLF *frame, int acquire)
2039{ 2300{
2040 AV *av = (AV *)frame->data; 2301 AV *av = (AV *)frame->data;
2041 SV *count_sv = AvARRAY (av)[0]; 2302 SV *count_sv = AvARRAY (av)[0];
2042 2303
2304 /* if we are about to throw, don't actually acquire the lock, just throw */
2305 if (CORO_THROW)
2306 return 0;
2043 if (SvIVX (count_sv) > 0) 2307 else if (SvIVX (count_sv) > 0)
2044 { 2308 {
2045 SvSTATE_current->on_destroy = 0; 2309 SvSTATE_current->on_destroy = 0;
2310
2311 if (acquire)
2046 SvIVX (count_sv) = SvIVX (count_sv) - 1; 2312 SvIVX (count_sv) = SvIVX (count_sv) - 1;
2313 else
2314 coro_semaphore_adjust (aTHX_ av, 0);
2315
2047 return 0; 2316 return 0;
2048 } 2317 }
2049 else 2318 else
2050 { 2319 {
2051 int i; 2320 int i;
2060 av_push (av, SvREFCNT_inc (SvRV (coro_current))); 2329 av_push (av, SvREFCNT_inc (SvRV (coro_current)));
2061 return 1; 2330 return 1;
2062 } 2331 }
2063} 2332}
2064 2333
2065static void 2334static int
2335slf_check_semaphore_down (pTHX_ struct CoroSLF *frame)
2336{
2337 return slf_check_semaphore_down_or_wait (aTHX_ frame, 1);
2338}
2339
2340static int
2341slf_check_semaphore_wait (pTHX_ struct CoroSLF *frame)
2342{
2343 return slf_check_semaphore_down_or_wait (aTHX_ frame, 0);
2344}
2345
2346static void
2066slf_init_semaphore_down (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items) 2347slf_init_semaphore_down_or_wait (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
2067{ 2348{
2068 AV *av = (AV *)SvRV (arg [0]); 2349 AV *av = (AV *)SvRV (arg [0]);
2069 2350
2070 if (SvIVX (AvARRAY (av)[0]) > 0) 2351 if (SvIVX (AvARRAY (av)[0]) > 0)
2071 { 2352 {
2072 frame->data = (void *)av; 2353 frame->data = (void *)av;
2073 frame->prepare = prepare_nop; 2354 frame->prepare = prepare_nop;
2074 SvSTATE_current->on_destroy = coro_semaphore_on_destroy;
2075 } 2355 }
2076 else 2356 else
2077 { 2357 {
2078 av_push (av, SvREFCNT_inc (SvRV (coro_current))); 2358 av_push (av, SvREFCNT_inc (SvRV (coro_current)));
2079 2359
2080 frame->data = (void *)sv_2mortal (SvREFCNT_inc ((SV *)av)); 2360 frame->data = (void *)sv_2mortal (SvREFCNT_inc ((SV *)av));
2081 frame->prepare = prepare_schedule; 2361 frame->prepare = prepare_schedule;
2082 2362
2083 /* to avoid race conditions when a woken-up coro gets terminated */ 2363 /* to avoid race conditions when a woken-up coro gets terminated */
2084 /* we arrange for a temporary on_destroy that calls adjust (0) */ 2364 /* we arrange for a temporary on_destroy that calls adjust (0) */
2085 assert (!SvSTATE_current->on_destroy);//D
2086 SvSTATE_current->on_destroy = coro_semaphore_on_destroy; 2365 SvSTATE_current->on_destroy = coro_semaphore_on_destroy;
2087 } 2366 }
2367}
2088 2368
2369static void
2370slf_init_semaphore_down (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
2371{
2372 slf_init_semaphore_down_or_wait (aTHX_ frame, cv, arg, items);
2089 frame->check = slf_check_semaphore_down; 2373 frame->check = slf_check_semaphore_down;
2090
2091} 2374}
2092 2375
2093/*****************************************************************************/ 2376static void
2094/* gensub: simple closure generation utility */ 2377slf_init_semaphore_wait (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
2095
2096#define GENSUB_ARG CvXSUBANY (cv).any_ptr
2097
2098/* create a closure from XS, returns a code reference */
2099/* the arg can be accessed via GENSUB_ARG from the callback */
2100/* the callback must use dXSARGS/XSRETURN */
2101static SV *
2102gensub (pTHX_ void (*xsub)(pTHX_ CV *), void *arg)
2103{ 2378{
2104 CV *cv = (CV *)newSV (0); 2379 if (items >= 2)
2380 {
2381 /* callback form */
2382 AV *av = (AV *)SvRV (arg [0]);
2383 CV *cb_cv = coro_sv_2cv (aTHX_ arg [1]);
2105 2384
2106 sv_upgrade ((SV *)cv, SVt_PVCV); 2385 av_push (av, (SV *)SvREFCNT_inc_NN (cb_cv));
2107 2386
2108 CvANON_on (cv); 2387 if (SvIVX (AvARRAY (av)[0]) > 0)
2109 CvISXSUB_on (cv); 2388 coro_semaphore_adjust (aTHX_ av, 0);
2110 CvXSUB (cv) = xsub;
2111 GENSUB_ARG = arg;
2112 2389
2113 return newRV_noinc ((SV *)cv); 2390 frame->prepare = prepare_nop;
2391 frame->check = slf_check_nop;
2392 }
2393 else
2394 {
2395 slf_init_semaphore_down_or_wait (aTHX_ frame, cv, arg, items);
2396 frame->check = slf_check_semaphore_wait;
2397 }
2398}
2399
2400/* signal */
2401
2402static void
2403coro_signal_wake (pTHX_ AV *av, int count)
2404{
2405 SvIVX (AvARRAY (av)[0]) = 0;
2406
2407 /* now signal count waiters */
2408 while (count > 0 && AvFILLp (av) > 0)
2409 {
2410 SV *cb;
2411
2412 /* swap first two elements so we can shift a waiter */
2413 cb = AvARRAY (av)[0];
2414 AvARRAY (av)[0] = AvARRAY (av)[1];
2415 AvARRAY (av)[1] = cb;
2416
2417 cb = av_shift (av);
2418
2419 api_ready (aTHX_ cb);
2420 sv_setiv (cb, 0); /* signal waiter */
2421 SvREFCNT_dec (cb);
2422
2423 --count;
2424 }
2425}
2426
2427static int
2428slf_check_signal_wait (pTHX_ struct CoroSLF *frame)
2429{
2430 /* if we are about to throw, also stop waiting */
2431 return SvROK ((SV *)frame->data) && !CORO_THROW;
2432}
2433
2434static void
2435slf_init_signal_wait (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
2436{
2437 AV *av = (AV *)SvRV (arg [0]);
2438
2439 if (SvIVX (AvARRAY (av)[0]))
2440 {
2441 SvIVX (AvARRAY (av)[0]) = 0;
2442 frame->prepare = prepare_nop;
2443 frame->check = slf_check_nop;
2444 }
2445 else
2446 {
2447 SV *waiter = newRV_inc (SvRV (coro_current)); /* owned by signal av */
2448
2449 av_push (av, waiter);
2450
2451 frame->data = (void *)sv_2mortal (SvREFCNT_inc_NN (waiter)); /* owned by process */
2452 frame->prepare = prepare_schedule;
2453 frame->check = slf_check_signal_wait;
2454 }
2114} 2455}
2115 2456
2116/*****************************************************************************/ 2457/*****************************************************************************/
2117/* Coro::AIO */ 2458/* Coro::AIO */
2118 2459
2133 dXSARGS; 2474 dXSARGS;
2134 AV *state = (AV *)GENSUB_ARG; 2475 AV *state = (AV *)GENSUB_ARG;
2135 SV *coro = av_pop (state); 2476 SV *coro = av_pop (state);
2136 SV *data_sv = newSV (sizeof (struct io_state)); 2477 SV *data_sv = newSV (sizeof (struct io_state));
2137 2478
2138 av_extend (state, items); 2479 av_extend (state, items - 1);
2139 2480
2140 sv_upgrade (data_sv, SVt_PV); 2481 sv_upgrade (data_sv, SVt_PV);
2141 SvCUR_set (data_sv, sizeof (struct io_state)); 2482 SvCUR_set (data_sv, sizeof (struct io_state));
2142 SvPOK_only (data_sv); 2483 SvPOK_only (data_sv);
2143 2484
2168static int 2509static int
2169slf_check_aio_req (pTHX_ struct CoroSLF *frame) 2510slf_check_aio_req (pTHX_ struct CoroSLF *frame)
2170{ 2511{
2171 AV *state = (AV *)frame->data; 2512 AV *state = (AV *)frame->data;
2172 2513
2514 /* if we are about to throw, return early */
2515 /* this does not cancel the aio request, but at least */
2516 /* it quickly returns */
2517 if (CORO_THROW)
2518 return 0;
2519
2173 /* one element that is an RV? repeat! */ 2520 /* one element that is an RV? repeat! */
2174 if (AvFILLp (state) == 0 && SvROK (AvARRAY (state)[0])) 2521 if (AvFILLp (state) == 0 && SvROK (AvARRAY (state)[0]))
2175 return 1; 2522 return 1;
2176 2523
2177 /* restore status */ 2524 /* restore status */
2247 2594
2248 for (i = 0; i < items; ++i) 2595 for (i = 0; i < items; ++i)
2249 PUSHs (arg [i]); 2596 PUSHs (arg [i]);
2250 2597
2251 /* now push the callback closure */ 2598 /* now push the callback closure */
2252 PUSHs (sv_2mortal (gensub (coro_aio_callback, (void *)SvREFCNT_inc_NN ((SV *)state)))); 2599 PUSHs (sv_2mortal (gensub (aTHX_ coro_aio_callback, (void *)SvREFCNT_inc_NN ((SV *)state))));
2253 2600
2254 /* now call the AIO function - we assume our request is uncancelable */ 2601 /* now call the AIO function - we assume our request is uncancelable */
2255 PUTBACK; 2602 PUTBACK;
2256 call_sv ((SV *)req, G_VOID | G_DISCARD); 2603 call_sv ((SV *)req, G_VOID | G_DISCARD);
2257 } 2604 }
2263} 2610}
2264 2611
2265static void 2612static void
2266coro_aio_req_xs (pTHX_ CV *cv) 2613coro_aio_req_xs (pTHX_ CV *cv)
2267{ 2614{
2268 dVAR;
2269 dXSARGS; 2615 dXSARGS;
2270 2616
2271 CORO_EXECUTE_SLF_XS (slf_init_aio_req); 2617 CORO_EXECUTE_SLF_XS (slf_init_aio_req);
2272 2618
2273 XSRETURN_EMPTY; 2619 XSRETURN_EMPTY;
2348 assert (("PRIO_NORMAL must be 0", !PRIO_NORMAL)); 2694 assert (("PRIO_NORMAL must be 0", !PRIO_NORMAL));
2349} 2695}
2350 2696
2351SV * 2697SV *
2352new (char *klass, ...) 2698new (char *klass, ...)
2699 ALIAS:
2700 Coro::new = 1
2353 CODE: 2701 CODE:
2354{ 2702{
2355 struct coro *coro; 2703 struct coro *coro;
2356 MAGIC *mg; 2704 MAGIC *mg;
2357 HV *hv; 2705 HV *hv;
2706 CV *cb;
2358 int i; 2707 int i;
2708
2709 if (items > 1)
2710 {
2711 cb = coro_sv_2cv (aTHX_ ST (1));
2712
2713 if (!ix)
2714 {
2715 if (CvISXSUB (cb))
2716 croak ("Coro::State doesn't support XS functions as coroutine start, caught");
2717
2718 if (!CvROOT (cb))
2719 croak ("Coro::State doesn't support autoloaded or undefined functions as coroutine start, caught");
2720 }
2721 }
2359 2722
2360 Newz (0, coro, 1, struct coro); 2723 Newz (0, coro, 1, struct coro);
2361 coro->args = newAV (); 2724 coro->args = newAV ();
2362 coro->flags = CF_NEW; 2725 coro->flags = CF_NEW;
2363 2726
2368 coro->hv = hv = newHV (); 2731 coro->hv = hv = newHV ();
2369 mg = sv_magicext ((SV *)hv, 0, CORO_MAGIC_type_state, &coro_state_vtbl, (char *)coro, 0); 2732 mg = sv_magicext ((SV *)hv, 0, CORO_MAGIC_type_state, &coro_state_vtbl, (char *)coro, 0);
2370 mg->mg_flags |= MGf_DUP; 2733 mg->mg_flags |= MGf_DUP;
2371 RETVAL = sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1)); 2734 RETVAL = sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
2372 2735
2736 if (items > 1)
2737 {
2373 av_extend (coro->args, items - 1); 2738 av_extend (coro->args, items - 1 + ix - 1);
2739
2740 if (ix)
2741 {
2742 av_push (coro->args, SvREFCNT_inc_NN ((SV *)cb));
2743 cb = cv_coro_run;
2744 }
2745
2746 coro->startcv = (CV *)SvREFCNT_inc_NN ((SV *)cb);
2747
2374 for (i = 1; i < items; i++) 2748 for (i = 2; i < items; i++)
2375 av_push (coro->args, newSVsv (ST (i))); 2749 av_push (coro->args, newSVsv (ST (i)));
2750 }
2376} 2751}
2377 OUTPUT: 2752 OUTPUT:
2378 RETVAL 2753 RETVAL
2379
2380void
2381_set_stacklevel (...)
2382 CODE:
2383 CORO_EXECUTE_SLF_XS (slf_init_set_stacklevel);
2384 2754
2385void 2755void
2386transfer (...) 2756transfer (...)
2387 PROTOTYPE: $$ 2757 PROTOTYPE: $$
2388 CODE: 2758 CODE:
2514throw (Coro::State self, SV *throw = &PL_sv_undef) 2884throw (Coro::State self, SV *throw = &PL_sv_undef)
2515 PROTOTYPE: $;$ 2885 PROTOTYPE: $;$
2516 CODE: 2886 CODE:
2517{ 2887{
2518 struct coro *current = SvSTATE_current; 2888 struct coro *current = SvSTATE_current;
2519 SV **throwp = self == current ? &coro_throw : &self->throw; 2889 SV **throwp = self == current ? &CORO_THROW : &self->except;
2520 SvREFCNT_dec (*throwp); 2890 SvREFCNT_dec (*throwp);
2521 *throwp = SvOK (throw) ? newSVsv (throw) : 0; 2891 *throwp = SvOK (throw) ? newSVsv (throw) : 0;
2522} 2892}
2523 2893
2524void 2894void
2583 2953
2584BOOT: 2954BOOT:
2585{ 2955{
2586 int i; 2956 int i;
2587 2957
2588 av_async_pool = coro_get_av (aTHX_ "Coro::async_pool", TRUE); 2958 av_async_pool = coro_get_av (aTHX_ "Coro::async_pool", TRUE);
2589 sv_pool_rss = coro_get_sv (aTHX_ "Coro::POOL_RSS" , TRUE); 2959 sv_pool_rss = coro_get_sv (aTHX_ "Coro::POOL_RSS" , TRUE);
2590 sv_pool_size = coro_get_sv (aTHX_ "Coro::POOL_SIZE" , TRUE); 2960 sv_pool_size = coro_get_sv (aTHX_ "Coro::POOL_SIZE" , TRUE);
2591 2961 cv_coro_run = get_cv ( "Coro::_terminate", GV_ADD);
2962 cv_coro_terminate = get_cv ( "Coro::terminate", GV_ADD);
2592 coro_current = coro_get_sv (aTHX_ "Coro::current", FALSE); 2963 coro_current = coro_get_sv (aTHX_ "Coro::current" , FALSE);
2593 SvREADONLY_on (coro_current); 2964 SvREADONLY_on (coro_current);
2965
2966 sv_async_pool_idle = newSVpv ("[async pool idle]", 0); SvREADONLY_on (sv_async_pool_idle);
2967 sv_Coro = newSVpv ("Coro", 0); SvREADONLY_on (sv_Coro);
2968 cv_pool_handler = get_cv ("Coro::_pool_handler", 0); SvREADONLY_on (cv_pool_handler);
2969 cv_coro_new = get_cv ("Coro::new", 0); SvREADONLY_on (cv_coro_new);
2594 2970
2595 coro_stash = gv_stashpv ("Coro", TRUE); 2971 coro_stash = gv_stashpv ("Coro", TRUE);
2596 2972
2597 newCONSTSUB (coro_stash, "PRIO_MAX", newSViv (PRIO_MAX)); 2973 newCONSTSUB (coro_stash, "PRIO_MAX", newSViv (PRIO_MAX));
2598 newCONSTSUB (coro_stash, "PRIO_HIGH", newSViv (PRIO_HIGH)); 2974 newCONSTSUB (coro_stash, "PRIO_HIGH", newSViv (PRIO_HIGH));
2613 coroapi.ready = api_ready; 2989 coroapi.ready = api_ready;
2614 coroapi.is_ready = api_is_ready; 2990 coroapi.is_ready = api_is_ready;
2615 coroapi.nready = coro_nready; 2991 coroapi.nready = coro_nready;
2616 coroapi.current = coro_current; 2992 coroapi.current = coro_current;
2617 2993
2618 GCoroAPI = &coroapi; 2994 /*GCoroAPI = &coroapi;*/
2619 sv_setiv (sv, (IV)&coroapi); 2995 sv_setiv (sv, (IV)&coroapi);
2620 SvREADONLY_on (sv); 2996 SvREADONLY_on (sv);
2621 } 2997 }
2622} 2998}
2623 2999
2687 CODE: 3063 CODE:
2688 RETVAL = coro_nready; 3064 RETVAL = coro_nready;
2689 OUTPUT: 3065 OUTPUT:
2690 RETVAL 3066 RETVAL
2691 3067
2692# for async_pool speedup
2693void 3068void
2694_pool_1 (SV *cb) 3069_pool_handler (...)
2695 CODE: 3070 CODE:
2696{ 3071 CORO_EXECUTE_SLF_XS (slf_init_pool_handler);
2697 HV *hv = (HV *)SvRV (coro_current);
2698 struct coro *coro = SvSTATE_hv ((SV *)hv);
2699 AV *defav = GvAV (PL_defgv);
2700 SV *invoke = hv_delete (hv, "_invoke", sizeof ("_invoke") - 1, 0);
2701 AV *invoke_av;
2702 int i, len;
2703 3072
2704 if (!invoke) 3073void
3074async_pool (SV *cv, ...)
3075 PROTOTYPE: &@
3076 PPCODE:
3077{
3078 HV *hv = (HV *)av_pop (av_async_pool);
3079 AV *av = newAV ();
3080 SV *cb = ST (0);
3081 int i;
3082
3083 av_extend (av, items - 2);
3084 for (i = 1; i < items; ++i)
3085 av_push (av, SvREFCNT_inc_NN (ST (i)));
3086
3087 if ((SV *)hv == &PL_sv_undef)
2705 { 3088 {
2706 SV *old = PL_diehook; 3089 PUSHMARK (SP);
2707 PL_diehook = 0; 3090 EXTEND (SP, 2);
2708 SvREFCNT_dec (old); 3091 PUSHs (sv_Coro);
2709 croak ("\3async_pool terminate\2\n"); 3092 PUSHs ((SV *)cv_pool_handler);
3093 PUTBACK;
3094 call_sv ((SV *)cv_coro_new, G_SCALAR);
3095 SPAGAIN;
3096
3097 hv = (HV *)SvREFCNT_inc_NN (SvRV (POPs));
2710 } 3098 }
2711 3099
2712 SvREFCNT_dec (coro->saved_deffh);
2713 coro->saved_deffh = SvREFCNT_inc_NN ((SV *)PL_defoutgv);
2714
2715 hv_store (hv, "desc", sizeof ("desc") - 1,
2716 newSVpvn ("[async_pool]", sizeof ("[async_pool]") - 1), 0);
2717
2718 invoke_av = (AV *)SvRV (invoke);
2719 len = av_len (invoke_av);
2720
2721 sv_setsv (cb, AvARRAY (invoke_av)[0]);
2722
2723 if (len > 0)
2724 { 3100 {
2725 av_fill (defav, len - 1); 3101 struct coro *coro = SvSTATE_hv (hv);
2726 for (i = 0; i < len; ++i) 3102
2727 av_store (defav, i, SvREFCNT_inc_NN (AvARRAY (invoke_av)[i + 1])); 3103 assert (!coro->invoke_cb);
3104 assert (!coro->invoke_av);
3105 coro->invoke_cb = SvREFCNT_inc (cb);
3106 coro->invoke_av = av;
2728 } 3107 }
3108
3109 api_ready (aTHX_ (SV *)hv);
3110
3111 if (GIMME_V != G_VOID)
3112 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
3113 else
3114 SvREFCNT_dec (hv);
2729} 3115}
3116
3117SV *
3118rouse_cb ()
3119 PROTOTYPE:
3120 CODE:
3121 RETVAL = coro_new_rouse_cb (aTHX);
3122 OUTPUT:
3123 RETVAL
2730 3124
2731void 3125void
2732_pool_2 (SV *cb) 3126rouse_wait (...)
3127 PROTOTYPE: ;$
2733 CODE: 3128 PPCODE:
2734{ 3129 CORO_EXECUTE_SLF_XS (slf_init_rouse_wait);
2735 HV *hv = (HV *)SvRV (coro_current);
2736 struct coro *coro = SvSTATE_hv ((SV *)hv);
2737
2738 sv_setsv (cb, &PL_sv_undef);
2739
2740 SvREFCNT_dec ((SV *)PL_defoutgv); PL_defoutgv = (GV *)coro->saved_deffh;
2741 coro->saved_deffh = 0;
2742
2743 if (coro_rss (aTHX_ coro) > SvUV (sv_pool_rss)
2744 || av_len (av_async_pool) + 1 >= SvIV (sv_pool_size))
2745 {
2746 SV *old = PL_diehook;
2747 PL_diehook = 0;
2748 SvREFCNT_dec (old);
2749 croak ("\3async_pool terminate\2\n");
2750 }
2751
2752 av_clear (GvAV (PL_defgv));
2753 hv_store (hv, "desc", sizeof ("desc") - 1,
2754 newSVpvn ("[async_pool idle]", sizeof ("[async_pool idle]") - 1), 0);
2755
2756 coro->prio = 0;
2757
2758 if (coro->cctx && (coro->cctx->flags & CC_TRACE))
2759 api_trace (aTHX_ coro_current, 0);
2760
2761 av_push (av_async_pool, newSVsv (coro_current));
2762}
2763 3130
2764 3131
2765MODULE = Coro::State PACKAGE = PerlIO::cede 3132MODULE = Coro::State PACKAGE = PerlIO::cede
2766 3133
2767BOOT: 3134BOOT:
2769 3136
2770 3137
2771MODULE = Coro::State PACKAGE = Coro::Semaphore 3138MODULE = Coro::State PACKAGE = Coro::Semaphore
2772 3139
2773SV * 3140SV *
2774new (SV *klass, SV *count_ = 0) 3141new (SV *klass, SV *count = 0)
2775 CODE: 3142 CODE:
2776{ 3143 RETVAL = sv_bless (
2777 /* a semaphore contains a counter IV in $sem->[0] and any waiters after that */ 3144 coro_waitarray_new (aTHX_ count && SvOK (count) ? SvIV (count) : 1),
2778 AV *av = newAV (); 3145 GvSTASH (CvGV (cv))
2779 av_push (av, newSViv (count_ && SvOK (count_) ? SvIV (count_) : 1)); 3146 );
2780 RETVAL = sv_bless (newRV_noinc ((SV *)av), GvSTASH (CvGV (cv))); 3147 OUTPUT:
2781} 3148 RETVAL
3149
3150# helper for Coro::Channel
3151SV *
3152_alloc (int count)
3153 CODE:
3154 RETVAL = coro_waitarray_new (aTHX_ count);
2782 OUTPUT: 3155 OUTPUT:
2783 RETVAL 3156 RETVAL
2784 3157
2785SV * 3158SV *
2786count (SV *self) 3159count (SV *self)
2795 adjust = 1 3168 adjust = 1
2796 CODE: 3169 CODE:
2797 coro_semaphore_adjust (aTHX_ (AV *)SvRV (self), ix ? adjust : 1); 3170 coro_semaphore_adjust (aTHX_ (AV *)SvRV (self), ix ? adjust : 1);
2798 3171
2799void 3172void
2800down (SV *self) 3173down (...)
2801 CODE: 3174 CODE:
2802 CORO_EXECUTE_SLF_XS (slf_init_semaphore_down); 3175 CORO_EXECUTE_SLF_XS (slf_init_semaphore_down);
3176
3177void
3178wait (...)
3179 CODE:
3180 CORO_EXECUTE_SLF_XS (slf_init_semaphore_wait);
2803 3181
2804void 3182void
2805try (SV *self) 3183try (SV *self)
2806 PPCODE: 3184 PPCODE:
2807{ 3185{
2819 XSRETURN_NO; 3197 XSRETURN_NO;
2820} 3198}
2821 3199
2822void 3200void
2823waiters (SV *self) 3201waiters (SV *self)
2824 CODE: 3202 PPCODE:
2825{ 3203{
2826 AV *av = (AV *)SvRV (self); 3204 AV *av = (AV *)SvRV (self);
3205 int wcount = AvFILLp (av) + 1 - 1;
2827 3206
2828 if (GIMME_V == G_SCALAR) 3207 if (GIMME_V == G_SCALAR)
2829 XPUSHs (sv_2mortal (newSVsv (AvARRAY (av)[0]))); 3208 XPUSHs (sv_2mortal (newSViv (wcount)));
2830 else 3209 else
2831 { 3210 {
2832 int i; 3211 int i;
2833 EXTEND (SP, AvFILLp (av) + 1 - 1); 3212 EXTEND (SP, wcount);
2834 for (i = 1; i <= AvFILLp (av); ++i) 3213 for (i = 1; i <= wcount; ++i)
2835 PUSHs (newSVsv (AvARRAY (av)[i])); 3214 PUSHs (sv_2mortal (newRV_inc (AvARRAY (av)[i])));
2836 } 3215 }
2837} 3216}
3217
3218MODULE = Coro::State PACKAGE = Coro::Signal
3219
3220SV *
3221new (SV *klass)
3222 CODE:
3223 RETVAL = sv_bless (
3224 coro_waitarray_new (aTHX_ 0),
3225 GvSTASH (CvGV (cv))
3226 );
3227 OUTPUT:
3228 RETVAL
3229
3230void
3231wait (...)
3232 CODE:
3233 CORO_EXECUTE_SLF_XS (slf_init_signal_wait);
3234
3235void
3236broadcast (SV *self)
3237 CODE:
3238{
3239 AV *av = (AV *)SvRV (self);
3240 coro_signal_wake (aTHX_ av, AvFILLp (av));
3241}
3242
3243void
3244send (SV *self)
3245 CODE:
3246{
3247 AV *av = (AV *)SvRV (self);
3248
3249 if (AvFILLp (av))
3250 coro_signal_wake (aTHX_ av, 1);
3251 else
3252 SvIVX (AvARRAY (av)[0]) = 1; /* remember the signal */
3253}
3254
3255IV
3256awaited (SV *self)
3257 CODE:
3258 RETVAL = AvFILLp ((AV *)SvRV (self)) + 1 - 1;
3259 OUTPUT:
3260 RETVAL
2838 3261
2839 3262
2840MODULE = Coro::State PACKAGE = Coro::AnyEvent 3263MODULE = Coro::State PACKAGE = Coro::AnyEvent
2841 3264
2842BOOT: 3265BOOT:
2857 sv_setsv (sv_activity, &PL_sv_undef); 3280 sv_setsv (sv_activity, &PL_sv_undef);
2858 if (coro_nready >= incede) 3281 if (coro_nready >= incede)
2859 { 3282 {
2860 PUSHMARK (SP); 3283 PUSHMARK (SP);
2861 PUTBACK; 3284 PUTBACK;
2862 call_pv ("Coro::AnyEvent::_activity", G_DISCARD | G_EVAL); 3285 call_pv ("Coro::AnyEvent::_activity", G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
2863 SPAGAIN;
2864 } 3286 }
2865 3287
2866 --incede; 3288 --incede;
2867} 3289}
2868 3290
2871 3293
2872void 3294void
2873_register (char *target, char *proto, SV *req) 3295_register (char *target, char *proto, SV *req)
2874 CODE: 3296 CODE:
2875{ 3297{
2876 HV *st; 3298 CV *req_cv = coro_sv_2cv (aTHX_ req);
2877 GV *gvp; 3299 /* newXSproto doesn't return the CV on 5.8 */
2878 CV *req_cv = sv_2cv (req, &st, &gvp, 0);
2879 CV *slf_cv = newXSproto (target, coro_aio_req_xs, __FILE__, proto); 3300 CV *slf_cv = newXS (target, coro_aio_req_xs, __FILE__);
3301 sv_setpv ((SV *)slf_cv, proto);
2880 sv_magicext ((SV *)slf_cv, (SV *)req_cv, CORO_MAGIC_type_aio, 0, 0, 0); 3302 sv_magicext ((SV *)slf_cv, (SV *)req_cv, CORO_MAGIC_type_aio, 0, 0, 0);
2881} 3303}
2882 3304

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines