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