ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/State.xs
(Generate patch)

Comparing Coro/Coro/State.xs (file contents):
Revision 1.405 by root, Sat Jun 11 13:01:26 2011 UTC vs.
Revision 1.423 by root, Mon Oct 8 23:13:36 2012 UTC

12#include "perl.h" 12#include "perl.h"
13#include "XSUB.h" 13#include "XSUB.h"
14#include "perliol.h" 14#include "perliol.h"
15 15
16#include "schmorp.h" 16#include "schmorp.h"
17
18#define ECB_NO_THREADS 1
17#include "ecb.h" 19#include "ecb.h"
18 20
19#include <stddef.h> 21#include <stddef.h>
20#include <stdio.h> 22#include <stdio.h>
21#include <errno.h> 23#include <errno.h>
33# define setjmp _setjmp /* deep magic */ 35# define setjmp _setjmp /* deep magic */
34#else 36#else
35# include <inttypes.h> /* most portable stdint.h */ 37# include <inttypes.h> /* most portable stdint.h */
36#endif 38#endif
37 39
38#ifdef HAVE_MMAP 40#if HAVE_MMAP
39# include <unistd.h> 41# include <unistd.h>
40# include <sys/mman.h> 42# include <sys/mman.h>
41# ifndef MAP_ANONYMOUS 43# ifndef MAP_ANONYMOUS
42# ifdef MAP_ANON 44# ifdef MAP_ANON
43# define MAP_ANONYMOUS MAP_ANON 45# define MAP_ANONYMOUS MAP_ANON
63#endif 65#endif
64 66
65/* the maximum number of idle cctx that will be pooled */ 67/* the maximum number of idle cctx that will be pooled */
66static int cctx_max_idle = 4; 68static int cctx_max_idle = 4;
67 69
70#if defined(DEBUGGING) && PERL_VERSION_ATLEAST(5,12,0)
71# define HAS_SCOPESTACK_NAME 1
72#endif
73
68#if !__i386 && !__x86_64 && !__powerpc && !__m68k && !__alpha && !__mips && !__sparc64 74#if !__i386 && !__x86_64 && !__powerpc && !__m68k && !__alpha && !__mips && !__sparc64
69# undef CORO_STACKGUARD 75# undef CORO_STACKGUARD
70#endif 76#endif
71 77
72#ifndef CORO_STACKGUARD 78#ifndef CORO_STACKGUARD
97# if CORO_PTHREAD 103# if CORO_PTHREAD
98static void *coro_thx; 104static void *coro_thx;
99# endif 105# endif
100#endif 106#endif
101 107
102/* used in state.h */
103#define VAR(name,type) VARx(name, PL_ ## name, type)
104
105#ifdef __linux 108#ifdef __linux
106# include <time.h> /* for timespec */ 109# include <time.h> /* for timespec */
107# include <syscall.h> /* for SYS_* */ 110# include <syscall.h> /* for SYS_* */
108# ifdef SYS_clock_gettime 111# ifdef SYS_clock_gettime
109# define coro_clock_gettime(id, ts) syscall (SYS_clock_gettime, (id), (ts)) 112# define coro_clock_gettime(id, ts) syscall (SYS_clock_gettime, (id), (ts))
177 void *sptr; 180 void *sptr;
178 size_t ssize; 181 size_t ssize;
179 182
180 /* cpu state */ 183 /* cpu state */
181 void *idle_sp; /* sp of top-level transfer/schedule/cede call */ 184 void *idle_sp; /* sp of top-level transfer/schedule/cede call */
185#ifndef NDEBUG
182 JMPENV *idle_te; /* same as idle_sp, but for top_env, TODO: remove once stable */ 186 JMPENV *idle_te; /* same as idle_sp, but for top_env */
187#endif
183 JMPENV *top_env; 188 JMPENV *top_env;
184 coro_context cctx; 189 coro_context cctx;
185 190
186 U32 gen; 191 U32 gen;
187#if CORO_USE_VALGRIND 192#if CORO_USE_VALGRIND
207}; 212};
208 213
209/* the structure where most of the perl state is stored, overlaid on the cxstack */ 214/* the structure where most of the perl state is stored, overlaid on the cxstack */
210typedef struct 215typedef struct
211{ 216{
212#define VARx(name,expr,type) type name; 217 #define VARx(name,expr,type) type name;
213# include "state.h" 218 #include "state.h"
214#undef VARx
215} perl_slots; 219} perl_slots;
216 220
217// how many context stack entries do we need for perl_slots 221/* how many context stack entries do we need for perl_slots */
218#define SLOT_COUNT ((sizeof (perl_slots) + sizeof (PERL_CONTEXT) - 1) / sizeof (PERL_CONTEXT)) 222#define SLOT_COUNT ((sizeof (perl_slots) + sizeof (PERL_CONTEXT) - 1) / sizeof (PERL_CONTEXT))
219 223
220/* this is a structure representing a perl-level coroutine */ 224/* this is a structure representing a perl-level coroutine */
221struct coro 225struct coro
222{ 226{
291#define coro_nready coroapi.nready 295#define coro_nready coroapi.nready
292 296
293/** JIT *********************************************************************/ 297/** JIT *********************************************************************/
294 298
295#if CORO_JIT 299#if CORO_JIT
300 /* APPLE doesn't have HAVE_MMAP though */
301 #define CORO_JIT_UNIXY (__linux || __FreeBSD__ || __OpenBSD__ || __NetBSD__ || __solaris || __APPLE__)
296 #ifndef CORO_JIT_TYPE 302 #ifndef CORO_JIT_TYPE
297 #if __linux && __amd64 303 #if __x86_64 && CORO_JIT_UNIXY
298 #define CORO_JIT_TYPE "amd64-unix" 304 #define CORO_JIT_TYPE "amd64-unix"
299 typedef void (*load_save_perl_slots_type)(perl_slots *); 305 #elif __i386 && CORO_JIT_UNIXY
300 #else 306 #define CORO_JIT_TYPE "x86-unix"
301 #undef CORO_JIT
302 #endif 307 #endif
303 #endif 308 #endif
304#endif 309#endif
305 310
311#if !defined(CORO_JIT_TYPE) || !HAVE_MMAP
312 #undef CORO_JIT
313#endif
314
306#if CORO_JIT 315#if CORO_JIT
307 316 typedef void (*load_save_perl_slots_type)(perl_slots *);
308static load_save_perl_slots_type load_perl_slots, save_perl_slots; 317 static load_save_perl_slots_type load_perl_slots, save_perl_slots;
309
310#endif 318#endif
311 319
312/** Coro::Select ************************************************************/ 320/** Coro::Select ************************************************************/
313 321
314static OP *(*coro_old_pp_sselect) (pTHX); 322static OP *(*coro_old_pp_sselect) (pTHX);
331 339
332/** time stuff **************************************************************/ 340/** time stuff **************************************************************/
333 341
334#ifdef HAS_GETTIMEOFDAY 342#ifdef HAS_GETTIMEOFDAY
335 343
336ECB_INLINE void 344ecb_inline void
337coro_u2time (pTHX_ UV ret[2]) 345coro_u2time (pTHX_ UV ret[2])
338{ 346{
339 struct timeval tv; 347 struct timeval tv;
340 gettimeofday (&tv, 0); 348 gettimeofday (&tv, 0);
341 349
342 ret [0] = tv.tv_sec; 350 ret [0] = tv.tv_sec;
343 ret [1] = tv.tv_usec; 351 ret [1] = tv.tv_usec;
344} 352}
345 353
346ECB_INLINE double 354ecb_inline double
347coro_nvtime () 355coro_nvtime (void)
348{ 356{
349 struct timeval tv; 357 struct timeval tv;
350 gettimeofday (&tv, 0); 358 gettimeofday (&tv, 0);
351 359
352 return tv.tv_sec + tv.tv_usec * 1e-6; 360 return tv.tv_sec + tv.tv_usec * 1e-6;
353} 361}
354 362
355ECB_INLINE void 363ecb_inline void
356time_init (pTHX) 364time_init (pTHX)
357{ 365{
358 nvtime = coro_nvtime; 366 nvtime = coro_nvtime;
359 u2time = coro_u2time; 367 u2time = coro_u2time;
360} 368}
361 369
362#else 370#else
363 371
364ECB_INLINE void 372ecb_inline void
365time_init (pTHX) 373time_init (pTHX)
366{ 374{
367 SV **svp; 375 SV **svp;
368 376
369 require_pv ("Time/HiRes.pm"); 377 require_pv ("Time/HiRes.pm");
411 get_hv (name, create); 419 get_hv (name, create);
412#endif 420#endif
413 return get_hv (name, create); 421 return get_hv (name, create);
414} 422}
415 423
416ECB_INLINE void 424ecb_inline void
417coro_times_update () 425coro_times_update (void)
418{ 426{
419#ifdef coro_clock_gettime 427#ifdef coro_clock_gettime
420 struct timespec ts; 428 struct timespec ts;
421 429
422 ts.tv_sec = ts.tv_nsec = 0; 430 ts.tv_sec = ts.tv_nsec = 0;
434 time_real [0] = tv [0]; 442 time_real [0] = tv [0];
435 time_real [1] = tv [1] * 1000; 443 time_real [1] = tv [1] * 1000;
436#endif 444#endif
437} 445}
438 446
439ECB_INLINE void 447ecb_inline void
440coro_times_add (struct coro *c) 448coro_times_add (struct coro *c)
441{ 449{
442 c->t_real [1] += time_real [1]; 450 c->t_real [1] += time_real [1];
443 if (c->t_real [1] > 1000000000) { c->t_real [1] -= 1000000000; ++c->t_real [0]; } 451 if (c->t_real [1] > 1000000000) { c->t_real [1] -= 1000000000; ++c->t_real [0]; }
444 c->t_real [0] += time_real [0]; 452 c->t_real [0] += time_real [0];
446 c->t_cpu [1] += time_cpu [1]; 454 c->t_cpu [1] += time_cpu [1];
447 if (c->t_cpu [1] > 1000000000) { c->t_cpu [1] -= 1000000000; ++c->t_cpu [0]; } 455 if (c->t_cpu [1] > 1000000000) { c->t_cpu [1] -= 1000000000; ++c->t_cpu [0]; }
448 c->t_cpu [0] += time_cpu [0]; 456 c->t_cpu [0] += time_cpu [0];
449} 457}
450 458
451ECB_INLINE void 459ecb_inline void
452coro_times_sub (struct coro *c) 460coro_times_sub (struct coro *c)
453{ 461{
454 if (c->t_real [1] < time_real [1]) { c->t_real [1] += 1000000000; --c->t_real [0]; } 462 if (c->t_real [1] < time_real [1]) { c->t_real [1] += 1000000000; --c->t_real [0]; }
455 c->t_real [1] -= time_real [1]; 463 c->t_real [1] -= time_real [1];
456 c->t_real [0] -= time_real [0]; 464 c->t_real [0] -= time_real [0];
477 : 0) 485 : 0)
478 486
479#define CORO_MAGIC_cv(cv) CORO_MAGIC (((SV *)(cv)), CORO_MAGIC_type_cv) 487#define CORO_MAGIC_cv(cv) CORO_MAGIC (((SV *)(cv)), CORO_MAGIC_type_cv)
480#define CORO_MAGIC_state(sv) CORO_MAGIC_NN (((SV *)(sv)), CORO_MAGIC_type_state) 488#define CORO_MAGIC_state(sv) CORO_MAGIC_NN (((SV *)(sv)), CORO_MAGIC_type_state)
481 489
482ECB_INLINE MAGIC * 490ecb_inline MAGIC *
483SvSTATEhv_p (pTHX_ SV *coro) 491SvSTATEhv_p (pTHX_ SV *coro)
484{ 492{
485 MAGIC *mg; 493 MAGIC *mg;
486 494
487 if (ecb_expect_true ( 495 if (ecb_expect_true (
492 return mg; 500 return mg;
493 501
494 return 0; 502 return 0;
495} 503}
496 504
497ECB_INLINE struct coro * 505ecb_inline struct coro *
498SvSTATE_ (pTHX_ SV *coro) 506SvSTATE_ (pTHX_ SV *coro)
499{ 507{
500 MAGIC *mg; 508 MAGIC *mg;
501 509
502 if (SvROK (coro)) 510 if (SvROK (coro))
516#define SvSTATE_current SvSTATE_hv (SvRV (coro_current)) 524#define SvSTATE_current SvSTATE_hv (SvRV (coro_current))
517 525
518/*****************************************************************************/ 526/*****************************************************************************/
519/* padlist management and caching */ 527/* padlist management and caching */
520 528
521ECB_INLINE AV * 529ecb_inline AV *
522coro_derive_padlist (pTHX_ CV *cv) 530coro_derive_padlist (pTHX_ CV *cv)
523{ 531{
524 AV *padlist = CvPADLIST (cv); 532 AV *padlist = CvPADLIST (cv);
525 AV *newpadlist, *newpad; 533 AV *newpadlist, *newpad;
526 534
538 av_store (newpadlist, 1, (SV *)newpad); 546 av_store (newpadlist, 1, (SV *)newpad);
539 547
540 return newpadlist; 548 return newpadlist;
541} 549}
542 550
543ECB_INLINE void 551ecb_inline void
544free_padlist (pTHX_ AV *padlist) 552free_padlist (pTHX_ AV *padlist)
545{ 553{
546 /* may be during global destruction */ 554 /* may be during global destruction */
547 if (!IN_DESTRUCT) 555 if (!IN_DESTRUCT)
548 { 556 {
591 0, 0, 0, 0, 599 0, 0, 0, 0,
592 coro_cv_free 600 coro_cv_free
593}; 601};
594 602
595/* the next two functions merely cache the padlists */ 603/* the next two functions merely cache the padlists */
596ECB_INLINE void 604ecb_inline void
597get_padlist (pTHX_ CV *cv) 605get_padlist (pTHX_ CV *cv)
598{ 606{
599 MAGIC *mg = CORO_MAGIC_cv (cv); 607 MAGIC *mg = CORO_MAGIC_cv (cv);
600 AV *av; 608 AV *av;
601 609
614 CvPADLIST (cv) = coro_derive_padlist (aTHX_ cv); 622 CvPADLIST (cv) = coro_derive_padlist (aTHX_ cv);
615#endif 623#endif
616 } 624 }
617} 625}
618 626
619ECB_INLINE void 627ecb_inline void
620put_padlist (pTHX_ CV *cv) 628put_padlist (pTHX_ CV *cv)
621{ 629{
622 MAGIC *mg = CORO_MAGIC_cv (cv); 630 MAGIC *mg = CORO_MAGIC_cv (cv);
623 AV *av; 631 AV *av;
624 632
633 AvARRAY (av)[++AvFILLp (av)] = (SV *)CvPADLIST (cv); 641 AvARRAY (av)[++AvFILLp (av)] = (SV *)CvPADLIST (cv);
634} 642}
635 643
636/** load & save, init *******************************************************/ 644/** load & save, init *******************************************************/
637 645
646ecb_inline void
647swap_sv (SV *a, SV *b)
648{
649 const U32 keep = SVs_PADSTALE | SVs_PADTMP | SVs_PADMY; /* keep these flags */
650 SV tmp;
651
652 /* swap sv_any */
653 SvANY (&tmp) = SvANY (a); SvANY (a) = SvANY (b); SvANY (b) = SvANY (&tmp);
654
655 /* swap sv_flags */
656 SvFLAGS (&tmp) = SvFLAGS (a);
657 SvFLAGS (a) = (SvFLAGS (a) & keep) | (SvFLAGS (b ) & ~keep);
658 SvFLAGS (b) = (SvFLAGS (b) & keep) | (SvFLAGS (&tmp) & ~keep);
659
660#if PERL_VERSION_ATLEAST (5,10,0)
661 /* perl 5.10 and later complicates this _quite_ a bit, but it also
662 * is much faster, so no quarrels here. alternatively, we could
663 * sv_upgrade to avoid this.
664 */
665 {
666 /* swap sv_u */
667 tmp.sv_u = a->sv_u; a->sv_u = b->sv_u; b->sv_u = tmp.sv_u;
668
669 /* if SvANY points to the head, we need to adjust the pointers,
670 * as the pointer for a still points to b, and maybe vice versa.
671 */
672 #define svany_in_head(type) \
673 (((1 << SVt_NULL) | (1 << SVt_BIND) | (1 << SVt_IV) | (1 << SVt_RV)) & (1 << (type)))
674
675 if (svany_in_head (SvTYPE (a)))
676 SvANY (a) = (void *)((PTRV)SvANY (a) - (PTRV)b + (PTRV)a);
677
678 if (svany_in_head (SvTYPE (b)))
679 SvANY (b) = (void *)((PTRV)SvANY (b) - (PTRV)a + (PTRV)b);
680 }
681#endif
682}
683
638/* swap sv heads, at least logically */ 684/* swap sv heads, at least logically */
639static void 685static void
640swap_svs (pTHX_ Coro__State c) 686swap_svs (pTHX_ Coro__State c)
641{ 687{
642 int i; 688 int i;
643 689
644 for (i = 0; i <= AvFILLp (c->swap_sv); ) 690 for (i = 0; i <= AvFILLp (c->swap_sv); i += 2)
645 { 691 swap_sv (AvARRAY (c->swap_sv)[i], AvARRAY (c->swap_sv)[i + 1]);
646 SV *a = AvARRAY (c->swap_sv)[i++];
647 SV *b = AvARRAY (c->swap_sv)[i++];
648
649 const U32 keep = SVs_PADSTALE | SVs_PADTMP | SVs_PADMY; /* keep these flags */
650 SV tmp;
651
652 /* swap sv_any */
653 SvANY (&tmp) = SvANY (a); SvANY (a) = SvANY (b); SvANY (b) = SvANY (&tmp);
654
655 /* swap sv_flags */
656 SvFLAGS (&tmp) = SvFLAGS (a);
657 SvFLAGS (a) = (SvFLAGS (a) & keep) | (SvFLAGS (b ) & ~keep);
658 SvFLAGS (b) = (SvFLAGS (b) & keep) | (SvFLAGS (&tmp) & ~keep);
659
660#if PERL_VERSION_ATLEAST (5,10,0)
661 /* perl 5.10 complicates this _quite_ a bit, but it also is
662 * much faster, so no quarrels here. alternatively, we could
663 * sv_upgrade to avoid this.
664 */
665 {
666 /* swap sv_u */
667 tmp.sv_u = a->sv_u; a->sv_u = b->sv_u; b->sv_u = tmp.sv_u;
668
669 /* if SvANY points to the head, we need to adjust the pointers,
670 * as the pointer for a still points to b, and maybe vice versa.
671 */
672 #define svany_in_head(type) \
673 (((1 << SVt_NULL) | (1 << SVt_BIND) | (1 << SVt_IV) | (1 << SVt_RV)) & (1 << (type)))
674
675 if (svany_in_head (SvTYPE (a)))
676 SvANY (a) = (void *)((PTRV)SvANY (a) - (PTRV)b + (PTRV)a);
677
678 if (svany_in_head (SvTYPE (b)))
679 SvANY (b) = (void *)((PTRV)SvANY (b) - (PTRV)a + (PTRV)b);
680 }
681#endif
682 }
683} 692}
684 693
685#define SWAP_SVS(coro) \ 694#define SWAP_SVS(coro) \
686 if (ecb_expect_false ((coro)->swap_sv)) \ 695 if (ecb_expect_false ((coro)->swap_sv)) \
687 swap_svs (aTHX_ (coro)) 696 swap_svs (aTHX_ (coro))
699 708
700#if CORO_JIT 709#if CORO_JIT
701 load_perl_slots (slot); 710 load_perl_slots (slot);
702#else 711#else
703 #define VARx(name,expr,type) expr = slot->name; 712 #define VARx(name,expr,type) expr = slot->name;
704 # include "state.h" 713 #include "state.h"
705 #undef VARx
706#endif 714#endif
707 715
708 { 716 {
709 dSP; 717 dSP;
710 718
813 821
814 PUTBACK; 822 PUTBACK;
815 } 823 }
816 824
817 /* allocate some space on the context stack for our purposes */ 825 /* allocate some space on the context stack for our purposes */
818 if (ecb_expect_false (cxstack_ix + SLOT_COUNT >= cxstack_max)) 826 if (ecb_expect_false (cxstack_ix + (int)SLOT_COUNT >= cxstack_max))
819 { 827 {
820 unsigned int i; 828 unsigned int i;
821 829
822 for (i = 0; i < SLOT_COUNT; ++i) 830 for (i = 0; i < SLOT_COUNT; ++i)
823 CXINC; 831 CXINC;
832 840
833#if CORO_JIT 841#if CORO_JIT
834 save_perl_slots (slot); 842 save_perl_slots (slot);
835#else 843#else
836 #define VARx(name,expr,type) slot->name = expr; 844 #define VARx(name,expr,type) slot->name = expr;
837 # include "state.h" 845 #include "state.h"
838 #undef VARx
839#endif 846#endif
840 } 847 }
841} 848}
842 849
843/* 850/*
875#endif 882#endif
876 883
877 New(54,PL_scopestack,8,I32); 884 New(54,PL_scopestack,8,I32);
878 PL_scopestack_ix = 0; 885 PL_scopestack_ix = 0;
879 PL_scopestack_max = 8; 886 PL_scopestack_max = 8;
887#if HAS_SCOPESTACK_NAME
888 New(54,PL_scopestack_name,8,const char*);
889#endif
880 890
881 New(54,PL_savestack,24,ANY); 891 New(54,PL_savestack,24,ANY);
882 PL_savestack_ix = 0; 892 PL_savestack_ix = 0;
883 PL_savestack_max = 24; 893 PL_savestack_max = 24;
884 894
912 } 922 }
913 923
914 Safefree (PL_tmps_stack); 924 Safefree (PL_tmps_stack);
915 Safefree (PL_markstack); 925 Safefree (PL_markstack);
916 Safefree (PL_scopestack); 926 Safefree (PL_scopestack);
927#if HAS_SCOPESTACK_NAME
928 Safefree (PL_scopestack_name);
929#endif
917 Safefree (PL_savestack); 930 Safefree (PL_savestack);
918#if !PERL_VERSION_ATLEAST (5,10,0) 931#if !PERL_VERSION_ATLEAST (5,10,0)
919 Safefree (PL_retstack); 932 Safefree (PL_retstack);
920#endif 933#endif
921} 934}
984 if (strEQ (s, "__DIE__" )) svp = &PL_diehook; 997 if (strEQ (s, "__DIE__" )) svp = &PL_diehook;
985 if (strEQ (s, "__WARN__")) svp = &PL_warnhook; 998 if (strEQ (s, "__WARN__")) svp = &PL_warnhook;
986 999
987 if (svp) 1000 if (svp)
988 { 1001 {
989 sv_setsv (sv, *svp ? *svp : &PL_sv_undef); 1002 SV *ssv;
1003
1004 if (!*svp)
1005 ssv = &PL_sv_undef;
1006 else if (SvTYPE (*svp) == SVt_PVCV) /* perlio directly stores a CV in warnhook. ugh. */
1007 ssv = sv_2mortal (newRV_inc (*svp));
1008 else
1009 ssv = *svp;
1010
1011 sv_setsv (sv, ssv);
990 return 0; 1012 return 0;
991 } 1013 }
992 } 1014 }
993 1015
994 return orig_sigelem_get ? orig_sigelem_get (aTHX_ sv, mg) : 0; 1016 return orig_sigelem_get ? orig_sigelem_get (aTHX_ sv, mg) : 0;
1186 /* restore swapped sv's */ 1208 /* restore swapped sv's */
1187 SWAP_SVS (coro); 1209 SWAP_SVS (coro);
1188 1210
1189 coro_destruct_stacks (aTHX); 1211 coro_destruct_stacks (aTHX);
1190 1212
1191 // now save some sv's to be free'd later 1213 /* now save some sv's to be free'd later */
1192 svf [0] = GvSV (PL_defgv); 1214 svf [0] = GvSV (PL_defgv);
1193 svf [1] = (SV *)GvAV (PL_defgv); 1215 svf [1] = (SV *)GvAV (PL_defgv);
1194 svf [2] = GvSV (PL_errgv); 1216 svf [2] = GvSV (PL_errgv);
1195 svf [3] = (SV *)PL_defoutgv; 1217 svf [3] = (SV *)PL_defoutgv;
1196 svf [4] = PL_rs; 1218 svf [4] = PL_rs;
1216 SvREFCNT_dec (coro->invoke_cb); 1238 SvREFCNT_dec (coro->invoke_cb);
1217 SvREFCNT_dec (coro->invoke_av); 1239 SvREFCNT_dec (coro->invoke_av);
1218 } 1240 }
1219} 1241}
1220 1242
1221ECB_INLINE void 1243ecb_inline void
1222free_coro_mortal (pTHX) 1244free_coro_mortal (pTHX)
1223{ 1245{
1224 if (ecb_expect_true (coro_mortal)) 1246 if (ecb_expect_true (coro_mortal))
1225 { 1247 {
1226 SvREFCNT_dec ((SV *)coro_mortal); 1248 SvREFCNT_dec ((SV *)coro_mortal);
1385 slf_frame.prepare = slf_prepare_set_stacklevel; 1407 slf_frame.prepare = slf_prepare_set_stacklevel;
1386 slf_frame.check = slf_check_set_stacklevel; 1408 slf_frame.check = slf_check_set_stacklevel;
1387} 1409}
1388 1410
1389/* the tail of transfer: execute stuff we can only do after a transfer */ 1411/* the tail of transfer: execute stuff we can only do after a transfer */
1390ECB_INLINE void 1412ecb_inline void
1391transfer_tail (pTHX) 1413transfer_tail (pTHX)
1392{ 1414{
1393 free_coro_mortal (aTHX); 1415 free_coro_mortal (aTHX);
1416}
1417
1418/* try to exit the same way perl's main function would do */
1419/* we do not bother resetting the environment or other things *7
1420/* that are not, uhm, essential */
1421/* this obviously also doesn't work when perl is embedded */
1422static void ecb_noinline ecb_cold
1423perlish_exit (pTHX)
1424{
1425 int exitstatus = perl_destruct (PL_curinterp);
1426 perl_free (PL_curinterp);
1427 exit (exitstatus);
1394} 1428}
1395 1429
1396/* 1430/*
1397 * this is a _very_ stripped down perl interpreter ;) 1431 * this is a _very_ stripped down perl interpreter ;)
1398 */ 1432 */
1427 */ 1461 */
1428 1462
1429 /* 1463 /*
1430 * If perl-run returns we assume exit() was being called or the coro 1464 * If perl-run returns we assume exit() was being called or the coro
1431 * fell off the end, which seems to be the only valid (non-bug) 1465 * fell off the end, which seems to be the only valid (non-bug)
1432 * reason for perl_run to return. We try to exit by jumping to the 1466 * reason for perl_run to return. We try to mimic whatever perl is normally
1433 * bootstrap-time "top" top_env, as we cannot restore the "main" 1467 * doing in that case. YMMV.
1434 * coroutine as Coro has no such concept.
1435 * This actually isn't valid with the pthread backend, but OSes requiring
1436 * that backend are too broken to do it in a standards-compliant way.
1437 */ 1468 */
1438 PL_top_env = main_top_env; 1469 perlish_exit (aTHX);
1439 JMPENV_JUMP (2); /* I do not feel well about the hardcoded 2 at all */
1440 } 1470 }
1441} 1471}
1442 1472
1443static coro_cctx * 1473static coro_cctx *
1444cctx_new () 1474cctx_new (void)
1445{ 1475{
1446 coro_cctx *cctx; 1476 coro_cctx *cctx;
1447 1477
1448 ++cctx_count; 1478 ++cctx_count;
1449 New (0, cctx, 1, coro_cctx); 1479 New (0, cctx, 1, coro_cctx);
1455 return cctx; 1485 return cctx;
1456} 1486}
1457 1487
1458/* create a new cctx only suitable as source */ 1488/* create a new cctx only suitable as source */
1459static coro_cctx * 1489static coro_cctx *
1460cctx_new_empty () 1490cctx_new_empty (void)
1461{ 1491{
1462 coro_cctx *cctx = cctx_new (); 1492 coro_cctx *cctx = cctx_new ();
1463 1493
1464 cctx->sptr = 0; 1494 cctx->sptr = 0;
1465 coro_create (&cctx->cctx, 0, 0, 0, 0); 1495 coro_create (&cctx->cctx, 0, 0, 0, 0);
1467 return cctx; 1497 return cctx;
1468} 1498}
1469 1499
1470/* create a new cctx suitable as destination/running a perl interpreter */ 1500/* create a new cctx suitable as destination/running a perl interpreter */
1471static coro_cctx * 1501static coro_cctx *
1472cctx_new_run () 1502cctx_new_run (void)
1473{ 1503{
1474 coro_cctx *cctx = cctx_new (); 1504 coro_cctx *cctx = cctx_new ();
1475 void *stack_start; 1505 void *stack_start;
1476 size_t stack_size; 1506 size_t stack_size;
1477 1507
1478#if HAVE_MMAP 1508#if HAVE_MMAP
1479 cctx->ssize = ((cctx_stacksize * sizeof (long) + PAGESIZE - 1) / PAGESIZE + CORO_STACKGUARD) * PAGESIZE; 1509 cctx->ssize = ((cctx_stacksize * sizeof (long) + PAGESIZE - 1) / PAGESIZE + CORO_STACKGUARD) * PAGESIZE;
1480 /* mmap supposedly does allocate-on-write for us */ 1510 /* mmap supposedly does allocate-on-write for us */
1481 cctx->sptr = mmap (0, cctx->ssize, PROT_EXEC|PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 0, 0); 1511 cctx->sptr = mmap (0, cctx->ssize, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANONYMOUS, -1, 0);
1482 1512
1483 if (cctx->sptr != (void *)-1) 1513 if (cctx->sptr != (void *)-1)
1484 { 1514 {
1485 #if CORO_STACKGUARD 1515 #if CORO_STACKGUARD
1486 mprotect (cctx->sptr, CORO_STACKGUARD * PAGESIZE, PROT_NONE); 1516 mprotect (cctx->sptr, CORO_STACKGUARD * PAGESIZE, PROT_NONE);
1788 TRANSFER (ta, 1); 1818 TRANSFER (ta, 1);
1789} 1819}
1790 1820
1791/** Coro ********************************************************************/ 1821/** Coro ********************************************************************/
1792 1822
1793ECB_INLINE void 1823ecb_inline void
1794coro_enq (pTHX_ struct coro *coro) 1824coro_enq (pTHX_ struct coro *coro)
1795{ 1825{
1796 struct coro **ready = coro_ready [coro->prio - CORO_PRIO_MIN]; 1826 struct coro **ready = coro_ready [coro->prio - CORO_PRIO_MIN];
1797 1827
1798 SvREFCNT_inc_NN (coro->hv); 1828 SvREFCNT_inc_NN (coro->hv);
1800 coro->next_ready = 0; 1830 coro->next_ready = 0;
1801 *(ready [0] ? &ready [1]->next_ready : &ready [0]) = coro; 1831 *(ready [0] ? &ready [1]->next_ready : &ready [0]) = coro;
1802 ready [1] = coro; 1832 ready [1] = coro;
1803} 1833}
1804 1834
1805ECB_INLINE struct coro * 1835ecb_inline struct coro *
1806coro_deq (pTHX) 1836coro_deq (pTHX)
1807{ 1837{
1808 int prio; 1838 int prio;
1809 1839
1810 for (prio = CORO_PRIO_MAX - CORO_PRIO_MIN + 1; --prio >= 0; ) 1840 for (prio = CORO_PRIO_MAX - CORO_PRIO_MIN + 1; --prio >= 0; )
1863{ 1893{
1864 return !!(SvSTATE (coro_sv)->flags & CF_READY); 1894 return !!(SvSTATE (coro_sv)->flags & CF_READY);
1865} 1895}
1866 1896
1867/* expects to own a reference to next->hv */ 1897/* expects to own a reference to next->hv */
1868ECB_INLINE void 1898ecb_inline void
1869prepare_schedule_to (pTHX_ struct coro_transfer_args *ta, struct coro *next) 1899prepare_schedule_to (pTHX_ struct coro_transfer_args *ta, struct coro *next)
1870{ 1900{
1871 SV *prev_sv = SvRV (coro_current); 1901 SV *prev_sv = SvRV (coro_current);
1872 1902
1873 ta->prev = SvSTATE_hv (prev_sv); 1903 ta->prev = SvSTATE_hv (prev_sv);
1932 } 1962 }
1933 } 1963 }
1934 } 1964 }
1935} 1965}
1936 1966
1937ECB_INLINE void 1967ecb_inline void
1938prepare_cede (pTHX_ struct coro_transfer_args *ta) 1968prepare_cede (pTHX_ struct coro_transfer_args *ta)
1939{ 1969{
1940 api_ready (aTHX_ coro_current); 1970 api_ready (aTHX_ coro_current);
1941 prepare_schedule (aTHX_ ta); 1971 prepare_schedule (aTHX_ ta);
1942} 1972}
1943 1973
1944ECB_INLINE void 1974ecb_inline void
1945prepare_cede_notself (pTHX_ struct coro_transfer_args *ta) 1975prepare_cede_notself (pTHX_ struct coro_transfer_args *ta)
1946{ 1976{
1947 SV *prev = SvRV (coro_current); 1977 SV *prev = SvRV (coro_current);
1948 1978
1949 if (coro_nready) 1979 if (coro_nready)
2949 { 2979 {
2950 int i; 2980 int i;
2951 /* if we were woken up but can't down, we look through the whole */ 2981 /* if we were woken up but can't down, we look through the whole */
2952 /* waiters list and only add us if we aren't in there already */ 2982 /* waiters list and only add us if we aren't in there already */
2953 /* this avoids some degenerate memory usage cases */ 2983 /* this avoids some degenerate memory usage cases */
2954 for (i = AvFILLp (av); i > 0; --i) // i > 0 is not an off-by-one bug 2984 for (i = AvFILLp (av); i > 0; --i) /* i > 0 is not an off-by-one bug */
2955 if (AvARRAY (av)[i] == coro_hv) 2985 if (AvARRAY (av)[i] == coro_hv)
2956 return 1; 2986 return 1;
2957 2987
2958 av_push (av, SvREFCNT_inc (coro_hv)); 2988 av_push (av, SvREFCNT_inc (coro_hv));
2959 return 1; 2989 return 1;
3339#endif 3369#endif
3340 3370
3341#if CORO_JIT 3371#if CORO_JIT
3342 3372
3343static void ecb_noinline ecb_cold 3373static void ecb_noinline ecb_cold
3344pushav_3uv (pTHX_ UV a, UV b, UV c) 3374pushav_4uv (pTHX_ UV a, UV b, UV c, UV d)
3345{ 3375{
3346 dSP; 3376 dSP;
3347 AV *av = newAV (); 3377 AV *av = newAV ();
3348 3378
3379 av_store (av, 3, newSVuv (d));
3349 av_store (av, 2, newSVuv (c)); 3380 av_store (av, 2, newSVuv (c));
3350 av_store (av, 1, newSVuv (b)); 3381 av_store (av, 1, newSVuv (b));
3351 av_store (av, 0, newSVuv (a)); 3382 av_store (av, 0, newSVuv (a));
3352 3383
3353 XPUSHs (sv_2mortal (newRV_noinc ((SV *)av))); 3384 XPUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
3360{ 3391{
3361 dSP; 3392 dSP;
3362 SV *load, *save; 3393 SV *load, *save;
3363 char *map_base; 3394 char *map_base;
3364 char *load_ptr, *save_ptr; 3395 char *load_ptr, *save_ptr;
3365 STRLEN load_len, save_len; 3396 STRLEN load_len, save_len, map_len;
3366 int count; 3397 int count;
3367 3398
3399 eval_pv ("require 'Coro/jit-" CORO_JIT_TYPE ".pl'", 1);
3400
3368 PUSHMARK (SP); 3401 PUSHMARK (SP);
3369 PUTBACK;
3370#define VARx(name,expr,type) pushav_3uv (aTHX_ (UV)&(expr), offsetof (perl_slots, name), sizeof (type)); 3402 #define VARx(name,expr,type) pushav_4uv (aTHX_ (UV)&(expr), sizeof (expr), offsetof (perl_slots, name), sizeof (type));
3371# include "state.h" 3403 #include "state.h"
3372#undef VARx
3373 count = call_pv ("Coro::State::_jit", G_ARRAY); 3404 count = call_pv ("Coro::State::_jit", G_ARRAY);
3374 SPAGAIN; 3405 SPAGAIN;
3375 3406
3376 save = POPs; save_ptr = SvPVbyte (save, save_len); 3407 save = POPs; save_ptr = SvPVbyte (save, save_len);
3377 load = POPs; load_ptr = SvPVbyte (load, load_len); 3408 load = POPs; load_ptr = SvPVbyte (load, load_len);
3378 3409
3410 map_len = load_len + save_len + 16;
3411
3379 map_base = mmap (0, load_len + save_len + 16, PROT_EXEC | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); 3412 map_base = mmap (0, map_len, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
3380 3413
3381 assert (("Coro: unable mmap jit code page, cannot continue.", map_base != (char *)MAP_FAILED)); 3414 assert (("Coro: unable to mmap jit code page, cannot continue.", map_base != (char *)MAP_FAILED));
3382 3415
3383 load_perl_slots = (load_save_perl_slots_type)map_base; 3416 load_perl_slots = (load_save_perl_slots_type)map_base;
3384 memcpy (map_base, load_ptr, load_len); 3417 memcpy (map_base, load_ptr, load_len);
3385 3418
3386 map_base += (load_len + 15) & ~15; 3419 map_base += (load_len + 15) & ~15;
3387 3420
3388 save_perl_slots = (load_save_perl_slots_type)map_base; 3421 save_perl_slots = (load_save_perl_slots_type)map_base;
3389 memcpy (map_base, save_ptr, save_len); 3422 memcpy (map_base, save_ptr, save_len);
3423
3424 /* we are good citizens and try to make the page read-only, so the evil evil */
3425 /* hackers might have it a bit more difficult */
3426 mprotect (map_base, map_len, PROT_READ | PROT_EXEC);
3427
3428 PUTBACK;
3429 eval_pv ("undef &Coro::State::_jit", 1);
3390} 3430}
3391 3431
3392#endif 3432#endif
3393 3433
3394MODULE = Coro::State PACKAGE = Coro::State PREFIX = api_ 3434MODULE = Coro::State PACKAGE = Coro::State PREFIX = api_
3462 time_init (aTHX); 3502 time_init (aTHX);
3463 3503
3464 assert (("PRIO_NORMAL must be 0", !CORO_PRIO_NORMAL)); 3504 assert (("PRIO_NORMAL must be 0", !CORO_PRIO_NORMAL));
3465#if CORO_JIT 3505#if CORO_JIT
3466 PUTBACK; 3506 PUTBACK;
3467 require_pv ("Coro/jit-" CORO_JIT_TYPE ".pl");
3468 jit_init (aTHX); 3507 jit_init (aTHX);
3469 perl_eval_pv ("undef &Coro::State::_jit", 1);
3470 SPAGAIN; 3508 SPAGAIN;
3471#endif 3509#endif
3472} 3510}
3473 3511
3474SV * 3512SV *
3627 RETVAL = boolSV (coro->flags & ix); 3665 RETVAL = boolSV (coro->flags & ix);
3628 OUTPUT: 3666 OUTPUT:
3629 RETVAL 3667 RETVAL
3630 3668
3631void 3669void
3632throw (Coro::State self, SV *exception = &PL_sv_undef) 3670throw (SV *self, SV *exception = &PL_sv_undef)
3633 PROTOTYPE: $;$ 3671 PROTOTYPE: $;$
3634 CODE: 3672 CODE:
3635{ 3673{
3674 struct coro *coro = SvSTATE (self);
3636 struct coro *current = SvSTATE_current; 3675 struct coro *current = SvSTATE_current;
3637 SV **exceptionp = self == current ? &CORO_THROW : &self->except; 3676 SV **exceptionp = coro == current ? &CORO_THROW : &coro->except;
3638 SvREFCNT_dec (*exceptionp); 3677 SvREFCNT_dec (*exceptionp);
3639 SvGETMAGIC (exception); 3678 SvGETMAGIC (exception);
3640 *exceptionp = SvOK (exception) ? newSVsv (exception) : 0; 3679 *exceptionp = SvOK (exception) ? newSVsv (exception) : 0;
3680
3681 api_ready (aTHX_ self);
3641} 3682}
3642 3683
3643void 3684void
3644api_trace (SV *coro, int flags = CC_TRACE | CC_TRACE_SUB) 3685api_trace (SV *coro, int flags = CC_TRACE | CC_TRACE_SUB)
3645 PROTOTYPE: $;$ 3686 PROTOTYPE: $;$
4126} 4167}
4127 4168
4128MODULE = Coro::State PACKAGE = Coro::SemaphoreSet 4169MODULE = Coro::State PACKAGE = Coro::SemaphoreSet
4129 4170
4130void 4171void
4131_may_delete (SV *sem, int count, int extra_refs) 4172_may_delete (SV *sem, int count, unsigned int extra_refs)
4132 PPCODE: 4173 PPCODE:
4133{ 4174{
4134 AV *av = (AV *)SvRV (sem); 4175 AV *av = (AV *)SvRV (sem);
4135 4176
4136 if (SvREFCNT ((SV *)av) == 1 + extra_refs 4177 if (SvREFCNT ((SV *)av) == 1 + extra_refs

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines