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.25 by root, Wed Aug 15 03:24:07 2001 UTC vs.
Revision 1.30 by root, Sat Aug 25 22:19:05 2001 UTC

16# undef HAVE_MMAP 16# undef HAVE_MMAP
17# endif 17# endif
18# endif 18# endif
19#endif 19#endif
20 20
21#define MAY_FLUSH /* increases codesize */ 21#define MAY_FLUSH /* increases codesize and is rarely used */
22 22
23#define SUB_INIT "Coro::State::initialize" 23#define SUB_INIT "Coro::State::initialize"
24#define UCORO_STATE "_coro_state" 24#define UCORO_STATE "_coro_state"
25 25
26/* The next macro should delcare a variable stacklevel that contains and approximation 26/* The next macro should declare a variable stacklevel that contains and approximation
27 * to the current C stack pointer. Its property is that it changes with each call 27 * to the current C stack pointer. Its property is that it changes with each call
28 * and should be unique. */ 28 * and should be unique. */
29#define dSTACKLEVEL void *stacklevel = &stacklevel 29#define dSTACKLEVEL void *stacklevel = &stacklevel
30 30
31#define labs(l) ((l) >= 0 ? (l) : -(l)) 31#define labs(l) ((l) >= 0 ? (l) : -(l))
195 195
196 return newpadlist; 196 return newpadlist;
197} 197}
198 198
199#ifdef MAY_FLUSH 199#ifdef MAY_FLUSH
200STATIC AV * 200STATIC void
201free_padlist (AV *padlist) 201free_padlist (AV *padlist)
202{ 202{
203 /* may be during global destruction */ 203 /* may be during global destruction */
204 if (SvREFCNT(padlist)) 204 if (SvREFCNT(padlist))
205 { 205 {
270#endif 270#endif
271 271
272#define SB do { 272#define SB do {
273#define SE } while (0) 273#define SE } while (0)
274 274
275#define LOAD(state) SB load_state(aTHX_ (state)); SPAGAIN; SE 275#define LOAD(state) load_state(aTHX_ (state));
276#define SAVE(state,flags) SB PUTBACK; save_state(aTHX_ (state),(flags)); SE 276#define SAVE(state,flags) save_state(aTHX_ (state),(flags));
277 277
278#define REPLACE_SV(sv,val) SB SvREFCNT_dec(sv); (sv) = (val); SE 278#define REPLACE_SV(sv,val) SB SvREFCNT_dec(sv); (sv) = (val); SE
279 279
280static void 280static void
281load_state(pTHX_ Coro__State c) 281load_state(pTHX_ Coro__State c)
355 355
356 PUSHs (Nullsv); 356 PUSHs (Nullsv);
357 /* this loop was inspired by pp_caller */ 357 /* this loop was inspired by pp_caller */
358 for (;;) 358 for (;;)
359 { 359 {
360 do 360 while (cxix >= 0)
361 { 361 {
362 PERL_CONTEXT *cx = &ccstk[cxix--]; 362 PERL_CONTEXT *cx = &ccstk[cxix--];
363 363
364 if (CxTYPE(cx) == CXt_SUB) 364 if (CxTYPE(cx) == CXt_SUB)
365 { 365 {
391 /* I never used formats, so how should I know how these are implemented? */ 391 /* I never used formats, so how should I know how these are implemented? */
392 /* my bold guess is as a simple, plain sub... */ 392 /* my bold guess is as a simple, plain sub... */
393 croak ("CXt_FORMAT not yet handled. Don't switch coroutines from within formats"); 393 croak ("CXt_FORMAT not yet handled. Don't switch coroutines from within formats");
394 } 394 }
395 } 395 }
396 while (cxix >= 0);
397 396
398 if (top_si->si_type == PERLSI_MAIN) 397 if (top_si->si_type == PERLSI_MAIN)
399 break; 398 break;
400 399
401 top_si = top_si->si_prev; 400 top_si = top_si->si_prev;
407 } 406 }
408 407
409 c->defav = flags & TRANSFER_SAVE_DEFAV ? (AV *)SvREFCNT_inc (GvAV (PL_defgv)) : 0; 408 c->defav = flags & TRANSFER_SAVE_DEFAV ? (AV *)SvREFCNT_inc (GvAV (PL_defgv)) : 0;
410 c->defsv = flags & TRANSFER_SAVE_DEFSV ? SvREFCNT_inc (DEFSV) : 0; 409 c->defsv = flags & TRANSFER_SAVE_DEFSV ? SvREFCNT_inc (DEFSV) : 0;
411 c->errsv = flags & TRANSFER_SAVE_ERRSV ? SvREFCNT_inc (ERRSV) : 0; 410 c->errsv = flags & TRANSFER_SAVE_ERRSV ? SvREFCNT_inc (ERRSV) : 0;
412
413 /* I have not the slightest idea of why av_reify is necessary */
414 /* but if it's missing the defav contents magically get replaced sometimes */
415 if (c->defav)
416 av_reify (c->defav);
417 411
418 c->dowarn = PL_dowarn; 412 c->dowarn = PL_dowarn;
419 c->in_eval = PL_in_eval; 413 c->in_eval = PL_in_eval;
420 414
421 c->curstackinfo = PL_curstackinfo; 415 c->curstackinfo = PL_curstackinfo;
661} 655}
662 656
663STATIC void 657STATIC void
664transfer(pTHX_ struct coro *prev, struct coro *next, int flags) 658transfer(pTHX_ struct coro *prev, struct coro *next, int flags)
665{ 659{
666 dSP;
667 dSTACKLEVEL; 660 dSTACKLEVEL;
661 static struct coro *xnext;
668 662
669 if (prev != next) 663 if (prev != next)
670 { 664 {
665 xnext = next;
666
671 if (next->mainstack) 667 if (next->mainstack)
672 { 668 {
673 SAVE (prev, flags); 669 SAVE (prev, flags);
674 LOAD (next); 670 LOAD (next);
675 671
698 continue_coro, (void *)next, 694 continue_coro, (void *)next,
699 next->stack->sptr, labs (next->stack->ssize)); 695 next->stack->sptr, labs (next->stack->ssize));
700 } 696 }
701 697
702 coro_transfer (&(prev->stack->cctx), &(next->stack->cctx)); 698 coro_transfer (&(prev->stack->cctx), &(next->stack->cctx));
699 /* don't add any code here */
703 } 700 }
704 701
705 } 702 }
706 else if (next->tmps_ix == -2) 703 else if (next->tmps_ix == -2)
707 croak ("tried to transfer to running coroutine"); 704 croak ("tried to transfer to running coroutine");
728 allocate_stack (next, 1); 725 allocate_stack (next, 1);
729 coro_create (&(next->stack->cctx), 726 coro_create (&(next->stack->cctx),
730 setup_coro, (void *)next, 727 setup_coro, (void *)next,
731 next->stack->sptr, labs (next->stack->ssize)); 728 next->stack->sptr, labs (next->stack->ssize));
732 coro_transfer (&(prev->stack->cctx), &(next->stack->cctx)); 729 coro_transfer (&(prev->stack->cctx), &(next->stack->cctx));
730 /* don't add any code here */
733 } 731 }
734 } 732 }
735 else 733 else
736 setup_coro (next); 734 setup_coro (next);
737 } 735 }
738 } 736 }
739 737
738 /*
739 * xnext is now either prev or next, depending on wether
740 * we switched the c stack or not. that's why i use a global
741 * variable, that should become thread-specific at one point.
742 */
740 next->cursp = stacklevel; 743 xnext->cursp = stacklevel;
741} 744}
742 745
743static struct coro * 746static struct coro *
744sv_to_coro (SV *arg, const char *funcname, const char *varname) 747sv_to_coro (SV *arg, const char *funcname, const char *varname)
745{ 748{
754 } 757 }
755 758
756 /* must also be changed inside Coro::Cont::yield */ 759 /* must also be changed inside Coro::Cont::yield */
757 if (SvROK(arg) && SvSTASH(SvRV(arg)) == coro_state_stash) 760 if (SvROK(arg) && SvSTASH(SvRV(arg)) == coro_state_stash)
758 return (struct coro *) SvIV((SV*)SvRV(arg)); 761 return (struct coro *) SvIV((SV*)SvRV(arg));
759 else 762
760 croak ("%s() -- %s is not (and contains not) a Coro::State object", funcname, varname); 763 croak ("%s() -- %s is not (and contains not) a Coro::State object", funcname, varname);
764 /*NORETURN*/
761} 765}
762 766
763static void 767static void
764api_transfer(pTHX_ SV *prev, SV *next, int flags) 768api_transfer(pTHX_ SV *prev, SV *next, int flags)
765{ 769{
770 transfer(aTHX_
766 transfer(aTHX_ sv_to_coro (prev, "Coro::transfer", "prev"), 771 sv_to_coro (prev, "Coro::transfer", "prev"),
767 sv_to_coro (next, "Coro::transfer", "next"), 772 sv_to_coro (next, "Coro::transfer", "next"),
768 flags); 773 flags);
769} 774}
770 775
771/** Coro ********************************************************************/ 776/** Coro ********************************************************************/
772 777
773#define PRIO_MAX 3 778#define PRIO_MAX 3
846 851
847 if (!next) 852 if (!next)
848 next = SvREFCNT_inc (GvSV (coro_idle)); 853 next = SvREFCNT_inc (GvSV (coro_idle));
849 854
850 GvSV (coro_current) = SvREFCNT_inc (next); 855 GvSV (coro_current) = SvREFCNT_inc (next);
856 transfer (aTHX_
851 transfer (sv_to_coro (prev, "Coro::schedule", "current coroutine"), 857 sv_to_coro (prev, "Coro::schedule", "current coroutine"),
852 sv_to_coro (next, "Coro::schedule", "next coroutine"), 858 sv_to_coro (next, "Coro::schedule", "next coroutine"),
853 TRANSFER_SAVE_ALL | TRANSFER_LAZY_STACK); 859 TRANSFER_SAVE_ALL | TRANSFER_LAZY_STACK);
854 SvREFCNT_dec (next); 860 SvREFCNT_dec (next);
855 SvREFCNT_dec (prev); 861 SvREFCNT_dec (prev);
856} 862}
873 if (!padlist_cache) 879 if (!padlist_cache)
874 padlist_cache = newHV (); 880 padlist_cache = newHV ();
875 881
876 main_mainstack = PL_mainstack; 882 main_mainstack = PL_mainstack;
877 883
878 {
879 SV *sv = perl_get_sv("Coro::API", 1);
880
881 coroapi.ver = CORO_API_VERSION - 1; 884 coroapi.ver = CORO_API_VERSION;
882 coroapi.transfer = api_transfer; 885 coroapi.transfer = api_transfer;
883 coroapi.schedule = api_schedule;
884 coroapi.ready = api_ready;
885 coroapi.nready = &coro_nready;
886
887 GCoroAPI = &coroapi;
888 sv_setiv(sv, (IV)&coroapi);
889 SvREADONLY_on(sv);
890 }
891} 886}
892 887
893Coro::State 888Coro::State
894_newprocess(args) 889_newprocess(args)
895 SV * args 890 SV * args
928 923
929 if (coro->mainstack && coro->mainstack != main_mainstack) 924 if (coro->mainstack && coro->mainstack != main_mainstack)
930 { 925 {
931 struct coro temp; 926 struct coro temp;
932 927
928 PUTBACK;
933 SAVE(aTHX_ (&temp), TRANSFER_SAVE_ALL); 929 SAVE(aTHX_ (&temp), TRANSFER_SAVE_ALL);
934 LOAD(aTHX_ coro); 930 LOAD(aTHX_ coro);
931 SPAGAIN;
935 932
936 destroy_stacks (aTHX); 933 destroy_stacks (aTHX);
937 934
938 LOAD((&temp)); /* this will get rid of defsv etc.. */ 935 LOAD((&temp)); /* this will get rid of defsv etc.. */
936 SPAGAIN;
939 937
940 coro->mainstack = 0; 938 coro->mainstack = 0;
941 } 939 }
942 940
943 deallocate_stack (coro); 941 deallocate_stack (coro);
1013 coro_current = gv_fetchpv ("Coro::current", TRUE, SVt_PV); 1011 coro_current = gv_fetchpv ("Coro::current", TRUE, SVt_PV);
1014 coro_idle = gv_fetchpv ("Coro::idle" , TRUE, SVt_PV); 1012 coro_idle = gv_fetchpv ("Coro::idle" , TRUE, SVt_PV);
1015 1013
1016 for (i = PRIO_MAX - PRIO_MIN + 1; i--; ) 1014 for (i = PRIO_MAX - PRIO_MIN + 1; i--; )
1017 coro_ready[i] = newAV (); 1015 coro_ready[i] = newAV ();
1016
1017 {
1018 SV *sv = perl_get_sv("Coro::API", 1);
1019
1020 coroapi.schedule = api_schedule;
1021 coroapi.ready = api_ready;
1022 coroapi.nready = &coro_nready;
1023 coroapi.current = coro_current;
1024
1025 GCoroAPI = &coroapi;
1026 sv_setiv(sv, (IV)&coroapi);
1027 SvREADONLY_on(sv);
1028 }
1018} 1029}
1019 1030
1020void 1031void
1021ready(self) 1032ready(self)
1022 SV * self 1033 SV * self

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines