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