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.19 by root, Sun Jul 29 01:11:41 2001 UTC vs.
Revision 1.60 by root, Mon Aug 9 02:41:27 2004 UTC

1#define PERL_NO_GET_CONTEXT
2
1#include "EXTERN.h" 3#include "EXTERN.h"
2#include "perl.h" 4#include "perl.h"
3#include "XSUB.h" 5#include "XSUB.h"
4 6
7#include "patchlevel.h"
8
9#if PATCHLEVEL < 6
10# ifndef PL_ppaddr
11# define PL_ppaddr ppaddr
12# endif
13# ifndef call_sv
14# define call_sv perl_call_sv
15# endif
16# ifndef get_sv
17# define get_sv perl_get_sv
18# endif
19# ifndef get_cv
20# define get_cv perl_get_cv
21# endif
22# ifndef IS_PADGV
23# define IS_PADGV(v) 0
24# endif
25# ifndef IS_PADCONST
26# define IS_PADCONST(v) 0
27# endif
28#endif
29
5#include "libcoro/coro.c" 30#include "libcoro/coro.c"
31
32#include <signal.h>
6 33
7#ifdef HAVE_MMAP 34#ifdef HAVE_MMAP
8# include <unistd.h> 35# include <unistd.h>
9# include <sys/mman.h> 36# include <sys/mman.h>
10# ifndef MAP_ANON
11# ifdef MAP_ANONYMOUS 37# ifndef MAP_ANONYMOUS
12# define MAP_ANON MAP_ANONYMOUS 38# ifdef MAP_ANON
39# define MAP_ANONYMOUS MAP_ANON
13# else 40# else
14# undef HAVE_MMAP 41# undef HAVE_MMAP
15# endif 42# endif
16# endif 43# endif
17#endif 44#endif
18 45
19#define MAY_FLUSH /* increases codesize */
20
21/* perl-related */
22#define TRANSFER_SAVE_DEFAV 0x00000001
23#define TRANSFER_SAVE_DEFSV 0x00000002
24#define TRANSFER_SAVE_ERRSV 0x00000004
25/* c-related */
26#define TRANSFER_SAVE_CCTXT 0x00000008
27#ifdef CORO_LAZY_STACK
28# define TRANSFER_LAZY_STACK 0x00000010
29#else
30# define TRANSFER_LAZY_STACK 0x00000000
31#endif
32
33#define TRANSFER_SAVE_ALL (TRANSFER_SAVE_DEFAV|TRANSFER_SAVE_DEFSV \
34 |TRANSFER_SAVE_ERRSV|TRANSFER_SAVE_CCTXT)
35
36#define SUB_INIT "Coro::State::initialize" 46#define SUB_INIT "Coro::State::initialize"
37#define UCORO_STATE "_coro_state" 47#define UCORO_STATE "_coro_state"
38 48
39/* The next macro should delcare a variable stacklevel that contains and approximation 49/* The next macro should declare a variable stacklevel that contains and approximation
40 * to the current C stack pointer. It's property is that it changes with each call 50 * to the current C stack pointer. Its property is that it changes with each call
41 * and should be unique. */ 51 * and should be unique. */
42#define dSTACKLEVEL void *stacklevel = &stacklevel 52#define dSTACKLEVEL void *stacklevel = &stacklevel
43 53
54#define IN_DESTRUCT (PL_main_cv == Nullcv)
55
44#define labs(l) ((l) >= 0 ? (l) : -(l)) 56#define labs(l) ((l) >= 0 ? (l) : -(l))
57
58#include "CoroAPI.h"
59
60#ifdef USE_ITHREADS
61static perl_mutex coro_mutex;
62# define LOCK do { MUTEX_LOCK (&coro_mutex); } while (0)
63# define UNLOCK do { MUTEX_UNLOCK (&coro_mutex); } while (0)
64#else
65# define LOCK 0
66# define UNLOCK 0
67#endif
68
69static struct CoroAPI coroapi;
70static AV *main_mainstack; /* used to differentiate between $main and others */
71static HV *coro_state_stash;
72static SV *ucoro_state_sv;
73static U32 ucoro_state_hash;
74static SV *coro_mortal; /* will be freed after next transfer */
45 75
46/* this is actually not only the c stack but also c registers etc... */ 76/* this is actually not only the c stack but also c registers etc... */
47typedef struct { 77typedef struct {
48 int refcnt; /* pointer reference counter */ 78 int refcnt; /* pointer reference counter */
49 int usecnt; /* shared by how many coroutines */ 79 int usecnt; /* shared by how many coroutines */
54 void *sptr; 84 void *sptr;
55 long ssize; /* positive == mmap, otherwise malloc */ 85 long ssize; /* positive == mmap, otherwise malloc */
56} coro_stack; 86} coro_stack;
57 87
58struct coro { 88struct coro {
89 /* the top-level JMPENV for each coroutine, needed to catch dies. */
90 JMPENV start_env;
91
59 /* the optional C context */ 92 /* the optional C context */
60 coro_stack *stack; 93 coro_stack *stack;
61 void *cursp; 94 void *cursp;
62 int gencnt; 95 int gencnt;
63 96
75 AV *curstack; 108 AV *curstack;
76 AV *mainstack; 109 AV *mainstack;
77 SV **stack_sp; 110 SV **stack_sp;
78 OP *op; 111 OP *op;
79 SV **curpad; 112 SV **curpad;
113 AV *comppad;
80 SV **stack_base; 114 SV **stack_base;
81 SV **stack_max; 115 SV **stack_max;
82 SV **tmps_stack; 116 SV **tmps_stack;
83 I32 tmps_floor; 117 I32 tmps_floor;
84 I32 tmps_ix; 118 I32 tmps_ix;
103}; 137};
104 138
105typedef struct coro *Coro__State; 139typedef struct coro *Coro__State;
106typedef struct coro *Coro__State_or_hashref; 140typedef struct coro *Coro__State_or_hashref;
107 141
108static AV *main_mainstack; /* used to differentiate between $main and others */
109static HV *coro_state_stash;
110static SV *ucoro_state_sv;
111static U32 ucoro_state_hash;
112static HV *padlist_cache;
113
114/* mostly copied from op.c:cv_clone2 */ 142/* mostly copied from op.c:cv_clone2 */
115STATIC AV * 143STATIC AV *
116clone_padlist (AV *protopadlist) 144clone_padlist (pTHX_ AV *protopadlist)
117{ 145{
118 AV *av; 146 AV *av;
119 I32 ix; 147 I32 ix;
120 AV *protopad_name = (AV *) * av_fetch (protopadlist, 0, FALSE); 148 AV *protopad_name = (AV *) * av_fetch (protopadlist, 0, FALSE);
121 AV *protopad = (AV *) * av_fetch (protopadlist, 1, FALSE); 149 AV *protopad = (AV *) * av_fetch (protopadlist, 1, FALSE);
145 AvFLAGS (av) = AVf_REIFY; 173 AvFLAGS (av) = AVf_REIFY;
146 174
147 for (ix = fpad; ix > 0; ix--) 175 for (ix = fpad; ix > 0; ix--)
148 { 176 {
149 SV *namesv = (ix <= fname) ? pname[ix] : Nullsv; 177 SV *namesv = (ix <= fname) ? pname[ix] : Nullsv;
178
150 if (namesv && namesv != &PL_sv_undef) 179 if (namesv && namesv != &PL_sv_undef)
151 { 180 {
152 char *name = SvPVX (namesv); /* XXX */ 181 char *name = SvPVX (namesv); /* XXX */
182
153 if (SvFLAGS (namesv) & SVf_FAKE || *name == '&') 183 if (SvFLAGS (namesv) & SVf_FAKE || *name == '&')
154 { /* lexical from outside? */ 184 { /* lexical from outside? */
155 npad[ix] = SvREFCNT_inc (ppad[ix]); 185 npad[ix] = SvREFCNT_inc (ppad[ix]);
156 } 186 }
157 else 187 else
163 sv = (SV *) newAV (); 193 sv = (SV *) newAV ();
164 else if (*name == '%') 194 else if (*name == '%')
165 sv = (SV *) newHV (); 195 sv = (SV *) newHV ();
166 else 196 else
167 sv = NEWSV (0, 0); 197 sv = NEWSV (0, 0);
198
199#ifdef SvPADBUSY
168 if (!SvPADBUSY (sv)) 200 if (!SvPADBUSY (sv))
201#endif
169 SvPADMY_on (sv); 202 SvPADMY_on (sv);
203
170 npad[ix] = sv; 204 npad[ix] = sv;
171 } 205 }
172 } 206 }
173 else if (IS_PADGV (ppad[ix]) || IS_PADCONST (ppad[ix])) 207 else if (IS_PADGV (ppad[ix]) || IS_PADCONST (ppad[ix]))
174 { 208 {
203#endif 237#endif
204 238
205 return newpadlist; 239 return newpadlist;
206} 240}
207 241
208#ifdef MAY_FLUSH 242STATIC void
209STATIC AV *
210free_padlist (AV *padlist) 243free_padlist (pTHX_ AV *padlist)
211{ 244{
212 /* may be during global destruction */ 245 /* may be during global destruction */
213 if (SvREFCNT(padlist)) 246 if (SvREFCNT (padlist))
214 { 247 {
215 I32 i = AvFILLp(padlist); 248 I32 i = AvFILLp (padlist);
216 while (i >= 0) 249 while (i >= 0)
217 { 250 {
218 SV **svp = av_fetch(padlist, i--, FALSE); 251 SV **svp = av_fetch (padlist, i--, FALSE);
219 SV *sv = svp ? *svp : Nullsv;
220 if (sv) 252 if (svp)
253 {
254 SV *sv;
255 while (&PL_sv_undef != (sv = av_pop ((AV *)*svp)))
221 SvREFCNT_dec(sv); 256 SvREFCNT_dec (sv);
257
258 SvREFCNT_dec (*svp);
259 }
222 } 260 }
223 261
224 SvREFCNT_dec((SV*)padlist); 262 SvREFCNT_dec ((SV*)padlist);
225 } 263 }
226} 264}
227#endif 265
266STATIC int
267coro_cv_free (pTHX_ SV *sv, MAGIC *mg)
268{
269 AV *padlist;
270 AV *av = (AV *)mg->mg_obj;
271
272 /* casting is fun. */
273 while (&PL_sv_undef != (SV *)(padlist = (AV *)av_pop (av)))
274 free_padlist (aTHX_ padlist);
275}
276
277#define PERL_MAGIC_coro PERL_MAGIC_ext
278
279static MGVTBL vtbl_coro = {0, 0, 0, 0, coro_cv_free};
228 280
229/* the next two functions merely cache the padlists */ 281/* the next two functions merely cache the padlists */
230STATIC void 282STATIC void
231get_padlist (CV *cv) 283get_padlist (pTHX_ CV *cv)
232{ 284{
233 SV **he = hv_fetch (padlist_cache, (void *)&cv, sizeof (CV *), 0); 285 MAGIC *mg = mg_find ((SV *)cv, PERL_MAGIC_coro);
234 286
235 if (he && AvFILLp ((AV *)*he) >= 0) 287 if (mg && AvFILLp ((AV *)mg->mg_obj) >= 0)
236 CvPADLIST (cv) = (AV *)av_pop ((AV *)*he); 288 CvPADLIST (cv) = (AV *)av_pop ((AV *)mg->mg_obj);
237 else 289 else
238 CvPADLIST (cv) = clone_padlist (CvPADLIST (cv)); 290 CvPADLIST (cv) = clone_padlist (aTHX_ CvPADLIST (cv));
239} 291}
240 292
241STATIC void 293STATIC void
242put_padlist (CV *cv) 294put_padlist (pTHX_ CV *cv)
243{ 295{
244 SV **he = hv_fetch (padlist_cache, (void *)&cv, sizeof (CV *), 1); 296 MAGIC *mg = mg_find ((SV *)cv, PERL_MAGIC_coro);
245 297
246 if (SvTYPE (*he) != SVt_PVAV) 298 if (!mg)
247 { 299 {
248 SvREFCNT_dec (*he); 300 sv_magic ((SV *)cv, 0, PERL_MAGIC_coro, 0, 0);
301 mg = mg_find ((SV *)cv, PERL_MAGIC_coro);
302 mg->mg_virtual = &vtbl_coro;
249 *he = (SV *)newAV (); 303 mg->mg_obj = (SV *)newAV ();
250 } 304 }
251 305
252 av_push ((AV *)*he, (SV *)CvPADLIST (cv)); 306 av_push ((AV *)mg->mg_obj, (SV *)CvPADLIST (cv));
253} 307}
254
255#ifdef MAY_FLUSH
256STATIC void
257flush_padlist_cache ()
258{
259 HV *hv = padlist_cache;
260 padlist_cache = newHV ();
261
262 if (hv_iterinit (hv))
263 {
264 HE *he;
265 AV *padlist;
266
267 while (!!(he = hv_iternext (hv)))
268 {
269 AV *av = (AV *)HeVAL(he);
270
271 /* casting is fun. */
272 while (&PL_sv_undef != (SV *)(padlist = (AV *)av_pop (av)))
273 free_padlist (padlist);
274 }
275 }
276
277 SvREFCNT_dec (hv);
278}
279#endif
280 308
281#define SB do { 309#define SB do {
282#define SE } while (0) 310#define SE } while (0)
283 311
284#define LOAD(state) SB load_state(aTHX_ (state)); SPAGAIN; SE 312#define LOAD(state) load_state(aTHX_ (state));
285#define SAVE(state,flags) SB PUTBACK; save_state(aTHX_ (state),(flags)); SE 313#define SAVE(state,flags) save_state(aTHX_ (state),(flags));
286 314
287#define REPLACE_SV(sv,val) SB SvREFCNT_dec(sv); (sv) = (val); SE 315#define REPLACE_SV(sv,val) SB SvREFCNT_dec(sv); (sv) = (val); (val) = 0; SE
288 316
289static void 317static void
290load_state(pTHX_ Coro__State c) 318load_state(pTHX_ Coro__State c)
291{ 319{
292 PL_dowarn = c->dowarn; 320 PL_dowarn = c->dowarn;
296 PL_curstack = c->curstack; 324 PL_curstack = c->curstack;
297 PL_mainstack = c->mainstack; 325 PL_mainstack = c->mainstack;
298 PL_stack_sp = c->stack_sp; 326 PL_stack_sp = c->stack_sp;
299 PL_op = c->op; 327 PL_op = c->op;
300 PL_curpad = c->curpad; 328 PL_curpad = c->curpad;
329 PL_comppad = c->comppad;
301 PL_stack_base = c->stack_base; 330 PL_stack_base = c->stack_base;
302 PL_stack_max = c->stack_max; 331 PL_stack_max = c->stack_max;
303 PL_tmps_stack = c->tmps_stack; 332 PL_tmps_stack = c->tmps_stack;
304 PL_tmps_floor = c->tmps_floor; 333 PL_tmps_floor = c->tmps_floor;
305 PL_tmps_ix = c->tmps_ix; 334 PL_tmps_ix = c->tmps_ix;
332 { 361 {
333 AV *padlist = (AV *)POPs; 362 AV *padlist = (AV *)POPs;
334 363
335 if (padlist) 364 if (padlist)
336 { 365 {
337 put_padlist (cv); /* mark this padlist as available */ 366 put_padlist (aTHX_ cv); /* mark this padlist as available */
338 CvPADLIST(cv) = padlist; 367 CvPADLIST(cv) = padlist;
339#ifdef USE_THREADS
340 /*CvOWNER(cv) = (struct perl_thread *)POPs;*/
341#endif
342 } 368 }
343 369
344 ++CvDEPTH(cv); 370 ++CvDEPTH(cv);
345 } 371 }
346 372
364 390
365 PUSHs (Nullsv); 391 PUSHs (Nullsv);
366 /* this loop was inspired by pp_caller */ 392 /* this loop was inspired by pp_caller */
367 for (;;) 393 for (;;)
368 { 394 {
369 do 395 while (cxix >= 0)
370 { 396 {
371 PERL_CONTEXT *cx = &ccstk[cxix--]; 397 PERL_CONTEXT *cx = &ccstk[cxix--];
372 398
373 if (CxTYPE(cx) == CXt_SUB) 399 if (CxTYPE(cx) == CXt_SUB)
374 { 400 {
375 CV *cv = cx->blk_sub.cv; 401 CV *cv = cx->blk_sub.cv;
376 if (CvDEPTH(cv)) 402 if (CvDEPTH(cv))
377 { 403 {
378#ifdef USE_THREADS
379 /*XPUSHs ((SV *)CvOWNER(cv));*/
380 /*CvOWNER(cv) = 0;*/
381 /*error must unlock this cv etc.. etc...*/
382#endif
383 EXTEND (SP, CvDEPTH(cv)*2); 404 EXTEND (SP, CvDEPTH(cv)*2);
384 405
385 while (--CvDEPTH(cv)) 406 while (--CvDEPTH(cv))
386 { 407 {
387 /* this tells the restore code to increment CvDEPTH */ 408 /* this tells the restore code to increment CvDEPTH */
390 } 411 }
391 412
392 PUSHs ((SV *)CvPADLIST(cv)); 413 PUSHs ((SV *)CvPADLIST(cv));
393 PUSHs ((SV *)cv); 414 PUSHs ((SV *)cv);
394 415
395 get_padlist (cv); /* this is a monster */ 416 get_padlist (aTHX_ cv); /* this is a monster */
396 } 417 }
397 } 418 }
419#ifdef CXt_FORMAT
398 else if (CxTYPE(cx) == CXt_FORMAT) 420 else if (CxTYPE(cx) == CXt_FORMAT)
399 { 421 {
400 /* I never used formats, so how should I know how these are implemented? */ 422 /* I never used formats, so how should I know how these are implemented? */
401 /* my bold guess is as a simple, plain sub... */ 423 /* my bold guess is as a simple, plain sub... */
402 croak ("CXt_FORMAT not yet handled. Don't switch coroutines from within formats"); 424 croak ("CXt_FORMAT not yet handled. Don't switch coroutines from within formats");
403 } 425 }
426#endif
404 } 427 }
405 while (cxix >= 0);
406 428
407 if (top_si->si_type == PERLSI_MAIN) 429 if (top_si->si_type == PERLSI_MAIN)
408 break; 430 break;
409 431
410 top_si = top_si->si_prev; 432 top_si = top_si->si_prev;
416 } 438 }
417 439
418 c->defav = flags & TRANSFER_SAVE_DEFAV ? (AV *)SvREFCNT_inc (GvAV (PL_defgv)) : 0; 440 c->defav = flags & TRANSFER_SAVE_DEFAV ? (AV *)SvREFCNT_inc (GvAV (PL_defgv)) : 0;
419 c->defsv = flags & TRANSFER_SAVE_DEFSV ? SvREFCNT_inc (DEFSV) : 0; 441 c->defsv = flags & TRANSFER_SAVE_DEFSV ? SvREFCNT_inc (DEFSV) : 0;
420 c->errsv = flags & TRANSFER_SAVE_ERRSV ? SvREFCNT_inc (ERRSV) : 0; 442 c->errsv = flags & TRANSFER_SAVE_ERRSV ? SvREFCNT_inc (ERRSV) : 0;
421
422 /* I have not the slightest idea of why av_reify is necessary */
423 /* but if it's missing the defav contents magically get replaced sometimes */
424 if (c->defav)
425 av_reify (c->defav);
426 443
427 c->dowarn = PL_dowarn; 444 c->dowarn = PL_dowarn;
428 c->in_eval = PL_in_eval; 445 c->in_eval = PL_in_eval;
429 446
430 c->curstackinfo = PL_curstackinfo; 447 c->curstackinfo = PL_curstackinfo;
431 c->curstack = PL_curstack; 448 c->curstack = PL_curstack;
432 c->mainstack = PL_mainstack; 449 c->mainstack = PL_mainstack;
433 c->stack_sp = PL_stack_sp; 450 c->stack_sp = PL_stack_sp;
434 c->op = PL_op; 451 c->op = PL_op;
435 c->curpad = PL_curpad; 452 c->curpad = PL_curpad;
453 c->comppad = PL_comppad;
436 c->stack_base = PL_stack_base; 454 c->stack_base = PL_stack_base;
437 c->stack_max = PL_stack_max; 455 c->stack_max = PL_stack_max;
438 c->tmps_stack = PL_tmps_stack; 456 c->tmps_stack = PL_tmps_stack;
439 c->tmps_floor = PL_tmps_floor; 457 c->tmps_floor = PL_tmps_floor;
440 c->tmps_ix = PL_tmps_ix; 458 c->tmps_ix = PL_tmps_ix;
456} 474}
457 475
458/* 476/*
459 * allocate various perl stacks. This is an exact copy 477 * allocate various perl stacks. This is an exact copy
460 * of perl.c:init_stacks, except that it uses less memory 478 * of perl.c:init_stacks, except that it uses less memory
461 * on the assumption that coroutines do not usually need 479 * on the (sometimes correct) assumption that coroutines do
462 * a lot of stackspace. 480 * not usually need a lot of stackspace.
463 */ 481 */
464STATIC void 482STATIC void
465coro_init_stacks (pTHX) 483coro_init_stacks (pTHX)
466{ 484{
485 LOCK;
486
467 PL_curstackinfo = new_stackinfo(96, 1024/sizeof(PERL_CONTEXT) - 1); 487 PL_curstackinfo = new_stackinfo(96, 1024/sizeof(PERL_CONTEXT) - 1);
468 PL_curstackinfo->si_type = PERLSI_MAIN; 488 PL_curstackinfo->si_type = PERLSI_MAIN;
469 PL_curstack = PL_curstackinfo->si_stack; 489 PL_curstack = PL_curstackinfo->si_stack;
470 PL_mainstack = PL_curstack; /* remember in case we switch stacks */ 490 PL_mainstack = PL_curstack; /* remember in case we switch stacks */
471 491
480 500
481 New(54,PL_markstack,16,I32); 501 New(54,PL_markstack,16,I32);
482 PL_markstack_ptr = PL_markstack; 502 PL_markstack_ptr = PL_markstack;
483 PL_markstack_max = PL_markstack + 16; 503 PL_markstack_max = PL_markstack + 16;
484 504
505#ifdef SET_MARK_OFFSET
485 SET_MARK_OFFSET; 506 SET_MARK_OFFSET;
507#endif
486 508
487 New(54,PL_scopestack,16,I32); 509 New(54,PL_scopestack,16,I32);
488 PL_scopestack_ix = 0; 510 PL_scopestack_ix = 0;
489 PL_scopestack_max = 16; 511 PL_scopestack_max = 16;
490 512
493 PL_savestack_max = 96; 515 PL_savestack_max = 96;
494 516
495 New(54,PL_retstack,8,OP*); 517 New(54,PL_retstack,8,OP*);
496 PL_retstack_ix = 0; 518 PL_retstack_ix = 0;
497 PL_retstack_max = 8; 519 PL_retstack_max = 8;
520
521 UNLOCK;
498} 522}
499 523
500/* 524/*
501 * destroy the stacks, the callchain etc... 525 * destroy the stacks, the callchain etc...
502 * still there is a memleak of 128 bytes...
503 */ 526 */
504STATIC void 527STATIC void
505destroy_stacks(pTHX) 528destroy_stacks(pTHX)
506{ 529{
530 if (!IN_DESTRUCT)
531 {
507 /* is this ugly, I ask? */ 532 /* is this ugly, I ask? */
508 while (PL_scopestack_ix) 533 LEAVE_SCOPE (0);
509 LEAVE;
510 534
511 /* sure it is, but more important: is it correct?? :/ */ 535 /* sure it is, but more important: is it correct?? :/ */
512 while (PL_tmps_ix > PL_tmps_floor) /* should only ever be one iteration */
513 FREETMPS; 536 FREETMPS;
537
538 /*POPSTACK_TO (PL_mainstack);*//*D*//*use*/
539 }
514 540
515 while (PL_curstackinfo->si_next) 541 while (PL_curstackinfo->si_next)
516 PL_curstackinfo = PL_curstackinfo->si_next; 542 PL_curstackinfo = PL_curstackinfo->si_next;
517 543
518 while (PL_curstackinfo) 544 while (PL_curstackinfo)
519 { 545 {
520 PERL_SI *p = PL_curstackinfo->si_prev; 546 PERL_SI *p = PL_curstackinfo->si_prev;
521 547
522 { 548 { /*D*//*remove*/
523 dSP; 549 dSP;
524 SWITCHSTACK (PL_curstack, PL_curstackinfo->si_stack); 550 SWITCHSTACK (PL_curstack, PL_curstackinfo->si_stack);
525 PUTBACK; /* possibly superfluous */ 551 PUTBACK; /* possibly superfluous */
526 } 552 }
527 553
528 dounwind(-1); 554 if (!IN_DESTRUCT)
529 555 {
556 dounwind (-1);/*D*//*remove*/
530 SvREFCNT_dec(PL_curstackinfo->si_stack); 557 SvREFCNT_dec (PL_curstackinfo->si_stack);
558 }
559
531 Safefree(PL_curstackinfo->si_cxstack); 560 Safefree (PL_curstackinfo->si_cxstack);
532 Safefree(PL_curstackinfo); 561 Safefree (PL_curstackinfo);
533 PL_curstackinfo = p; 562 PL_curstackinfo = p;
534 } 563 }
535 564
536 Safefree(PL_tmps_stack); 565 Safefree (PL_tmps_stack);
537 Safefree(PL_markstack); 566 Safefree (PL_markstack);
538 Safefree(PL_scopestack); 567 Safefree (PL_scopestack);
539 Safefree(PL_savestack); 568 Safefree (PL_savestack);
540 Safefree(PL_retstack); 569 Safefree (PL_retstack);
541} 570}
542 571
543static void 572static void
544allocate_stack (Coro__State ctx, int alloc) 573allocate_stack (Coro__State ctx, int alloc)
545{ 574{
548 New (0, stack, 1, coro_stack); 577 New (0, stack, 1, coro_stack);
549 578
550 stack->refcnt = 1; 579 stack->refcnt = 1;
551 stack->usecnt = 1; 580 stack->usecnt = 1;
552 stack->gencnt = ctx->gencnt = 0; 581 stack->gencnt = ctx->gencnt = 0;
582
553 if (alloc) 583 if (alloc)
554 { 584 {
555#ifdef HAVE_MMAP 585#if HAVE_MMAP
556 stack->ssize = 128 * 1024 * sizeof (long); /* mmap should do allocate-on-write for us */ 586 stack->ssize = 16384 * sizeof (long); /* mmap should do allocate-on-write for us */
557 stack->sptr = mmap (0, stack->ssize, PROT_EXEC|PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, 0, 0); 587 stack->sptr = mmap (0, stack->ssize, PROT_EXEC|PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
558 if (stack->sptr == (void *)-1) 588 if (stack->sptr == (void *)-1)
559#endif 589#endif
560 { 590 {
561 /*FIXME*//*D*//* reasonable stack size! */ 591 /*FIXME*//*D*//* reasonable stack size! */
562 stack->ssize = -4096 * sizeof (long); 592 stack->ssize = - (8192 * sizeof (long));
563 New (0, stack->sptr, 4096, long); 593 New (0, stack->sptr, 8192, long);
564 } 594 }
565 } 595 }
566 else 596 else
567 stack->sptr = 0; 597 stack->sptr = 0;
568 598
582 { 612 {
583#ifdef HAVE_MMAP 613#ifdef HAVE_MMAP
584 if (stack->ssize > 0 && stack->sptr) 614 if (stack->ssize > 0 && stack->sptr)
585 munmap (stack->sptr, stack->ssize); 615 munmap (stack->sptr, stack->ssize);
586 else 616 else
587#else 617#endif
588 Safefree (stack->sptr); 618 Safefree (stack->sptr);
589#endif 619
590 Safefree (stack); 620 Safefree (stack);
591 } 621 }
592 else if (ctx->gencnt == stack->gencnt) 622 else if (ctx->gencnt == stack->gencnt)
593 --stack->usecnt; 623 --stack->usecnt;
594 } 624 }
598setup_coro (void *arg) 628setup_coro (void *arg)
599{ 629{
600 /* 630 /*
601 * emulate part of the perl startup here. 631 * emulate part of the perl startup here.
602 */ 632 */
633 dTHX;
603 dSP; 634 dSP;
604 Coro__State ctx = (Coro__State)arg; 635 Coro__State ctx = (Coro__State)arg;
605 SV *sub_init = (SV*)get_cv(SUB_INIT, FALSE); 636 SV *sub_init = (SV *)get_cv (SUB_INIT, FALSE);
606 637
607 coro_init_stacks (aTHX); 638 coro_init_stacks (aTHX);
608 /*PL_curcop = 0;*/ 639 /*PL_curcop = 0;*/
609 /*PL_in_eval = PL_in_eval;*/ /* inherit */ 640 /*PL_in_eval = PL_in_eval;*/ /* inherit */
610 SvREFCNT_dec (GvAV (PL_defgv)); 641 SvREFCNT_dec (GvAV (PL_defgv));
611 GvAV (PL_defgv) = ctx->args; 642 GvAV (PL_defgv) = ctx->args; ctx->args = 0;
612 643
613 SPAGAIN; 644 SPAGAIN;
614 645
615 if (ctx->stack) 646 if (ctx->stack)
616 { 647 {
643 * that doesn't matter, though, since it is only 674 * that doesn't matter, though, since it is only
644 * pp_nextstate and we never return... 675 * pp_nextstate and we never return...
645 * ah yes, and I don't care anyways ;) 676 * ah yes, and I don't care anyways ;)
646 */ 677 */
647 PUTBACK; 678 PUTBACK;
648 PL_op = pp_entersub(); 679 PL_op = PL_ppaddr[OP_ENTERSUB](aTHX);
649 SPAGAIN; 680 SPAGAIN;
650 681
651 ENTER; /* necessary e.g. for dounwind */ 682 ENTER; /* necessary e.g. for dounwind */
652 } 683 }
653} 684}
656continue_coro (void *arg) 687continue_coro (void *arg)
657{ 688{
658 /* 689 /*
659 * this is a _very_ stripped down perl interpreter ;) 690 * this is a _very_ stripped down perl interpreter ;)
660 */ 691 */
692 dTHX;
661 Coro__State ctx = (Coro__State)arg; 693 Coro__State ctx = (Coro__State)arg;
694 JMPENV coro_start_env;
662 695
663 /*FIXME*//* must set up top_env here */ 696 PL_top_env = &ctx->start_env;
697
664 ctx->cursp = 0; 698 ctx->cursp = 0;
665 PL_op = PL_op->op_next; 699 PL_op = PL_op->op_next;
666 CALLRUNOPS(aTHX); 700 CALLRUNOPS(aTHX);
667 701
668 abort (); 702 abort ();
669} 703}
670 704
671STATIC void 705STATIC void
672transfer(pTHX_ struct coro *prev, struct coro *next, int flags) 706transfer (pTHX_ struct coro *prev, struct coro *next, int flags)
673{ 707{
674 dSP;
675 dSTACKLEVEL; 708 dSTACKLEVEL;
676 709
677 if (prev != next) 710 if (prev != next)
678 { 711 {
679 if (next->mainstack) 712 if (next->mainstack)
680 { 713 {
714 LOCK;
681 SAVE (prev, flags); 715 SAVE (prev, flags);
682 LOAD (next); 716 LOAD (next);
717 UNLOCK;
683 718
684 /* mark this state as in-use */ 719 /* mark this state as in-use */
685 next->mainstack = 0; 720 next->mainstack = 0;
686 next->tmps_ix = -2; 721 next->tmps_ix = -2;
687 722
706 continue_coro, (void *)next, 741 continue_coro, (void *)next,
707 next->stack->sptr, labs (next->stack->ssize)); 742 next->stack->sptr, labs (next->stack->ssize));
708 } 743 }
709 744
710 coro_transfer (&(prev->stack->cctx), &(next->stack->cctx)); 745 coro_transfer (&(prev->stack->cctx), &(next->stack->cctx));
746 prev->cursp = stacklevel;
747 /* don't add any code here */
711 } 748 }
712 749 else
750 next->cursp = stacklevel;
713 } 751 }
714 else if (next->tmps_ix == -2) 752 else if (next->tmps_ix == -2)
715 croak ("tried to transfer to running coroutine"); 753 croak ("tried to transfer to running coroutine");
716 else 754 else
717 { 755 {
756 LOCK;
718 SAVE (prev, -1); /* first get rid of the old state */ 757 SAVE (prev, -1); /* first get rid of the old state */
758 UNLOCK;
719 759
720 if (flags & TRANSFER_SAVE_CCTXT) 760 if (flags & TRANSFER_SAVE_CCTXT)
721 { 761 {
722 if (!prev->stack) 762 if (!prev->stack)
723 allocate_stack (prev, 0); 763 allocate_stack (prev, 0);
724 764
725 if (prev->stack->sptr && flags & TRANSFER_LAZY_STACK) 765 if (prev->stack->sptr && flags & TRANSFER_LAZY_STACK)
726 { 766 {
767 PL_top_env = &next->start_env;
768
727 setup_coro (next); 769 setup_coro (next);
770 next->cursp = stacklevel;
728 771
729 prev->stack->refcnt++; 772 prev->stack->refcnt++;
730 prev->stack->usecnt++; 773 prev->stack->usecnt++;
731 next->stack = prev->stack; 774 next->stack = prev->stack;
732 next->gencnt = prev->gencnt; 775 next->gencnt = prev->gencnt;
733 } 776 }
734 else 777 else
735 { 778 {
779 assert (!next->stack);
736 allocate_stack (next, 1); 780 allocate_stack (next, 1);
737 coro_create (&(next->stack->cctx), 781 coro_create (&(next->stack->cctx),
738 setup_coro, (void *)next, 782 setup_coro, (void *)next,
739 next->stack->sptr, labs (next->stack->ssize)); 783 next->stack->sptr, labs (next->stack->ssize));
740 coro_transfer (&(prev->stack->cctx), &(next->stack->cctx)); 784 coro_transfer (&(prev->stack->cctx), &(next->stack->cctx));
785 prev->cursp = stacklevel;
786 /* don't add any code here */
741 } 787 }
742 } 788 }
743 else 789 else
790 {
744 setup_coro (next); 791 setup_coro (next);
792 next->cursp = stacklevel;
793 }
745 } 794 }
746 } 795 }
747 796
748 next->cursp = stacklevel; 797 LOCK;
798 if (coro_mortal)
799 {
800 SvREFCNT_dec (coro_mortal);
801 coro_mortal = 0;
802 }
803 UNLOCK;
804}
805
806#define SV_CORO(sv,func) \
807 do { \
808 if (SvROK (sv)) \
809 sv = SvRV (sv); \
810 \
811 if (SvTYPE (sv) == SVt_PVHV) \
812 { \
813 HE *he = hv_fetch_ent ((HV *)sv, ucoro_state_sv, 0, ucoro_state_hash); \
814 \
815 if (!he) \
816 croak ("%s() -- %s is a hashref but lacks the " UCORO_STATE " key", func, # sv); \
817 \
818 (sv) = SvRV (HeVAL(he)); \
819 } \
820 \
821 /* must also be changed inside Coro::Cont::yield */ \
822 if (!SvOBJECT (sv) || SvSTASH (sv) != coro_state_stash) \
823 croak ("%s() -- %s is not (and contains not) a Coro::State object", func, # sv); \
824 \
825 } while(0)
826
827#define SvSTATE(sv) (struct coro *)SvIV (sv)
828
829static void
830api_transfer(pTHX_ SV *prev, SV *next, int flags)
831{
832 SV_CORO (prev, "Coro::transfer");
833 SV_CORO (next, "Coro::transfer");
834
835 transfer (aTHX_ SvSTATE (prev), SvSTATE (next), flags);
836}
837
838/** Coro ********************************************************************/
839
840#define PRIO_MAX 3
841#define PRIO_HIGH 1
842#define PRIO_NORMAL 0
843#define PRIO_LOW -1
844#define PRIO_IDLE -3
845#define PRIO_MIN -4
846
847/* for Coro.pm */
848static GV *coro_current, *coro_idle;
849static AV *coro_ready[PRIO_MAX-PRIO_MIN+1];
850static int coro_nready;
851
852static void
853coro_enq (pTHX_ SV *sv)
854{
855 if (SvTYPE (sv) == SVt_PVHV)
856 {
857 SV **xprio = hv_fetch ((HV *)sv, "prio", 4, 0);
858 int prio = xprio ? SvIV (*xprio) : PRIO_NORMAL;
859
860 prio = prio > PRIO_MAX ? PRIO_MAX
861 : prio < PRIO_MIN ? PRIO_MIN
862 : prio;
863
864 av_push (coro_ready [prio - PRIO_MIN], sv);
865 coro_nready++;
866
867 return;
868 }
869
870 croak ("Coro::ready tried to enqueue something that is not a coroutine");
871}
872
873static SV *
874coro_deq (pTHX_ int min_prio)
875{
876 int prio = PRIO_MAX - PRIO_MIN;
877
878 min_prio -= PRIO_MIN;
879 if (min_prio < 0)
880 min_prio = 0;
881
882 for (prio = PRIO_MAX - PRIO_MIN + 1; --prio >= min_prio; )
883 if (av_len (coro_ready[prio]) >= 0)
884 {
885 coro_nready--;
886 return av_shift (coro_ready[prio]);
887 }
888
889 return 0;
890}
891
892static void
893api_ready (SV *coro)
894{
895 dTHX;
896
897 if (SvROK (coro))
898 coro = SvRV (coro);
899
900 LOCK;
901 coro_enq (aTHX_ SvREFCNT_inc (coro));
902 UNLOCK;
903}
904
905static void
906api_schedule (void)
907{
908 dTHX;
909
910 SV *prev, *next;
911
912 LOCK;
913
914 prev = SvRV (GvSV (coro_current));
915 next = coro_deq (aTHX_ PRIO_MIN);
916
917 if (!next)
918 next = SvREFCNT_inc (SvRV (GvSV (coro_idle)));
919
920 /* free this only after the transfer */
921 coro_mortal = prev;
922 SV_CORO (prev, "Coro::schedule");
923
924 SvRV (GvSV (coro_current)) = next;
925
926 SV_CORO (next, "Coro::schedule");
927
928 UNLOCK;
929
930 transfer (aTHX_ SvSTATE (prev), SvSTATE (next),
931 TRANSFER_SAVE_ALL | TRANSFER_LAZY_STACK);
932}
933
934static void
935api_cede (void)
936{
937 dTHX;
938
939 LOCK;
940 coro_enq (aTHX_ SvREFCNT_inc (SvRV (GvSV (coro_current))));
941 UNLOCK;
942
943 api_schedule ();
749} 944}
750 945
751MODULE = Coro::State PACKAGE = Coro::State 946MODULE = Coro::State PACKAGE = Coro::State
752 947
753PROTOTYPES: ENABLE 948PROTOTYPES: ENABLE
754 949
755BOOT: 950BOOT:
756{ /* {} necessary for stoopid perl-5.6.x */ 951{ /* {} necessary for stoopid perl-5.6.x */
952#ifdef USE_ITHREADS
953 MUTEX_INIT (&coro_mutex);
954#endif
955
757 ucoro_state_sv = newSVpv (UCORO_STATE, sizeof(UCORO_STATE) - 1); 956 ucoro_state_sv = newSVpv (UCORO_STATE, sizeof(UCORO_STATE) - 1);
758 PERL_HASH(ucoro_state_hash, UCORO_STATE, sizeof(UCORO_STATE) - 1); 957 PERL_HASH(ucoro_state_hash, UCORO_STATE, sizeof(UCORO_STATE) - 1);
759 coro_state_stash = gv_stashpv ("Coro::State", TRUE); 958 coro_state_stash = gv_stashpv ("Coro::State", TRUE);
760 959
761 newCONSTSUB (coro_state_stash, "SAVE_DEFAV", newSViv (TRANSFER_SAVE_DEFAV)); 960 newCONSTSUB (coro_state_stash, "SAVE_DEFAV", newSViv (TRANSFER_SAVE_DEFAV));
762 newCONSTSUB (coro_state_stash, "SAVE_DEFSV", newSViv (TRANSFER_SAVE_DEFSV)); 961 newCONSTSUB (coro_state_stash, "SAVE_DEFSV", newSViv (TRANSFER_SAVE_DEFSV));
763 newCONSTSUB (coro_state_stash, "SAVE_ERRSV", newSViv (TRANSFER_SAVE_ERRSV)); 962 newCONSTSUB (coro_state_stash, "SAVE_ERRSV", newSViv (TRANSFER_SAVE_ERRSV));
764 newCONSTSUB (coro_state_stash, "SAVE_CCTXT", newSViv (TRANSFER_SAVE_CCTXT)); 963 newCONSTSUB (coro_state_stash, "SAVE_CCTXT", newSViv (TRANSFER_SAVE_CCTXT));
765 964
766 if (!padlist_cache)
767 padlist_cache = newHV ();
768
769 main_mainstack = PL_mainstack; 965 main_mainstack = PL_mainstack;
966
967 coroapi.ver = CORO_API_VERSION;
968 coroapi.transfer = api_transfer;
770} 969}
771 970
772Coro::State 971Coro::State
773_newprocess(args) 972_newprocess(args)
774 SV * args 973 SV * args
777 Coro__State coro; 976 Coro__State coro;
778 977
779 if (!SvROK (args) || SvTYPE (SvRV (args)) != SVt_PVAV) 978 if (!SvROK (args) || SvTYPE (SvRV (args)) != SVt_PVAV)
780 croak ("Coro::State::_newprocess expects an arrayref"); 979 croak ("Coro::State::_newprocess expects an arrayref");
781 980
782 New (0, coro, 1, struct coro); 981 Newz (0, coro, 1, struct coro);
783 982
784 coro->args = (AV *)SvREFCNT_inc (SvRV (args)); 983 coro->args = (AV *)SvREFCNT_inc (SvRV (args));
785 coro->mainstack = 0; /* actual work is done inside transfer */ 984 /*coro->mainstack = 0; *//*actual work is done inside transfer */
786 coro->stack = 0; 985 /*coro->stack = 0;*/
986
987 /* same as JMPENV_BOOTSTRAP */
988 /* we might be able to recycle start_env, but safe is safe */
989 /*Zero(&coro->start_env, 1, JMPENV);*/
990 coro->start_env.je_ret = -1;
991 coro->start_env.je_mustcatch = TRUE;
787 992
788 RETVAL = coro; 993 RETVAL = coro;
789 OUTPUT: 994 OUTPUT:
790 RETVAL 995 RETVAL
791 996
792void 997void
793transfer(prev, next, flags = TRANSFER_SAVE_ALL | TRANSFER_LAZY_STACK) 998transfer(prev, next, flags)
794 Coro::State_or_hashref prev 999 SV *prev
795 Coro::State_or_hashref next 1000 SV *next
796 int flags 1001 int flags
797 PROTOTYPE: @ 1002 PROTOTYPE: @
798 CODE: 1003 CODE:
1004 PUTBACK;
1005 SV_CORO (next, "Coro::transfer");
1006 SV_CORO (prev, "Coro::transfer");
799 transfer (aTHX_ prev, next, flags); 1007 transfer (aTHX_ SvSTATE (prev), SvSTATE (next), flags);
1008 SPAGAIN;
800 1009
801void 1010void
802DESTROY(coro) 1011DESTROY(coro)
803 Coro::State coro 1012 Coro::State coro
804 CODE: 1013 CODE:
805 1014
806 if (coro->mainstack && coro->mainstack != main_mainstack) 1015 if (coro->mainstack && coro->mainstack != main_mainstack)
807 { 1016 {
808 struct coro temp; 1017 struct coro temp;
809 1018
1019 PUTBACK;
810 SAVE(aTHX_ (&temp), TRANSFER_SAVE_ALL); 1020 SAVE (aTHX_ (&temp), TRANSFER_SAVE_ALL);
811 LOAD(aTHX_ coro); 1021 LOAD (aTHX_ coro);
1022 SPAGAIN;
812 1023
813 destroy_stacks (aTHX); 1024 destroy_stacks (aTHX);
814 1025
815 LOAD((&temp)); /* this will get rid of defsv etc.. */ 1026 LOAD ((&temp)); /* this will get rid of defsv etc.. */
1027 SPAGAIN;
816 1028
817 coro->mainstack = 0; 1029 coro->mainstack = 0;
818 } 1030 }
819 1031
820 deallocate_stack (coro); 1032 deallocate_stack (coro);
821 1033 SvREFCNT_dec (coro->args);
822 Safefree (coro); 1034 Safefree (coro);
823 1035
824void 1036void
825flush() 1037_exit(code)
1038 int code
1039 PROTOTYPE: $
826 CODE: 1040 CODE:
827#ifdef MAY_FLUSH 1041 _exit (code);
828 flush_padlist_cache ();
829#endif
830 1042
831MODULE = Coro::State PACKAGE = Coro::Cont 1043MODULE = Coro::State PACKAGE = Coro::Cont
832 1044
833# this is slightly dirty 1045# this is slightly dirty (should expose a c-level api)
834 1046
835void 1047void
836yield(...) 1048yield(...)
837 PROTOTYPE: @ 1049 PROTOTYPE: @
838 CODE: 1050 CODE:
840 SV *sv; 1052 SV *sv;
841 AV *defav = GvAV (PL_defgv); 1053 AV *defav = GvAV (PL_defgv);
842 struct coro *prev, *next; 1054 struct coro *prev, *next;
843 1055
844 if (!returnstk) 1056 if (!returnstk)
845 returnstk = SvRV (get_sv ("Coro::Cont::return", FALSE)); 1057 returnstk = SvRV ((SV *)get_sv ("Coro::Cont::return", FALSE));
846 1058
847 /* set up @_ -- ugly */ 1059 /* set up @_ -- ugly */
848 av_clear (defav); 1060 av_clear (defav);
849 av_fill (defav, items - 1); 1061 av_fill (defav, items - 1);
850 while (items--) 1062 while (items--)
851 av_store (defav, items, SvREFCNT_inc (ST(items))); 1063 av_store (defav, items, SvREFCNT_inc (ST(items)));
852 1064
853 mg_get (returnstk); /* isn't documentation wrong for mg_get? */ 1065 SvGETMAGIC (returnstk); /* isn't documentation wrong for mg_get? */
854 sv = av_pop ((AV *)SvRV (returnstk)); 1066 sv = av_pop ((AV *)SvRV (returnstk));
855 prev = (struct coro *)SvIV ((SV*)SvRV (*av_fetch ((AV *)SvRV (sv), 0, 0))); 1067 prev = (struct coro *)SvIV ((SV*)SvRV (*av_fetch ((AV *)SvRV (sv), 0, 0)));
856 next = (struct coro *)SvIV ((SV*)SvRV (*av_fetch ((AV *)SvRV (sv), 1, 0))); 1068 next = (struct coro *)SvIV ((SV*)SvRV (*av_fetch ((AV *)SvRV (sv), 1, 0)));
857 SvREFCNT_dec (sv); 1069 SvREFCNT_dec (sv);
858 1070
859 transfer(aTHX_ prev, next, 0); 1071 transfer (aTHX_ prev, next, 0);
860 1072
1073MODULE = Coro::State PACKAGE = Coro
1074
1075# this is slightly dirty (should expose a c-level api)
1076
1077BOOT:
1078{
1079 int i;
1080 HV *stash = gv_stashpv ("Coro", TRUE);
1081
1082 newCONSTSUB (stash, "PRIO_MAX", newSViv (PRIO_MAX));
1083 newCONSTSUB (stash, "PRIO_HIGH", newSViv (PRIO_HIGH));
1084 newCONSTSUB (stash, "PRIO_NORMAL", newSViv (PRIO_NORMAL));
1085 newCONSTSUB (stash, "PRIO_LOW", newSViv (PRIO_LOW));
1086 newCONSTSUB (stash, "PRIO_IDLE", newSViv (PRIO_IDLE));
1087 newCONSTSUB (stash, "PRIO_MIN", newSViv (PRIO_MIN));
1088
1089 coro_current = gv_fetchpv ("Coro::current", TRUE, SVt_PV);
1090 coro_idle = gv_fetchpv ("Coro::idle" , TRUE, SVt_PV);
1091
1092 for (i = PRIO_MAX - PRIO_MIN + 1; i--; )
1093 coro_ready[i] = newAV ();
1094
1095 {
1096 SV *sv = perl_get_sv("Coro::API", 1);
1097
1098 coroapi.schedule = api_schedule;
1099 coroapi.cede = api_cede;
1100 coroapi.ready = api_ready;
1101 coroapi.nready = &coro_nready;
1102 coroapi.current = coro_current;
1103
1104 GCoroAPI = &coroapi;
1105 sv_setiv(sv, (IV)&coroapi);
1106 SvREADONLY_on(sv);
1107 }
1108}
1109
1110#if !PERL_MICRO
1111
1112void
1113ready(self)
1114 SV * self
1115 PROTOTYPE: $
1116 CODE:
1117 api_ready (self);
1118
1119#endif
1120
1121int
1122nready(...)
1123 PROTOTYPE:
1124 CODE:
1125 RETVAL = coro_nready;
1126 OUTPUT:
1127 RETVAL
1128
1129void
1130schedule(...)
1131 PROTOTYPE:
1132 CODE:
1133 api_schedule ();
1134
1135void
1136cede(...)
1137 PROTOTYPE:
1138 CODE:
1139 api_cede ();
1140

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines