ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/state.h
Revision: 1.2
Committed: Sat Dec 2 20:40:25 2006 UTC (17 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_1, rel-3_0, rel-3_01
Changes since 1.1: +5 -4 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /* list the interpreter variables that need to be saved/restored */
2 /* mostly copied from thrdvar.h */
3
4 VAR(stack_sp, SV **) /* top of the stack */
5 VAR(op, OP *) /* currently executing op */
6 VAR(curpad, SV **) /* active pad (lexicals+tmps) */
7
8 VAR(stack_base, SV **)
9 VAR(stack_max, SV **)
10
11 VAR(scopestack, I32 *) /* scopes we've ENTERed */
12 VAR(scopestack_ix, I32)
13 VAR(scopestack_max,I32)
14
15 VAR(savestack, ANY *) /* items that need to be restored
16 when LEAVEing scopes we've ENTERed */
17 VAR(savestack_ix, I32)
18 VAR(savestack_max, I32)
19
20 VAR(tmps_stack, SV **) /* mortals we've made */
21 VAR(tmps_ix, I32)
22 VAR(tmps_floor, I32)
23 VAR(tmps_max, I32)
24
25 VAR(markstack, I32 *) /* stack_sp locations we're remembering */
26 VAR(markstack_ptr, I32 *)
27 VAR(markstack_max, I32 *)
28
29 #if !PERL_VERSION_ATLEAST (5,9,0)
30 VAR(retstack, OP **) /* OPs we have postponed executing */
31 VAR(retstack_ix, I32)
32 VAR(retstack_max, I32)
33 #endif
34
35 VAR(curpm, PMOP *) /* what to do \ interps in REs from */
36 VAR(curcop, COP *)
37
38 VAR(in_eval, int) /* trap "fatal" errors? */
39 VAR(localizing, int) /* are we processing a local() list? */
40
41 VAR(curstack, AV *) /* THE STACK */
42 VAR(curstackinfo, PERL_SI *) /* current stack + context */
43 VAR(mainstack, AV *) /* the stack when nothing funny is happening */
44 VAR(sortcop, OP *) /* user defined sort routine */
45 VAR(sortstash, HV *) /* which is in some package or other */
46 VAR(sortcxix, I32) /* from pp_ctl.c */
47
48 VAR(comppad, AV *) /* storage for lexically scoped temporaries */
49