This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[patch _61] Minor corrections in C.pm
[perl5.git] / thrdvar.h
1 /***********************************************/
2 /* Global only to current thread               */
3 /***********************************************/
4
5 /* Don't forget to re-run embed.pl to propagate changes! */
6
7 /* The 'T' prefix is only needed for vars that need appropriate #defines
8  * generated when built with or without USE_THREADS.  It is also used
9  * to generate the appropriate export list for win32.
10  *
11  * When building without USE_THREADS, these variables will be truly global.
12  * When building without USE_THREADS but with MULTIPLICITY, these variables
13  * will be global per-interpreter.
14  *
15  * Avoid build-specific #ifdefs here, like DEBUGGING.  That way,
16  * we can keep binary compatibility of the curinterp structure */
17
18 /* Important ones in the first cache line (if alignment is done right) */
19
20 #ifdef USE_THREADS
21 PERLVAR(interp,         PerlInterpreter*)       /* thread owner */
22 #endif
23
24 PERLVAR(Tstack_sp,      SV **)          /* top of the stack */
25 #ifdef OP_IN_REGISTER
26 PERLVAR(Topsave,        OP *)
27 #else
28 PERLVAR(Top,            OP *)           /* currently executing op */
29 #endif
30 PERLVAR(Tcurpad,        SV **)          /* active pad (lexicals+tmps) */
31
32 PERLVAR(Tstack_base,    SV **)
33 PERLVAR(Tstack_max,     SV **)
34
35 PERLVAR(Tscopestack,    I32 *)          /* scopes we've ENTERed */
36 PERLVAR(Tscopestack_ix, I32)
37 PERLVAR(Tscopestack_max,I32)
38
39 PERLVAR(Tsavestack,     ANY *)          /* items that need to be restored
40                                            when LEAVEing scopes we've ENTERed */
41 PERLVAR(Tsavestack_ix,  I32)
42 PERLVAR(Tsavestack_max, I32)
43
44 PERLVAR(Ttmps_stack,    SV **)          /* mortals we've made */
45 PERLVARI(Ttmps_ix,      I32,    -1)
46 PERLVARI(Ttmps_floor,   I32,    -1)
47 PERLVAR(Ttmps_max,      I32)
48
49 PERLVAR(Tmarkstack,     I32 *)          /* stack_sp locations we're remembering */
50 PERLVAR(Tmarkstack_ptr, I32 *)
51 PERLVAR(Tmarkstack_max, I32 *)
52
53 PERLVAR(Tretstack,      OP **)          /* OPs we have postponed executing */
54 PERLVAR(Tretstack_ix,   I32)
55 PERLVAR(Tretstack_max,  I32)
56
57 PERLVAR(TSv,            SV *)           /* used to hold temporary values */
58 PERLVAR(TXpv,           XPV *)          /* used to hold temporary values */
59 PERLVAR(Tna,            STRLEN)         /* for use in SvPV when length is
60                                            Not Applicable */
61
62 /* stat stuff */
63 PERLVAR(Tstatbuf,       Stat_t)
64 PERLVAR(Tstatcache,     Stat_t)         /* _ */
65 PERLVAR(Tstatgv,        GV *)
66 PERLVARI(Tstatname,     SV *,   Nullsv)
67
68 #ifdef HAS_TIMES
69 PERLVAR(Ttimesbuf,      struct tms)
70 #endif
71
72 /* Fields used by magic variables such as $@, $/ and so on */
73 PERLVAR(Ttainted,       bool)           /* using variables controlled by $< */
74 PERLVAR(Tcurpm,         PMOP *)         /* what to do \ interps in REs from */
75 PERLVAR(Tnrs,           SV *)
76 PERLVAR(Trs,            SV *)           /* input record separator $/ */
77 PERLVAR(Tlast_in_gv,    GV *)           /* GV used in last <FH> */
78 PERLVAR(Tofs,           char *)         /* output field separator $, */
79 PERLVAR(Tofslen,        STRLEN)
80 PERLVAR(Tdefoutgv,      GV *)           /* default FH for output */
81 PERLVARI(Tchopset,      char *, " \n-") /* $: */
82 PERLVAR(Tformtarget,    SV *)
83 PERLVAR(Tbodytarget,    SV *)
84 PERLVAR(Ttoptarget,     SV *)
85
86 /* Stashes */
87 PERLVAR(Tdefstash,      HV *)           /* main symbol table */
88 PERLVAR(Tcurstash,      HV *)           /* symbol table for current package */
89
90 PERLVAR(Trestartop,     OP *)           /* propagating an error from croak? */
91 PERLVARI(Tcurcop,       COP * VOL,      &PL_compiling)
92 PERLVAR(Tin_eval,       VOL int)        /* trap "fatal" errors? */
93 PERLVAR(Tdelaymagic,    int)            /* ($<,$>) = ... */
94 PERLVARI(Tdirty,        bool, FALSE)    /* in the middle of tearing things down? */
95 PERLVAR(Tlocalizing,    int)            /* are we processing a local() list? */
96
97 PERLVAR(Tcurstack,      AV *)           /* THE STACK */
98 PERLVAR(Tcurstackinfo,  PERL_SI *)      /* current stack + context */
99 PERLVAR(Tmainstack,     AV *)           /* the stack when nothing funny is happening */
100
101 PERLVAR(Ttop_env,       JMPENV *)       /* ptr. to current sigjmp() environment */
102 PERLVAR(Tstart_env,     JMPENV)         /* empty startup sigjmp() environment */
103 PERLVARI(Tprotect,      protect_proc_t, MEMBER_TO_FPTR(Perl_default_protect))
104 PERLVARI(Terrors,       SV *, Nullsv)   /* outstanding queued errors */
105
106 /* statics "owned" by various functions */
107 PERLVAR(Tav_fetch_sv,   SV *)           /* owned by av_fetch() */
108 PERLVAR(Thv_fetch_sv,   SV *)           /* owned by hv_fetch() */
109 PERLVAR(Thv_fetch_ent_mh, HE)           /* owned by hv_fetch_ent() */
110
111 PERLVAR(Tmodcount,      I32)            /* how much mod()ification in assignment? */
112
113 PERLVAR(Tlastgotoprobe, OP*)            /* from pp_ctl.c */
114 PERLVARI(Tdumpindent,   I32, 4)         /* # of blanks per dump indentation level */
115
116 /* sort stuff */
117 PERLVAR(Tsortcop,       OP *)           /* user defined sort routine */
118 PERLVAR(Tsortstash,     HV *)           /* which is in some package or other */
119 PERLVAR(Tfirstgv,       GV *)           /* $a */
120 PERLVAR(Tsecondgv,      GV *)           /* $b */
121 PERLVAR(Tsortcxix,      I32)            /* from pp_ctl.c */
122
123 /* float buffer */
124 PERLVAR(Tefloatbuf,     char*)
125 PERLVAR(Tefloatsize,    STRLEN)
126
127 /* regex stuff */
128
129 PERLVAR(Tscreamfirst,   I32 *)
130 PERLVAR(Tscreamnext,    I32 *)
131 PERLVARI(Tmaxscream,    I32,    -1)
132 PERLVAR(Tlastscream,    SV *)
133
134 PERLVAR(Tregdummy,      regnode)        /* from regcomp.c */
135 PERLVAR(Tregcomp_parse, char*)          /* Input-scan pointer. */
136 PERLVAR(Tregxend,       char*)          /* End of input for compile */
137 PERLVAR(Tregcode,       regnode*)       /* Code-emit pointer; &regdummy = don't */
138 PERLVAR(Tregnaughty,    I32)            /* How bad is this pattern? */
139 PERLVAR(Tregsawback,    I32)            /* Did we see \1, ...? */
140 PERLVAR(Tregprecomp,    char *)         /* uncompiled string. */
141 PERLVAR(Tregnpar,       I32)            /* () count. */
142 PERLVAR(Tregsize,       I32)            /* Code size. */
143 PERLVAR(Tregflags,      U16)            /* are we folding, multilining? */
144 PERLVAR(Tregseen,       U32)            /* from regcomp.c */
145 PERLVAR(Tseen_zerolen,  I32)            /* from regcomp.c */
146 PERLVAR(Tseen_evals,    I32)            /* from regcomp.c */
147 PERLVAR(Tregcomp_rx,    regexp *)       /* from regcomp.c */
148 PERLVAR(Textralen,      I32)            /* from regcomp.c */
149 PERLVAR(Tcolorset,      int)            /* from regcomp.c */
150 PERLVARA(Tcolors,6,     char *)         /* from regcomp.c */
151 PERLVAR(Treg_whilem_seen, I32)          /* number of WHILEM in this expr */
152 PERLVAR(Treginput,      char *)         /* String-input pointer. */
153 PERLVAR(Tregbol,        char *)         /* Beginning of input, for ^ check. */
154 PERLVAR(Tregeol,        char *)         /* End of input, for $ check. */
155 PERLVAR(Tregstartp,     I32 *)          /* Pointer to startp array. */
156 PERLVAR(Tregendp,       I32 *)          /* Ditto for endp. */
157 PERLVAR(Treglastparen,  U32 *)          /* Similarly for lastparen. */
158 PERLVAR(Tregtill,       char *)         /* How far we are required to go. */
159 PERLVAR(Tregprev,       char)           /* char before regbol, \n if none */
160 PERLVAR(Treg_start_tmp, char **)        /* from regexec.c */
161 PERLVAR(Treg_start_tmpl,U32)            /* from regexec.c */
162 PERLVAR(Tregdata,       struct reg_data *)
163                                         /* from regexec.c renamed was data */
164 PERLVAR(Tbostr,         char *)         /* from regexec.c */
165 PERLVAR(Treg_flags,     U32)            /* from regexec.c */
166 PERLVAR(Treg_eval_set,  I32)            /* from regexec.c */
167 PERLVAR(Tregnarrate,    I32)            /* from regexec.c */
168 PERLVAR(Tregprogram,    regnode *)      /* from regexec.c */
169 PERLVARI(Tregindent,    int,        0)  /* from regexec.c */
170 PERLVAR(Tregcc,         CURCUR *)       /* from regexec.c */
171 PERLVAR(Treg_call_cc,   struct re_cc_state *)   /* from regexec.c */
172 PERLVAR(Treg_re,        regexp *)       /* from regexec.c */
173 PERLVAR(Treg_ganch,     char *)         /* position of \G */
174 PERLVAR(Treg_sv,        SV *)           /* what we match against */
175 PERLVAR(Treg_magic,     MAGIC *)        /* pos-magic of what we match */
176 PERLVAR(Treg_oldpos,    I32)            /* old pos of what we match */
177 PERLVARI(Treg_oldcurpm, PMOP*, NULL)    /* curpm before match */
178 PERLVARI(Treg_curpm,    PMOP*, NULL)    /* curpm during match */
179 PERLVAR(Treg_oldsaved,  char*)          /* old saved substr during match */
180 PERLVAR(Treg_oldsavedlen, STRLEN)       /* old length of saved substr during match */
181 PERLVAR(Treg_maxiter,   I32)            /* max wait until caching pos */
182 PERLVAR(Treg_leftiter,  I32)            /* wait until caching pos */
183 PERLVARI(Treg_poscache, char *, Nullch) /* cache of pos of WHILEM */
184 PERLVAR(Treg_poscache_size, STRLEN)     /* size of pos cache of WHILEM */
185
186 PERLVARI(Tregcompp,     regcomp_t, MEMBER_TO_FPTR(Perl_pregcomp))
187                                         /* Pointer to REx compiler */
188 PERLVARI(Tregexecp,     regexec_t, MEMBER_TO_FPTR(Perl_regexec_flags))
189                                         /* Pointer to REx executer */
190 PERLVARI(Tregint_start, re_intuit_start_t, MEMBER_TO_FPTR(Perl_re_intuit_start))
191                                         /* Pointer to optimized REx executer */
192 PERLVARI(Tregint_string,re_intuit_string_t, MEMBER_TO_FPTR(Perl_re_intuit_string))
193                                         /* Pointer to optimized REx string */
194 PERLVARI(Tregfree,      regfree_t, MEMBER_TO_FPTR(Perl_pregfree))
195                                         /* Pointer to REx free()er */
196
197 PERLVARI(Treginterp_cnt,int,        0)  /* Whether `Regexp'
198                                                    was interpolated. */
199 PERLVARI(Treg_starttry, char *,     0)  /* -Dr: where regtry was called. */
200 PERLVARI(Twatchaddr,    char **,    0)
201 PERLVAR(Twatchok,       char *)
202
203 /* Note that the variables below are all explicitly referenced in the code
204  * as thr->whatever and therefore don't need the 'T' prefix. */
205
206 #ifdef USE_THREADS
207
208 PERLVAR(oursv,          SV *)
209 PERLVAR(cvcache,        HV *)
210 PERLVAR(self,           perl_os_thread) /* Underlying thread object */
211 PERLVAR(flags,          U32)
212 PERLVAR(threadsv,       AV *)           /* Per-thread SVs ($_, $@ etc.) */
213 PERLVAR(threadsvp,      SV **)          /* AvARRAY(threadsv) */
214 PERLVAR(specific,       AV *)           /* Thread-specific user data */
215 PERLVAR(errsv,          SV *)           /* Backing SV for $@ */
216 PERLVAR(errhv,          HV *)           /* HV for what was %@ in pp_ctl.c */
217 PERLVAR(mutex,          perl_mutex)     /* For the fields others can change */
218 PERLVAR(tid,            U32)
219 PERLVAR(prev,           struct perl_thread *)
220 PERLVAR(next,           struct perl_thread *)
221                                         /* Circular linked list of threads */
222
223 #ifdef HAVE_THREAD_INTERN
224 PERLVAR(i,              struct thread_intern)
225                                         /* Platform-dependent internals */
226 #endif
227
228 PERLVAR(trailing_nul,   char)           /* For the sake of thrsv and oursv */
229
230 #endif /* USE_THREADS */