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