ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/State.xs
Revision: 1.272
Committed: Fri Nov 14 20:35:49 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.271: +198 -141 lines
Log Message:
*** empty log message ***

File Contents

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