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