ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/State.xs
Revision: 1.174
Committed: Sun Sep 30 13:43:18 2007 UTC (16 years, 7 months ago) by root
Branch: MAIN
Changes since 1.173: +4 -3 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    
5 root 1.1 #include "EXTERN.h"
6     #include "perl.h"
7     #include "XSUB.h"
8    
9 pcg 1.46 #include "patchlevel.h"
10    
11 root 1.127 #include <stdio.h>
12     #include <errno.h>
13     #include <assert.h>
14    
15     #ifdef HAVE_MMAP
16     # include <unistd.h>
17     # include <sys/mman.h>
18     # ifndef MAP_ANONYMOUS
19     # ifdef MAP_ANON
20     # define MAP_ANONYMOUS MAP_ANON
21     # else
22     # undef HAVE_MMAP
23     # endif
24     # endif
25     # include <limits.h>
26     # ifndef PAGESIZE
27     # define PAGESIZE pagesize
28     # define BOOT_PAGESIZE pagesize = sysconf (_SC_PAGESIZE)
29     static long pagesize;
30     # else
31     # define BOOT_PAGESIZE (void)0
32     # endif
33     #else
34     # define PAGESIZE 0
35     # define BOOT_PAGESIZE (void)0
36     #endif
37    
38 root 1.143 #if CORO_USE_VALGRIND
39 root 1.104 # include <valgrind/valgrind.h>
40 root 1.141 # define REGISTER_STACK(cctx,start,end) (cctx)->valgrind_id = VALGRIND_STACK_REGISTER ((start), (end))
41     #else
42     # define REGISTER_STACK(cctx,start,end)
43 root 1.104 #endif
44    
45 root 1.115 /* the maximum number of idle cctx that will be pooled */
46     #define MAX_IDLE_CCTX 8
47    
48 root 1.100 #define PERL_VERSION_ATLEAST(a,b,c) \
49     (PERL_REVISION > (a) \
50     || (PERL_REVISION == (a) \
51     && (PERL_VERSION > (b) \
52     || (PERL_VERSION == (b) && PERLSUBVERSION >= (c)))))
53    
54 root 1.102 #if !PERL_VERSION_ATLEAST (5,6,0)
55 pcg 1.46 # ifndef PL_ppaddr
56     # define PL_ppaddr ppaddr
57     # endif
58     # ifndef call_sv
59     # define call_sv perl_call_sv
60     # endif
61     # ifndef get_sv
62     # define get_sv perl_get_sv
63     # endif
64     # ifndef get_cv
65     # define get_cv perl_get_cv
66     # endif
67     # ifndef IS_PADGV
68     # define IS_PADGV(v) 0
69     # endif
70     # ifndef IS_PADCONST
71     # define IS_PADCONST(v) 0
72     # endif
73     #endif
74    
75 root 1.125 /* 5.8.7 */
76     #ifndef SvRV_set
77     # define SvRV_set(s,v) SvRV(s) = (v)
78     #endif
79    
80 root 1.78 #if !__i386 && !__x86_64 && !__powerpc && !__m68k && !__alpha && !__mips && !__sparc64
81 root 1.143 # undef CORO_STACKGUARD
82 root 1.78 #endif
83    
84 root 1.143 #ifndef CORO_STACKGUARD
85     # define CORO_STACKGUARD 0
86 root 1.78 #endif
87    
88 root 1.127 /* prefer perl internal functions over our own? */
89 root 1.143 #ifndef CORO_PREFER_PERL_FUNCTIONS
90     # define CORO_PREFER_PERL_FUNCTIONS 0
91 root 1.3 #endif
92    
93 root 1.158 /* The next macros try to return the current stack pointer, in an as
94     * portable way as possible. */
95     #define dSTACKLEVEL volatile char stacklevel
96 root 1.92 #define STACKLEVEL ((void *)&stacklevel)
97 root 1.15
98 root 1.34 #define IN_DESTRUCT (PL_main_cv == Nullcv)
99    
100 root 1.100 #if __GNUC__ >= 3
101     # define attribute(x) __attribute__(x)
102 root 1.131 # define BARRIER __asm__ __volatile__ ("" : : : "memory")
103 root 1.100 #else
104     # define attribute(x)
105 root 1.131 # define BARRIER
106 root 1.100 #endif
107    
108     #define NOINLINE attribute ((noinline))
109    
110 root 1.23 #include "CoroAPI.h"
111    
112 pcg 1.55 #ifdef USE_ITHREADS
113     static perl_mutex coro_mutex;
114 root 1.69 # define LOCK do { MUTEX_LOCK (&coro_mutex); } while (0)
115 pcg 1.55 # define UNLOCK do { MUTEX_UNLOCK (&coro_mutex); } while (0)
116     #else
117 root 1.69 # define LOCK (void)0
118     # define UNLOCK (void)0
119 pcg 1.55 #endif
120    
121 root 1.136 /* helper storage struct for Coro::AIO */
122 root 1.120 struct io_state
123     {
124     int errorno;
125     I32 laststype;
126     int laststatval;
127     Stat_t statcache;
128     };
129    
130 root 1.145 static size_t coro_stacksize = CORO_STACKSIZE;
131 root 1.23 static struct CoroAPI coroapi;
132 pcg 1.56 static AV *main_mainstack; /* used to differentiate between $main and others */
133 root 1.148 static JMPENV *main_top_env;
134 root 1.88 static HV *coro_state_stash, *coro_stash;
135 pcg 1.58 static SV *coro_mortal; /* will be freed after next transfer */
136 root 1.23
137 root 1.159 /* async_pool helper stuff */
138     static SV *sv_pool_rss;
139     static SV *sv_pool_size;
140     static AV *av_async_pool;
141    
142 root 1.107 static struct coro_cctx *cctx_first;
143     static int cctx_count, cctx_idle;
144    
145 root 1.165 enum {
146 root 1.167 CC_MAPPED = 0x01,
147     CC_NOREUSE = 0x02, /* throw this away after tracing */
148     CC_TRACE = 0x04,
149     CC_TRACE_SUB = 0x08, /* trace sub calls */
150     CC_TRACE_LINE = 0x10, /* trace each statement */
151     CC_TRACE_ALL = CC_TRACE_SUB | CC_TRACE_LINE,
152 root 1.165 };
153    
154 root 1.92 /* this is a structure representing a c-level coroutine */
155 root 1.106 typedef struct coro_cctx {
156     struct coro_cctx *next;
157 root 1.15
158 root 1.93 /* the stack */
159 root 1.15 void *sptr;
160 root 1.145 size_t ssize;
161 root 1.89
162     /* cpu state */
163 root 1.132 void *idle_sp; /* sp of top-level transfer/schedule/cede call */
164     JMPENV *idle_te; /* same as idle_sp, but for top_env, TODO: remove once stable */
165 root 1.93 JMPENV *top_env;
166 root 1.89 coro_context cctx;
167 root 1.104
168 root 1.143 #if CORO_USE_VALGRIND
169 root 1.104 int valgrind_id;
170     #endif
171 root 1.165 unsigned char flags;
172 root 1.106 } coro_cctx;
173 root 1.15
174 root 1.111 enum {
175 root 1.133 CF_RUNNING = 0x0001, /* coroutine is running */
176     CF_READY = 0x0002, /* coroutine is ready */
177     CF_NEW = 0x0004, /* has never been switched to */
178     CF_DESTROYED = 0x0008, /* coroutine data has been freed */
179 root 1.111 };
180    
181 root 1.92 /* this is a structure representing a perl-level coroutine */
182 root 1.1 struct coro {
183 root 1.92 /* the c coroutine allocated to this perl coroutine, if any */
184 root 1.106 coro_cctx *cctx;
185 root 1.92
186     /* data associated with this coroutine (initial args) */
187     AV *args;
188     int refcnt;
189 root 1.122 int save; /* CORO_SAVE flags */
190     int flags; /* CF_ flags */
191 root 1.92
192 root 1.7 /* optionally saved, might be zero */
193 root 1.122 AV *defav; /* @_ */
194     SV *defsv; /* $_ */
195     SV *errsv; /* $@ */
196 root 1.147 GV *deffh; /* default filehandle */
197 root 1.122 SV *irssv; /* $/ */
198 root 1.123 SV *irssv_sv; /* real $/ cache */
199 root 1.1
200 root 1.108 #define VAR(name,type) type name;
201     # include "state.h"
202     #undef VAR
203 root 1.1
204 root 1.172 /* statistics */
205     int usecount; /* number of switches to this coro */
206    
207 root 1.87 /* coro process data */
208     int prio;
209 root 1.151
210     /* linked list */
211     struct coro *next, *prev;
212     HV *hv; /* the perl hash associated with this coro, if any */
213 root 1.1 };
214    
215     typedef struct coro *Coro__State;
216     typedef struct coro *Coro__State_or_hashref;
217    
218 root 1.137 /** Coro ********************************************************************/
219    
220     #define PRIO_MAX 3
221     #define PRIO_HIGH 1
222     #define PRIO_NORMAL 0
223     #define PRIO_LOW -1
224     #define PRIO_IDLE -3
225     #define PRIO_MIN -4
226    
227     /* for Coro.pm */
228     static SV *coro_current;
229     static AV *coro_ready [PRIO_MAX-PRIO_MIN+1];
230     static int coro_nready;
231 root 1.153 static struct coro *coro_first;
232 root 1.137
233     /** lowlevel stuff **********************************************************/
234    
235 root 1.77 static AV *
236 root 1.146 coro_clone_padlist (pTHX_ CV *cv)
237 root 1.77 {
238     AV *padlist = CvPADLIST (cv);
239     AV *newpadlist, *newpad;
240 root 1.3
241     newpadlist = newAV ();
242     AvREAL_off (newpadlist);
243 root 1.100 #if PERL_VERSION_ATLEAST (5,9,0)
244     Perl_pad_push (aTHX_ padlist, AvFILLp (padlist) + 1);
245     #else
246 root 1.77 Perl_pad_push (aTHX_ padlist, AvFILLp (padlist) + 1, 1);
247 root 1.79 #endif
248 root 1.77 newpad = (AV *)AvARRAY (padlist)[AvFILLp (padlist)];
249     --AvFILLp (padlist);
250 root 1.3
251 root 1.77 av_store (newpadlist, 0, SvREFCNT_inc (*av_fetch (padlist, 0, FALSE)));
252     av_store (newpadlist, 1, (SV *)newpad);
253 root 1.3
254     return newpadlist;
255     }
256    
257 root 1.77 static void
258 root 1.146 free_padlist (pTHX_ AV *padlist)
259 root 1.3 {
260     /* may be during global destruction */
261 pcg 1.50 if (SvREFCNT (padlist))
262 root 1.3 {
263 pcg 1.50 I32 i = AvFILLp (padlist);
264 root 1.3 while (i >= 0)
265     {
266 pcg 1.50 SV **svp = av_fetch (padlist, i--, FALSE);
267     if (svp)
268     {
269     SV *sv;
270     while (&PL_sv_undef != (sv = av_pop ((AV *)*svp)))
271     SvREFCNT_dec (sv);
272    
273     SvREFCNT_dec (*svp);
274     }
275 root 1.3 }
276    
277 pcg 1.50 SvREFCNT_dec ((SV*)padlist);
278     }
279     }
280    
281 root 1.77 static int
282 pcg 1.54 coro_cv_free (pTHX_ SV *sv, MAGIC *mg)
283 pcg 1.50 {
284     AV *padlist;
285     AV *av = (AV *)mg->mg_obj;
286    
287     /* casting is fun. */
288     while (&PL_sv_undef != (SV *)(padlist = (AV *)av_pop (av)))
289 root 1.146 free_padlist (aTHX_ padlist);
290 root 1.61
291     SvREFCNT_dec (av);
292 root 1.76
293     return 0;
294 root 1.3 }
295 pcg 1.50
296     #define PERL_MAGIC_coro PERL_MAGIC_ext
297    
298     static MGVTBL vtbl_coro = {0, 0, 0, 0, coro_cv_free};
299 root 1.3
300 root 1.109 #define CORO_MAGIC(cv) \
301     SvMAGIC (cv) \
302     ? SvMAGIC (cv)->mg_type == PERL_MAGIC_coro \
303     ? SvMAGIC (cv) \
304     : mg_find ((SV *)cv, PERL_MAGIC_coro) \
305     : 0
306    
307 root 1.169 static struct coro *
308     SvSTATE_ (pTHX_ SV *coro)
309     {
310     HV *stash;
311     MAGIC *mg;
312    
313     if (SvROK (coro))
314     coro = SvRV (coro);
315    
316 root 1.172 if (SvTYPE (coro) != SVt_PVHV)
317     croak ("Coro::State object required");
318    
319 root 1.169 stash = SvSTASH (coro);
320     if (stash != coro_stash && stash != coro_state_stash)
321     {
322     /* very slow, but rare, check */
323     if (!sv_derived_from (sv_2mortal (newRV_inc (coro)), "Coro::State"))
324     croak ("Coro::State object required");
325     }
326    
327     mg = CORO_MAGIC (coro);
328     return (struct coro *)mg->mg_ptr;
329     }
330    
331     #define SvSTATE(sv) SvSTATE_ (aTHX_ (sv))
332    
333 root 1.7 /* the next two functions merely cache the padlists */
334 root 1.77 static void
335 root 1.146 get_padlist (pTHX_ CV *cv)
336 root 1.3 {
337 root 1.109 MAGIC *mg = CORO_MAGIC (cv);
338     AV *av;
339 root 1.4
340 root 1.109 if (mg && AvFILLp ((av = (AV *)mg->mg_obj)) >= 0)
341     CvPADLIST (cv) = (AV *)AvARRAY (av)[AvFILLp (av)--];
342 root 1.4 else
343 root 1.77 {
344 root 1.143 #if CORO_PREFER_PERL_FUNCTIONS
345 root 1.96 /* this is probably cleaner, but also slower? */
346 root 1.98 CV *cp = Perl_cv_clone (cv);
347 root 1.77 CvPADLIST (cv) = CvPADLIST (cp);
348     CvPADLIST (cp) = 0;
349     SvREFCNT_dec (cp);
350     #else
351 root 1.146 CvPADLIST (cv) = coro_clone_padlist (aTHX_ cv);
352 root 1.77 #endif
353     }
354 root 1.4 }
355    
356 root 1.77 static void
357 root 1.146 put_padlist (pTHX_ CV *cv)
358 root 1.4 {
359 root 1.109 MAGIC *mg = CORO_MAGIC (cv);
360     AV *av;
361 root 1.7
362 pcg 1.50 if (!mg)
363 root 1.7 {
364 pcg 1.50 sv_magic ((SV *)cv, 0, PERL_MAGIC_coro, 0, 0);
365     mg = mg_find ((SV *)cv, PERL_MAGIC_coro);
366     mg->mg_virtual = &vtbl_coro;
367     mg->mg_obj = (SV *)newAV ();
368 root 1.7 }
369    
370 root 1.109 av = (AV *)mg->mg_obj;
371    
372     if (AvFILLp (av) >= AvMAX (av))
373     av_extend (av, AvMAX (av) + 1);
374    
375     AvARRAY (av)[++AvFILLp (av)] = (SV *)CvPADLIST (cv);
376 root 1.7 }
377    
378 root 1.137 /** load & save, init *******************************************************/
379    
380 root 1.7 #define SB do {
381     #define SE } while (0)
382    
383 root 1.117 #define REPLACE_SV(sv,val) SB SvREFCNT_dec (sv); (sv) = (val); (val) = 0; SE
384 root 1.7
385     static void
386 root 1.146 load_perl (pTHX_ Coro__State c)
387 root 1.7 {
388 root 1.108 #define VAR(name,type) PL_ ## name = c->name;
389     # include "state.h"
390     #undef VAR
391 root 1.7
392     if (c->defav) REPLACE_SV (GvAV (PL_defgv), c->defav);
393     if (c->defsv) REPLACE_SV (DEFSV , c->defsv);
394     if (c->errsv) REPLACE_SV (ERRSV , c->errsv);
395 root 1.147 if (c->deffh) REPLACE_SV (PL_defoutgv , c->deffh);
396    
397 root 1.123 if (c->irssv)
398     {
399     if (c->irssv == PL_rs || sv_eq (PL_rs, c->irssv))
400 root 1.147 {
401     SvREFCNT_dec (c->irssv);
402     c->irssv = 0;
403     }
404 root 1.123 else
405     {
406     REPLACE_SV (PL_rs, c->irssv);
407     if (!c->irssv_sv) c->irssv_sv = get_sv ("/", 0);
408     sv_setsv (c->irssv_sv, PL_rs);
409     }
410     }
411 root 1.7
412     {
413     dSP;
414     CV *cv;
415    
416     /* now do the ugly restore mess */
417     while ((cv = (CV *)POPs))
418     {
419 root 1.146 put_padlist (aTHX_ cv); /* mark this padlist as available */
420 root 1.109 CvDEPTH (cv) = PTR2IV (POPs);
421     CvPADLIST (cv) = (AV *)POPs;
422 root 1.7 }
423    
424     PUTBACK;
425     }
426     }
427    
428 root 1.3 static void
429 root 1.146 save_perl (pTHX_ Coro__State c)
430 root 1.3 {
431     {
432     dSP;
433     I32 cxix = cxstack_ix;
434 root 1.11 PERL_CONTEXT *ccstk = cxstack;
435 root 1.3 PERL_SI *top_si = PL_curstackinfo;
436    
437     /*
438     * the worst thing you can imagine happens first - we have to save
439     * (and reinitialize) all cv's in the whole callchain :(
440     */
441    
442 root 1.157 XPUSHs (Nullsv);
443 root 1.3 /* this loop was inspired by pp_caller */
444     for (;;)
445     {
446 root 1.30 while (cxix >= 0)
447 root 1.3 {
448 root 1.4 PERL_CONTEXT *cx = &ccstk[cxix--];
449 root 1.3
450 root 1.151 if (CxTYPE (cx) == CXt_SUB || CxTYPE (cx) == CXt_FORMAT)
451 root 1.3 {
452     CV *cv = cx->blk_sub.cv;
453 root 1.109
454     if (CvDEPTH (cv))
455 root 1.3 {
456 root 1.109 EXTEND (SP, 3);
457 root 1.117 PUSHs ((SV *)CvPADLIST (cv));
458 root 1.109 PUSHs (INT2PTR (SV *, CvDEPTH (cv)));
459 root 1.3 PUSHs ((SV *)cv);
460    
461 root 1.109 CvDEPTH (cv) = 0;
462 root 1.146 get_padlist (aTHX_ cv);
463 root 1.3 }
464     }
465     }
466    
467     if (top_si->si_type == PERLSI_MAIN)
468     break;
469    
470     top_si = top_si->si_prev;
471 root 1.158 ccstk = top_si->si_cxstack;
472     cxix = top_si->si_cxix;
473 root 1.3 }
474    
475     PUTBACK;
476     }
477    
478 root 1.122 c->defav = c->save & CORO_SAVE_DEFAV ? (AV *)SvREFCNT_inc (GvAV (PL_defgv)) : 0;
479     c->defsv = c->save & CORO_SAVE_DEFSV ? SvREFCNT_inc (DEFSV) : 0;
480     c->errsv = c->save & CORO_SAVE_ERRSV ? SvREFCNT_inc (ERRSV) : 0;
481 root 1.147 c->deffh = c->save & CORO_SAVE_DEFFH ? (GV *)SvREFCNT_inc (PL_defoutgv) : 0;
482 root 1.122 c->irssv = c->save & CORO_SAVE_IRSSV ? SvREFCNT_inc (PL_rs) : 0;
483 root 1.7
484 root 1.108 #define VAR(name,type)c->name = PL_ ## name;
485     # include "state.h"
486     #undef VAR
487 root 1.13 }
488    
489     /*
490     * allocate various perl stacks. This is an exact copy
491     * of perl.c:init_stacks, except that it uses less memory
492 pcg 1.52 * on the (sometimes correct) assumption that coroutines do
493     * not usually need a lot of stackspace.
494 root 1.13 */
495 root 1.143 #if CORO_PREFER_PERL_FUNCTIONS
496 root 1.126 # define coro_init_stacks init_stacks
497     #else
498 root 1.77 static void
499 root 1.146 coro_init_stacks (pTHX)
500 root 1.13 {
501 root 1.156 PL_curstackinfo = new_stackinfo(64, 6);
502 root 1.13 PL_curstackinfo->si_type = PERLSI_MAIN;
503     PL_curstack = PL_curstackinfo->si_stack;
504     PL_mainstack = PL_curstack; /* remember in case we switch stacks */
505    
506     PL_stack_base = AvARRAY(PL_curstack);
507     PL_stack_sp = PL_stack_base;
508     PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
509    
510 root 1.154 New(50,PL_tmps_stack,64,SV*);
511 root 1.13 PL_tmps_floor = -1;
512     PL_tmps_ix = -1;
513 root 1.154 PL_tmps_max = 64;
514 root 1.13
515 root 1.154 New(54,PL_markstack,16,I32);
516 root 1.13 PL_markstack_ptr = PL_markstack;
517 root 1.154 PL_markstack_max = PL_markstack + 16;
518 root 1.13
519 pcg 1.46 #ifdef SET_MARK_OFFSET
520 root 1.13 SET_MARK_OFFSET;
521 pcg 1.46 #endif
522 root 1.13
523 root 1.154 New(54,PL_scopestack,16,I32);
524 root 1.13 PL_scopestack_ix = 0;
525 root 1.154 PL_scopestack_max = 16;
526 root 1.13
527 root 1.155 New(54,PL_savestack,64,ANY);
528 root 1.13 PL_savestack_ix = 0;
529 root 1.155 PL_savestack_max = 64;
530 root 1.13
531 root 1.100 #if !PERL_VERSION_ATLEAST (5,9,0)
532 root 1.156 New(54,PL_retstack,4,OP*);
533 root 1.13 PL_retstack_ix = 0;
534 root 1.156 PL_retstack_max = 4;
535 root 1.71 #endif
536 root 1.3 }
537 root 1.127 #endif
538 root 1.1
539 root 1.7 /*
540     * destroy the stacks, the callchain etc...
541     */
542 root 1.77 static void
543 root 1.146 coro_destroy_stacks (pTHX)
544 root 1.1 {
545 root 1.34 if (!IN_DESTRUCT)
546 root 1.31 {
547 root 1.126 /* restore all saved variables and stuff */
548 pcg 1.52 LEAVE_SCOPE (0);
549 root 1.126 assert (PL_tmps_floor == -1);
550 root 1.31
551 root 1.126 /* free all temporaries */
552 pcg 1.52 FREETMPS;
553 root 1.126 assert (PL_tmps_ix == -1);
554 pcg 1.57
555 root 1.134 /* unwind all extra stacks */
556 root 1.126 POPSTACK_TO (PL_mainstack);
557 root 1.134
558     /* unwind main stack */
559     dounwind (-1);
560 root 1.31 }
561 root 1.7
562 root 1.4 while (PL_curstackinfo->si_next)
563     PL_curstackinfo = PL_curstackinfo->si_next;
564    
565     while (PL_curstackinfo)
566     {
567     PERL_SI *p = PL_curstackinfo->si_prev;
568    
569 root 1.34 if (!IN_DESTRUCT)
570 root 1.126 SvREFCNT_dec (PL_curstackinfo->si_stack);
571 root 1.7
572 pcg 1.57 Safefree (PL_curstackinfo->si_cxstack);
573     Safefree (PL_curstackinfo);
574 root 1.4 PL_curstackinfo = p;
575     }
576    
577 pcg 1.57 Safefree (PL_tmps_stack);
578     Safefree (PL_markstack);
579     Safefree (PL_scopestack);
580     Safefree (PL_savestack);
581 root 1.100 #if !PERL_VERSION_ATLEAST (5,9,0)
582 pcg 1.57 Safefree (PL_retstack);
583 root 1.71 #endif
584 root 1.1 }
585    
586 root 1.152 static size_t
587 root 1.171 coro_rss (pTHX_ struct coro *coro)
588 root 1.152 {
589     size_t rss = sizeof (coro);
590    
591     if (coro->mainstack)
592     {
593 root 1.153 if (coro->flags & CF_RUNNING)
594     {
595     #define VAR(name,type)coro->name = PL_ ## name;
596     # include "state.h"
597     #undef VAR
598     }
599    
600 root 1.152 rss += sizeof (coro->curstackinfo);
601     rss += sizeof (struct xpvav) + (1 + AvFILL (coro->curstackinfo->si_stack)) * sizeof (SV *);
602     rss += (coro->curstackinfo->si_cxmax + 1) * sizeof (PERL_CONTEXT);
603     rss += sizeof (struct xpvav) + (1 + AvFILL (coro->curstack)) * sizeof (SV *);
604     rss += coro->tmps_max * sizeof (SV *);
605     rss += (coro->markstack_max - coro->markstack_ptr) * sizeof (I32);
606     rss += coro->scopestack_max * sizeof (I32);
607     rss += coro->savestack_max * sizeof (ANY);
608    
609     #if !PERL_VERSION_ATLEAST (5,9,0)
610     rss += coro->retstack_max * sizeof (OP *);
611     #endif
612     }
613    
614     return rss;
615     }
616    
617 root 1.137 /** coroutine stack handling ************************************************/
618    
619 root 1.13 static void
620 root 1.146 setup_coro (pTHX_ struct coro *coro)
621 root 1.13 {
622 root 1.89 /*
623     * emulate part of the perl startup here.
624     */
625 root 1.146 coro_init_stacks (aTHX);
626 root 1.15
627 root 1.169 PL_runops = RUNOPS_DEFAULT;
628 root 1.117 PL_curcop = &PL_compiling;
629     PL_in_eval = EVAL_NULL;
630 root 1.142 PL_comppad = 0;
631 root 1.117 PL_curpm = 0;
632     PL_localizing = 0;
633     PL_dirty = 0;
634     PL_restartop = 0;
635 root 1.103
636 root 1.102 {
637     dSP;
638     LOGOP myop;
639    
640     SvREFCNT_dec (GvAV (PL_defgv));
641     GvAV (PL_defgv) = coro->args; coro->args = 0;
642    
643     Zero (&myop, 1, LOGOP);
644     myop.op_next = Nullop;
645     myop.op_flags = OPf_WANT_VOID;
646 root 1.89
647 root 1.102 PUSHMARK (SP);
648 root 1.149 XPUSHs (av_shift (GvAV (PL_defgv)));
649 root 1.102 PUTBACK;
650 root 1.120 PL_op = (OP *)&myop;
651 root 1.102 PL_op = PL_ppaddr[OP_ENTERSUB](aTHX);
652     SPAGAIN;
653 root 1.117 }
654 root 1.15
655 root 1.117 ENTER; /* necessary e.g. for dounwind */
656 root 1.13 }
657    
658     static void
659 root 1.146 free_coro_mortal (pTHX)
660 root 1.13 {
661 root 1.89 if (coro_mortal)
662 root 1.15 {
663 root 1.89 SvREFCNT_dec (coro_mortal);
664     coro_mortal = 0;
665     }
666 root 1.13 }
667    
668 root 1.165 static int
669 root 1.169 runops_trace (pTHX)
670 root 1.165 {
671     COP *oldcop = 0;
672 root 1.167 int oldcxix = -2;
673 root 1.169 struct coro *coro = SvSTATE (coro_current); /* trace cctx is tied to specific coro */
674     coro_cctx *cctx = coro->cctx;
675 root 1.165
676     while ((PL_op = CALL_FPTR (PL_op->op_ppaddr) (aTHX)))
677     {
678     PERL_ASYNC_CHECK ();
679    
680 root 1.173 if (cctx->flags & CC_TRACE_ALL)
681 root 1.167 {
682 root 1.173 if (PL_op->op_type == OP_LEAVESUB && cctx->flags & CC_TRACE_SUB)
683     {
684     PERL_CONTEXT *cx = &cxstack[cxstack_ix];
685     SV **bot, **top;
686     AV *av = newAV (); /* return values */
687     SV **cb;
688     dSP;
689 root 1.167
690 root 1.173 GV *gv = CvGV (cx->blk_sub.cv);
691     SV *fullname = sv_2mortal (newSV (0));
692     if (isGV (gv))
693     gv_efullname3 (fullname, gv, 0);
694    
695     bot = PL_stack_base + cx->blk_oldsp + 1;
696     top = cx->blk_gimme == G_ARRAY ? SP + 1
697     : cx->blk_gimme == G_SCALAR ? bot + 1
698     : bot;
699 root 1.167
700 root 1.173 while (bot < top)
701     av_push (av, SvREFCNT_inc (*bot++));
702 root 1.167
703 root 1.173 PL_runops = RUNOPS_DEFAULT;
704 root 1.167 ENTER;
705     SAVETMPS;
706     EXTEND (SP, 3);
707 root 1.173 PUSHMARK (SP);
708     PUSHs (&PL_sv_no);
709     PUSHs (fullname);
710     PUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
711     PUTBACK;
712     cb = hv_fetch ((HV *)SvRV (coro_current), "_trace_sub_cb", sizeof ("_trace_sub_cb") - 1, 0);
713     if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
714     SPAGAIN;
715     FREETMPS;
716     LEAVE;
717     PL_runops = runops_trace;
718     }
719    
720     if (oldcop != PL_curcop)
721     {
722     oldcop = PL_curcop;
723 root 1.167
724 root 1.173 if (PL_curcop != &PL_compiling)
725 root 1.167 {
726 root 1.173 SV **cb;
727    
728     if (oldcxix != cxstack_ix && cctx->flags & CC_TRACE_SUB)
729     {
730     PERL_CONTEXT *cx = &cxstack[cxstack_ix];
731    
732     if (CxTYPE (cx) == CXt_SUB && oldcxix < cxstack_ix)
733     {
734     runops_proc_t old_runops = PL_runops;
735     dSP;
736     GV *gv = CvGV (cx->blk_sub.cv);
737     SV *fullname = sv_2mortal (newSV (0));
738    
739     if (isGV (gv))
740     gv_efullname3 (fullname, gv, 0);
741    
742     PL_runops = RUNOPS_DEFAULT;
743     ENTER;
744     SAVETMPS;
745     EXTEND (SP, 3);
746     PUSHMARK (SP);
747     PUSHs (&PL_sv_yes);
748     PUSHs (fullname);
749     PUSHs (cx->blk_sub.hasargs ? sv_2mortal (newRV_inc ((SV *)cx->blk_sub.argarray)) : &PL_sv_undef);
750     PUTBACK;
751     cb = hv_fetch ((HV *)SvRV (coro_current), "_trace_sub_cb", sizeof ("_trace_sub_cb") - 1, 0);
752     if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
753     SPAGAIN;
754     FREETMPS;
755     LEAVE;
756     PL_runops = runops_trace;
757     }
758    
759     oldcxix = cxstack_ix;
760     }
761 root 1.167
762 root 1.173 if (cctx->flags & CC_TRACE_LINE)
763 root 1.167 {
764 root 1.173 dSP;
765 root 1.167
766 root 1.173 PL_runops = RUNOPS_DEFAULT;
767     ENTER;
768     SAVETMPS;
769     EXTEND (SP, 3);
770     PL_runops = RUNOPS_DEFAULT;
771 root 1.167 PUSHMARK (SP);
772 root 1.173 PUSHs (sv_2mortal (newSVpv (OutCopFILE (oldcop), 0)));
773     PUSHs (sv_2mortal (newSViv (CopLINE (oldcop))));
774 root 1.167 PUTBACK;
775 root 1.173 cb = hv_fetch ((HV *)SvRV (coro_current), "_trace_line_cb", sizeof ("_trace_line_cb") - 1, 0);
776 root 1.169 if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
777 root 1.167 SPAGAIN;
778 root 1.173 FREETMPS;
779     LEAVE;
780     PL_runops = runops_trace;
781 root 1.167 }
782 root 1.169 }
783 root 1.167 }
784 root 1.165 }
785     }
786    
787     TAINT_NOT;
788     return 0;
789     }
790    
791 root 1.120 /* inject a fake call to Coro::State::_cctx_init into the execution */
792 root 1.150 /* _cctx_init should be careful, as it could be called at almost any time */
793     /* during execution of a perl program */
794 root 1.100 static void NOINLINE
795 root 1.146 prepare_cctx (pTHX_ coro_cctx *cctx)
796 root 1.99 {
797     dSP;
798 root 1.102 LOGOP myop;
799 root 1.99
800 root 1.165 PL_top_env = &PL_start_env;
801    
802     if (cctx->flags & CC_TRACE)
803 root 1.169 PL_runops = runops_trace;
804 root 1.165
805 root 1.102 Zero (&myop, 1, LOGOP);
806 root 1.99 myop.op_next = PL_op;
807 root 1.120 myop.op_flags = OPf_WANT_VOID | OPf_STACKED;
808 root 1.102
809     PUSHMARK (SP);
810 root 1.120 EXTEND (SP, 2);
811     PUSHs (sv_2mortal (newSViv (PTR2IV (cctx))));
812     PUSHs ((SV *)get_cv ("Coro::State::_cctx_init", FALSE));
813 root 1.99 PUTBACK;
814 root 1.120 PL_op = (OP *)&myop;
815     PL_op = PL_ppaddr[OP_ENTERSUB](aTHX);
816 root 1.99 SPAGAIN;
817     }
818    
819 root 1.148 /*
820     * this is a _very_ stripped down perl interpreter ;)
821     */
822 root 1.99 static void
823 root 1.89 coro_run (void *arg)
824 root 1.13 {
825 root 1.146 dTHX;
826    
827 root 1.120 /* coro_run is the alternative tail of transfer(), so unlock here. */
828 root 1.102 UNLOCK;
829    
830 root 1.165 /* we now skip the entersub that lead to transfer() */
831     PL_op = PL_op->op_next;
832 root 1.107
833 root 1.148 /* inject a fake subroutine call to cctx_init */
834 root 1.146 prepare_cctx (aTHX_ (coro_cctx *)arg);
835 root 1.89
836 root 1.148 /* somebody or something will hit me for both perl_run and PL_restartop */
837 root 1.120 PL_restartop = PL_op;
838 root 1.102 perl_run (PL_curinterp);
839 root 1.89
840 root 1.149 /*
841     * If perl-run returns we assume exit() was being called or the coro
842     * fell off the end, which seems to be the only valid (non-bug)
843     * reason for perl_run to return. We try to exit by jumping to the
844     * bootstrap-time "top" top_env, as we cannot restore the "main"
845     * coroutine as Coro has no such concept
846     */
847 root 1.148 PL_top_env = main_top_env;
848     JMPENV_JUMP (2); /* I do not feel well about the hardcoded 2 at all */
849 root 1.89 }
850    
851 root 1.106 static coro_cctx *
852     cctx_new ()
853 root 1.89 {
854 root 1.106 coro_cctx *cctx;
855 root 1.145 void *stack_start;
856     size_t stack_size;
857 root 1.89
858 root 1.107 ++cctx_count;
859    
860 root 1.124 Newz (0, cctx, 1, coro_cctx);
861 root 1.89
862     #if HAVE_MMAP
863 root 1.13
864 root 1.145 cctx->ssize = ((coro_stacksize * sizeof (long) + PAGESIZE - 1) / PAGESIZE + CORO_STACKGUARD) * PAGESIZE;
865 root 1.120 /* mmap supposedly does allocate-on-write for us */
866 root 1.106 cctx->sptr = mmap (0, cctx->ssize, PROT_EXEC|PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
867 root 1.19
868 root 1.141 if (cctx->sptr != (void *)-1)
869 root 1.13 {
870 root 1.143 # if CORO_STACKGUARD
871     mprotect (cctx->sptr, CORO_STACKGUARD * PAGESIZE, PROT_NONE);
872 root 1.94 # endif
873 root 1.145 stack_start = CORO_STACKGUARD * PAGESIZE + (char *)cctx->sptr;
874     stack_size = cctx->ssize - CORO_STACKGUARD * PAGESIZE;
875 root 1.165 cctx->flags |= CC_MAPPED;
876 root 1.141 }
877     else
878     #endif
879 root 1.89 {
880 root 1.145 cctx->ssize = coro_stacksize * (long)sizeof (long);
881     New (0, cctx->sptr, coro_stacksize, long);
882 root 1.13
883 root 1.141 if (!cctx->sptr)
884     {
885     perror ("FATAL: unable to allocate stack for coroutine");
886     _exit (EXIT_FAILURE);
887     }
888 root 1.89
889 root 1.145 stack_start = cctx->sptr;
890     stack_size = cctx->ssize;
891     }
892 root 1.104
893 root 1.145 REGISTER_STACK (cctx, (char *)stack_start, (char *)stack_start + stack_size);
894     coro_create (&cctx->cctx, coro_run, (void *)cctx, stack_start, stack_size);
895 root 1.13
896 root 1.106 return cctx;
897 root 1.13 }
898    
899 root 1.15 static void
900 root 1.115 cctx_destroy (coro_cctx *cctx)
901 root 1.15 {
902 root 1.106 if (!cctx)
903 root 1.89 return;
904    
905 root 1.107 --cctx_count;
906    
907 root 1.143 #if CORO_USE_VALGRIND
908 root 1.106 VALGRIND_STACK_DEREGISTER (cctx->valgrind_id);
909 root 1.104 #endif
910    
911 root 1.89 #if HAVE_MMAP
912 root 1.165 if (cctx->flags & CC_MAPPED)
913 root 1.141 munmap (cctx->sptr, cctx->ssize);
914     else
915 root 1.89 #endif
916 root 1.141 Safefree (cctx->sptr);
917 root 1.89
918 root 1.106 Safefree (cctx);
919 root 1.89 }
920 root 1.32
921 root 1.106 static coro_cctx *
922 root 1.146 cctx_get (pTHX)
923 root 1.89 {
924 root 1.145 while (cctx_first)
925 root 1.89 {
926 root 1.145 coro_cctx *cctx = cctx_first;
927 root 1.106 cctx_first = cctx->next;
928 root 1.115 --cctx_idle;
929 root 1.145
930 root 1.165 if (cctx->ssize >= coro_stacksize && !(cctx->flags & CC_NOREUSE))
931 root 1.145 return cctx;
932    
933     cctx_destroy (cctx);
934 root 1.89 }
935 root 1.91
936 root 1.145 return cctx_new ();
937 root 1.89 }
938 root 1.19
939 root 1.89 static void
940 root 1.106 cctx_put (coro_cctx *cctx)
941 root 1.89 {
942 root 1.115 /* free another cctx if overlimit */
943     if (cctx_idle >= MAX_IDLE_CCTX)
944     {
945     coro_cctx *first = cctx_first;
946     cctx_first = first->next;
947     --cctx_idle;
948    
949     cctx_destroy (first);
950     }
951    
952 root 1.102 ++cctx_idle;
953 root 1.106 cctx->next = cctx_first;
954     cctx_first = cctx;
955 root 1.15 }
956    
957 root 1.137 /** coroutine switching *****************************************************/
958    
959 root 1.170 static void NOINLINE
960     transfer_check (pTHX_ struct coro *prev, struct coro *next)
961     {
962     if (prev != next)
963     {
964     if (!(prev->flags & (CF_RUNNING | CF_NEW)))
965     croak ("Coro::State::transfer called with non-running/new prev Coro::State, but can only transfer from running or new states");
966    
967     if (next->flags & CF_RUNNING)
968     croak ("Coro::State::transfer called with running next Coro::State, but can only transfer to inactive states");
969    
970     if (next->flags & CF_DESTROYED)
971     croak ("Coro::State::transfer called with destroyed next Coro::State, but can only transfer to inactive states");
972    
973     if (PL_lex_state != LEX_NOTPARSING)
974     croak ("Coro::State::transfer called while parsing, but this is not supported");
975     }
976     }
977    
978     /* always use the TRANSFER macro */
979 root 1.100 static void NOINLINE
980 root 1.146 transfer (pTHX_ struct coro *prev, struct coro *next)
981 root 1.8 {
982 root 1.15 dSTACKLEVEL;
983 root 1.8
984 root 1.89 /* sometimes transfer is only called to set idle_sp */
985 root 1.122 if (!next)
986 root 1.124 {
987     ((coro_cctx *)prev)->idle_sp = STACKLEVEL;
988 root 1.132 assert (((coro_cctx *)prev)->idle_te = PL_top_env); /* just for the side-effect when asserts are enabled */
989 root 1.124 }
990 root 1.92 else if (prev != next)
991 root 1.8 {
992 root 1.106 coro_cctx *prev__cctx;
993 root 1.89
994 root 1.117 if (prev->flags & CF_NEW)
995 root 1.111 {
996     /* create a new empty context */
997     Newz (0, prev->cctx, 1, coro_cctx);
998 root 1.117 prev->flags &= ~CF_NEW;
999     prev->flags |= CF_RUNNING;
1000 root 1.111 }
1001    
1002     prev->flags &= ~CF_RUNNING;
1003     next->flags |= CF_RUNNING;
1004    
1005 root 1.92 LOCK;
1006 root 1.13
1007 root 1.118 if (next->flags & CF_NEW)
1008 root 1.90 {
1009     /* need to start coroutine */
1010 root 1.117 next->flags &= ~CF_NEW;
1011 root 1.89 /* first get rid of the old state */
1012 root 1.146 save_perl (aTHX_ prev);
1013 root 1.89 /* setup coroutine call */
1014 root 1.146 setup_coro (aTHX_ next);
1015 root 1.8 }
1016 root 1.118 else
1017     {
1018     /* coroutine already started */
1019 root 1.146 save_perl (aTHX_ prev);
1020     load_perl (aTHX_ next);
1021 root 1.118 }
1022 root 1.15
1023 root 1.106 prev__cctx = prev->cctx;
1024 root 1.92
1025 root 1.106 /* possibly "free" the cctx */
1026 root 1.168 if (prev__cctx->idle_sp == STACKLEVEL && !(prev__cctx->flags & CC_TRACE))
1027 root 1.92 {
1028 root 1.114 /* I assume that STACKLEVEL is a stronger indicator than PL_top_env changes */
1029 root 1.132 assert (("ERROR: current top_env must equal previous top_env", PL_top_env == prev__cctx->idle_te));
1030 root 1.112
1031 root 1.117 prev->cctx = 0;
1032    
1033 root 1.106 cctx_put (prev__cctx);
1034 root 1.92 }
1035    
1036 root 1.172 ++next->usecount;
1037    
1038 root 1.106 if (!next->cctx)
1039 root 1.165 next->cctx = cctx_get (aTHX);
1040 root 1.111
1041 root 1.117 if (prev__cctx != next->cctx)
1042     {
1043 root 1.106 prev__cctx->top_env = PL_top_env;
1044     PL_top_env = next->cctx->top_env;
1045     coro_transfer (&prev__cctx->cctx, &next->cctx->cctx);
1046 root 1.92 }
1047    
1048 root 1.146 free_coro_mortal (aTHX);
1049 root 1.92 UNLOCK;
1050 root 1.8 }
1051 root 1.39 }
1052 root 1.23
1053 root 1.92 struct transfer_args
1054     {
1055     struct coro *prev, *next;
1056     };
1057    
1058 root 1.146 #define TRANSFER(ta) transfer (aTHX_ (ta).prev, (ta).next)
1059 root 1.170 #define TRANSFER_CHECK(ta) transfer_check (aTHX_ (ta).prev, (ta).next)
1060 root 1.92
1061 root 1.137 /** high level stuff ********************************************************/
1062    
1063 root 1.133 static int
1064 root 1.146 coro_state_destroy (pTHX_ struct coro *coro)
1065 root 1.87 {
1066 root 1.133 if (coro->flags & CF_DESTROYED)
1067     return 0;
1068    
1069     coro->flags |= CF_DESTROYED;
1070 root 1.137
1071     if (coro->flags & CF_READY)
1072     {
1073     /* reduce nready, as destroying a ready coro effectively unreadies it */
1074 root 1.139 /* alternative: look through all ready queues and remove the coro */
1075 root 1.137 LOCK;
1076     --coro_nready;
1077     UNLOCK;
1078     }
1079     else
1080     coro->flags |= CF_READY; /* make sure it is NOT put into the readyqueue */
1081 root 1.87
1082     if (coro->mainstack && coro->mainstack != main_mainstack)
1083     {
1084 root 1.140 struct coro temp;
1085    
1086 root 1.133 assert (!(coro->flags & CF_RUNNING));
1087    
1088 root 1.122 Zero (&temp, 1, struct coro);
1089 root 1.151 temp.save = CORO_SAVE_ALL;
1090 root 1.87
1091 root 1.117 if (coro->flags & CF_RUNNING)
1092     croak ("FATAL: tried to destroy currently running coroutine");
1093    
1094 root 1.146 save_perl (aTHX_ &temp);
1095     load_perl (aTHX_ coro);
1096 root 1.87
1097 root 1.146 coro_destroy_stacks (aTHX);
1098 root 1.87
1099 root 1.146 load_perl (aTHX_ &temp); /* this will get rid of defsv etc.. */
1100 root 1.87
1101     coro->mainstack = 0;
1102     }
1103    
1104 root 1.115 cctx_destroy (coro->cctx);
1105 root 1.87 SvREFCNT_dec (coro->args);
1106 root 1.133
1107 root 1.151 if (coro->next) coro->next->prev = coro->prev;
1108     if (coro->prev) coro->prev->next = coro->next;
1109 root 1.153 if (coro == coro_first) coro_first = coro->next;
1110 root 1.151
1111 root 1.133 return 1;
1112 root 1.87 }
1113    
1114     static int
1115 root 1.134 coro_state_free (pTHX_ SV *sv, MAGIC *mg)
1116 root 1.87 {
1117     struct coro *coro = (struct coro *)mg->mg_ptr;
1118     mg->mg_ptr = 0;
1119    
1120 root 1.151 coro->hv = 0;
1121    
1122 root 1.134 if (--coro->refcnt < 0)
1123     {
1124 root 1.146 coro_state_destroy (aTHX_ coro);
1125 root 1.134 Safefree (coro);
1126     }
1127 root 1.133
1128 root 1.87 return 0;
1129     }
1130    
1131     static int
1132 root 1.98 coro_state_dup (pTHX_ MAGIC *mg, CLONE_PARAMS *params)
1133 root 1.87 {
1134     struct coro *coro = (struct coro *)mg->mg_ptr;
1135    
1136     ++coro->refcnt;
1137    
1138     return 0;
1139     }
1140    
1141 root 1.100 static MGVTBL coro_state_vtbl = {
1142     0, 0, 0, 0,
1143 root 1.134 coro_state_free,
1144 root 1.100 0,
1145     #ifdef MGf_DUP
1146     coro_state_dup,
1147 root 1.102 #else
1148     # define MGf_DUP 0
1149 root 1.100 #endif
1150     };
1151 root 1.87
1152 root 1.23 static void
1153 root 1.146 prepare_transfer (pTHX_ struct transfer_args *ta, SV *prev_sv, SV *next_sv)
1154 root 1.23 {
1155 root 1.122 ta->prev = SvSTATE (prev_sv);
1156     ta->next = SvSTATE (next_sv);
1157 root 1.170 TRANSFER_CHECK (*ta);
1158 root 1.92 }
1159    
1160     static void
1161 root 1.122 api_transfer (SV *prev_sv, SV *next_sv)
1162 root 1.92 {
1163 root 1.146 dTHX;
1164 root 1.92 struct transfer_args ta;
1165    
1166 root 1.146 prepare_transfer (aTHX_ &ta, prev_sv, next_sv);
1167 root 1.92 TRANSFER (ta);
1168 root 1.21 }
1169    
1170 root 1.122 static int
1171     api_save (SV *coro_sv, int new_save)
1172     {
1173 root 1.146 dTHX;
1174 root 1.122 struct coro *coro = SvSTATE (coro_sv);
1175     int old_save = coro->save;
1176    
1177     if (new_save >= 0)
1178     coro->save = new_save;
1179    
1180     return old_save;
1181     }
1182    
1183 root 1.22 /** Coro ********************************************************************/
1184    
1185     static void
1186 root 1.146 coro_enq (pTHX_ SV *coro_sv)
1187 root 1.22 {
1188 root 1.112 av_push (coro_ready [SvSTATE (coro_sv)->prio - PRIO_MIN], coro_sv);
1189 root 1.22 }
1190    
1191     static SV *
1192 root 1.146 coro_deq (pTHX_ int min_prio)
1193 root 1.22 {
1194     int prio = PRIO_MAX - PRIO_MIN;
1195    
1196     min_prio -= PRIO_MIN;
1197     if (min_prio < 0)
1198     min_prio = 0;
1199    
1200     for (prio = PRIO_MAX - PRIO_MIN + 1; --prio >= min_prio; )
1201 root 1.83 if (AvFILLp (coro_ready [prio]) >= 0)
1202 root 1.137 return av_shift (coro_ready [prio]);
1203 root 1.22
1204     return 0;
1205     }
1206    
1207 root 1.111 static int
1208     api_ready (SV *coro_sv)
1209 root 1.23 {
1210 root 1.146 dTHX;
1211 root 1.111 struct coro *coro;
1212    
1213     if (SvROK (coro_sv))
1214     coro_sv = SvRV (coro_sv);
1215    
1216     coro = SvSTATE (coro_sv);
1217 root 1.112
1218 root 1.111 if (coro->flags & CF_READY)
1219     return 0;
1220 pcg 1.56
1221 root 1.111 coro->flags |= CF_READY;
1222 root 1.39
1223 pcg 1.55 LOCK;
1224 root 1.146 coro_enq (aTHX_ SvREFCNT_inc (coro_sv));
1225 root 1.137 ++coro_nready;
1226 pcg 1.55 UNLOCK;
1227 root 1.111
1228     return 1;
1229     }
1230    
1231     static int
1232     api_is_ready (SV *coro_sv)
1233     {
1234 root 1.146 dTHX;
1235 root 1.130 return !!(SvSTATE (coro_sv)->flags & CF_READY);
1236 root 1.23 }
1237    
1238     static void
1239 root 1.146 prepare_schedule (pTHX_ struct transfer_args *ta)
1240 root 1.23 {
1241 root 1.133 SV *prev_sv, *next_sv;
1242 root 1.88
1243     for (;;)
1244     {
1245     LOCK;
1246 root 1.146 next_sv = coro_deq (aTHX_ PRIO_MIN);
1247 root 1.88
1248 root 1.133 /* nothing to schedule: call the idle handler */
1249     if (!next_sv)
1250     {
1251 root 1.140 dSP;
1252 root 1.138 UNLOCK;
1253 root 1.133
1254     ENTER;
1255     SAVETMPS;
1256 root 1.23
1257 root 1.133 PUSHMARK (SP);
1258     PUTBACK;
1259     call_sv (get_sv ("Coro::idle", FALSE), G_DISCARD);
1260    
1261     FREETMPS;
1262     LEAVE;
1263     continue;
1264     }
1265 root 1.88
1266 root 1.133 ta->next = SvSTATE (next_sv);
1267 pcg 1.55
1268 root 1.133 /* cannot transfer to destroyed coros, skip and look for next */
1269     if (ta->next->flags & CF_DESTROYED)
1270     {
1271 root 1.138 UNLOCK;
1272 root 1.133 SvREFCNT_dec (next_sv);
1273 root 1.137 /* coro_nready is already taken care of by destroy */
1274 root 1.133 continue;
1275     }
1276 root 1.23
1277 root 1.137 --coro_nready;
1278     UNLOCK;
1279 root 1.133 break;
1280 root 1.88 }
1281    
1282 root 1.133 /* free this only after the transfer */
1283     prev_sv = SvRV (coro_current);
1284     ta->prev = SvSTATE (prev_sv);
1285 root 1.170 TRANSFER_CHECK (*ta);
1286 root 1.133 assert (ta->next->flags & CF_READY);
1287     ta->next->flags &= ~CF_READY;
1288 root 1.170 SvRV_set (coro_current, next_sv);
1289 root 1.23
1290 root 1.99 LOCK;
1291 root 1.146 free_coro_mortal (aTHX);
1292 root 1.133 coro_mortal = prev_sv;
1293 root 1.99 UNLOCK;
1294 root 1.92 }
1295    
1296     static void
1297 root 1.146 prepare_cede (pTHX_ struct transfer_args *ta)
1298 root 1.92 {
1299 root 1.117 api_ready (coro_current);
1300 root 1.146 prepare_schedule (aTHX_ ta);
1301 root 1.131 }
1302 pcg 1.55
1303 root 1.131 static int
1304 root 1.146 prepare_cede_notself (pTHX_ struct transfer_args *ta)
1305 root 1.131 {
1306     if (coro_nready)
1307     {
1308     SV *prev = SvRV (coro_current);
1309 root 1.146 prepare_schedule (aTHX_ ta);
1310 root 1.131 api_ready (prev);
1311     return 1;
1312     }
1313     else
1314     return 0;
1315 root 1.39 }
1316    
1317 root 1.92 static void
1318     api_schedule (void)
1319     {
1320 root 1.146 dTHX;
1321 root 1.92 struct transfer_args ta;
1322    
1323 root 1.146 prepare_schedule (aTHX_ &ta);
1324 root 1.92 TRANSFER (ta);
1325     }
1326 root 1.89
1327 root 1.131 static int
1328 root 1.39 api_cede (void)
1329     {
1330 root 1.146 dTHX;
1331 root 1.92 struct transfer_args ta;
1332 root 1.89
1333 root 1.146 prepare_cede (aTHX_ &ta);
1334 root 1.131
1335     if (ta.prev != ta.next)
1336     {
1337     TRANSFER (ta);
1338     return 1;
1339     }
1340     else
1341     return 0;
1342     }
1343    
1344     static int
1345     api_cede_notself (void)
1346     {
1347 root 1.146 dTHX;
1348 root 1.131 struct transfer_args ta;
1349    
1350 root 1.146 if (prepare_cede_notself (aTHX_ &ta))
1351 root 1.131 {
1352     TRANSFER (ta);
1353     return 1;
1354     }
1355     else
1356     return 0;
1357 root 1.23 }
1358    
1359 root 1.173 static void
1360 root 1.174 api_trace (SV *coro_sv, int flags)
1361 root 1.173 {
1362     dTHX;
1363 root 1.174 struct coro *coro = SvSTATE (coro_sv);
1364 root 1.173
1365     if (flags & CC_TRACE)
1366     {
1367     if (!coro->cctx)
1368     coro->cctx = cctx_new ();
1369     else if (!(coro->cctx->flags & CC_TRACE))
1370     croak ("cannot enable tracing on coroutine with custom stack");
1371    
1372     coro->cctx->flags |= CC_NOREUSE | (flags & (CC_TRACE | CC_TRACE_ALL));
1373     }
1374     else if (coro->cctx && coro->cctx->flags & CC_TRACE)
1375     {
1376     coro->cctx->flags &= ~(CC_TRACE | CC_TRACE_ALL);
1377    
1378     if (coro->flags & CF_RUNNING)
1379     PL_runops = RUNOPS_DEFAULT;
1380     else
1381     coro->runops = RUNOPS_DEFAULT;
1382     }
1383     }
1384    
1385     MODULE = Coro::State PACKAGE = Coro::State PREFIX = api_
1386 root 1.1
1387 root 1.87 PROTOTYPES: DISABLE
1388 root 1.1
1389 root 1.3 BOOT:
1390 root 1.88 {
1391 pcg 1.55 #ifdef USE_ITHREADS
1392     MUTEX_INIT (&coro_mutex);
1393     #endif
1394 root 1.78 BOOT_PAGESIZE;
1395 pcg 1.55
1396 root 1.14 coro_state_stash = gv_stashpv ("Coro::State", TRUE);
1397 root 1.7
1398 root 1.167 newCONSTSUB (coro_state_stash, "CC_TRACE" , newSViv (CC_TRACE));
1399     newCONSTSUB (coro_state_stash, "CC_TRACE_SUB" , newSViv (CC_TRACE_SUB));
1400     newCONSTSUB (coro_state_stash, "CC_TRACE_LINE", newSViv (CC_TRACE_LINE));
1401     newCONSTSUB (coro_state_stash, "CC_TRACE_ALL" , newSViv (CC_TRACE_ALL));
1402    
1403 root 1.122 newCONSTSUB (coro_state_stash, "SAVE_DEFAV", newSViv (CORO_SAVE_DEFAV));
1404     newCONSTSUB (coro_state_stash, "SAVE_DEFSV", newSViv (CORO_SAVE_DEFSV));
1405     newCONSTSUB (coro_state_stash, "SAVE_ERRSV", newSViv (CORO_SAVE_ERRSV));
1406     newCONSTSUB (coro_state_stash, "SAVE_IRSSV", newSViv (CORO_SAVE_IRSSV));
1407 root 1.147 newCONSTSUB (coro_state_stash, "SAVE_DEFFH", newSViv (CORO_SAVE_DEFFH));
1408     newCONSTSUB (coro_state_stash, "SAVE_DEF", newSViv (CORO_SAVE_DEF));
1409 root 1.122 newCONSTSUB (coro_state_stash, "SAVE_ALL", newSViv (CORO_SAVE_ALL));
1410 root 1.7
1411 root 1.12 main_mainstack = PL_mainstack;
1412 root 1.148 main_top_env = PL_top_env;
1413    
1414     while (main_top_env->je_prev)
1415     main_top_env = main_top_env->je_prev;
1416 root 1.23
1417 root 1.26 coroapi.ver = CORO_API_VERSION;
1418     coroapi.transfer = api_transfer;
1419 root 1.87
1420     assert (("PRIO_NORMAL must be 0", !PRIO_NORMAL));
1421 root 1.9 }
1422 root 1.3
1423 root 1.87 SV *
1424 root 1.86 new (char *klass, ...)
1425 root 1.1 CODE:
1426 root 1.86 {
1427 root 1.87 struct coro *coro;
1428     HV *hv;
1429 root 1.86 int i;
1430    
1431 pcg 1.47 Newz (0, coro, 1, struct coro);
1432 root 1.86 coro->args = newAV ();
1433 root 1.147 coro->save = CORO_SAVE_DEF;
1434 root 1.117 coro->flags = CF_NEW;
1435 root 1.86
1436 root 1.153 if (coro_first) coro_first->prev = coro;
1437     coro->next = coro_first;
1438     coro_first = coro;
1439 root 1.151
1440     coro->hv = hv = newHV ();
1441 root 1.89 sv_magicext ((SV *)hv, 0, PERL_MAGIC_ext, &coro_state_vtbl, (char *)coro, 0)->mg_flags |= MGf_DUP;
1442     RETVAL = sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
1443    
1444 root 1.86 for (i = 1; i < items; i++)
1445     av_push (coro->args, newSVsv (ST (i)));
1446     }
1447 root 1.1 OUTPUT:
1448     RETVAL
1449    
1450 root 1.122 int
1451     save (SV *coro, int new_save = -1)
1452     CODE:
1453     RETVAL = api_save (coro, new_save);
1454     OUTPUT:
1455     RETVAL
1456    
1457 root 1.147 int
1458     save_also (SV *coro_sv, int save_also)
1459     CODE:
1460     {
1461     struct coro *coro = SvSTATE (coro_sv);
1462     RETVAL = coro->save;
1463     coro->save |= save_also;
1464     }
1465     OUTPUT:
1466     RETVAL
1467    
1468 root 1.1 void
1469 root 1.94 _set_stacklevel (...)
1470 root 1.92 ALIAS:
1471 root 1.94 Coro::State::transfer = 1
1472     Coro::schedule = 2
1473     Coro::cede = 3
1474 root 1.131 Coro::cede_notself = 4
1475 root 1.1 CODE:
1476 root 1.87 {
1477 root 1.92 struct transfer_args ta;
1478 root 1.1
1479 root 1.92 switch (ix)
1480 root 1.1 {
1481 root 1.92 case 0:
1482 root 1.106 ta.prev = (struct coro *)INT2PTR (coro_cctx *, SvIV (ST (0)));
1483 root 1.94 ta.next = 0;
1484     break;
1485    
1486     case 1:
1487 root 1.122 if (items != 2)
1488     croak ("Coro::State::transfer (prev,next) expects two arguments, not %d", items);
1489 root 1.92
1490 root 1.146 prepare_transfer (aTHX_ &ta, ST (0), ST (1));
1491 root 1.92 break;
1492    
1493 root 1.94 case 2:
1494 root 1.146 prepare_schedule (aTHX_ &ta);
1495 root 1.92 break;
1496    
1497 root 1.94 case 3:
1498 root 1.146 prepare_cede (aTHX_ &ta);
1499 root 1.92 break;
1500 root 1.131
1501     case 4:
1502 root 1.146 if (!prepare_cede_notself (aTHX_ &ta))
1503 root 1.131 XSRETURN_EMPTY;
1504    
1505     break;
1506 root 1.92 }
1507 root 1.1
1508 root 1.131 BARRIER;
1509 root 1.92 TRANSFER (ta);
1510 root 1.135
1511     if (GIMME_V != G_VOID && ta.next != ta.prev)
1512     XSRETURN_YES;
1513 root 1.87 }
1514 root 1.1
1515 root 1.133 bool
1516     _destroy (SV *coro_sv)
1517 root 1.87 CODE:
1518 root 1.146 RETVAL = coro_state_destroy (aTHX_ SvSTATE (coro_sv));
1519 root 1.133 OUTPUT:
1520     RETVAL
1521 root 1.12
1522 root 1.7 void
1523 root 1.87 _exit (code)
1524 root 1.20 int code
1525     PROTOTYPE: $
1526     CODE:
1527     _exit (code);
1528 root 1.1
1529 root 1.106 int
1530 root 1.145 cctx_stacksize (int new_stacksize = 0)
1531     CODE:
1532     RETVAL = coro_stacksize;
1533     if (new_stacksize)
1534     coro_stacksize = new_stacksize;
1535     OUTPUT:
1536     RETVAL
1537    
1538     int
1539 root 1.106 cctx_count ()
1540     CODE:
1541     RETVAL = cctx_count;
1542     OUTPUT:
1543     RETVAL
1544    
1545     int
1546     cctx_idle ()
1547     CODE:
1548     RETVAL = cctx_idle;
1549     OUTPUT:
1550     RETVAL
1551    
1552 root 1.151 void
1553     list ()
1554     PPCODE:
1555     {
1556     struct coro *coro;
1557 root 1.153 for (coro = coro_first; coro; coro = coro->next)
1558 root 1.151 if (coro->hv)
1559     XPUSHs (sv_2mortal (newRV_inc ((SV *)coro->hv)));
1560     }
1561    
1562     void
1563 root 1.164 call (Coro::State coro, SV *coderef)
1564     ALIAS:
1565     eval = 1
1566 root 1.151 CODE:
1567     {
1568     if (coro->mainstack)
1569     {
1570     struct coro temp;
1571     Zero (&temp, 1, struct coro);
1572     temp.save = CORO_SAVE_ALL;
1573    
1574     if (!(coro->flags & CF_RUNNING))
1575     {
1576     save_perl (aTHX_ &temp);
1577     load_perl (aTHX_ coro);
1578     }
1579    
1580     {
1581     dSP;
1582     ENTER;
1583     SAVETMPS;
1584     PUSHMARK (SP);
1585     PUTBACK;
1586 root 1.164 if (ix)
1587     eval_sv (coderef, 0);
1588     else
1589     call_sv (coderef, G_KEEPERR | G_EVAL | G_VOID | G_DISCARD);
1590 root 1.151 SPAGAIN;
1591     FREETMPS;
1592     LEAVE;
1593     PUTBACK;
1594     }
1595    
1596     if (!(coro->flags & CF_RUNNING))
1597     {
1598     save_perl (aTHX_ coro);
1599     load_perl (aTHX_ &temp);
1600     }
1601     }
1602     }
1603 root 1.172
1604 root 1.151 SV *
1605 root 1.152 is_ready (Coro::State coro)
1606 root 1.151 PROTOTYPE: $
1607     ALIAS:
1608     is_ready = CF_READY
1609     is_running = CF_RUNNING
1610     is_new = CF_NEW
1611     is_destroyed = CF_DESTROYED
1612     CODE:
1613     RETVAL = boolSV (coro->flags & ix);
1614     OUTPUT:
1615     RETVAL
1616    
1617 root 1.165 void
1618 root 1.174 api_trace (SV *coro, int flags = CC_TRACE | CC_TRACE_SUB)
1619 root 1.165
1620 root 1.162 SV *
1621     has_stack (Coro::State coro)
1622     PROTOTYPE: $
1623     CODE:
1624     RETVAL = boolSV (!!coro->cctx);
1625     OUTPUT:
1626     RETVAL
1627    
1628 root 1.167 int
1629     is_traced (Coro::State coro)
1630     PROTOTYPE: $
1631     CODE:
1632     RETVAL = (coro->cctx ? coro->cctx->flags : 0) & CC_TRACE_ALL;
1633     OUTPUT:
1634     RETVAL
1635    
1636 root 1.152 IV
1637     rss (Coro::State coro)
1638     PROTOTYPE: $
1639 root 1.172 ALIAS:
1640     usecount = 1
1641 root 1.152 CODE:
1642 root 1.172 switch (ix)
1643     {
1644     case 0: RETVAL = coro_rss (aTHX_ coro); break;
1645     case 1: RETVAL = coro->usecount; break;
1646     }
1647 root 1.152 OUTPUT:
1648     RETVAL
1649    
1650 root 1.151
1651 root 1.21 MODULE = Coro::State PACKAGE = Coro
1652    
1653     BOOT:
1654     {
1655 root 1.22 int i;
1656    
1657 root 1.159 sv_pool_rss = get_sv ("Coro::POOL_RSS" , TRUE);
1658     sv_pool_size = get_sv ("Coro::POOL_SIZE" , TRUE);
1659     av_async_pool = get_av ("Coro::async_pool", TRUE);
1660    
1661     coro_current = get_sv ("Coro::current", FALSE);
1662     SvREADONLY_on (coro_current);
1663    
1664 root 1.88 coro_stash = gv_stashpv ("Coro", TRUE);
1665    
1666     newCONSTSUB (coro_stash, "PRIO_MAX", newSViv (PRIO_MAX));
1667     newCONSTSUB (coro_stash, "PRIO_HIGH", newSViv (PRIO_HIGH));
1668     newCONSTSUB (coro_stash, "PRIO_NORMAL", newSViv (PRIO_NORMAL));
1669     newCONSTSUB (coro_stash, "PRIO_LOW", newSViv (PRIO_LOW));
1670     newCONSTSUB (coro_stash, "PRIO_IDLE", newSViv (PRIO_IDLE));
1671     newCONSTSUB (coro_stash, "PRIO_MIN", newSViv (PRIO_MIN));
1672 root 1.22
1673     for (i = PRIO_MAX - PRIO_MIN + 1; i--; )
1674     coro_ready[i] = newAV ();
1675 root 1.26
1676     {
1677     SV *sv = perl_get_sv("Coro::API", 1);
1678    
1679 root 1.131 coroapi.schedule = api_schedule;
1680     coroapi.save = api_save;
1681     coroapi.cede = api_cede;
1682     coroapi.cede_notself = api_cede_notself;
1683     coroapi.ready = api_ready;
1684     coroapi.is_ready = api_is_ready;
1685     coroapi.nready = &coro_nready;
1686     coroapi.current = coro_current;
1687 root 1.26
1688     GCoroAPI = &coroapi;
1689 root 1.81 sv_setiv (sv, (IV)&coroapi);
1690     SvREADONLY_on (sv);
1691 root 1.26 }
1692 root 1.21 }
1693    
1694 root 1.122 void
1695     _set_current (SV *current)
1696     PROTOTYPE: $
1697     CODE:
1698     SvREFCNT_dec (SvRV (coro_current));
1699     SvRV_set (coro_current, SvREFCNT_inc (SvRV (current)));
1700    
1701 root 1.92 int
1702     prio (Coro::State coro, int newprio = 0)
1703     ALIAS:
1704     nice = 1
1705     CODE:
1706     {
1707     RETVAL = coro->prio;
1708    
1709     if (items > 1)
1710     {
1711     if (ix)
1712 root 1.129 newprio = coro->prio - newprio;
1713 root 1.92
1714     if (newprio < PRIO_MIN) newprio = PRIO_MIN;
1715     if (newprio > PRIO_MAX) newprio = PRIO_MAX;
1716    
1717     coro->prio = newprio;
1718     }
1719     }
1720 root 1.130 OUTPUT:
1721     RETVAL
1722 root 1.92
1723 root 1.111 SV *
1724 root 1.89 ready (SV *self)
1725 root 1.35 PROTOTYPE: $
1726 root 1.21 CODE:
1727 root 1.111 RETVAL = boolSV (api_ready (self));
1728     OUTPUT:
1729     RETVAL
1730    
1731 root 1.25 int
1732 root 1.87 nready (...)
1733 root 1.25 PROTOTYPE:
1734     CODE:
1735     RETVAL = coro_nready;
1736     OUTPUT:
1737     RETVAL
1738    
1739 root 1.159 # for async_pool speedup
1740 root 1.161 void
1741     _pool_1 (SV *cb)
1742 root 1.159 CODE:
1743     {
1744     int i, len;
1745     HV *hv = (HV *)SvRV (coro_current);
1746     AV *defav = GvAV (PL_defgv);
1747     SV *invoke = hv_delete (hv, "_invoke", sizeof ("_invoke") - 1, 0);
1748     AV *invoke_av;
1749    
1750     if (!invoke)
1751 root 1.161 croak ("\3terminate\2\n");
1752 root 1.159
1753     hv_store (hv, "desc", sizeof ("desc") - 1,
1754     newSVpvn ("[async_pool]", sizeof ("[async_pool]") - 1), 0);
1755    
1756     invoke_av = (AV *)SvRV (invoke);
1757     len = av_len (invoke_av);
1758    
1759 root 1.161 sv_setsv (cb, AvARRAY (invoke_av)[0]);
1760 root 1.159
1761     if (len > 0)
1762     {
1763 root 1.161 av_fill (defav, len - 1);
1764 root 1.159 for (i = 0; i < len; ++i)
1765     av_store (defav, i, SvREFCNT_inc (AvARRAY (invoke_av)[i + 1]));
1766     }
1767    
1768     SvREFCNT_dec (invoke);
1769     }
1770    
1771     void
1772 root 1.161 _pool_2 (SV *cb)
1773 root 1.159 CODE:
1774     {
1775     struct coro *coro = SvSTATE (coro_current);
1776    
1777 root 1.161 sv_setsv (cb, &PL_sv_undef);
1778    
1779 root 1.171 if (coro_rss (aTHX_ coro) > SvIV (sv_pool_rss)
1780 root 1.159 || av_len (av_async_pool) + 1 >= SvIV (sv_pool_size))
1781 root 1.161 croak ("\3terminate\2\n");
1782 root 1.159
1783     av_clear (GvAV (PL_defgv));
1784 root 1.163 hv_store ((HV *)SvRV (coro_current), "desc", sizeof ("desc") - 1,
1785 root 1.159 newSVpvn ("[async_pool idle]", sizeof ("[async_pool idle]") - 1), 0);
1786     coro->save = CORO_SAVE_DEF;
1787     coro->prio = 0;
1788 root 1.173
1789     if (coro->cctx && (coro->cctx->flags & CC_TRACE))
1790 root 1.174 api_trace (coro_current, 0);
1791 root 1.173
1792 root 1.159 av_push (av_async_pool, newSVsv (coro_current));
1793     }
1794    
1795    
1796 root 1.89 MODULE = Coro::State PACKAGE = Coro::AIO
1797    
1798 root 1.70 SV *
1799 root 1.89 _get_state ()
1800 root 1.70 CODE:
1801     {
1802 root 1.121 struct io_state *data;
1803    
1804 root 1.120 RETVAL = newSV (sizeof (struct io_state));
1805 root 1.121 data = (struct io_state *)SvPVX (RETVAL);
1806 root 1.120 SvCUR_set (RETVAL, sizeof (struct io_state));
1807     SvPOK_only (RETVAL);
1808    
1809     data->errorno = errno;
1810     data->laststype = PL_laststype;
1811     data->laststatval = PL_laststatval;
1812     data->statcache = PL_statcache;
1813 root 1.70 }
1814     OUTPUT:
1815     RETVAL
1816    
1817     void
1818 root 1.89 _set_state (char *data_)
1819 root 1.70 PROTOTYPE: $
1820     CODE:
1821     {
1822 root 1.120 struct io_state *data = (void *)data_;
1823 root 1.70
1824 root 1.120 errno = data->errorno;
1825     PL_laststype = data->laststype;
1826 root 1.70 PL_laststatval = data->laststatval;
1827 root 1.120 PL_statcache = data->statcache;
1828 root 1.70 }
1829 root 1.120