ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/State.xs
Revision: 1.256
Committed: Sat Nov 8 13:32:18 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-4_9
Changes since 1.255: +41 -19 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.63 #include "libcoro/coro.c"
2    
3 root 1.146 #define PERL_NO_GET_CONTEXT
4 root 1.198 #define PERL_EXT
5 root 1.146
6 root 1.1 #include "EXTERN.h"
7     #include "perl.h"
8     #include "XSUB.h"
9 root 1.246 #include "perliol.h"
10 root 1.1
11 pcg 1.46 #include "patchlevel.h"
12    
13 root 1.127 #include <stdio.h>
14     #include <errno.h>
15     #include <assert.h>
16 root 1.231
17     #ifdef WIN32
18     # undef setjmp
19     # undef longjmp
20     # undef _exit
21 root 1.232 # define setjmp _setjmp // deep magic, don't ask
22 root 1.231 #else
23     # include <inttypes.h> /* most portable stdint.h */
24     #endif
25 root 1.127
26     #ifdef HAVE_MMAP
27     # include <unistd.h>
28     # include <sys/mman.h>
29     # ifndef MAP_ANONYMOUS
30     # ifdef MAP_ANON
31     # define MAP_ANONYMOUS MAP_ANON
32     # else
33     # undef HAVE_MMAP
34     # endif
35     # endif
36     # include <limits.h>
37     # ifndef PAGESIZE
38     # define PAGESIZE pagesize
39     # define BOOT_PAGESIZE pagesize = sysconf (_SC_PAGESIZE)
40     static long pagesize;
41     # else
42     # define BOOT_PAGESIZE (void)0
43     # endif
44     #else
45     # define PAGESIZE 0
46     # define BOOT_PAGESIZE (void)0
47     #endif
48    
49 root 1.143 #if CORO_USE_VALGRIND
50 root 1.104 # include <valgrind/valgrind.h>
51 root 1.141 # define REGISTER_STACK(cctx,start,end) (cctx)->valgrind_id = VALGRIND_STACK_REGISTER ((start), (end))
52     #else
53     # define REGISTER_STACK(cctx,start,end)
54 root 1.104 #endif
55    
56 root 1.115 /* the maximum number of idle cctx that will be pooled */
57 root 1.254 static int cctx_max_idle = 4;
58 root 1.115
59 root 1.100 #define PERL_VERSION_ATLEAST(a,b,c) \
60     (PERL_REVISION > (a) \
61     || (PERL_REVISION == (a) \
62     && (PERL_VERSION > (b) \
63     || (PERL_VERSION == (b) && PERLSUBVERSION >= (c)))))
64    
65 root 1.102 #if !PERL_VERSION_ATLEAST (5,6,0)
66 pcg 1.46 # ifndef PL_ppaddr
67     # define PL_ppaddr ppaddr
68     # endif
69     # ifndef call_sv
70     # define call_sv perl_call_sv
71     # endif
72     # ifndef get_sv
73     # define get_sv perl_get_sv
74     # endif
75     # ifndef get_cv
76     # define get_cv perl_get_cv
77     # endif
78     # ifndef IS_PADGV
79     # define IS_PADGV(v) 0
80     # endif
81     # ifndef IS_PADCONST
82     # define IS_PADCONST(v) 0
83     # endif
84     #endif
85    
86 root 1.251 /* 5.11 */
87     #ifndef CxHASARGS
88     # define CxHASARGS(cx) (cx)->blk_sub.hasargs
89     #endif
90    
91     /* 5.10.0 */
92     #ifndef SvREFCNT_inc_NN
93     # define SvREFCNT_inc_NN(sv) SvREFCNT_inc (sv)
94     #endif
95    
96 root 1.190 /* 5.8.8 */
97     #ifndef GV_NOTQUAL
98     # define GV_NOTQUAL 0
99     #endif
100 root 1.191 #ifndef newSV
101     # define newSV(l) NEWSV(0,l)
102     #endif
103 root 1.223
104     /* 5.8.7 */
105     #ifndef SvRV_set
106     # define SvRV_set(s,v) SvRV(s) = (v)
107     #endif
108    
109 root 1.78 #if !__i386 && !__x86_64 && !__powerpc && !__m68k && !__alpha && !__mips && !__sparc64
110 root 1.143 # undef CORO_STACKGUARD
111 root 1.78 #endif
112    
113 root 1.143 #ifndef CORO_STACKGUARD
114     # define CORO_STACKGUARD 0
115 root 1.78 #endif
116    
117 root 1.127 /* prefer perl internal functions over our own? */
118 root 1.143 #ifndef CORO_PREFER_PERL_FUNCTIONS
119     # define CORO_PREFER_PERL_FUNCTIONS 0
120 root 1.3 #endif
121    
122 root 1.158 /* The next macros try to return the current stack pointer, in an as
123     * portable way as possible. */
124     #define dSTACKLEVEL volatile char stacklevel
125 root 1.92 #define STACKLEVEL ((void *)&stacklevel)
126 root 1.15
127 root 1.34 #define IN_DESTRUCT (PL_main_cv == Nullcv)
128    
129 root 1.100 #if __GNUC__ >= 3
130     # define attribute(x) __attribute__(x)
131 root 1.131 # define BARRIER __asm__ __volatile__ ("" : : : "memory")
132 root 1.194 # define expect(expr,value) __builtin_expect ((expr),(value))
133 root 1.100 #else
134     # define attribute(x)
135 root 1.131 # define BARRIER
136 root 1.194 # define expect(expr,value) (expr)
137 root 1.100 #endif
138    
139 root 1.194 #define expect_false(expr) expect ((expr) != 0, 0)
140     #define expect_true(expr) expect ((expr) != 0, 1)
141    
142 root 1.100 #define NOINLINE attribute ((noinline))
143    
144 root 1.23 #include "CoroAPI.h"
145    
146 pcg 1.55 #ifdef USE_ITHREADS
147 root 1.256
148 root 1.253 static perl_mutex coro_lock;
149     # define LOCK do { MUTEX_LOCK (&coro_lock); } while (0)
150     # define UNLOCK do { MUTEX_UNLOCK (&coro_lock); } while (0)
151 root 1.256 # if CORO_PTHREAD
152     static void *coro_thx;
153     # endif
154    
155 pcg 1.55 #else
156 root 1.256
157 root 1.69 # define LOCK (void)0
158     # define UNLOCK (void)0
159 root 1.256
160 pcg 1.55 #endif
161    
162 root 1.256 # undef LOCK
163     # define LOCK (void)0
164     # undef UNLOCK
165     # define UNLOCK (void)0
166    
167 root 1.136 /* helper storage struct for Coro::AIO */
168 root 1.120 struct io_state
169     {
170 root 1.249 AV *res;
171 root 1.120 int errorno;
172 root 1.255 I32 laststype; /* U16 in 5.10.0 */
173 root 1.120 int laststatval;
174     Stat_t statcache;
175     };
176    
177 root 1.246 static double (*nvtime)(); /* so why doesn't it take void? */
178    
179 root 1.254 static U32 cctx_gen;
180     static size_t cctx_stacksize = CORO_STACKSIZE;
181 root 1.23 static struct CoroAPI coroapi;
182 pcg 1.56 static AV *main_mainstack; /* used to differentiate between $main and others */
183 root 1.148 static JMPENV *main_top_env;
184 root 1.88 static HV *coro_state_stash, *coro_stash;
185 root 1.252 static volatile SV *coro_mortal; /* will be freed/thrown after next transfer */
186 root 1.23
187 root 1.189 static GV *irsgv; /* $/ */
188     static GV *stdoutgv; /* *STDOUT */
189 root 1.214 static SV *rv_diehook;
190     static SV *rv_warnhook;
191 root 1.200 static HV *hv_sig; /* %SIG */
192 root 1.178
193 root 1.159 /* async_pool helper stuff */
194     static SV *sv_pool_rss;
195     static SV *sv_pool_size;
196     static AV *av_async_pool;
197    
198 root 1.233 /* Coro::AnyEvent */
199     static SV *sv_activity;
200    
201 root 1.211 static struct coro_cctx *cctx_first;
202     static int cctx_count, cctx_idle;
203 root 1.107
204 root 1.165 enum {
205 root 1.167 CC_MAPPED = 0x01,
206     CC_NOREUSE = 0x02, /* throw this away after tracing */
207     CC_TRACE = 0x04,
208     CC_TRACE_SUB = 0x08, /* trace sub calls */
209     CC_TRACE_LINE = 0x10, /* trace each statement */
210     CC_TRACE_ALL = CC_TRACE_SUB | CC_TRACE_LINE,
211 root 1.165 };
212    
213 root 1.92 /* this is a structure representing a c-level coroutine */
214 root 1.106 typedef struct coro_cctx {
215     struct coro_cctx *next;
216 root 1.15
217 root 1.93 /* the stack */
218 root 1.15 void *sptr;
219 root 1.145 size_t ssize;
220 root 1.89
221     /* cpu state */
222 root 1.132 void *idle_sp; /* sp of top-level transfer/schedule/cede call */
223     JMPENV *idle_te; /* same as idle_sp, but for top_env, TODO: remove once stable */
224 root 1.93 JMPENV *top_env;
225 root 1.89 coro_context cctx;
226 root 1.104
227 root 1.254 U32 gen;
228 root 1.143 #if CORO_USE_VALGRIND
229 root 1.104 int valgrind_id;
230     #endif
231 root 1.165 unsigned char flags;
232 root 1.106 } coro_cctx;
233 root 1.15
234 root 1.111 enum {
235 root 1.133 CF_RUNNING = 0x0001, /* coroutine is running */
236     CF_READY = 0x0002, /* coroutine is ready */
237     CF_NEW = 0x0004, /* has never been switched to */
238     CF_DESTROYED = 0x0008, /* coroutine data has been freed */
239 root 1.111 };
240    
241 root 1.198 /* the structure where most of the perl state is stored, overlaid on the cxstack */
242     typedef struct {
243     SV *defsv;
244     AV *defav;
245     SV *errsv;
246     SV *irsgv;
247     #define VAR(name,type) type name;
248     # include "state.h"
249     #undef VAR
250     } perl_slots;
251    
252     #define SLOT_COUNT ((sizeof (perl_slots) + sizeof (PERL_CONTEXT) - 1) / sizeof (PERL_CONTEXT))
253    
254 root 1.92 /* this is a structure representing a perl-level coroutine */
255 root 1.1 struct coro {
256 root 1.92 /* the c coroutine allocated to this perl coroutine, if any */
257 root 1.106 coro_cctx *cctx;
258 root 1.92
259 root 1.198 /* process data */
260     AV *mainstack;
261     perl_slots *slot; /* basically the saved sp */
262    
263 root 1.203 AV *args; /* data associated with this coroutine (initial args) */
264     int refcnt; /* coroutines are refcounted, yes */
265     int flags; /* CF_ flags */
266     HV *hv; /* the perl hash associated with this coro, if any */
267 root 1.92
268 root 1.172 /* statistics */
269 root 1.181 int usecount; /* number of transfers to this coro */
270 root 1.172
271 root 1.87 /* coro process data */
272     int prio;
273 root 1.203 SV *throw; /* exception to be thrown */
274 root 1.181
275     /* async_pool */
276 root 1.184 SV *saved_deffh;
277 root 1.151
278     /* linked list */
279     struct coro *next, *prev;
280 root 1.1 };
281    
282     typedef struct coro *Coro__State;
283     typedef struct coro *Coro__State_or_hashref;
284    
285 root 1.137 /** Coro ********************************************************************/
286    
287     #define PRIO_MAX 3
288     #define PRIO_HIGH 1
289     #define PRIO_NORMAL 0
290     #define PRIO_LOW -1
291     #define PRIO_IDLE -3
292     #define PRIO_MIN -4
293    
294     /* for Coro.pm */
295     static SV *coro_current;
296 root 1.233 static SV *coro_readyhook;
297 root 1.137 static AV *coro_ready [PRIO_MAX-PRIO_MIN+1];
298     static int coro_nready;
299 root 1.153 static struct coro *coro_first;
300 root 1.137
301     /** lowlevel stuff **********************************************************/
302    
303 root 1.199 static SV *
304 root 1.213 coro_get_sv (pTHX_ const char *name, int create)
305 root 1.199 {
306 root 1.228 #if PERL_VERSION_ATLEAST (5,10,0)
307 root 1.199 /* silence stupid and wrong 5.10 warning that I am unable to switch off */
308     get_sv (name, create);
309     #endif
310     return get_sv (name, create);
311     }
312    
313 root 1.200 static AV *
314 root 1.213 coro_get_av (pTHX_ const char *name, int create)
315 root 1.199 {
316 root 1.228 #if PERL_VERSION_ATLEAST (5,10,0)
317 root 1.199 /* silence stupid and wrong 5.10 warning that I am unable to switch off */
318     get_av (name, create);
319     #endif
320     return get_av (name, create);
321     }
322    
323 root 1.200 static HV *
324 root 1.213 coro_get_hv (pTHX_ const char *name, int create)
325 root 1.200 {
326 root 1.228 #if PERL_VERSION_ATLEAST (5,10,0)
327 root 1.200 /* silence stupid and wrong 5.10 warning that I am unable to switch off */
328     get_hv (name, create);
329     #endif
330     return get_hv (name, create);
331     }
332    
333 root 1.77 static AV *
334 root 1.146 coro_clone_padlist (pTHX_ CV *cv)
335 root 1.77 {
336     AV *padlist = CvPADLIST (cv);
337     AV *newpadlist, *newpad;
338 root 1.3
339     newpadlist = newAV ();
340     AvREAL_off (newpadlist);
341 root 1.228 #if PERL_VERSION_ATLEAST (5,10,0)
342 root 1.100 Perl_pad_push (aTHX_ padlist, AvFILLp (padlist) + 1);
343     #else
344 root 1.77 Perl_pad_push (aTHX_ padlist, AvFILLp (padlist) + 1, 1);
345 root 1.79 #endif
346 root 1.77 newpad = (AV *)AvARRAY (padlist)[AvFILLp (padlist)];
347     --AvFILLp (padlist);
348 root 1.3
349 root 1.249 av_store (newpadlist, 0, SvREFCNT_inc_NN (*av_fetch (padlist, 0, FALSE)));
350 root 1.77 av_store (newpadlist, 1, (SV *)newpad);
351 root 1.3
352     return newpadlist;
353     }
354    
355 root 1.77 static void
356 root 1.146 free_padlist (pTHX_ AV *padlist)
357 root 1.3 {
358     /* may be during global destruction */
359 pcg 1.50 if (SvREFCNT (padlist))
360 root 1.3 {
361 pcg 1.50 I32 i = AvFILLp (padlist);
362 root 1.3 while (i >= 0)
363     {
364 pcg 1.50 SV **svp = av_fetch (padlist, i--, FALSE);
365     if (svp)
366     {
367     SV *sv;
368     while (&PL_sv_undef != (sv = av_pop ((AV *)*svp)))
369     SvREFCNT_dec (sv);
370    
371     SvREFCNT_dec (*svp);
372     }
373 root 1.3 }
374    
375 pcg 1.50 SvREFCNT_dec ((SV*)padlist);
376     }
377     }
378    
379 root 1.77 static int
380 pcg 1.54 coro_cv_free (pTHX_ SV *sv, MAGIC *mg)
381 pcg 1.50 {
382     AV *padlist;
383     AV *av = (AV *)mg->mg_obj;
384    
385     /* casting is fun. */
386     while (&PL_sv_undef != (SV *)(padlist = (AV *)av_pop (av)))
387 root 1.146 free_padlist (aTHX_ padlist);
388 root 1.61
389 root 1.245 SvREFCNT_dec (av); /* sv_magicext increased the refcount */
390 root 1.244
391 root 1.76 return 0;
392 root 1.3 }
393 pcg 1.50
394 root 1.214 #define CORO_MAGIC_type_cv PERL_MAGIC_ext
395     #define CORO_MAGIC_type_state PERL_MAGIC_ext
396 pcg 1.50
397 root 1.214 static MGVTBL coro_cv_vtbl = {
398     0, 0, 0, 0,
399     coro_cv_free
400     };
401 root 1.3
402 root 1.253 #define CORO_MAGIC(sv, type) \
403     SvMAGIC (sv) \
404     ? SvMAGIC (sv)->mg_type == type \
405     ? SvMAGIC (sv) \
406     : mg_find (sv, type) \
407     : 0
408 root 1.109
409 root 1.214 #define CORO_MAGIC_cv(cv) CORO_MAGIC (((SV *)(cv)), CORO_MAGIC_type_cv)
410     #define CORO_MAGIC_state(sv) CORO_MAGIC (((SV *)(sv)), CORO_MAGIC_type_state)
411    
412 root 1.169 static struct coro *
413     SvSTATE_ (pTHX_ SV *coro)
414     {
415     HV *stash;
416     MAGIC *mg;
417    
418     if (SvROK (coro))
419     coro = SvRV (coro);
420    
421 root 1.194 if (expect_false (SvTYPE (coro) != SVt_PVHV))
422 root 1.172 croak ("Coro::State object required");
423    
424 root 1.169 stash = SvSTASH (coro);
425 root 1.194 if (expect_false (stash != coro_stash && stash != coro_state_stash))
426 root 1.169 {
427     /* very slow, but rare, check */
428     if (!sv_derived_from (sv_2mortal (newRV_inc (coro)), "Coro::State"))
429     croak ("Coro::State object required");
430     }
431    
432 root 1.214 mg = CORO_MAGIC_state (coro);
433 root 1.169 return (struct coro *)mg->mg_ptr;
434     }
435    
436     #define SvSTATE(sv) SvSTATE_ (aTHX_ (sv))
437    
438 root 1.7 /* the next two functions merely cache the padlists */
439 root 1.77 static void
440 root 1.146 get_padlist (pTHX_ CV *cv)
441 root 1.3 {
442 root 1.214 MAGIC *mg = CORO_MAGIC_cv (cv);
443 root 1.109 AV *av;
444 root 1.4
445 root 1.194 if (expect_true (mg && AvFILLp ((av = (AV *)mg->mg_obj)) >= 0))
446 root 1.109 CvPADLIST (cv) = (AV *)AvARRAY (av)[AvFILLp (av)--];
447 root 1.4 else
448 root 1.77 {
449 root 1.143 #if CORO_PREFER_PERL_FUNCTIONS
450 root 1.244 /* this is probably cleaner? but also slower! */
451     /* in practise, it seems to be less stable */
452 root 1.98 CV *cp = Perl_cv_clone (cv);
453 root 1.77 CvPADLIST (cv) = CvPADLIST (cp);
454     CvPADLIST (cp) = 0;
455     SvREFCNT_dec (cp);
456     #else
457 root 1.146 CvPADLIST (cv) = coro_clone_padlist (aTHX_ cv);
458 root 1.77 #endif
459     }
460 root 1.4 }
461    
462 root 1.77 static void
463 root 1.146 put_padlist (pTHX_ CV *cv)
464 root 1.4 {
465 root 1.214 MAGIC *mg = CORO_MAGIC_cv (cv);
466 root 1.109 AV *av;
467 root 1.7
468 root 1.194 if (expect_false (!mg))
469 root 1.214 mg = sv_magicext ((SV *)cv, (SV *)newAV (), CORO_MAGIC_type_cv, &coro_cv_vtbl, 0, 0);
470 root 1.7
471 root 1.109 av = (AV *)mg->mg_obj;
472    
473 root 1.194 if (expect_false (AvFILLp (av) >= AvMAX (av)))
474 root 1.109 av_extend (av, AvMAX (av) + 1);
475    
476     AvARRAY (av)[++AvFILLp (av)] = (SV *)CvPADLIST (cv);
477 root 1.7 }
478    
479 root 1.137 /** load & save, init *******************************************************/
480    
481 root 1.7 static void
482 root 1.146 load_perl (pTHX_ Coro__State c)
483 root 1.7 {
484 root 1.198 perl_slots *slot = c->slot;
485     c->slot = 0;
486    
487     PL_mainstack = c->mainstack;
488 root 1.7
489 root 1.198 GvSV (PL_defgv) = slot->defsv;
490     GvAV (PL_defgv) = slot->defav;
491     GvSV (PL_errgv) = slot->errsv;
492     GvSV (irsgv) = slot->irsgv;
493    
494     #define VAR(name,type) PL_ ## name = slot->name;
495     # include "state.h"
496     #undef VAR
497 root 1.7
498     {
499     dSP;
500 root 1.198
501 root 1.7 CV *cv;
502    
503     /* now do the ugly restore mess */
504 root 1.194 while (expect_true (cv = (CV *)POPs))
505 root 1.7 {
506 root 1.146 put_padlist (aTHX_ cv); /* mark this padlist as available */
507 root 1.109 CvDEPTH (cv) = PTR2IV (POPs);
508     CvPADLIST (cv) = (AV *)POPs;
509 root 1.7 }
510    
511     PUTBACK;
512     }
513     }
514    
515 root 1.3 static void
516 root 1.146 save_perl (pTHX_ Coro__State c)
517 root 1.3 {
518     {
519     dSP;
520     I32 cxix = cxstack_ix;
521 root 1.11 PERL_CONTEXT *ccstk = cxstack;
522 root 1.3 PERL_SI *top_si = PL_curstackinfo;
523    
524     /*
525     * the worst thing you can imagine happens first - we have to save
526     * (and reinitialize) all cv's in the whole callchain :(
527     */
528    
529 root 1.157 XPUSHs (Nullsv);
530 root 1.3 /* this loop was inspired by pp_caller */
531     for (;;)
532     {
533 root 1.194 while (expect_true (cxix >= 0))
534 root 1.3 {
535 root 1.4 PERL_CONTEXT *cx = &ccstk[cxix--];
536 root 1.3
537 root 1.194 if (expect_true (CxTYPE (cx) == CXt_SUB || CxTYPE (cx) == CXt_FORMAT))
538 root 1.3 {
539     CV *cv = cx->blk_sub.cv;
540 root 1.109
541 root 1.194 if (expect_true (CvDEPTH (cv)))
542 root 1.3 {
543 root 1.109 EXTEND (SP, 3);
544 root 1.117 PUSHs ((SV *)CvPADLIST (cv));
545 root 1.233 PUSHs (INT2PTR (SV *, (IV)CvDEPTH (cv)));
546 root 1.3 PUSHs ((SV *)cv);
547    
548 root 1.109 CvDEPTH (cv) = 0;
549 root 1.146 get_padlist (aTHX_ cv);
550 root 1.3 }
551     }
552     }
553    
554 root 1.194 if (expect_true (top_si->si_type == PERLSI_MAIN))
555 root 1.3 break;
556    
557     top_si = top_si->si_prev;
558 root 1.158 ccstk = top_si->si_cxstack;
559     cxix = top_si->si_cxix;
560 root 1.3 }
561    
562     PUTBACK;
563     }
564    
565 root 1.198 /* allocate some space on the context stack for our purposes */
566 root 1.202 /* we manually unroll here, as usually 2 slots is enough */
567     if (SLOT_COUNT >= 1) CXINC;
568     if (SLOT_COUNT >= 2) CXINC;
569     if (SLOT_COUNT >= 3) CXINC;
570 root 1.198 {
571     int i;
572     for (i = 3; i < SLOT_COUNT; ++i)
573     CXINC;
574     }
575 root 1.202 cxstack_ix -= SLOT_COUNT; /* undo allocation */
576 root 1.198
577     c->mainstack = PL_mainstack;
578    
579     {
580     perl_slots *slot = c->slot = (perl_slots *)(cxstack + cxstack_ix + 1);
581    
582     slot->defav = GvAV (PL_defgv);
583     slot->defsv = DEFSV;
584     slot->errsv = ERRSV;
585     slot->irsgv = GvSV (irsgv);
586    
587     #define VAR(name,type) slot->name = PL_ ## name;
588     # include "state.h"
589     #undef VAR
590     }
591 root 1.13 }
592    
593     /*
594     * allocate various perl stacks. This is an exact copy
595     * of perl.c:init_stacks, except that it uses less memory
596 pcg 1.52 * on the (sometimes correct) assumption that coroutines do
597     * not usually need a lot of stackspace.
598 root 1.13 */
599 root 1.204 #if CORO_PREFER_PERL_FUNCTIONS
600 root 1.126 # define coro_init_stacks init_stacks
601     #else
602 root 1.77 static void
603 root 1.146 coro_init_stacks (pTHX)
604 root 1.13 {
605 root 1.198 PL_curstackinfo = new_stackinfo(32, 8);
606 root 1.13 PL_curstackinfo->si_type = PERLSI_MAIN;
607     PL_curstack = PL_curstackinfo->si_stack;
608     PL_mainstack = PL_curstack; /* remember in case we switch stacks */
609    
610     PL_stack_base = AvARRAY(PL_curstack);
611     PL_stack_sp = PL_stack_base;
612     PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
613    
614 root 1.198 New(50,PL_tmps_stack,32,SV*);
615 root 1.13 PL_tmps_floor = -1;
616     PL_tmps_ix = -1;
617 root 1.198 PL_tmps_max = 32;
618 root 1.13
619 root 1.154 New(54,PL_markstack,16,I32);
620 root 1.13 PL_markstack_ptr = PL_markstack;
621 root 1.154 PL_markstack_max = PL_markstack + 16;
622 root 1.13
623 pcg 1.46 #ifdef SET_MARK_OFFSET
624 root 1.13 SET_MARK_OFFSET;
625 pcg 1.46 #endif
626 root 1.13
627 root 1.198 New(54,PL_scopestack,8,I32);
628 root 1.13 PL_scopestack_ix = 0;
629 root 1.198 PL_scopestack_max = 8;
630 root 1.13
631 root 1.198 New(54,PL_savestack,24,ANY);
632 root 1.13 PL_savestack_ix = 0;
633 root 1.198 PL_savestack_max = 24;
634 root 1.13
635 root 1.228 #if !PERL_VERSION_ATLEAST (5,10,0)
636 root 1.156 New(54,PL_retstack,4,OP*);
637 root 1.13 PL_retstack_ix = 0;
638 root 1.156 PL_retstack_max = 4;
639 root 1.71 #endif
640 root 1.3 }
641 root 1.127 #endif
642 root 1.1
643 root 1.7 /*
644     * destroy the stacks, the callchain etc...
645     */
646 root 1.77 static void
647 root 1.253 coro_destruct_stacks (pTHX)
648 root 1.1 {
649 root 1.4 while (PL_curstackinfo->si_next)
650     PL_curstackinfo = PL_curstackinfo->si_next;
651    
652     while (PL_curstackinfo)
653     {
654     PERL_SI *p = PL_curstackinfo->si_prev;
655    
656 root 1.34 if (!IN_DESTRUCT)
657 root 1.126 SvREFCNT_dec (PL_curstackinfo->si_stack);
658 root 1.7
659 pcg 1.57 Safefree (PL_curstackinfo->si_cxstack);
660     Safefree (PL_curstackinfo);
661 root 1.4 PL_curstackinfo = p;
662     }
663    
664 pcg 1.57 Safefree (PL_tmps_stack);
665     Safefree (PL_markstack);
666     Safefree (PL_scopestack);
667     Safefree (PL_savestack);
668 root 1.228 #if !PERL_VERSION_ATLEAST (5,10,0)
669 pcg 1.57 Safefree (PL_retstack);
670 root 1.71 #endif
671 root 1.1 }
672    
673 root 1.152 static size_t
674 root 1.171 coro_rss (pTHX_ struct coro *coro)
675 root 1.152 {
676 root 1.183 size_t rss = sizeof (*coro);
677 root 1.152
678     if (coro->mainstack)
679     {
680 root 1.198 perl_slots tmp_slot;
681     perl_slots *slot;
682    
683 root 1.153 if (coro->flags & CF_RUNNING)
684     {
685 root 1.198 slot = &tmp_slot;
686    
687     #define VAR(name,type) slot->name = PL_ ## name;
688 root 1.153 # include "state.h"
689     #undef VAR
690     }
691 root 1.198 else
692     slot = coro->slot;
693 root 1.153
694 root 1.245 if (slot)
695     {
696     rss += sizeof (slot->curstackinfo);
697     rss += (slot->curstackinfo->si_cxmax + 1) * sizeof (PERL_CONTEXT);
698     rss += sizeof (SV) + sizeof (struct xpvav) + (1 + AvMAX (slot->curstack)) * sizeof (SV *);
699     rss += slot->tmps_max * sizeof (SV *);
700     rss += (slot->markstack_max - slot->markstack_ptr) * sizeof (I32);
701     rss += slot->scopestack_max * sizeof (I32);
702     rss += slot->savestack_max * sizeof (ANY);
703 root 1.152
704 root 1.228 #if !PERL_VERSION_ATLEAST (5,10,0)
705 root 1.245 rss += slot->retstack_max * sizeof (OP *);
706 root 1.152 #endif
707 root 1.245 }
708 root 1.152 }
709    
710     return rss;
711     }
712    
713 root 1.137 /** coroutine stack handling ************************************************/
714    
715 root 1.214 static int (*orig_sigelem_get) (pTHX_ SV *sv, MAGIC *mg);
716 root 1.220 static int (*orig_sigelem_set) (pTHX_ SV *sv, MAGIC *mg);
717 root 1.239 static int (*orig_sigelem_clr) (pTHX_ SV *sv, MAGIC *mg);
718 root 1.214
719 root 1.238 /* apparently < 5.8.8 */
720     #ifndef MgPV_nolen_const
721     #define MgPV_nolen_const(mg) (((((int)(mg)->mg_len)) == HEf_SVKEY) ? \
722 root 1.241 SvPV_nolen((SV*)((mg)->mg_ptr)) : \
723 root 1.238 (const char*)(mg)->mg_ptr)
724     #endif
725    
726 root 1.214 /*
727     * This overrides the default magic get method of %SIG elements.
728     * The original one doesn't provide for reading back of PL_diehook/PL_warnhook
729     * and instead of tryign to save and restore the hash elements, we just provide
730     * readback here.
731     * We only do this when the hook is != 0, as they are often set to 0 temporarily,
732     * not expecting this to actually change the hook. This is a potential problem
733     * when a schedule happens then, but we ignore this.
734     */
735     static int
736     coro_sigelem_get (pTHX_ SV *sv, MAGIC *mg)
737     {
738     const char *s = MgPV_nolen_const (mg);
739    
740     if (*s == '_')
741     {
742 root 1.239 SV **svp = 0;
743    
744     if (strEQ (s, "__DIE__" )) svp = &PL_diehook;
745     if (strEQ (s, "__WARN__")) svp = &PL_warnhook;
746    
747     if (svp)
748     {
749     sv_setsv (sv, *svp ? *svp : &PL_sv_undef);
750     return 0;
751     }
752 root 1.214 }
753    
754 root 1.220 return orig_sigelem_get ? orig_sigelem_get (aTHX_ sv, mg) : 0;
755     }
756    
757     static int
758 root 1.239 coro_sigelem_clr (pTHX_ SV *sv, MAGIC *mg)
759     {
760     const char *s = MgPV_nolen_const (mg);
761    
762     if (*s == '_')
763     {
764     SV **svp = 0;
765    
766     if (strEQ (s, "__DIE__" )) svp = &PL_diehook;
767     if (strEQ (s, "__WARN__")) svp = &PL_warnhook;
768    
769     if (svp)
770     {
771     SV *old = *svp;
772     *svp = 0;
773     SvREFCNT_dec (old);
774     return 0;
775     }
776     }
777    
778     return orig_sigelem_clr ? orig_sigelem_clr (aTHX_ sv, mg) : 0;
779     }
780    
781     static int
782 root 1.220 coro_sigelem_set (pTHX_ SV *sv, MAGIC *mg)
783     {
784     const char *s = MgPV_nolen_const (mg);
785    
786     if (*s == '_')
787     {
788     SV **svp = 0;
789    
790     if (strEQ (s, "__DIE__" )) svp = &PL_diehook;
791     if (strEQ (s, "__WARN__")) svp = &PL_warnhook;
792    
793     if (svp)
794     {
795     SV *old = *svp;
796     *svp = newSVsv (sv);
797     SvREFCNT_dec (old);
798 root 1.231 return 0;
799 root 1.220 }
800     }
801    
802     return orig_sigelem_set ? orig_sigelem_set (aTHX_ sv, mg) : 0;
803 root 1.214 }
804    
805 root 1.13 static void
806 root 1.179 coro_setup (pTHX_ struct coro *coro)
807 root 1.13 {
808 root 1.89 /*
809     * emulate part of the perl startup here.
810     */
811 root 1.146 coro_init_stacks (aTHX);
812 root 1.15
813 root 1.169 PL_runops = RUNOPS_DEFAULT;
814 root 1.117 PL_curcop = &PL_compiling;
815     PL_in_eval = EVAL_NULL;
816 root 1.142 PL_comppad = 0;
817 root 1.117 PL_curpm = 0;
818 root 1.196 PL_curpad = 0;
819 root 1.117 PL_localizing = 0;
820     PL_dirty = 0;
821     PL_restartop = 0;
822 root 1.229 #if PERL_VERSION_ATLEAST (5,10,0)
823 root 1.228 PL_parser = 0;
824     #endif
825 root 1.214
826     /* recreate the die/warn hooks */
827 root 1.220 PL_diehook = 0; SvSetMagicSV (*hv_fetch (hv_sig, "__DIE__" , sizeof ("__DIE__" ) - 1, 1), rv_diehook );
828     PL_warnhook = 0; SvSetMagicSV (*hv_fetch (hv_sig, "__WARN__", sizeof ("__WARN__") - 1, 1), rv_warnhook);
829 root 1.178
830 root 1.191 GvSV (PL_defgv) = newSV (0);
831 root 1.178 GvAV (PL_defgv) = coro->args; coro->args = 0;
832 root 1.191 GvSV (PL_errgv) = newSV (0);
833 root 1.180 GvSV (irsgv) = newSVpvn ("\n", 1); sv_magic (GvSV (irsgv), (SV *)irsgv, PERL_MAGIC_sv, "/", 0);
834 root 1.179 PL_rs = newSVsv (GvSV (irsgv));
835 root 1.249 PL_defoutgv = (GV *)SvREFCNT_inc_NN (stdoutgv);
836 root 1.103
837 root 1.102 {
838     dSP;
839     LOGOP myop;
840    
841     Zero (&myop, 1, LOGOP);
842     myop.op_next = Nullop;
843     myop.op_flags = OPf_WANT_VOID;
844 root 1.89
845 root 1.102 PUSHMARK (SP);
846 root 1.192 XPUSHs (sv_2mortal (av_shift (GvAV (PL_defgv))));
847 root 1.102 PUTBACK;
848 root 1.120 PL_op = (OP *)&myop;
849 root 1.102 PL_op = PL_ppaddr[OP_ENTERSUB](aTHX);
850     SPAGAIN;
851 root 1.117 }
852 root 1.210
853     /* this newly created coroutine might be run on an existing cctx which most
854     * likely was suspended in set_stacklevel, called from entersub.
855     * set_stacklevl doesn't do anything on return, but entersub does LEAVE,
856     * so we ENTER here for symmetry
857     */
858     ENTER;
859 root 1.13 }
860    
861     static void
862 root 1.253 coro_destruct (pTHX_ struct coro *coro)
863 root 1.178 {
864     if (!IN_DESTRUCT)
865     {
866     /* restore all saved variables and stuff */
867     LEAVE_SCOPE (0);
868     assert (PL_tmps_floor == -1);
869    
870     /* free all temporaries */
871     FREETMPS;
872     assert (PL_tmps_ix == -1);
873    
874     /* unwind all extra stacks */
875     POPSTACK_TO (PL_mainstack);
876    
877     /* unwind main stack */
878     dounwind (-1);
879     }
880    
881     SvREFCNT_dec (GvSV (PL_defgv));
882     SvREFCNT_dec (GvAV (PL_defgv));
883     SvREFCNT_dec (GvSV (PL_errgv));
884 root 1.180 SvREFCNT_dec (PL_defoutgv);
885 root 1.178 SvREFCNT_dec (PL_rs);
886     SvREFCNT_dec (GvSV (irsgv));
887    
888 root 1.198 SvREFCNT_dec (PL_diehook);
889     SvREFCNT_dec (PL_warnhook);
890    
891 root 1.184 SvREFCNT_dec (coro->saved_deffh);
892 root 1.196 SvREFCNT_dec (coro->throw);
893 root 1.181
894 root 1.253 coro_destruct_stacks (aTHX);
895 root 1.178 }
896    
897     static void
898 root 1.146 free_coro_mortal (pTHX)
899 root 1.13 {
900 root 1.194 if (expect_true (coro_mortal))
901 root 1.15 {
902 root 1.89 SvREFCNT_dec (coro_mortal);
903     coro_mortal = 0;
904     }
905 root 1.13 }
906    
907 root 1.165 static int
908 root 1.169 runops_trace (pTHX)
909 root 1.165 {
910     COP *oldcop = 0;
911 root 1.167 int oldcxix = -2;
912 root 1.169 struct coro *coro = SvSTATE (coro_current); /* trace cctx is tied to specific coro */
913     coro_cctx *cctx = coro->cctx;
914 root 1.165
915     while ((PL_op = CALL_FPTR (PL_op->op_ppaddr) (aTHX)))
916     {
917     PERL_ASYNC_CHECK ();
918    
919 root 1.173 if (cctx->flags & CC_TRACE_ALL)
920 root 1.167 {
921 root 1.173 if (PL_op->op_type == OP_LEAVESUB && cctx->flags & CC_TRACE_SUB)
922     {
923     PERL_CONTEXT *cx = &cxstack[cxstack_ix];
924     SV **bot, **top;
925     AV *av = newAV (); /* return values */
926     SV **cb;
927     dSP;
928 root 1.167
929 root 1.173 GV *gv = CvGV (cx->blk_sub.cv);
930     SV *fullname = sv_2mortal (newSV (0));
931     if (isGV (gv))
932     gv_efullname3 (fullname, gv, 0);
933    
934     bot = PL_stack_base + cx->blk_oldsp + 1;
935     top = cx->blk_gimme == G_ARRAY ? SP + 1
936     : cx->blk_gimme == G_SCALAR ? bot + 1
937     : bot;
938 root 1.167
939 root 1.193 av_extend (av, top - bot);
940 root 1.173 while (bot < top)
941 root 1.249 av_push (av, SvREFCNT_inc_NN (*bot++));
942 root 1.167
943 root 1.173 PL_runops = RUNOPS_DEFAULT;
944 root 1.167 ENTER;
945     SAVETMPS;
946     EXTEND (SP, 3);
947 root 1.173 PUSHMARK (SP);
948     PUSHs (&PL_sv_no);
949     PUSHs (fullname);
950     PUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
951     PUTBACK;
952 root 1.212 cb = hv_fetch ((HV *)SvRV (coro_current), "_trace_sub_cb", sizeof ("_trace_sub_cb") - 1, 0);
953 root 1.173 if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
954     SPAGAIN;
955     FREETMPS;
956     LEAVE;
957     PL_runops = runops_trace;
958     }
959    
960     if (oldcop != PL_curcop)
961     {
962     oldcop = PL_curcop;
963 root 1.167
964 root 1.173 if (PL_curcop != &PL_compiling)
965 root 1.167 {
966 root 1.173 SV **cb;
967    
968     if (oldcxix != cxstack_ix && cctx->flags & CC_TRACE_SUB)
969     {
970     PERL_CONTEXT *cx = &cxstack[cxstack_ix];
971    
972     if (CxTYPE (cx) == CXt_SUB && oldcxix < cxstack_ix)
973     {
974     runops_proc_t old_runops = PL_runops;
975     dSP;
976     GV *gv = CvGV (cx->blk_sub.cv);
977     SV *fullname = sv_2mortal (newSV (0));
978    
979     if (isGV (gv))
980     gv_efullname3 (fullname, gv, 0);
981    
982     PL_runops = RUNOPS_DEFAULT;
983     ENTER;
984     SAVETMPS;
985     EXTEND (SP, 3);
986     PUSHMARK (SP);
987     PUSHs (&PL_sv_yes);
988     PUSHs (fullname);
989 root 1.223 PUSHs (CxHASARGS (cx) ? sv_2mortal (newRV_inc ((SV *)cx->blk_sub.argarray)) : &PL_sv_undef);
990 root 1.173 PUTBACK;
991 root 1.212 cb = hv_fetch ((HV *)SvRV (coro_current), "_trace_sub_cb", sizeof ("_trace_sub_cb") - 1, 0);
992 root 1.173 if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
993     SPAGAIN;
994     FREETMPS;
995     LEAVE;
996     PL_runops = runops_trace;
997     }
998    
999     oldcxix = cxstack_ix;
1000     }
1001 root 1.167
1002 root 1.173 if (cctx->flags & CC_TRACE_LINE)
1003 root 1.167 {
1004 root 1.173 dSP;
1005 root 1.167
1006 root 1.173 PL_runops = RUNOPS_DEFAULT;
1007     ENTER;
1008     SAVETMPS;
1009     EXTEND (SP, 3);
1010     PL_runops = RUNOPS_DEFAULT;
1011 root 1.167 PUSHMARK (SP);
1012 root 1.173 PUSHs (sv_2mortal (newSVpv (OutCopFILE (oldcop), 0)));
1013     PUSHs (sv_2mortal (newSViv (CopLINE (oldcop))));
1014 root 1.167 PUTBACK;
1015 root 1.212 cb = hv_fetch ((HV *)SvRV (coro_current), "_trace_line_cb", sizeof ("_trace_line_cb") - 1, 0);
1016 root 1.169 if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
1017 root 1.167 SPAGAIN;
1018 root 1.173 FREETMPS;
1019     LEAVE;
1020     PL_runops = runops_trace;
1021 root 1.167 }
1022 root 1.169 }
1023 root 1.167 }
1024 root 1.165 }
1025     }
1026    
1027     TAINT_NOT;
1028     return 0;
1029     }
1030    
1031 root 1.120 /* inject a fake call to Coro::State::_cctx_init into the execution */
1032 root 1.150 /* _cctx_init should be careful, as it could be called at almost any time */
1033     /* during execution of a perl program */
1034 root 1.100 static void NOINLINE
1035 root 1.201 cctx_prepare (pTHX_ coro_cctx *cctx)
1036 root 1.99 {
1037     dSP;
1038 root 1.102 LOGOP myop;
1039 root 1.99
1040 root 1.165 PL_top_env = &PL_start_env;
1041    
1042     if (cctx->flags & CC_TRACE)
1043 root 1.169 PL_runops = runops_trace;
1044 root 1.165
1045 root 1.102 Zero (&myop, 1, LOGOP);
1046 root 1.99 myop.op_next = PL_op;
1047 root 1.120 myop.op_flags = OPf_WANT_VOID | OPf_STACKED;
1048 root 1.102
1049     PUSHMARK (SP);
1050 root 1.120 EXTEND (SP, 2);
1051     PUSHs (sv_2mortal (newSViv (PTR2IV (cctx))));
1052     PUSHs ((SV *)get_cv ("Coro::State::_cctx_init", FALSE));
1053 root 1.99 PUTBACK;
1054 root 1.120 PL_op = (OP *)&myop;
1055     PL_op = PL_ppaddr[OP_ENTERSUB](aTHX);
1056 root 1.99 SPAGAIN;
1057     }
1058    
1059 root 1.148 /*
1060     * this is a _very_ stripped down perl interpreter ;)
1061     */
1062 root 1.99 static void
1063 root 1.201 cctx_run (void *arg)
1064 root 1.13 {
1065 root 1.256 #ifdef USE_ITHREADS
1066     # if CORO_PTHREAD
1067     PERL_SET_CONTEXT (coro_thx);
1068     # endif
1069     #endif
1070     {
1071     dTHX;
1072 root 1.146
1073 root 1.256 /* cctx_run is the alternative tail of transfer(), so unlock here. */
1074     UNLOCK;
1075 root 1.102
1076 root 1.256 /* we now skip the entersub that lead to transfer() */
1077     PL_op = PL_op->op_next;
1078 root 1.107
1079 root 1.256 /* inject a fake subroutine call to cctx_init */
1080     cctx_prepare (aTHX_ (coro_cctx *)arg);
1081 root 1.89
1082 root 1.256 /* somebody or something will hit me for both perl_run and PL_restartop */
1083     PL_restartop = PL_op;
1084     perl_run (PL_curinterp);
1085 root 1.89
1086 root 1.256 /*
1087     * If perl-run returns we assume exit() was being called or the coro
1088     * fell off the end, which seems to be the only valid (non-bug)
1089     * reason for perl_run to return. We try to exit by jumping to the
1090     * bootstrap-time "top" top_env, as we cannot restore the "main"
1091     * coroutine as Coro has no such concept
1092     */
1093     PL_top_env = main_top_env;
1094     JMPENV_JUMP (2); /* I do not feel well about the hardcoded 2 at all */
1095     }
1096 root 1.89 }
1097    
1098 root 1.106 static coro_cctx *
1099     cctx_new ()
1100 root 1.89 {
1101 root 1.106 coro_cctx *cctx;
1102 root 1.145 void *stack_start;
1103     size_t stack_size;
1104 root 1.89
1105 root 1.107 ++cctx_count;
1106 root 1.124 Newz (0, cctx, 1, coro_cctx);
1107 root 1.89
1108 root 1.254 cctx->gen = cctx_gen;
1109    
1110 root 1.89 #if HAVE_MMAP
1111 root 1.254 cctx->ssize = ((cctx_stacksize * sizeof (long) + PAGESIZE - 1) / PAGESIZE + CORO_STACKGUARD) * PAGESIZE;
1112 root 1.120 /* mmap supposedly does allocate-on-write for us */
1113 root 1.106 cctx->sptr = mmap (0, cctx->ssize, PROT_EXEC|PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
1114 root 1.19
1115 root 1.141 if (cctx->sptr != (void *)-1)
1116 root 1.13 {
1117 root 1.143 # if CORO_STACKGUARD
1118     mprotect (cctx->sptr, CORO_STACKGUARD * PAGESIZE, PROT_NONE);
1119 root 1.94 # endif
1120 root 1.145 stack_start = CORO_STACKGUARD * PAGESIZE + (char *)cctx->sptr;
1121     stack_size = cctx->ssize - CORO_STACKGUARD * PAGESIZE;
1122 root 1.165 cctx->flags |= CC_MAPPED;
1123 root 1.141 }
1124     else
1125     #endif
1126 root 1.89 {
1127 root 1.254 cctx->ssize = cctx_stacksize * (long)sizeof (long);
1128     New (0, cctx->sptr, cctx_stacksize, long);
1129 root 1.13
1130 root 1.141 if (!cctx->sptr)
1131     {
1132     perror ("FATAL: unable to allocate stack for coroutine");
1133     _exit (EXIT_FAILURE);
1134     }
1135 root 1.89
1136 root 1.145 stack_start = cctx->sptr;
1137     stack_size = cctx->ssize;
1138     }
1139 root 1.104
1140 root 1.145 REGISTER_STACK (cctx, (char *)stack_start, (char *)stack_start + stack_size);
1141 root 1.201 coro_create (&cctx->cctx, cctx_run, (void *)cctx, stack_start, stack_size);
1142 root 1.13
1143 root 1.106 return cctx;
1144 root 1.13 }
1145    
1146 root 1.15 static void
1147 root 1.115 cctx_destroy (coro_cctx *cctx)
1148 root 1.15 {
1149 root 1.106 if (!cctx)
1150 root 1.89 return;
1151    
1152 root 1.107 --cctx_count;
1153 root 1.253 coro_destroy (&cctx->cctx);
1154 root 1.107
1155 root 1.253 /* coro_transfer creates new, empty cctx's */
1156     if (cctx->sptr)
1157     {
1158 root 1.143 #if CORO_USE_VALGRIND
1159 root 1.253 VALGRIND_STACK_DEREGISTER (cctx->valgrind_id);
1160 root 1.104 #endif
1161    
1162 root 1.89 #if HAVE_MMAP
1163 root 1.253 if (cctx->flags & CC_MAPPED)
1164     munmap (cctx->sptr, cctx->ssize);
1165     else
1166 root 1.89 #endif
1167 root 1.253 Safefree (cctx->sptr);
1168     }
1169 root 1.89
1170 root 1.106 Safefree (cctx);
1171 root 1.89 }
1172 root 1.32
1173 root 1.193 /* wether this cctx should be destructed */
1174 root 1.254 #define CCTX_EXPIRED(cctx) ((cctx)->gen != cctx_gen || ((cctx)->flags & CC_NOREUSE))
1175 root 1.193
1176 root 1.106 static coro_cctx *
1177 root 1.211 cctx_get (pTHX)
1178 root 1.89 {
1179 root 1.211 while (expect_true (cctx_first))
1180 root 1.89 {
1181 root 1.211 coro_cctx *cctx = cctx_first;
1182     cctx_first = cctx->next;
1183     --cctx_idle;
1184 root 1.145
1185 root 1.194 if (expect_true (!CCTX_EXPIRED (cctx)))
1186 root 1.145 return cctx;
1187    
1188     cctx_destroy (cctx);
1189 root 1.89 }
1190 root 1.91
1191 root 1.145 return cctx_new ();
1192 root 1.89 }
1193 root 1.19
1194 root 1.89 static void
1195 root 1.211 cctx_put (coro_cctx *cctx)
1196 root 1.89 {
1197 root 1.253 assert (("cctx_put called on non-initialised cctx", cctx->sptr));
1198    
1199 root 1.115 /* free another cctx if overlimit */
1200 root 1.254 if (expect_false (cctx_idle >= cctx_max_idle))
1201 root 1.115 {
1202 root 1.211 coro_cctx *first = cctx_first;
1203     cctx_first = first->next;
1204     --cctx_idle;
1205 root 1.115
1206     cctx_destroy (first);
1207     }
1208    
1209 root 1.211 ++cctx_idle;
1210     cctx->next = cctx_first;
1211     cctx_first = cctx;
1212 root 1.15 }
1213    
1214 root 1.137 /** coroutine switching *****************************************************/
1215    
1216 root 1.194 static void
1217 root 1.170 transfer_check (pTHX_ struct coro *prev, struct coro *next)
1218     {
1219 root 1.194 if (expect_true (prev != next))
1220 root 1.170 {
1221 root 1.194 if (expect_false (!(prev->flags & (CF_RUNNING | CF_NEW))))
1222 root 1.170 croak ("Coro::State::transfer called with non-running/new prev Coro::State, but can only transfer from running or new states");
1223    
1224 root 1.194 if (expect_false (next->flags & CF_RUNNING))
1225 root 1.170 croak ("Coro::State::transfer called with running next Coro::State, but can only transfer to inactive states");
1226    
1227 root 1.194 if (expect_false (next->flags & CF_DESTROYED))
1228 root 1.170 croak ("Coro::State::transfer called with destroyed next Coro::State, but can only transfer to inactive states");
1229    
1230 root 1.228 #if !PERL_VERSION_ATLEAST (5,10,0)
1231 root 1.230 if (expect_false (PL_lex_state != LEX_NOTPARSING))
1232 root 1.229 croak ("Coro::State::transfer called while parsing, but this is not supported in your perl version");
1233 root 1.198 #endif
1234 root 1.170 }
1235     }
1236    
1237     /* always use the TRANSFER macro */
1238 root 1.100 static void NOINLINE
1239 root 1.227 transfer (pTHX_ struct coro *prev, struct coro *next, int force_cctx)
1240 root 1.8 {
1241 root 1.15 dSTACKLEVEL;
1242 root 1.8
1243 root 1.89 /* sometimes transfer is only called to set idle_sp */
1244 root 1.194 if (expect_false (!next))
1245 root 1.124 {
1246     ((coro_cctx *)prev)->idle_sp = STACKLEVEL;
1247 root 1.132 assert (((coro_cctx *)prev)->idle_te = PL_top_env); /* just for the side-effect when asserts are enabled */
1248 root 1.124 }
1249 root 1.194 else if (expect_true (prev != next))
1250 root 1.8 {
1251 root 1.252 static volatile int has_throw;
1252 root 1.106 coro_cctx *prev__cctx;
1253 root 1.89
1254 root 1.194 if (expect_false (prev->flags & CF_NEW))
1255 root 1.111 {
1256 root 1.253 /* create a new empty/source context */
1257     ++cctx_count;
1258     New (0, prev->cctx, 1, coro_cctx);
1259     prev->cctx->sptr = 0;
1260     coro_create (&prev->cctx->cctx, 0, 0, 0, 0);
1261    
1262 root 1.117 prev->flags &= ~CF_NEW;
1263     prev->flags |= CF_RUNNING;
1264 root 1.111 }
1265    
1266     prev->flags &= ~CF_RUNNING;
1267     next->flags |= CF_RUNNING;
1268    
1269 root 1.92 LOCK;
1270 root 1.13
1271 root 1.214 /* first get rid of the old state */
1272     save_perl (aTHX_ prev);
1273    
1274 root 1.194 if (expect_false (next->flags & CF_NEW))
1275 root 1.90 {
1276     /* need to start coroutine */
1277 root 1.117 next->flags &= ~CF_NEW;
1278 root 1.89 /* setup coroutine call */
1279 root 1.179 coro_setup (aTHX_ next);
1280 root 1.8 }
1281 root 1.118 else
1282 root 1.214 load_perl (aTHX_ next);
1283 root 1.15
1284 root 1.106 prev__cctx = prev->cctx;
1285 root 1.92
1286 root 1.106 /* possibly "free" the cctx */
1287 root 1.227 if (expect_true (
1288     prev__cctx->idle_sp == STACKLEVEL
1289     && !(prev__cctx->flags & CC_TRACE)
1290     && !force_cctx
1291     ))
1292 root 1.92 {
1293 root 1.114 /* I assume that STACKLEVEL is a stronger indicator than PL_top_env changes */
1294 root 1.132 assert (("ERROR: current top_env must equal previous top_env", PL_top_env == prev__cctx->idle_te));
1295 root 1.112
1296 root 1.117 prev->cctx = 0;
1297    
1298 root 1.193 /* if the cctx is about to be destroyed we need to make sure we won't see it in cctx_get */
1299 root 1.194 /* without this the next cctx_get might destroy the prev__cctx while still in use */
1300     if (expect_false (CCTX_EXPIRED (prev__cctx)))
1301 root 1.201 if (!next->cctx)
1302 root 1.211 next->cctx = cctx_get (aTHX);
1303 root 1.193
1304 root 1.211 cctx_put (prev__cctx);
1305 root 1.92 }
1306    
1307 root 1.172 ++next->usecount;
1308    
1309 root 1.194 if (expect_true (!next->cctx))
1310 root 1.211 next->cctx = cctx_get (aTHX);
1311 root 1.111
1312 root 1.216 has_throw = !!next->throw;
1313    
1314 root 1.194 if (expect_false (prev__cctx != next->cctx))
1315 root 1.117 {
1316 root 1.106 prev__cctx->top_env = PL_top_env;
1317     PL_top_env = next->cctx->top_env;
1318     coro_transfer (&prev__cctx->cctx, &next->cctx->cctx);
1319 root 1.92 }
1320    
1321 root 1.146 free_coro_mortal (aTHX);
1322 root 1.92 UNLOCK;
1323 root 1.196
1324 root 1.216 if (expect_false (has_throw))
1325 root 1.196 {
1326     struct coro *coro = SvSTATE (coro_current);
1327    
1328     if (coro->throw)
1329     {
1330     SV *exception = coro->throw;
1331     coro->throw = 0;
1332     sv_setsv (ERRSV, exception);
1333     croak (0);
1334     }
1335     }
1336 root 1.8 }
1337 root 1.39 }
1338 root 1.23
1339 root 1.92 struct transfer_args
1340     {
1341     struct coro *prev, *next;
1342     };
1343    
1344 root 1.227 #define TRANSFER(ta, force_cctx) transfer (aTHX_ (ta).prev, (ta).next, (force_cctx))
1345 root 1.170 #define TRANSFER_CHECK(ta) transfer_check (aTHX_ (ta).prev, (ta).next)
1346 root 1.92
1347 root 1.137 /** high level stuff ********************************************************/
1348    
1349 root 1.133 static int
1350 root 1.146 coro_state_destroy (pTHX_ struct coro *coro)
1351 root 1.87 {
1352 root 1.133 if (coro->flags & CF_DESTROYED)
1353     return 0;
1354    
1355     coro->flags |= CF_DESTROYED;
1356 root 1.137
1357     if (coro->flags & CF_READY)
1358     {
1359     /* reduce nready, as destroying a ready coro effectively unreadies it */
1360 root 1.139 /* alternative: look through all ready queues and remove the coro */
1361 root 1.137 LOCK;
1362     --coro_nready;
1363     UNLOCK;
1364     }
1365     else
1366     coro->flags |= CF_READY; /* make sure it is NOT put into the readyqueue */
1367 root 1.87
1368     if (coro->mainstack && coro->mainstack != main_mainstack)
1369     {
1370 root 1.140 struct coro temp;
1371    
1372 root 1.177 if (coro->flags & CF_RUNNING)
1373     croak ("FATAL: tried to destroy currently running coroutine");
1374 root 1.133
1375 root 1.146 save_perl (aTHX_ &temp);
1376     load_perl (aTHX_ coro);
1377 root 1.87
1378 root 1.253 coro_destruct (aTHX_ coro);
1379 root 1.87
1380 root 1.198 load_perl (aTHX_ &temp);
1381 root 1.87
1382 root 1.198 coro->slot = 0;
1383 root 1.87 }
1384    
1385 root 1.115 cctx_destroy (coro->cctx);
1386 root 1.87 SvREFCNT_dec (coro->args);
1387 root 1.133
1388 root 1.151 if (coro->next) coro->next->prev = coro->prev;
1389     if (coro->prev) coro->prev->next = coro->next;
1390 root 1.153 if (coro == coro_first) coro_first = coro->next;
1391 root 1.151
1392 root 1.133 return 1;
1393 root 1.87 }
1394    
1395     static int
1396 root 1.134 coro_state_free (pTHX_ SV *sv, MAGIC *mg)
1397 root 1.87 {
1398     struct coro *coro = (struct coro *)mg->mg_ptr;
1399     mg->mg_ptr = 0;
1400    
1401 root 1.151 coro->hv = 0;
1402    
1403 root 1.134 if (--coro->refcnt < 0)
1404     {
1405 root 1.146 coro_state_destroy (aTHX_ coro);
1406 root 1.134 Safefree (coro);
1407     }
1408 root 1.133
1409 root 1.87 return 0;
1410     }
1411    
1412     static int
1413 root 1.98 coro_state_dup (pTHX_ MAGIC *mg, CLONE_PARAMS *params)
1414 root 1.87 {
1415     struct coro *coro = (struct coro *)mg->mg_ptr;
1416    
1417     ++coro->refcnt;
1418    
1419     return 0;
1420     }
1421    
1422 root 1.100 static MGVTBL coro_state_vtbl = {
1423     0, 0, 0, 0,
1424 root 1.134 coro_state_free,
1425 root 1.100 0,
1426     #ifdef MGf_DUP
1427     coro_state_dup,
1428 root 1.102 #else
1429     # define MGf_DUP 0
1430 root 1.100 #endif
1431     };
1432 root 1.87
1433 root 1.23 static void
1434 root 1.146 prepare_transfer (pTHX_ struct transfer_args *ta, SV *prev_sv, SV *next_sv)
1435 root 1.23 {
1436 root 1.122 ta->prev = SvSTATE (prev_sv);
1437     ta->next = SvSTATE (next_sv);
1438 root 1.170 TRANSFER_CHECK (*ta);
1439 root 1.92 }
1440    
1441     static void
1442 root 1.122 api_transfer (SV *prev_sv, SV *next_sv)
1443 root 1.92 {
1444 root 1.146 dTHX;
1445 root 1.92 struct transfer_args ta;
1446    
1447 root 1.146 prepare_transfer (aTHX_ &ta, prev_sv, next_sv);
1448 root 1.227 TRANSFER (ta, 1);
1449 root 1.21 }
1450    
1451 root 1.22 /** Coro ********************************************************************/
1452    
1453     static void
1454 root 1.146 coro_enq (pTHX_ SV *coro_sv)
1455 root 1.22 {
1456 root 1.112 av_push (coro_ready [SvSTATE (coro_sv)->prio - PRIO_MIN], coro_sv);
1457 root 1.22 }
1458    
1459     static SV *
1460 root 1.218 coro_deq (pTHX)
1461 root 1.22 {
1462 root 1.218 int prio;
1463 root 1.22
1464 root 1.218 for (prio = PRIO_MAX - PRIO_MIN + 1; --prio >= 0; )
1465 root 1.83 if (AvFILLp (coro_ready [prio]) >= 0)
1466 root 1.137 return av_shift (coro_ready [prio]);
1467 root 1.22
1468     return 0;
1469     }
1470    
1471 root 1.111 static int
1472     api_ready (SV *coro_sv)
1473 root 1.23 {
1474 root 1.146 dTHX;
1475 root 1.111 struct coro *coro;
1476 root 1.237 SV *sv_hook;
1477     void (*xs_hook)(void);
1478 root 1.111
1479     if (SvROK (coro_sv))
1480     coro_sv = SvRV (coro_sv);
1481    
1482     coro = SvSTATE (coro_sv);
1483 root 1.112
1484 root 1.111 if (coro->flags & CF_READY)
1485     return 0;
1486 pcg 1.56
1487 root 1.111 coro->flags |= CF_READY;
1488 root 1.39
1489 pcg 1.55 LOCK;
1490 root 1.233
1491 root 1.237 sv_hook = coro_nready ? 0 : coro_readyhook;
1492     xs_hook = coro_nready ? 0 : coroapi.readyhook;
1493 root 1.233
1494 root 1.249 coro_enq (aTHX_ SvREFCNT_inc_NN (coro_sv));
1495 root 1.137 ++coro_nready;
1496 root 1.233
1497 pcg 1.55 UNLOCK;
1498 root 1.233
1499 root 1.237 if (sv_hook)
1500 root 1.233 {
1501     dSP;
1502    
1503     ENTER;
1504     SAVETMPS;
1505    
1506     PUSHMARK (SP);
1507     PUTBACK;
1508 root 1.237 call_sv (sv_hook, G_DISCARD);
1509 root 1.233 SPAGAIN;
1510    
1511     FREETMPS;
1512     LEAVE;
1513     }
1514 root 1.111
1515 root 1.237 if (xs_hook)
1516     xs_hook ();
1517    
1518 root 1.111 return 1;
1519     }
1520    
1521     static int
1522     api_is_ready (SV *coro_sv)
1523     {
1524 root 1.146 dTHX;
1525 root 1.130 return !!(SvSTATE (coro_sv)->flags & CF_READY);
1526 root 1.23 }
1527    
1528     static void
1529 root 1.146 prepare_schedule (pTHX_ struct transfer_args *ta)
1530 root 1.23 {
1531 root 1.133 SV *prev_sv, *next_sv;
1532 root 1.88
1533     for (;;)
1534     {
1535     LOCK;
1536 root 1.218 next_sv = coro_deq (aTHX);
1537 root 1.88
1538 root 1.133 /* nothing to schedule: call the idle handler */
1539 root 1.194 if (expect_false (!next_sv))
1540 root 1.133 {
1541 root 1.140 dSP;
1542 root 1.138 UNLOCK;
1543 root 1.133
1544     ENTER;
1545     SAVETMPS;
1546 root 1.23
1547 root 1.133 PUSHMARK (SP);
1548     PUTBACK;
1549     call_sv (get_sv ("Coro::idle", FALSE), G_DISCARD);
1550 root 1.219 SPAGAIN;
1551 root 1.133
1552     FREETMPS;
1553     LEAVE;
1554     continue;
1555     }
1556 root 1.88
1557 root 1.133 ta->next = SvSTATE (next_sv);
1558 pcg 1.55
1559 root 1.133 /* cannot transfer to destroyed coros, skip and look for next */
1560 root 1.194 if (expect_false (ta->next->flags & CF_DESTROYED))
1561 root 1.133 {
1562 root 1.138 UNLOCK;
1563 root 1.133 SvREFCNT_dec (next_sv);
1564 root 1.137 /* coro_nready is already taken care of by destroy */
1565 root 1.133 continue;
1566     }
1567 root 1.23
1568 root 1.137 --coro_nready;
1569     UNLOCK;
1570 root 1.133 break;
1571 root 1.88 }
1572    
1573 root 1.133 /* free this only after the transfer */
1574     prev_sv = SvRV (coro_current);
1575     ta->prev = SvSTATE (prev_sv);
1576 root 1.170 TRANSFER_CHECK (*ta);
1577 root 1.133 assert (ta->next->flags & CF_READY);
1578     ta->next->flags &= ~CF_READY;
1579 root 1.170 SvRV_set (coro_current, next_sv);
1580 root 1.23
1581 root 1.99 LOCK;
1582 root 1.146 free_coro_mortal (aTHX);
1583 root 1.133 coro_mortal = prev_sv;
1584 root 1.99 UNLOCK;
1585 root 1.92 }
1586    
1587     static void
1588 root 1.146 prepare_cede (pTHX_ struct transfer_args *ta)
1589 root 1.92 {
1590 root 1.117 api_ready (coro_current);
1591 root 1.146 prepare_schedule (aTHX_ ta);
1592 root 1.131 }
1593 pcg 1.55
1594 root 1.131 static int
1595 root 1.146 prepare_cede_notself (pTHX_ struct transfer_args *ta)
1596 root 1.131 {
1597     if (coro_nready)
1598     {
1599     SV *prev = SvRV (coro_current);
1600 root 1.146 prepare_schedule (aTHX_ ta);
1601 root 1.131 api_ready (prev);
1602     return 1;
1603     }
1604     else
1605     return 0;
1606 root 1.39 }
1607    
1608 root 1.92 static void
1609     api_schedule (void)
1610     {
1611 root 1.146 dTHX;
1612 root 1.92 struct transfer_args ta;
1613    
1614 root 1.146 prepare_schedule (aTHX_ &ta);
1615 root 1.227 TRANSFER (ta, 1);
1616 root 1.92 }
1617 root 1.89
1618 root 1.131 static int
1619 root 1.39 api_cede (void)
1620     {
1621 root 1.146 dTHX;
1622 root 1.92 struct transfer_args ta;
1623 root 1.89
1624 root 1.146 prepare_cede (aTHX_ &ta);
1625 root 1.131
1626 root 1.194 if (expect_true (ta.prev != ta.next))
1627 root 1.131 {
1628 root 1.227 TRANSFER (ta, 1);
1629 root 1.131 return 1;
1630     }
1631     else
1632     return 0;
1633     }
1634    
1635     static int
1636     api_cede_notself (void)
1637     {
1638 root 1.146 dTHX;
1639 root 1.131 struct transfer_args ta;
1640    
1641 root 1.146 if (prepare_cede_notself (aTHX_ &ta))
1642 root 1.131 {
1643 root 1.227 TRANSFER (ta, 1);
1644 root 1.131 return 1;
1645     }
1646     else
1647     return 0;
1648 root 1.23 }
1649    
1650 root 1.173 static void
1651 root 1.174 api_trace (SV *coro_sv, int flags)
1652 root 1.173 {
1653     dTHX;
1654 root 1.174 struct coro *coro = SvSTATE (coro_sv);
1655 root 1.173
1656     if (flags & CC_TRACE)
1657     {
1658     if (!coro->cctx)
1659     coro->cctx = cctx_new ();
1660     else if (!(coro->cctx->flags & CC_TRACE))
1661     croak ("cannot enable tracing on coroutine with custom stack");
1662    
1663     coro->cctx->flags |= CC_NOREUSE | (flags & (CC_TRACE | CC_TRACE_ALL));
1664     }
1665     else if (coro->cctx && coro->cctx->flags & CC_TRACE)
1666     {
1667     coro->cctx->flags &= ~(CC_TRACE | CC_TRACE_ALL);
1668    
1669     if (coro->flags & CF_RUNNING)
1670     PL_runops = RUNOPS_DEFAULT;
1671     else
1672 root 1.198 coro->slot->runops = RUNOPS_DEFAULT;
1673 root 1.173 }
1674     }
1675    
1676 root 1.255 #if 0
1677 root 1.243 static int
1678     coro_gensub_free (pTHX_ SV *sv, MAGIC *mg)
1679     {
1680     AV *padlist;
1681     AV *av = (AV *)mg->mg_obj;
1682    
1683     abort ();
1684    
1685     return 0;
1686     }
1687    
1688     static MGVTBL coro_gensub_vtbl = {
1689     0, 0, 0, 0,
1690     coro_gensub_free
1691     };
1692 root 1.255 #endif
1693 root 1.243
1694 root 1.246 /*****************************************************************************/
1695     /* PerlIO::cede */
1696    
1697     typedef struct
1698     {
1699     PerlIOBuf base;
1700     NV next, every;
1701     } PerlIOCede;
1702    
1703     static IV
1704     PerlIOCede_pushed (pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
1705     {
1706     PerlIOCede *self = PerlIOSelf (f, PerlIOCede);
1707    
1708 root 1.247 self->every = SvCUR (arg) ? SvNV (arg) : 0.01;
1709 root 1.246 self->next = nvtime () + self->every;
1710    
1711     return PerlIOBuf_pushed (aTHX_ f, mode, Nullsv, tab);
1712     }
1713    
1714     static SV *
1715     PerlIOCede_getarg (pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags)
1716     {
1717     PerlIOCede *self = PerlIOSelf (f, PerlIOCede);
1718    
1719     return newSVnv (self->every);
1720     }
1721    
1722     static IV
1723     PerlIOCede_flush (pTHX_ PerlIO *f)
1724     {
1725     PerlIOCede *self = PerlIOSelf (f, PerlIOCede);
1726     double now = nvtime ();
1727    
1728     if (now >= self->next)
1729     {
1730     api_cede ();
1731     self->next = now + self->every;
1732     }
1733    
1734 root 1.248 return PerlIOBuf_flush (aTHX_ f);
1735 root 1.246 }
1736    
1737     static PerlIO_funcs PerlIO_cede =
1738     {
1739     sizeof(PerlIO_funcs),
1740     "cede",
1741     sizeof(PerlIOCede),
1742     PERLIO_K_DESTRUCT | PERLIO_K_RAW,
1743     PerlIOCede_pushed,
1744     PerlIOBuf_popped,
1745     PerlIOBuf_open,
1746     PerlIOBase_binmode,
1747     PerlIOCede_getarg,
1748     PerlIOBase_fileno,
1749     PerlIOBuf_dup,
1750     PerlIOBuf_read,
1751     PerlIOBuf_unread,
1752     PerlIOBuf_write,
1753     PerlIOBuf_seek,
1754     PerlIOBuf_tell,
1755     PerlIOBuf_close,
1756     PerlIOCede_flush,
1757     PerlIOBuf_fill,
1758     PerlIOBase_eof,
1759     PerlIOBase_error,
1760     PerlIOBase_clearerr,
1761     PerlIOBase_setlinebuf,
1762     PerlIOBuf_get_base,
1763     PerlIOBuf_bufsiz,
1764     PerlIOBuf_get_ptr,
1765     PerlIOBuf_get_cnt,
1766     PerlIOBuf_set_ptrcnt,
1767     };
1768    
1769    
1770 root 1.173 MODULE = Coro::State PACKAGE = Coro::State PREFIX = api_
1771 root 1.1
1772 root 1.87 PROTOTYPES: DISABLE
1773 root 1.1
1774 root 1.3 BOOT:
1775 root 1.88 {
1776 pcg 1.55 #ifdef USE_ITHREADS
1777 root 1.253 MUTEX_INIT (&coro_lock);
1778 root 1.256 # if CORO_PTHREAD
1779     coro_thx = PERL_GET_CONTEXT;
1780     # endif
1781 pcg 1.55 #endif
1782 root 1.78 BOOT_PAGESIZE;
1783 pcg 1.55
1784 root 1.190 irsgv = gv_fetchpv ("/" , GV_ADD|GV_NOTQUAL, SVt_PV);
1785     stdoutgv = gv_fetchpv ("STDOUT", GV_ADD|GV_NOTQUAL, SVt_PVIO);
1786 root 1.220
1787 root 1.239 orig_sigelem_get = PL_vtbl_sigelem.svt_get; PL_vtbl_sigelem.svt_get = coro_sigelem_get;
1788     orig_sigelem_set = PL_vtbl_sigelem.svt_set; PL_vtbl_sigelem.svt_set = coro_sigelem_set;
1789     orig_sigelem_clr = PL_vtbl_sigelem.svt_clear; PL_vtbl_sigelem.svt_clear = coro_sigelem_clr;
1790 root 1.220
1791 root 1.213 hv_sig = coro_get_hv (aTHX_ "SIG", TRUE);
1792 root 1.220 rv_diehook = newRV_inc ((SV *)gv_fetchpv ("Coro::State::diehook" , 0, SVt_PVCV));
1793     rv_warnhook = newRV_inc ((SV *)gv_fetchpv ("Coro::State::warnhook", 0, SVt_PVCV));
1794 root 1.199
1795 root 1.14 coro_state_stash = gv_stashpv ("Coro::State", TRUE);
1796 root 1.7
1797 root 1.167 newCONSTSUB (coro_state_stash, "CC_TRACE" , newSViv (CC_TRACE));
1798     newCONSTSUB (coro_state_stash, "CC_TRACE_SUB" , newSViv (CC_TRACE_SUB));
1799     newCONSTSUB (coro_state_stash, "CC_TRACE_LINE", newSViv (CC_TRACE_LINE));
1800     newCONSTSUB (coro_state_stash, "CC_TRACE_ALL" , newSViv (CC_TRACE_ALL));
1801    
1802 root 1.12 main_mainstack = PL_mainstack;
1803 root 1.148 main_top_env = PL_top_env;
1804    
1805     while (main_top_env->je_prev)
1806     main_top_env = main_top_env->je_prev;
1807 root 1.23
1808 root 1.237 coroapi.ver = CORO_API_VERSION;
1809     coroapi.rev = CORO_API_REVISION;
1810     coroapi.transfer = api_transfer;
1811 root 1.87
1812 root 1.246 {
1813     SV **svp = hv_fetch (PL_modglobal, "Time::NVtime", 12, 0);
1814    
1815     if (!svp) croak ("Time::HiRes is required");
1816     if (!SvIOK (*svp)) croak ("Time::NVtime isn't a function pointer");
1817    
1818     nvtime = INT2PTR (double (*)(), SvIV (*svp));
1819     }
1820    
1821 root 1.87 assert (("PRIO_NORMAL must be 0", !PRIO_NORMAL));
1822 root 1.9 }
1823 root 1.3
1824 root 1.87 SV *
1825 root 1.86 new (char *klass, ...)
1826 root 1.1 CODE:
1827 root 1.86 {
1828 root 1.87 struct coro *coro;
1829 root 1.214 MAGIC *mg;
1830 root 1.87 HV *hv;
1831 root 1.86 int i;
1832    
1833 pcg 1.47 Newz (0, coro, 1, struct coro);
1834 root 1.178 coro->args = newAV ();
1835 root 1.117 coro->flags = CF_NEW;
1836 root 1.86
1837 root 1.153 if (coro_first) coro_first->prev = coro;
1838     coro->next = coro_first;
1839     coro_first = coro;
1840 root 1.151
1841     coro->hv = hv = newHV ();
1842 root 1.214 mg = sv_magicext ((SV *)hv, 0, CORO_MAGIC_type_state, &coro_state_vtbl, (char *)coro, 0);
1843     mg->mg_flags |= MGf_DUP;
1844 root 1.89 RETVAL = sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
1845    
1846 root 1.192 av_extend (coro->args, items - 1);
1847 root 1.86 for (i = 1; i < items; i++)
1848     av_push (coro->args, newSVsv (ST (i)));
1849     }
1850 root 1.1 OUTPUT:
1851     RETVAL
1852    
1853 root 1.176 # these not obviously related functions are all rolled into the same xs
1854     # function to increase chances that they all will call transfer with the same
1855     # stack offset
1856 root 1.1 void
1857 root 1.94 _set_stacklevel (...)
1858 root 1.92 ALIAS:
1859 root 1.210 Coro::State::transfer = 1
1860     Coro::schedule = 2
1861     Coro::cede = 3
1862     Coro::cede_notself = 4
1863     CODE:
1864 root 1.87 {
1865 root 1.92 struct transfer_args ta;
1866 root 1.1
1867 root 1.219 PUTBACK;
1868 root 1.210 switch (ix)
1869 root 1.1 {
1870 root 1.210 case 0:
1871     ta.prev = (struct coro *)INT2PTR (coro_cctx *, SvIV (ST (0)));
1872     ta.next = 0;
1873     break;
1874    
1875     case 1:
1876     if (items != 2)
1877 root 1.252 croak ("Coro::State::transfer (prev, next) expects two arguments, not %d", items);
1878 root 1.210
1879     prepare_transfer (aTHX_ &ta, ST (0), ST (1));
1880     break;
1881    
1882     case 2:
1883     prepare_schedule (aTHX_ &ta);
1884     break;
1885    
1886     case 3:
1887     prepare_cede (aTHX_ &ta);
1888     break;
1889    
1890     case 4:
1891     if (!prepare_cede_notself (aTHX_ &ta))
1892     XSRETURN_EMPTY;
1893 root 1.131
1894 root 1.210 break;
1895 root 1.92 }
1896 root 1.219 SPAGAIN;
1897 root 1.135
1898 root 1.210 BARRIER;
1899     PUTBACK;
1900 root 1.227 TRANSFER (ta, 0);
1901 root 1.210 SPAGAIN; /* might be the sp of a different coroutine now */
1902     /* be extra careful not to ever do anything after TRANSFER */
1903 root 1.209 }
1904 root 1.1
1905 root 1.133 bool
1906     _destroy (SV *coro_sv)
1907 root 1.87 CODE:
1908 root 1.146 RETVAL = coro_state_destroy (aTHX_ SvSTATE (coro_sv));
1909 root 1.133 OUTPUT:
1910     RETVAL
1911 root 1.12
1912 root 1.7 void
1913 root 1.233 _exit (int code)
1914 root 1.20 PROTOTYPE: $
1915     CODE:
1916     _exit (code);
1917 root 1.1
1918 root 1.106 int
1919 root 1.145 cctx_stacksize (int new_stacksize = 0)
1920     CODE:
1921 root 1.254 RETVAL = cctx_stacksize;
1922 root 1.145 if (new_stacksize)
1923 root 1.254 {
1924     cctx_stacksize = new_stacksize;
1925     ++cctx_gen;
1926     }
1927     OUTPUT:
1928     RETVAL
1929    
1930     int
1931     cctx_max_idle (int max_idle = 0)
1932     CODE:
1933     RETVAL = cctx_max_idle;
1934     if (max_idle > 1)
1935     cctx_max_idle = max_idle;
1936 root 1.145 OUTPUT:
1937     RETVAL
1938    
1939     int
1940 root 1.106 cctx_count ()
1941     CODE:
1942     RETVAL = cctx_count;
1943     OUTPUT:
1944     RETVAL
1945    
1946     int
1947     cctx_idle ()
1948     CODE:
1949 root 1.211 RETVAL = cctx_idle;
1950 root 1.106 OUTPUT:
1951     RETVAL
1952    
1953 root 1.151 void
1954     list ()
1955     PPCODE:
1956     {
1957     struct coro *coro;
1958 root 1.153 for (coro = coro_first; coro; coro = coro->next)
1959 root 1.151 if (coro->hv)
1960     XPUSHs (sv_2mortal (newRV_inc ((SV *)coro->hv)));
1961     }
1962    
1963     void
1964 root 1.164 call (Coro::State coro, SV *coderef)
1965     ALIAS:
1966     eval = 1
1967 root 1.151 CODE:
1968     {
1969 root 1.245 if (coro->mainstack && ((coro->flags & CF_RUNNING) || coro->slot))
1970 root 1.151 {
1971     struct coro temp;
1972    
1973     if (!(coro->flags & CF_RUNNING))
1974     {
1975 root 1.219 PUTBACK;
1976 root 1.151 save_perl (aTHX_ &temp);
1977     load_perl (aTHX_ coro);
1978     }
1979    
1980     {
1981     dSP;
1982     ENTER;
1983     SAVETMPS;
1984 root 1.208 PUTBACK;
1985     PUSHSTACK;
1986 root 1.151 PUSHMARK (SP);
1987 root 1.198
1988 root 1.164 if (ix)
1989     eval_sv (coderef, 0);
1990     else
1991     call_sv (coderef, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
1992 root 1.198
1993 root 1.208 POPSTACK;
1994 root 1.211 SPAGAIN;
1995 root 1.151 FREETMPS;
1996     LEAVE;
1997 root 1.210 PUTBACK;
1998 root 1.151 }
1999    
2000     if (!(coro->flags & CF_RUNNING))
2001     {
2002     save_perl (aTHX_ coro);
2003     load_perl (aTHX_ &temp);
2004 root 1.219 SPAGAIN;
2005 root 1.151 }
2006     }
2007     }
2008 root 1.172
2009 root 1.151 SV *
2010 root 1.152 is_ready (Coro::State coro)
2011 root 1.151 PROTOTYPE: $
2012     ALIAS:
2013     is_ready = CF_READY
2014     is_running = CF_RUNNING
2015     is_new = CF_NEW
2016     is_destroyed = CF_DESTROYED
2017     CODE:
2018     RETVAL = boolSV (coro->flags & ix);
2019     OUTPUT:
2020     RETVAL
2021    
2022 root 1.165 void
2023 root 1.174 api_trace (SV *coro, int flags = CC_TRACE | CC_TRACE_SUB)
2024 root 1.165
2025 root 1.162 SV *
2026 root 1.234 has_cctx (Coro::State coro)
2027 root 1.162 PROTOTYPE: $
2028     CODE:
2029     RETVAL = boolSV (!!coro->cctx);
2030     OUTPUT:
2031     RETVAL
2032    
2033 root 1.167 int
2034     is_traced (Coro::State coro)
2035     PROTOTYPE: $
2036     CODE:
2037     RETVAL = (coro->cctx ? coro->cctx->flags : 0) & CC_TRACE_ALL;
2038     OUTPUT:
2039     RETVAL
2040    
2041 root 1.255 UV
2042 root 1.152 rss (Coro::State coro)
2043     PROTOTYPE: $
2044 root 1.172 ALIAS:
2045     usecount = 1
2046 root 1.152 CODE:
2047 root 1.172 switch (ix)
2048     {
2049     case 0: RETVAL = coro_rss (aTHX_ coro); break;
2050     case 1: RETVAL = coro->usecount; break;
2051     }
2052 root 1.152 OUTPUT:
2053     RETVAL
2054    
2055 root 1.226 void
2056     force_cctx ()
2057     CODE:
2058     struct coro *coro = SvSTATE (coro_current);
2059     coro->cctx->idle_sp = 0;
2060 root 1.151
2061 root 1.242 void
2062     swap_defsv (Coro::State self)
2063     PROTOTYPE: $
2064     ALIAS:
2065     swap_defav = 1
2066     CODE:
2067     if (!self->slot)
2068     croak ("cannot swap state with coroutine that has no saved state");
2069     else
2070     {
2071     SV **src = ix ? (SV **)&GvAV (PL_defgv) : &GvSV (PL_defgv);
2072     SV **dst = ix ? (SV **)&self->slot->defav : (SV **)&self->slot->defsv;
2073    
2074     SV *tmp = *src; *src = *dst; *dst = tmp;
2075     }
2076    
2077 root 1.21 MODULE = Coro::State PACKAGE = Coro
2078    
2079     BOOT:
2080     {
2081 root 1.22 int i;
2082    
2083 root 1.233 av_async_pool = coro_get_av (aTHX_ "Coro::async_pool", TRUE);
2084 root 1.213 sv_pool_rss = coro_get_sv (aTHX_ "Coro::POOL_RSS" , TRUE);
2085     sv_pool_size = coro_get_sv (aTHX_ "Coro::POOL_SIZE" , TRUE);
2086 root 1.159
2087 root 1.213 coro_current = coro_get_sv (aTHX_ "Coro::current", FALSE);
2088 root 1.159 SvREADONLY_on (coro_current);
2089    
2090 root 1.198 coro_stash = gv_stashpv ("Coro", TRUE);
2091 root 1.88
2092     newCONSTSUB (coro_stash, "PRIO_MAX", newSViv (PRIO_MAX));
2093     newCONSTSUB (coro_stash, "PRIO_HIGH", newSViv (PRIO_HIGH));
2094     newCONSTSUB (coro_stash, "PRIO_NORMAL", newSViv (PRIO_NORMAL));
2095     newCONSTSUB (coro_stash, "PRIO_LOW", newSViv (PRIO_LOW));
2096     newCONSTSUB (coro_stash, "PRIO_IDLE", newSViv (PRIO_IDLE));
2097     newCONSTSUB (coro_stash, "PRIO_MIN", newSViv (PRIO_MIN));
2098 root 1.22
2099     for (i = PRIO_MAX - PRIO_MIN + 1; i--; )
2100     coro_ready[i] = newAV ();
2101 root 1.26
2102     {
2103 root 1.198 SV *sv = perl_get_sv ("Coro::API", TRUE);
2104     perl_get_sv ("Coro::API", TRUE); /* silence 5.10 warning */
2105 root 1.26
2106 root 1.131 coroapi.schedule = api_schedule;
2107     coroapi.cede = api_cede;
2108     coroapi.cede_notself = api_cede_notself;
2109     coroapi.ready = api_ready;
2110     coroapi.is_ready = api_is_ready;
2111     coroapi.nready = &coro_nready;
2112     coroapi.current = coro_current;
2113 root 1.26
2114     GCoroAPI = &coroapi;
2115 root 1.81 sv_setiv (sv, (IV)&coroapi);
2116     SvREADONLY_on (sv);
2117 root 1.26 }
2118 root 1.21 }
2119    
2120 root 1.122 void
2121     _set_current (SV *current)
2122     PROTOTYPE: $
2123     CODE:
2124     SvREFCNT_dec (SvRV (coro_current));
2125 root 1.249 SvRV_set (coro_current, SvREFCNT_inc_NN (SvRV (current)));
2126 root 1.122
2127 root 1.233 void
2128     _set_readyhook (SV *hook)
2129     PROTOTYPE: $
2130     CODE:
2131     LOCK;
2132 root 1.236 SvREFCNT_dec (coro_readyhook);
2133 root 1.233 coro_readyhook = SvOK (hook) ? newSVsv (hook) : 0;
2134     UNLOCK;
2135    
2136 root 1.92 int
2137     prio (Coro::State coro, int newprio = 0)
2138     ALIAS:
2139     nice = 1
2140     CODE:
2141     {
2142     RETVAL = coro->prio;
2143    
2144     if (items > 1)
2145     {
2146     if (ix)
2147 root 1.129 newprio = coro->prio - newprio;
2148 root 1.92
2149     if (newprio < PRIO_MIN) newprio = PRIO_MIN;
2150     if (newprio > PRIO_MAX) newprio = PRIO_MAX;
2151    
2152     coro->prio = newprio;
2153     }
2154     }
2155 root 1.130 OUTPUT:
2156     RETVAL
2157 root 1.92
2158 root 1.111 SV *
2159 root 1.89 ready (SV *self)
2160 root 1.35 PROTOTYPE: $
2161 root 1.21 CODE:
2162 root 1.111 RETVAL = boolSV (api_ready (self));
2163     OUTPUT:
2164     RETVAL
2165    
2166 root 1.25 int
2167 root 1.87 nready (...)
2168 root 1.25 PROTOTYPE:
2169     CODE:
2170     RETVAL = coro_nready;
2171     OUTPUT:
2172     RETVAL
2173    
2174 root 1.252 void
2175     throw (Coro::State self, SV *throw = &PL_sv_undef)
2176     PROTOTYPE: $;$
2177     CODE:
2178     SvREFCNT_dec (self->throw);
2179     self->throw = SvOK (throw) ? newSVsv (throw) : 0;
2180    
2181 root 1.159 # for async_pool speedup
2182 root 1.161 void
2183     _pool_1 (SV *cb)
2184 root 1.159 CODE:
2185     {
2186 root 1.181 struct coro *coro = SvSTATE (coro_current);
2187 root 1.159 HV *hv = (HV *)SvRV (coro_current);
2188     AV *defav = GvAV (PL_defgv);
2189 root 1.212 SV *invoke = hv_delete (hv, "_invoke", sizeof ("_invoke") - 1, 0);
2190 root 1.159 AV *invoke_av;
2191 root 1.181 int i, len;
2192    
2193 root 1.159 if (!invoke)
2194 root 1.221 {
2195 root 1.240 SV *old = PL_diehook;
2196     PL_diehook = 0;
2197     SvREFCNT_dec (old);
2198 root 1.221 croak ("\3async_pool terminate\2\n");
2199     }
2200 root 1.159
2201 root 1.184 SvREFCNT_dec (coro->saved_deffh);
2202 root 1.249 coro->saved_deffh = SvREFCNT_inc_NN ((SV *)PL_defoutgv);
2203 root 1.182
2204 root 1.159 hv_store (hv, "desc", sizeof ("desc") - 1,
2205 root 1.212 newSVpvn ("[async_pool]", sizeof ("[async_pool]") - 1), 0);
2206 root 1.159
2207     invoke_av = (AV *)SvRV (invoke);
2208     len = av_len (invoke_av);
2209    
2210 root 1.161 sv_setsv (cb, AvARRAY (invoke_av)[0]);
2211 root 1.159
2212     if (len > 0)
2213     {
2214 root 1.161 av_fill (defav, len - 1);
2215 root 1.159 for (i = 0; i < len; ++i)
2216 root 1.249 av_store (defav, i, SvREFCNT_inc_NN (AvARRAY (invoke_av)[i + 1]));
2217 root 1.159 }
2218    
2219     SvREFCNT_dec (invoke);
2220     }
2221    
2222     void
2223 root 1.161 _pool_2 (SV *cb)
2224 root 1.159 CODE:
2225     {
2226     struct coro *coro = SvSTATE (coro_current);
2227    
2228 root 1.161 sv_setsv (cb, &PL_sv_undef);
2229    
2230 root 1.184 SvREFCNT_dec ((SV *)PL_defoutgv); PL_defoutgv = (GV *)coro->saved_deffh;
2231     coro->saved_deffh = 0;
2232 root 1.181
2233 root 1.255 if (coro_rss (aTHX_ coro) > SvUV (sv_pool_rss)
2234 root 1.159 || av_len (av_async_pool) + 1 >= SvIV (sv_pool_size))
2235 root 1.221 {
2236 root 1.240 SV *old = PL_diehook;
2237     PL_diehook = 0;
2238     SvREFCNT_dec (old);
2239 root 1.221 croak ("\3async_pool terminate\2\n");
2240     }
2241 root 1.159
2242     av_clear (GvAV (PL_defgv));
2243 root 1.212 hv_store ((HV *)SvRV (coro_current), "desc", sizeof ("desc") - 1,
2244     newSVpvn ("[async_pool idle]", sizeof ("[async_pool idle]") - 1), 0);
2245 root 1.175
2246 root 1.159 coro->prio = 0;
2247 root 1.173
2248     if (coro->cctx && (coro->cctx->flags & CC_TRACE))
2249 root 1.174 api_trace (coro_current, 0);
2250 root 1.173
2251 root 1.159 av_push (av_async_pool, newSVsv (coro_current));
2252     }
2253    
2254 root 1.243 #if 0
2255    
2256     void
2257     _generator_call (...)
2258     PROTOTYPE: @
2259     PPCODE:
2260     fprintf (stderr, "call %p\n", CvXSUBANY(cv).any_ptr);
2261     xxxx
2262     abort ();
2263    
2264     SV *
2265     gensub (SV *sub, ...)
2266     PROTOTYPE: &;@
2267     CODE:
2268     {
2269     struct coro *coro;
2270     MAGIC *mg;
2271     CV *xcv;
2272     CV *ncv = (CV *)newSV_type (SVt_PVCV);
2273     int i;
2274    
2275     CvGV (ncv) = CvGV (cv);
2276     CvFILE (ncv) = CvFILE (cv);
2277    
2278     Newz (0, coro, 1, struct coro);
2279     coro->args = newAV ();
2280     coro->flags = CF_NEW;
2281    
2282     av_extend (coro->args, items - 1);
2283     for (i = 1; i < items; i++)
2284     av_push (coro->args, newSVsv (ST (i)));
2285    
2286     CvISXSUB_on (ncv);
2287     CvXSUBANY (ncv).any_ptr = (void *)coro;
2288    
2289     xcv = GvCV (gv_fetchpv ("Coro::_generator_call", 0, SVt_PVCV));
2290    
2291     CvXSUB (ncv) = CvXSUB (xcv);
2292     CvANON_on (ncv);
2293    
2294     mg = sv_magicext ((SV *)ncv, 0, CORO_MAGIC_type_state, &coro_gensub_vtbl, (char *)coro, 0);
2295     RETVAL = newRV_noinc ((SV *)ncv);
2296     }
2297     OUTPUT:
2298     RETVAL
2299    
2300     #endif
2301    
2302 root 1.159
2303 root 1.89 MODULE = Coro::State PACKAGE = Coro::AIO
2304    
2305 root 1.249 void
2306     _get_state (SV *self)
2307     PPCODE:
2308 root 1.70 {
2309 root 1.249 AV *defav = GvAV (PL_defgv);
2310     AV *av = newAV ();
2311     int i;
2312     SV *data_sv = newSV (sizeof (struct io_state));
2313     struct io_state *data = (struct io_state *)SvPVX (data_sv);
2314     SvCUR_set (data_sv, sizeof (struct io_state));
2315     SvPOK_only (data_sv);
2316 root 1.120
2317     data->errorno = errno;
2318     data->laststype = PL_laststype;
2319     data->laststatval = PL_laststatval;
2320     data->statcache = PL_statcache;
2321 root 1.249
2322     av_extend (av, AvFILLp (defav) + 1 + 1);
2323    
2324     for (i = 0; i <= AvFILLp (defav); ++i)
2325     av_push (av, SvREFCNT_inc_NN (AvARRAY (defav)[i]));
2326    
2327     av_push (av, data_sv);
2328    
2329     XPUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
2330    
2331     api_ready (self);
2332 root 1.70 }
2333    
2334     void
2335 root 1.249 _set_state (SV *state)
2336 root 1.70 PROTOTYPE: $
2337 root 1.249 PPCODE:
2338 root 1.70 {
2339 root 1.249 AV *av = (AV *)SvRV (state);
2340     struct io_state *data = (struct io_state *)SvPVX (AvARRAY (av)[AvFILLp (av)]);
2341     int i;
2342 root 1.70
2343 root 1.120 errno = data->errorno;
2344     PL_laststype = data->laststype;
2345 root 1.70 PL_laststatval = data->laststatval;
2346 root 1.120 PL_statcache = data->statcache;
2347 root 1.249
2348     EXTEND (SP, AvFILLp (av));
2349     for (i = 0; i < AvFILLp (av); ++i)
2350     PUSHs (sv_2mortal (SvREFCNT_inc_NN (AvARRAY (av)[i])));
2351 root 1.70 }
2352 root 1.120
2353 root 1.233
2354     MODULE = Coro::State PACKAGE = Coro::AnyEvent
2355    
2356     BOOT:
2357     sv_activity = coro_get_sv (aTHX_ "Coro::AnyEvent::ACTIVITY", TRUE);
2358    
2359     SV *
2360 root 1.237 _schedule (...)
2361 root 1.233 PROTOTYPE: @
2362     CODE:
2363     {
2364     static int incede;
2365    
2366     api_cede_notself ();
2367    
2368     ++incede;
2369     while (coro_nready >= incede && api_cede ())
2370     ;
2371    
2372     sv_setsv (sv_activity, &PL_sv_undef);
2373     if (coro_nready >= incede)
2374     {
2375     PUSHMARK (SP);
2376     PUTBACK;
2377     call_pv ("Coro::AnyEvent::_activity", G_DISCARD | G_EVAL);
2378     SPAGAIN;
2379     }
2380    
2381     --incede;
2382     }
2383    
2384 root 1.246
2385     MODULE = Coro::State PACKAGE = PerlIO::cede
2386    
2387     BOOT:
2388     PerlIO_define_layer (aTHX_ &PerlIO_cede);