This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
valgrind --help didn't return a happy exit status.
[perl5.git] / embedvar.h
1 /*
2  *    embedvar.h
3  *
4  *    Copyright (C) 1999, 2000, 2001, 2002, 2003, by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  * !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
10  * This file is built by embed.pl from data in embed.fnc, embed.pl,
11  * pp.sym, intrpvar.h, perlvars.h and thrdvar.h.
12  * Any changes made here will be lost!
13  *
14  * Edit those files and run 'make regen_headers' to effect changes.
15  */
16
17 /* (Doing namespace management portably in C is really gross.) */
18
19 /*
20    The following combinations of MULTIPLICITY and PERL_IMPLICIT_CONTEXT
21    are supported:
22      1) none
23      2) MULTIPLICITY    # supported for compatibility
24      3) MULTIPLICITY && PERL_IMPLICIT_CONTEXT
25
26    All other combinations of these flags are errors.
27
28    only #3 is supported directly, while #2 is a special
29    case of #3 (supported by redefining vTHX appropriately).
30 */
31
32 #if defined(MULTIPLICITY)
33 /* cases 2 and 3 above */
34
35 #  if defined(PERL_IMPLICIT_CONTEXT)
36 #    define vTHX        aTHX
37 #  else
38 #    define vTHX        PERL_GET_INTERP
39 #  endif
40
41 #define PL_Sv                   (vTHX->TSv)
42 #define PL_Xpv                  (vTHX->TXpv)
43 #define PL_av_fetch_sv          (vTHX->Tav_fetch_sv)
44 #define PL_bodytarget           (vTHX->Tbodytarget)
45 #define PL_bostr                (vTHX->Tbostr)
46 #define PL_chopset              (vTHX->Tchopset)
47 #define PL_colors               (vTHX->Tcolors)
48 #define PL_colorset             (vTHX->Tcolorset)
49 #define PL_curcop               (vTHX->Tcurcop)
50 #define PL_curpad               (vTHX->Tcurpad)
51 #define PL_curpm                (vTHX->Tcurpm)
52 #define PL_curstack             (vTHX->Tcurstack)
53 #define PL_curstackinfo         (vTHX->Tcurstackinfo)
54 #define PL_curstash             (vTHX->Tcurstash)
55 #define PL_defoutgv             (vTHX->Tdefoutgv)
56 #define PL_defstash             (vTHX->Tdefstash)
57 #define PL_delaymagic           (vTHX->Tdelaymagic)
58 #define PL_dirty                (vTHX->Tdirty)
59 #define PL_dumpindent           (vTHX->Tdumpindent)
60 #define PL_efloatbuf            (vTHX->Tefloatbuf)
61 #define PL_efloatsize           (vTHX->Tefloatsize)
62 #define PL_errors               (vTHX->Terrors)
63 #define PL_firstgv              (vTHX->Tfirstgv)
64 #define PL_formtarget           (vTHX->Tformtarget)
65 #define PL_hv_fetch_ent_mh      (vTHX->Thv_fetch_ent_mh)
66 #define PL_hv_fetch_sv          (vTHX->Thv_fetch_sv)
67 #define PL_in_eval              (vTHX->Tin_eval)
68 #define PL_last_in_gv           (vTHX->Tlast_in_gv)
69 #define PL_lastgotoprobe        (vTHX->Tlastgotoprobe)
70 #define PL_lastscream           (vTHX->Tlastscream)
71 #define PL_localizing           (vTHX->Tlocalizing)
72 #define PL_mainstack            (vTHX->Tmainstack)
73 #define PL_markstack            (vTHX->Tmarkstack)
74 #define PL_markstack_max        (vTHX->Tmarkstack_max)
75 #define PL_markstack_ptr        (vTHX->Tmarkstack_ptr)
76 #define PL_maxscream            (vTHX->Tmaxscream)
77 #define PL_modcount             (vTHX->Tmodcount)
78 #define PL_na                   (vTHX->Tna)
79 #define PL_nrs                  (vTHX->Tnrs)
80 #define PL_ofs_sv               (vTHX->Tofs_sv)
81 #define PL_op                   (vTHX->Top)
82 #define PL_opsave               (vTHX->Topsave)
83 #define PL_peepp                (vTHX->Tpeepp)
84 #define PL_protect              (vTHX->Tprotect)
85 #define PL_reg_call_cc          (vTHX->Treg_call_cc)
86 #define PL_reg_curpm            (vTHX->Treg_curpm)
87 #define PL_reg_eval_set         (vTHX->Treg_eval_set)
88 #define PL_reg_flags            (vTHX->Treg_flags)
89 #define PL_reg_ganch            (vTHX->Treg_ganch)
90 #define PL_reg_leftiter         (vTHX->Treg_leftiter)
91 #define PL_reg_magic            (vTHX->Treg_magic)
92 #define PL_reg_match_utf8       (vTHX->Treg_match_utf8)
93 #define PL_reg_maxiter          (vTHX->Treg_maxiter)
94 #define PL_reg_oldcurpm         (vTHX->Treg_oldcurpm)
95 #define PL_reg_oldpos           (vTHX->Treg_oldpos)
96 #define PL_reg_oldsaved         (vTHX->Treg_oldsaved)
97 #define PL_reg_oldsavedlen      (vTHX->Treg_oldsavedlen)
98 #define PL_reg_poscache         (vTHX->Treg_poscache)
99 #define PL_reg_poscache_size    (vTHX->Treg_poscache_size)
100 #define PL_reg_re               (vTHX->Treg_re)
101 #define PL_reg_start_tmp        (vTHX->Treg_start_tmp)
102 #define PL_reg_start_tmpl       (vTHX->Treg_start_tmpl)
103 #define PL_reg_starttry         (vTHX->Treg_starttry)
104 #define PL_reg_sv               (vTHX->Treg_sv)
105 #define PL_regbol               (vTHX->Tregbol)
106 #define PL_regcc                (vTHX->Tregcc)
107 #define PL_regcompp             (vTHX->Tregcompp)
108 #define PL_regdata              (vTHX->Tregdata)
109 #define PL_regdummy             (vTHX->Tregdummy)
110 #define PL_regendp              (vTHX->Tregendp)
111 #define PL_regeol               (vTHX->Tregeol)
112 #define PL_regexecp             (vTHX->Tregexecp)
113 #define PL_regfree              (vTHX->Tregfree)
114 #define PL_regindent            (vTHX->Tregindent)
115 #define PL_reginput             (vTHX->Treginput)
116 #define PL_regint_start         (vTHX->Tregint_start)
117 #define PL_regint_string        (vTHX->Tregint_string)
118 #define PL_reginterp_cnt        (vTHX->Treginterp_cnt)
119 #define PL_reglastcloseparen    (vTHX->Treglastcloseparen)
120 #define PL_reglastparen         (vTHX->Treglastparen)
121 #define PL_regnarrate           (vTHX->Tregnarrate)
122 #define PL_regnpar              (vTHX->Tregnpar)
123 #define PL_regprecomp           (vTHX->Tregprecomp)
124 #define PL_regprogram           (vTHX->Tregprogram)
125 #define PL_regsize              (vTHX->Tregsize)
126 #define PL_regstartp            (vTHX->Tregstartp)
127 #define PL_regtill              (vTHX->Tregtill)
128 #define PL_restartop            (vTHX->Trestartop)
129 #define PL_retstack             (vTHX->Tretstack)
130 #define PL_retstack_ix          (vTHX->Tretstack_ix)
131 #define PL_retstack_max         (vTHX->Tretstack_max)
132 #define PL_rs                   (vTHX->Trs)
133 #define PL_savestack            (vTHX->Tsavestack)
134 #define PL_savestack_ix         (vTHX->Tsavestack_ix)
135 #define PL_savestack_max        (vTHX->Tsavestack_max)
136 #define PL_scopestack           (vTHX->Tscopestack)
137 #define PL_scopestack_ix        (vTHX->Tscopestack_ix)
138 #define PL_scopestack_max       (vTHX->Tscopestack_max)
139 #define PL_screamfirst          (vTHX->Tscreamfirst)
140 #define PL_screamnext           (vTHX->Tscreamnext)
141 #define PL_secondgv             (vTHX->Tsecondgv)
142 #define PL_sortcop              (vTHX->Tsortcop)
143 #define PL_sortcxix             (vTHX->Tsortcxix)
144 #define PL_sortstash            (vTHX->Tsortstash)
145 #define PL_stack_base           (vTHX->Tstack_base)
146 #define PL_stack_max            (vTHX->Tstack_max)
147 #define PL_stack_sp             (vTHX->Tstack_sp)
148 #define PL_start_env            (vTHX->Tstart_env)
149 #define PL_statbuf              (vTHX->Tstatbuf)
150 #define PL_statcache            (vTHX->Tstatcache)
151 #define PL_statgv               (vTHX->Tstatgv)
152 #define PL_statname             (vTHX->Tstatname)
153 #define PL_tainted              (vTHX->Ttainted)
154 #define PL_timesbuf             (vTHX->Ttimesbuf)
155 #define PL_tmps_floor           (vTHX->Ttmps_floor)
156 #define PL_tmps_ix              (vTHX->Ttmps_ix)
157 #define PL_tmps_max             (vTHX->Ttmps_max)
158 #define PL_tmps_stack           (vTHX->Ttmps_stack)
159 #define PL_top_env              (vTHX->Ttop_env)
160 #define PL_toptarget            (vTHX->Ttoptarget)
161 #define PL_watchaddr            (vTHX->Twatchaddr)
162 #define PL_watchok              (vTHX->Twatchok)
163
164 /* cases 2 and 3 above */
165
166 #define PL_Argv                 (vTHX->IArgv)
167 #define PL_Cmd                  (vTHX->ICmd)
168 #define PL_DBassertion          (vTHX->IDBassertion)
169 #define PL_DBcv                 (vTHX->IDBcv)
170 #define PL_DBgv                 (vTHX->IDBgv)
171 #define PL_DBline               (vTHX->IDBline)
172 #define PL_DBsignal             (vTHX->IDBsignal)
173 #define PL_DBsingle             (vTHX->IDBsingle)
174 #define PL_DBsub                (vTHX->IDBsub)
175 #define PL_DBtrace              (vTHX->IDBtrace)
176 #define PL_Dir                  (vTHX->IDir)
177 #define PL_Env                  (vTHX->IEnv)
178 #define PL_LIO                  (vTHX->ILIO)
179 #define PL_Mem                  (vTHX->IMem)
180 #define PL_MemParse             (vTHX->IMemParse)
181 #define PL_MemShared            (vTHX->IMemShared)
182 #define PL_OpPtr                (vTHX->IOpPtr)
183 #define PL_OpSlab               (vTHX->IOpSlab)
184 #define PL_OpSpace              (vTHX->IOpSpace)
185 #define PL_Proc                 (vTHX->IProc)
186 #define PL_Sock                 (vTHX->ISock)
187 #define PL_StdIO                (vTHX->IStdIO)
188 #define PL_amagic_generation    (vTHX->Iamagic_generation)
189 #define PL_an                   (vTHX->Ian)
190 #define PL_argvgv               (vTHX->Iargvgv)
191 #define PL_argvout_stack        (vTHX->Iargvout_stack)
192 #define PL_argvoutgv            (vTHX->Iargvoutgv)
193 #define PL_basetime             (vTHX->Ibasetime)
194 #define PL_beginav              (vTHX->Ibeginav)
195 #define PL_beginav_save         (vTHX->Ibeginav_save)
196 #define PL_bitcount             (vTHX->Ibitcount)
197 #define PL_bufend               (vTHX->Ibufend)
198 #define PL_bufptr               (vTHX->Ibufptr)
199 #define PL_checkav              (vTHX->Icheckav)
200 #define PL_checkav_save         (vTHX->Icheckav_save)
201 #define PL_clocktick            (vTHX->Iclocktick)
202 #define PL_collation_ix         (vTHX->Icollation_ix)
203 #define PL_collation_name       (vTHX->Icollation_name)
204 #define PL_collation_standard   (vTHX->Icollation_standard)
205 #define PL_collxfrm_base        (vTHX->Icollxfrm_base)
206 #define PL_collxfrm_mult        (vTHX->Icollxfrm_mult)
207 #define PL_compcv               (vTHX->Icompcv)
208 #define PL_compiling            (vTHX->Icompiling)
209 #define PL_comppad              (vTHX->Icomppad)
210 #define PL_comppad_name         (vTHX->Icomppad_name)
211 #define PL_comppad_name_fill    (vTHX->Icomppad_name_fill)
212 #define PL_comppad_name_floor   (vTHX->Icomppad_name_floor)
213 #define PL_cop_seqmax           (vTHX->Icop_seqmax)
214 #define PL_copline              (vTHX->Icopline)
215 #define PL_cryptseen            (vTHX->Icryptseen)
216 #define PL_cshlen               (vTHX->Icshlen)
217 #define PL_cshname              (vTHX->Icshname)
218 #define PL_curcopdb             (vTHX->Icurcopdb)
219 #define PL_curstname            (vTHX->Icurstname)
220 #define PL_custom_op_descs      (vTHX->Icustom_op_descs)
221 #define PL_custom_op_names      (vTHX->Icustom_op_names)
222 #define PL_cv_has_eval          (vTHX->Icv_has_eval)
223 #define PL_dbargs               (vTHX->Idbargs)
224 #define PL_debstash             (vTHX->Idebstash)
225 #define PL_debug                (vTHX->Idebug)
226 #define PL_debug_pad            (vTHX->Idebug_pad)
227 #define PL_def_layerlist        (vTHX->Idef_layerlist)
228 #define PL_defgv                (vTHX->Idefgv)
229 #define PL_diehook              (vTHX->Idiehook)
230 #define PL_doextract            (vTHX->Idoextract)
231 #define PL_doswitches           (vTHX->Idoswitches)
232 #define PL_dowarn               (vTHX->Idowarn)
233 #define PL_e_script             (vTHX->Ie_script)
234 #define PL_egid                 (vTHX->Iegid)
235 #define PL_encoding             (vTHX->Iencoding)
236 #define PL_endav                (vTHX->Iendav)
237 #define PL_envgv                (vTHX->Ienvgv)
238 #define PL_errgv                (vTHX->Ierrgv)
239 #define PL_error_count          (vTHX->Ierror_count)
240 #define PL_euid                 (vTHX->Ieuid)
241 #define PL_eval_root            (vTHX->Ieval_root)
242 #define PL_eval_start           (vTHX->Ieval_start)
243 #define PL_evalseq              (vTHX->Ievalseq)
244 #define PL_exit_flags           (vTHX->Iexit_flags)
245 #define PL_exitlist             (vTHX->Iexitlist)
246 #define PL_exitlistlen          (vTHX->Iexitlistlen)
247 #define PL_expect               (vTHX->Iexpect)
248 #define PL_fdpid                (vTHX->Ifdpid)
249 #define PL_filemode             (vTHX->Ifilemode)
250 #define PL_forkprocess          (vTHX->Iforkprocess)
251 #define PL_formfeed             (vTHX->Iformfeed)
252 #define PL_generation           (vTHX->Igeneration)
253 #define PL_gensym               (vTHX->Igensym)
254 #define PL_gid                  (vTHX->Igid)
255 #define PL_glob_index           (vTHX->Iglob_index)
256 #define PL_globalstash          (vTHX->Iglobalstash)
257 #define PL_hash_seed            (vTHX->Ihash_seed)
258 #define PL_hash_seed_set        (vTHX->Ihash_seed_set)
259 #define PL_he_arenaroot         (vTHX->Ihe_arenaroot)
260 #define PL_he_root              (vTHX->Ihe_root)
261 #define PL_hintgv               (vTHX->Ihintgv)
262 #define PL_hints                (vTHX->Ihints)
263 #define PL_in_clean_all         (vTHX->Iin_clean_all)
264 #define PL_in_clean_objs        (vTHX->Iin_clean_objs)
265 #define PL_in_load_module       (vTHX->Iin_load_module)
266 #define PL_in_my                (vTHX->Iin_my)
267 #define PL_in_my_stash          (vTHX->Iin_my_stash)
268 #define PL_incgv                (vTHX->Iincgv)
269 #define PL_initav               (vTHX->Iinitav)
270 #define PL_inplace              (vTHX->Iinplace)
271 #define PL_known_layers         (vTHX->Iknown_layers)
272 #define PL_last_lop             (vTHX->Ilast_lop)
273 #define PL_last_lop_op          (vTHX->Ilast_lop_op)
274 #define PL_last_swash_hv        (vTHX->Ilast_swash_hv)
275 #define PL_last_swash_key       (vTHX->Ilast_swash_key)
276 #define PL_last_swash_klen      (vTHX->Ilast_swash_klen)
277 #define PL_last_swash_slen      (vTHX->Ilast_swash_slen)
278 #define PL_last_swash_tmps      (vTHX->Ilast_swash_tmps)
279 #define PL_last_uni             (vTHX->Ilast_uni)
280 #define PL_lastfd               (vTHX->Ilastfd)
281 #define PL_laststatval          (vTHX->Ilaststatval)
282 #define PL_laststype            (vTHX->Ilaststype)
283 #define PL_lex_brackets         (vTHX->Ilex_brackets)
284 #define PL_lex_brackstack       (vTHX->Ilex_brackstack)
285 #define PL_lex_casemods         (vTHX->Ilex_casemods)
286 #define PL_lex_casestack        (vTHX->Ilex_casestack)
287 #define PL_lex_defer            (vTHX->Ilex_defer)
288 #define PL_lex_dojoin           (vTHX->Ilex_dojoin)
289 #define PL_lex_expect           (vTHX->Ilex_expect)
290 #define PL_lex_formbrack        (vTHX->Ilex_formbrack)
291 #define PL_lex_inpat            (vTHX->Ilex_inpat)
292 #define PL_lex_inwhat           (vTHX->Ilex_inwhat)
293 #define PL_lex_op               (vTHX->Ilex_op)
294 #define PL_lex_repl             (vTHX->Ilex_repl)
295 #define PL_lex_starts           (vTHX->Ilex_starts)
296 #define PL_lex_state            (vTHX->Ilex_state)
297 #define PL_lex_stuff            (vTHX->Ilex_stuff)
298 #define PL_lineary              (vTHX->Ilineary)
299 #define PL_linestart            (vTHX->Ilinestart)
300 #define PL_linestr              (vTHX->Ilinestr)
301 #define PL_localpatches         (vTHX->Ilocalpatches)
302 #define PL_lockhook             (vTHX->Ilockhook)
303 #define PL_main_cv              (vTHX->Imain_cv)
304 #define PL_main_root            (vTHX->Imain_root)
305 #define PL_main_start           (vTHX->Imain_start)
306 #define PL_max_intro_pending    (vTHX->Imax_intro_pending)
307 #define PL_maxo                 (vTHX->Imaxo)
308 #define PL_maxsysfd             (vTHX->Imaxsysfd)
309 #define PL_mess_sv              (vTHX->Imess_sv)
310 #define PL_min_intro_pending    (vTHX->Imin_intro_pending)
311 #define PL_minus_F              (vTHX->Iminus_F)
312 #define PL_minus_a              (vTHX->Iminus_a)
313 #define PL_minus_c              (vTHX->Iminus_c)
314 #define PL_minus_l              (vTHX->Iminus_l)
315 #define PL_minus_n              (vTHX->Iminus_n)
316 #define PL_minus_p              (vTHX->Iminus_p)
317 #define PL_modglobal            (vTHX->Imodglobal)
318 #define PL_multi_close          (vTHX->Imulti_close)
319 #define PL_multi_end            (vTHX->Imulti_end)
320 #define PL_multi_open           (vTHX->Imulti_open)
321 #define PL_multi_start          (vTHX->Imulti_start)
322 #define PL_multiline            (vTHX->Imultiline)
323 #define PL_nexttoke             (vTHX->Inexttoke)
324 #define PL_nexttype             (vTHX->Inexttype)
325 #define PL_nextval              (vTHX->Inextval)
326 #define PL_nice_chunk           (vTHX->Inice_chunk)
327 #define PL_nice_chunk_size      (vTHX->Inice_chunk_size)
328 #define PL_nomemok              (vTHX->Inomemok)
329 #define PL_numeric_compat1      (vTHX->Inumeric_compat1)
330 #define PL_numeric_local        (vTHX->Inumeric_local)
331 #define PL_numeric_name         (vTHX->Inumeric_name)
332 #define PL_numeric_radix_sv     (vTHX->Inumeric_radix_sv)
333 #define PL_numeric_standard     (vTHX->Inumeric_standard)
334 #define PL_ofmt                 (vTHX->Iofmt)
335 #define PL_oldbufptr            (vTHX->Ioldbufptr)
336 #define PL_oldname              (vTHX->Ioldname)
337 #define PL_oldoldbufptr         (vTHX->Ioldoldbufptr)
338 #define PL_op_mask              (vTHX->Iop_mask)
339 #define PL_op_seqmax            (vTHX->Iop_seqmax)
340 #define PL_origalen             (vTHX->Iorigalen)
341 #define PL_origargc             (vTHX->Iorigargc)
342 #define PL_origargv             (vTHX->Iorigargv)
343 #define PL_origenviron          (vTHX->Iorigenviron)
344 #define PL_origfilename         (vTHX->Iorigfilename)
345 #define PL_ors_sv               (vTHX->Iors_sv)
346 #define PL_osname               (vTHX->Iosname)
347 #define PL_pad_reset_pending    (vTHX->Ipad_reset_pending)
348 #define PL_padix                (vTHX->Ipadix)
349 #define PL_padix_floor          (vTHX->Ipadix_floor)
350 #define PL_patchlevel           (vTHX->Ipatchlevel)
351 #define PL_pending_ident        (vTHX->Ipending_ident)
352 #define PL_perl_destruct_level  (vTHX->Iperl_destruct_level)
353 #define PL_perldb               (vTHX->Iperldb)
354 #define PL_perlio               (vTHX->Iperlio)
355 #define PL_pidstatus            (vTHX->Ipidstatus)
356 #define PL_ppid                 (vTHX->Ippid)
357 #define PL_preambleav           (vTHX->Ipreambleav)
358 #define PL_preambled            (vTHX->Ipreambled)
359 #define PL_preprocess           (vTHX->Ipreprocess)
360 #define PL_profiledata          (vTHX->Iprofiledata)
361 #define PL_psig_name            (vTHX->Ipsig_name)
362 #define PL_psig_pend            (vTHX->Ipsig_pend)
363 #define PL_psig_ptr             (vTHX->Ipsig_ptr)
364 #define PL_ptr_table            (vTHX->Iptr_table)
365 #define PL_reentrant_buffer     (vTHX->Ireentrant_buffer)
366 #define PL_reentrant_retint     (vTHX->Ireentrant_retint)
367 #define PL_regex_pad            (vTHX->Iregex_pad)
368 #define PL_regex_padav          (vTHX->Iregex_padav)
369 #define PL_replgv               (vTHX->Ireplgv)
370 #define PL_rsfp                 (vTHX->Irsfp)
371 #define PL_rsfp_filters         (vTHX->Irsfp_filters)
372 #define PL_runops               (vTHX->Irunops)
373 #define PL_runops_dbg           (vTHX->Irunops_dbg)
374 #define PL_runops_std           (vTHX->Irunops_std)
375 #define PL_savebegin            (vTHX->Isavebegin)
376 #define PL_sawampersand         (vTHX->Isawampersand)
377 #define PL_sh_path_compat       (vTHX->Ish_path_compat)
378 #define PL_sharehook            (vTHX->Isharehook)
379 #define PL_sig_pending          (vTHX->Isig_pending)
380 #define PL_sighandlerp          (vTHX->Isighandlerp)
381 #define PL_signals              (vTHX->Isignals)
382 #define PL_sort_RealCmp         (vTHX->Isort_RealCmp)
383 #define PL_splitstr             (vTHX->Isplitstr)
384 #define PL_srand_called         (vTHX->Isrand_called)
385 #define PL_stashcache           (vTHX->Istashcache)
386 #define PL_statusvalue          (vTHX->Istatusvalue)
387 #define PL_statusvalue_vms      (vTHX->Istatusvalue_vms)
388 #define PL_stderrgv             (vTHX->Istderrgv)
389 #define PL_stdingv              (vTHX->Istdingv)
390 #define PL_strtab               (vTHX->Istrtab)
391 #define PL_sub_generation       (vTHX->Isub_generation)
392 #define PL_sublex_info          (vTHX->Isublex_info)
393 #define PL_subline              (vTHX->Isubline)
394 #define PL_subname              (vTHX->Isubname)
395 #define PL_sv_arenaroot         (vTHX->Isv_arenaroot)
396 #define PL_sv_count             (vTHX->Isv_count)
397 #define PL_sv_no                (vTHX->Isv_no)
398 #define PL_sv_objcount          (vTHX->Isv_objcount)
399 #define PL_sv_root              (vTHX->Isv_root)
400 #define PL_sv_undef             (vTHX->Isv_undef)
401 #define PL_sv_yes               (vTHX->Isv_yes)
402 #define PL_sys_intern           (vTHX->Isys_intern)
403 #define PL_taint_warn           (vTHX->Itaint_warn)
404 #define PL_tainting             (vTHX->Itainting)
405 #define PL_threadhook           (vTHX->Ithreadhook)
406 #define PL_tokenbuf             (vTHX->Itokenbuf)
407 #define PL_uid                  (vTHX->Iuid)
408 #define PL_unicode              (vTHX->Iunicode)
409 #define PL_unlockhook           (vTHX->Iunlockhook)
410 #define PL_unsafe               (vTHX->Iunsafe)
411 #define PL_utf8_alnum           (vTHX->Iutf8_alnum)
412 #define PL_utf8_alnumc          (vTHX->Iutf8_alnumc)
413 #define PL_utf8_alpha           (vTHX->Iutf8_alpha)
414 #define PL_utf8_ascii           (vTHX->Iutf8_ascii)
415 #define PL_utf8_cntrl           (vTHX->Iutf8_cntrl)
416 #define PL_utf8_digit           (vTHX->Iutf8_digit)
417 #define PL_utf8_graph           (vTHX->Iutf8_graph)
418 #define PL_utf8_idcont          (vTHX->Iutf8_idcont)
419 #define PL_utf8_idstart         (vTHX->Iutf8_idstart)
420 #define PL_utf8_lower           (vTHX->Iutf8_lower)
421 #define PL_utf8_mark            (vTHX->Iutf8_mark)
422 #define PL_utf8_print           (vTHX->Iutf8_print)
423 #define PL_utf8_punct           (vTHX->Iutf8_punct)
424 #define PL_utf8_space           (vTHX->Iutf8_space)
425 #define PL_utf8_tofold          (vTHX->Iutf8_tofold)
426 #define PL_utf8_tolower         (vTHX->Iutf8_tolower)
427 #define PL_utf8_totitle         (vTHX->Iutf8_totitle)
428 #define PL_utf8_toupper         (vTHX->Iutf8_toupper)
429 #define PL_utf8_upper           (vTHX->Iutf8_upper)
430 #define PL_utf8_xdigit          (vTHX->Iutf8_xdigit)
431 #define PL_utf8locale           (vTHX->Iutf8locale)
432 #define PL_uudmap               (vTHX->Iuudmap)
433 #define PL_warnhook             (vTHX->Iwarnhook)
434 #define PL_widesyscalls         (vTHX->Iwidesyscalls)
435 #define PL_xiv_arenaroot        (vTHX->Ixiv_arenaroot)
436 #define PL_xiv_root             (vTHX->Ixiv_root)
437 #define PL_xnv_arenaroot        (vTHX->Ixnv_arenaroot)
438 #define PL_xnv_root             (vTHX->Ixnv_root)
439 #define PL_xpv_arenaroot        (vTHX->Ixpv_arenaroot)
440 #define PL_xpv_root             (vTHX->Ixpv_root)
441 #define PL_xpvav_arenaroot      (vTHX->Ixpvav_arenaroot)
442 #define PL_xpvav_root           (vTHX->Ixpvav_root)
443 #define PL_xpvbm_arenaroot      (vTHX->Ixpvbm_arenaroot)
444 #define PL_xpvbm_root           (vTHX->Ixpvbm_root)
445 #define PL_xpvcv_arenaroot      (vTHX->Ixpvcv_arenaroot)
446 #define PL_xpvcv_root           (vTHX->Ixpvcv_root)
447 #define PL_xpvhv_arenaroot      (vTHX->Ixpvhv_arenaroot)
448 #define PL_xpvhv_root           (vTHX->Ixpvhv_root)
449 #define PL_xpviv_arenaroot      (vTHX->Ixpviv_arenaroot)
450 #define PL_xpviv_root           (vTHX->Ixpviv_root)
451 #define PL_xpvlv_arenaroot      (vTHX->Ixpvlv_arenaroot)
452 #define PL_xpvlv_root           (vTHX->Ixpvlv_root)
453 #define PL_xpvmg_arenaroot      (vTHX->Ixpvmg_arenaroot)
454 #define PL_xpvmg_root           (vTHX->Ixpvmg_root)
455 #define PL_xpvnv_arenaroot      (vTHX->Ixpvnv_arenaroot)
456 #define PL_xpvnv_root           (vTHX->Ixpvnv_root)
457 #define PL_xrv_arenaroot        (vTHX->Ixrv_arenaroot)
458 #define PL_xrv_root             (vTHX->Ixrv_root)
459 #define PL_yychar               (vTHX->Iyychar)
460 #define PL_yydebug              (vTHX->Iyydebug)
461 #define PL_yyerrflag            (vTHX->Iyyerrflag)
462 #define PL_yylval               (vTHX->Iyylval)
463 #define PL_yynerrs              (vTHX->Iyynerrs)
464 #define PL_yyval                (vTHX->Iyyval)
465
466 #else   /* !MULTIPLICITY */
467
468 /* case 1 above */
469
470 #define PL_IArgv                PL_Argv
471 #define PL_ICmd                 PL_Cmd
472 #define PL_IDBassertion         PL_DBassertion
473 #define PL_IDBcv                PL_DBcv
474 #define PL_IDBgv                PL_DBgv
475 #define PL_IDBline              PL_DBline
476 #define PL_IDBsignal            PL_DBsignal
477 #define PL_IDBsingle            PL_DBsingle
478 #define PL_IDBsub               PL_DBsub
479 #define PL_IDBtrace             PL_DBtrace
480 #define PL_IDir                 PL_Dir
481 #define PL_IEnv                 PL_Env
482 #define PL_ILIO                 PL_LIO
483 #define PL_IMem                 PL_Mem
484 #define PL_IMemParse            PL_MemParse
485 #define PL_IMemShared           PL_MemShared
486 #define PL_IOpPtr               PL_OpPtr
487 #define PL_IOpSlab              PL_OpSlab
488 #define PL_IOpSpace             PL_OpSpace
489 #define PL_IProc                PL_Proc
490 #define PL_ISock                PL_Sock
491 #define PL_IStdIO               PL_StdIO
492 #define PL_Iamagic_generation   PL_amagic_generation
493 #define PL_Ian                  PL_an
494 #define PL_Iargvgv              PL_argvgv
495 #define PL_Iargvout_stack       PL_argvout_stack
496 #define PL_Iargvoutgv           PL_argvoutgv
497 #define PL_Ibasetime            PL_basetime
498 #define PL_Ibeginav             PL_beginav
499 #define PL_Ibeginav_save        PL_beginav_save
500 #define PL_Ibitcount            PL_bitcount
501 #define PL_Ibufend              PL_bufend
502 #define PL_Ibufptr              PL_bufptr
503 #define PL_Icheckav             PL_checkav
504 #define PL_Icheckav_save        PL_checkav_save
505 #define PL_Iclocktick           PL_clocktick
506 #define PL_Icollation_ix        PL_collation_ix
507 #define PL_Icollation_name      PL_collation_name
508 #define PL_Icollation_standard  PL_collation_standard
509 #define PL_Icollxfrm_base       PL_collxfrm_base
510 #define PL_Icollxfrm_mult       PL_collxfrm_mult
511 #define PL_Icompcv              PL_compcv
512 #define PL_Icompiling           PL_compiling
513 #define PL_Icomppad             PL_comppad
514 #define PL_Icomppad_name        PL_comppad_name
515 #define PL_Icomppad_name_fill   PL_comppad_name_fill
516 #define PL_Icomppad_name_floor  PL_comppad_name_floor
517 #define PL_Icop_seqmax          PL_cop_seqmax
518 #define PL_Icopline             PL_copline
519 #define PL_Icryptseen           PL_cryptseen
520 #define PL_Icshlen              PL_cshlen
521 #define PL_Icshname             PL_cshname
522 #define PL_Icurcopdb            PL_curcopdb
523 #define PL_Icurstname           PL_curstname
524 #define PL_Icustom_op_descs     PL_custom_op_descs
525 #define PL_Icustom_op_names     PL_custom_op_names
526 #define PL_Icv_has_eval         PL_cv_has_eval
527 #define PL_Idbargs              PL_dbargs
528 #define PL_Idebstash            PL_debstash
529 #define PL_Idebug               PL_debug
530 #define PL_Idebug_pad           PL_debug_pad
531 #define PL_Idef_layerlist       PL_def_layerlist
532 #define PL_Idefgv               PL_defgv
533 #define PL_Idiehook             PL_diehook
534 #define PL_Idoextract           PL_doextract
535 #define PL_Idoswitches          PL_doswitches
536 #define PL_Idowarn              PL_dowarn
537 #define PL_Ie_script            PL_e_script
538 #define PL_Iegid                PL_egid
539 #define PL_Iencoding            PL_encoding
540 #define PL_Iendav               PL_endav
541 #define PL_Ienvgv               PL_envgv
542 #define PL_Ierrgv               PL_errgv
543 #define PL_Ierror_count         PL_error_count
544 #define PL_Ieuid                PL_euid
545 #define PL_Ieval_root           PL_eval_root
546 #define PL_Ieval_start          PL_eval_start
547 #define PL_Ievalseq             PL_evalseq
548 #define PL_Iexit_flags          PL_exit_flags
549 #define PL_Iexitlist            PL_exitlist
550 #define PL_Iexitlistlen         PL_exitlistlen
551 #define PL_Iexpect              PL_expect
552 #define PL_Ifdpid               PL_fdpid
553 #define PL_Ifilemode            PL_filemode
554 #define PL_Iforkprocess         PL_forkprocess
555 #define PL_Iformfeed            PL_formfeed
556 #define PL_Igeneration          PL_generation
557 #define PL_Igensym              PL_gensym
558 #define PL_Igid                 PL_gid
559 #define PL_Iglob_index          PL_glob_index
560 #define PL_Iglobalstash         PL_globalstash
561 #define PL_Ihash_seed           PL_hash_seed
562 #define PL_Ihash_seed_set       PL_hash_seed_set
563 #define PL_Ihe_arenaroot        PL_he_arenaroot
564 #define PL_Ihe_root             PL_he_root
565 #define PL_Ihintgv              PL_hintgv
566 #define PL_Ihints               PL_hints
567 #define PL_Iin_clean_all        PL_in_clean_all
568 #define PL_Iin_clean_objs       PL_in_clean_objs
569 #define PL_Iin_load_module      PL_in_load_module
570 #define PL_Iin_my               PL_in_my
571 #define PL_Iin_my_stash         PL_in_my_stash
572 #define PL_Iincgv               PL_incgv
573 #define PL_Iinitav              PL_initav
574 #define PL_Iinplace             PL_inplace
575 #define PL_Iknown_layers        PL_known_layers
576 #define PL_Ilast_lop            PL_last_lop
577 #define PL_Ilast_lop_op         PL_last_lop_op
578 #define PL_Ilast_swash_hv       PL_last_swash_hv
579 #define PL_Ilast_swash_key      PL_last_swash_key
580 #define PL_Ilast_swash_klen     PL_last_swash_klen
581 #define PL_Ilast_swash_slen     PL_last_swash_slen
582 #define PL_Ilast_swash_tmps     PL_last_swash_tmps
583 #define PL_Ilast_uni            PL_last_uni
584 #define PL_Ilastfd              PL_lastfd
585 #define PL_Ilaststatval         PL_laststatval
586 #define PL_Ilaststype           PL_laststype
587 #define PL_Ilex_brackets        PL_lex_brackets
588 #define PL_Ilex_brackstack      PL_lex_brackstack
589 #define PL_Ilex_casemods        PL_lex_casemods
590 #define PL_Ilex_casestack       PL_lex_casestack
591 #define PL_Ilex_defer           PL_lex_defer
592 #define PL_Ilex_dojoin          PL_lex_dojoin
593 #define PL_Ilex_expect          PL_lex_expect
594 #define PL_Ilex_formbrack       PL_lex_formbrack
595 #define PL_Ilex_inpat           PL_lex_inpat
596 #define PL_Ilex_inwhat          PL_lex_inwhat
597 #define PL_Ilex_op              PL_lex_op
598 #define PL_Ilex_repl            PL_lex_repl
599 #define PL_Ilex_starts          PL_lex_starts
600 #define PL_Ilex_state           PL_lex_state
601 #define PL_Ilex_stuff           PL_lex_stuff
602 #define PL_Ilineary             PL_lineary
603 #define PL_Ilinestart           PL_linestart
604 #define PL_Ilinestr             PL_linestr
605 #define PL_Ilocalpatches        PL_localpatches
606 #define PL_Ilockhook            PL_lockhook
607 #define PL_Imain_cv             PL_main_cv
608 #define PL_Imain_root           PL_main_root
609 #define PL_Imain_start          PL_main_start
610 #define PL_Imax_intro_pending   PL_max_intro_pending
611 #define PL_Imaxo                PL_maxo
612 #define PL_Imaxsysfd            PL_maxsysfd
613 #define PL_Imess_sv             PL_mess_sv
614 #define PL_Imin_intro_pending   PL_min_intro_pending
615 #define PL_Iminus_F             PL_minus_F
616 #define PL_Iminus_a             PL_minus_a
617 #define PL_Iminus_c             PL_minus_c
618 #define PL_Iminus_l             PL_minus_l
619 #define PL_Iminus_n             PL_minus_n
620 #define PL_Iminus_p             PL_minus_p
621 #define PL_Imodglobal           PL_modglobal
622 #define PL_Imulti_close         PL_multi_close
623 #define PL_Imulti_end           PL_multi_end
624 #define PL_Imulti_open          PL_multi_open
625 #define PL_Imulti_start         PL_multi_start
626 #define PL_Imultiline           PL_multiline
627 #define PL_Inexttoke            PL_nexttoke
628 #define PL_Inexttype            PL_nexttype
629 #define PL_Inextval             PL_nextval
630 #define PL_Inice_chunk          PL_nice_chunk
631 #define PL_Inice_chunk_size     PL_nice_chunk_size
632 #define PL_Inomemok             PL_nomemok
633 #define PL_Inumeric_compat1     PL_numeric_compat1
634 #define PL_Inumeric_local       PL_numeric_local
635 #define PL_Inumeric_name        PL_numeric_name
636 #define PL_Inumeric_radix_sv    PL_numeric_radix_sv
637 #define PL_Inumeric_standard    PL_numeric_standard
638 #define PL_Iofmt                PL_ofmt
639 #define PL_Ioldbufptr           PL_oldbufptr
640 #define PL_Ioldname             PL_oldname
641 #define PL_Ioldoldbufptr        PL_oldoldbufptr
642 #define PL_Iop_mask             PL_op_mask
643 #define PL_Iop_seqmax           PL_op_seqmax
644 #define PL_Iorigalen            PL_origalen
645 #define PL_Iorigargc            PL_origargc
646 #define PL_Iorigargv            PL_origargv
647 #define PL_Iorigenviron         PL_origenviron
648 #define PL_Iorigfilename        PL_origfilename
649 #define PL_Iors_sv              PL_ors_sv
650 #define PL_Iosname              PL_osname
651 #define PL_Ipad_reset_pending   PL_pad_reset_pending
652 #define PL_Ipadix               PL_padix
653 #define PL_Ipadix_floor         PL_padix_floor
654 #define PL_Ipatchlevel          PL_patchlevel
655 #define PL_Ipending_ident       PL_pending_ident
656 #define PL_Iperl_destruct_level PL_perl_destruct_level
657 #define PL_Iperldb              PL_perldb
658 #define PL_Iperlio              PL_perlio
659 #define PL_Ipidstatus           PL_pidstatus
660 #define PL_Ippid                PL_ppid
661 #define PL_Ipreambleav          PL_preambleav
662 #define PL_Ipreambled           PL_preambled
663 #define PL_Ipreprocess          PL_preprocess
664 #define PL_Iprofiledata         PL_profiledata
665 #define PL_Ipsig_name           PL_psig_name
666 #define PL_Ipsig_pend           PL_psig_pend
667 #define PL_Ipsig_ptr            PL_psig_ptr
668 #define PL_Iptr_table           PL_ptr_table
669 #define PL_Ireentrant_buffer    PL_reentrant_buffer
670 #define PL_Ireentrant_retint    PL_reentrant_retint
671 #define PL_Iregex_pad           PL_regex_pad
672 #define PL_Iregex_padav         PL_regex_padav
673 #define PL_Ireplgv              PL_replgv
674 #define PL_Irsfp                PL_rsfp
675 #define PL_Irsfp_filters        PL_rsfp_filters
676 #define PL_Irunops              PL_runops
677 #define PL_Irunops_dbg          PL_runops_dbg
678 #define PL_Irunops_std          PL_runops_std
679 #define PL_Isavebegin           PL_savebegin
680 #define PL_Isawampersand        PL_sawampersand
681 #define PL_Ish_path_compat      PL_sh_path_compat
682 #define PL_Isharehook           PL_sharehook
683 #define PL_Isig_pending         PL_sig_pending
684 #define PL_Isighandlerp         PL_sighandlerp
685 #define PL_Isignals             PL_signals
686 #define PL_Isort_RealCmp        PL_sort_RealCmp
687 #define PL_Isplitstr            PL_splitstr
688 #define PL_Isrand_called        PL_srand_called
689 #define PL_Istashcache          PL_stashcache
690 #define PL_Istatusvalue         PL_statusvalue
691 #define PL_Istatusvalue_vms     PL_statusvalue_vms
692 #define PL_Istderrgv            PL_stderrgv
693 #define PL_Istdingv             PL_stdingv
694 #define PL_Istrtab              PL_strtab
695 #define PL_Isub_generation      PL_sub_generation
696 #define PL_Isublex_info         PL_sublex_info
697 #define PL_Isubline             PL_subline
698 #define PL_Isubname             PL_subname
699 #define PL_Isv_arenaroot        PL_sv_arenaroot
700 #define PL_Isv_count            PL_sv_count
701 #define PL_Isv_no               PL_sv_no
702 #define PL_Isv_objcount         PL_sv_objcount
703 #define PL_Isv_root             PL_sv_root
704 #define PL_Isv_undef            PL_sv_undef
705 #define PL_Isv_yes              PL_sv_yes
706 #define PL_Isys_intern          PL_sys_intern
707 #define PL_Itaint_warn          PL_taint_warn
708 #define PL_Itainting            PL_tainting
709 #define PL_Ithreadhook          PL_threadhook
710 #define PL_Itokenbuf            PL_tokenbuf
711 #define PL_Iuid                 PL_uid
712 #define PL_Iunicode             PL_unicode
713 #define PL_Iunlockhook          PL_unlockhook
714 #define PL_Iunsafe              PL_unsafe
715 #define PL_Iutf8_alnum          PL_utf8_alnum
716 #define PL_Iutf8_alnumc         PL_utf8_alnumc
717 #define PL_Iutf8_alpha          PL_utf8_alpha
718 #define PL_Iutf8_ascii          PL_utf8_ascii
719 #define PL_Iutf8_cntrl          PL_utf8_cntrl
720 #define PL_Iutf8_digit          PL_utf8_digit
721 #define PL_Iutf8_graph          PL_utf8_graph
722 #define PL_Iutf8_idcont         PL_utf8_idcont
723 #define PL_Iutf8_idstart        PL_utf8_idstart
724 #define PL_Iutf8_lower          PL_utf8_lower
725 #define PL_Iutf8_mark           PL_utf8_mark
726 #define PL_Iutf8_print          PL_utf8_print
727 #define PL_Iutf8_punct          PL_utf8_punct
728 #define PL_Iutf8_space          PL_utf8_space
729 #define PL_Iutf8_tofold         PL_utf8_tofold
730 #define PL_Iutf8_tolower        PL_utf8_tolower
731 #define PL_Iutf8_totitle        PL_utf8_totitle
732 #define PL_Iutf8_toupper        PL_utf8_toupper
733 #define PL_Iutf8_upper          PL_utf8_upper
734 #define PL_Iutf8_xdigit         PL_utf8_xdigit
735 #define PL_Iutf8locale          PL_utf8locale
736 #define PL_Iuudmap              PL_uudmap
737 #define PL_Iwarnhook            PL_warnhook
738 #define PL_Iwidesyscalls        PL_widesyscalls
739 #define PL_Ixiv_arenaroot       PL_xiv_arenaroot
740 #define PL_Ixiv_root            PL_xiv_root
741 #define PL_Ixnv_arenaroot       PL_xnv_arenaroot
742 #define PL_Ixnv_root            PL_xnv_root
743 #define PL_Ixpv_arenaroot       PL_xpv_arenaroot
744 #define PL_Ixpv_root            PL_xpv_root
745 #define PL_Ixpvav_arenaroot     PL_xpvav_arenaroot
746 #define PL_Ixpvav_root          PL_xpvav_root
747 #define PL_Ixpvbm_arenaroot     PL_xpvbm_arenaroot
748 #define PL_Ixpvbm_root          PL_xpvbm_root
749 #define PL_Ixpvcv_arenaroot     PL_xpvcv_arenaroot
750 #define PL_Ixpvcv_root          PL_xpvcv_root
751 #define PL_Ixpvhv_arenaroot     PL_xpvhv_arenaroot
752 #define PL_Ixpvhv_root          PL_xpvhv_root
753 #define PL_Ixpviv_arenaroot     PL_xpviv_arenaroot
754 #define PL_Ixpviv_root          PL_xpviv_root
755 #define PL_Ixpvlv_arenaroot     PL_xpvlv_arenaroot
756 #define PL_Ixpvlv_root          PL_xpvlv_root
757 #define PL_Ixpvmg_arenaroot     PL_xpvmg_arenaroot
758 #define PL_Ixpvmg_root          PL_xpvmg_root
759 #define PL_Ixpvnv_arenaroot     PL_xpvnv_arenaroot
760 #define PL_Ixpvnv_root          PL_xpvnv_root
761 #define PL_Ixrv_arenaroot       PL_xrv_arenaroot
762 #define PL_Ixrv_root            PL_xrv_root
763 #define PL_Iyychar              PL_yychar
764 #define PL_Iyydebug             PL_yydebug
765 #define PL_Iyyerrflag           PL_yyerrflag
766 #define PL_Iyylval              PL_yylval
767 #define PL_Iyynerrs             PL_yynerrs
768 #define PL_Iyyval               PL_yyval
769
770 #define PL_TSv                  PL_Sv
771 #define PL_TXpv                 PL_Xpv
772 #define PL_Tav_fetch_sv         PL_av_fetch_sv
773 #define PL_Tbodytarget          PL_bodytarget
774 #define PL_Tbostr               PL_bostr
775 #define PL_Tchopset             PL_chopset
776 #define PL_Tcolors              PL_colors
777 #define PL_Tcolorset            PL_colorset
778 #define PL_Tcurcop              PL_curcop
779 #define PL_Tcurpad              PL_curpad
780 #define PL_Tcurpm               PL_curpm
781 #define PL_Tcurstack            PL_curstack
782 #define PL_Tcurstackinfo        PL_curstackinfo
783 #define PL_Tcurstash            PL_curstash
784 #define PL_Tdefoutgv            PL_defoutgv
785 #define PL_Tdefstash            PL_defstash
786 #define PL_Tdelaymagic          PL_delaymagic
787 #define PL_Tdirty               PL_dirty
788 #define PL_Tdumpindent          PL_dumpindent
789 #define PL_Tefloatbuf           PL_efloatbuf
790 #define PL_Tefloatsize          PL_efloatsize
791 #define PL_Terrors              PL_errors
792 #define PL_Tfirstgv             PL_firstgv
793 #define PL_Tformtarget          PL_formtarget
794 #define PL_Thv_fetch_ent_mh     PL_hv_fetch_ent_mh
795 #define PL_Thv_fetch_sv         PL_hv_fetch_sv
796 #define PL_Tin_eval             PL_in_eval
797 #define PL_Tlast_in_gv          PL_last_in_gv
798 #define PL_Tlastgotoprobe       PL_lastgotoprobe
799 #define PL_Tlastscream          PL_lastscream
800 #define PL_Tlocalizing          PL_localizing
801 #define PL_Tmainstack           PL_mainstack
802 #define PL_Tmarkstack           PL_markstack
803 #define PL_Tmarkstack_max       PL_markstack_max
804 #define PL_Tmarkstack_ptr       PL_markstack_ptr
805 #define PL_Tmaxscream           PL_maxscream
806 #define PL_Tmodcount            PL_modcount
807 #define PL_Tna                  PL_na
808 #define PL_Tnrs                 PL_nrs
809 #define PL_Tofs_sv              PL_ofs_sv
810 #define PL_Top                  PL_op
811 #define PL_Topsave              PL_opsave
812 #define PL_Tpeepp               PL_peepp
813 #define PL_Tprotect             PL_protect
814 #define PL_Treg_call_cc         PL_reg_call_cc
815 #define PL_Treg_curpm           PL_reg_curpm
816 #define PL_Treg_eval_set        PL_reg_eval_set
817 #define PL_Treg_flags           PL_reg_flags
818 #define PL_Treg_ganch           PL_reg_ganch
819 #define PL_Treg_leftiter        PL_reg_leftiter
820 #define PL_Treg_magic           PL_reg_magic
821 #define PL_Treg_match_utf8      PL_reg_match_utf8
822 #define PL_Treg_maxiter         PL_reg_maxiter
823 #define PL_Treg_oldcurpm        PL_reg_oldcurpm
824 #define PL_Treg_oldpos          PL_reg_oldpos
825 #define PL_Treg_oldsaved        PL_reg_oldsaved
826 #define PL_Treg_oldsavedlen     PL_reg_oldsavedlen
827 #define PL_Treg_poscache        PL_reg_poscache
828 #define PL_Treg_poscache_size   PL_reg_poscache_size
829 #define PL_Treg_re              PL_reg_re
830 #define PL_Treg_start_tmp       PL_reg_start_tmp
831 #define PL_Treg_start_tmpl      PL_reg_start_tmpl
832 #define PL_Treg_starttry        PL_reg_starttry
833 #define PL_Treg_sv              PL_reg_sv
834 #define PL_Tregbol              PL_regbol
835 #define PL_Tregcc               PL_regcc
836 #define PL_Tregcompp            PL_regcompp
837 #define PL_Tregdata             PL_regdata
838 #define PL_Tregdummy            PL_regdummy
839 #define PL_Tregendp             PL_regendp
840 #define PL_Tregeol              PL_regeol
841 #define PL_Tregexecp            PL_regexecp
842 #define PL_Tregfree             PL_regfree
843 #define PL_Tregindent           PL_regindent
844 #define PL_Treginput            PL_reginput
845 #define PL_Tregint_start        PL_regint_start
846 #define PL_Tregint_string       PL_regint_string
847 #define PL_Treginterp_cnt       PL_reginterp_cnt
848 #define PL_Treglastcloseparen   PL_reglastcloseparen
849 #define PL_Treglastparen        PL_reglastparen
850 #define PL_Tregnarrate          PL_regnarrate
851 #define PL_Tregnpar             PL_regnpar
852 #define PL_Tregprecomp          PL_regprecomp
853 #define PL_Tregprogram          PL_regprogram
854 #define PL_Tregsize             PL_regsize
855 #define PL_Tregstartp           PL_regstartp
856 #define PL_Tregtill             PL_regtill
857 #define PL_Trestartop           PL_restartop
858 #define PL_Tretstack            PL_retstack
859 #define PL_Tretstack_ix         PL_retstack_ix
860 #define PL_Tretstack_max        PL_retstack_max
861 #define PL_Trs                  PL_rs
862 #define PL_Tsavestack           PL_savestack
863 #define PL_Tsavestack_ix        PL_savestack_ix
864 #define PL_Tsavestack_max       PL_savestack_max
865 #define PL_Tscopestack          PL_scopestack
866 #define PL_Tscopestack_ix       PL_scopestack_ix
867 #define PL_Tscopestack_max      PL_scopestack_max
868 #define PL_Tscreamfirst         PL_screamfirst
869 #define PL_Tscreamnext          PL_screamnext
870 #define PL_Tsecondgv            PL_secondgv
871 #define PL_Tsortcop             PL_sortcop
872 #define PL_Tsortcxix            PL_sortcxix
873 #define PL_Tsortstash           PL_sortstash
874 #define PL_Tstack_base          PL_stack_base
875 #define PL_Tstack_max           PL_stack_max
876 #define PL_Tstack_sp            PL_stack_sp
877 #define PL_Tstart_env           PL_start_env
878 #define PL_Tstatbuf             PL_statbuf
879 #define PL_Tstatcache           PL_statcache
880 #define PL_Tstatgv              PL_statgv
881 #define PL_Tstatname            PL_statname
882 #define PL_Ttainted             PL_tainted
883 #define PL_Ttimesbuf            PL_timesbuf
884 #define PL_Ttmps_floor          PL_tmps_floor
885 #define PL_Ttmps_ix             PL_tmps_ix
886 #define PL_Ttmps_max            PL_tmps_max
887 #define PL_Ttmps_stack          PL_tmps_stack
888 #define PL_Ttop_env             PL_top_env
889 #define PL_Ttoptarget           PL_toptarget
890 #define PL_Twatchaddr           PL_watchaddr
891 #define PL_Twatchok             PL_watchok
892
893 #endif  /* MULTIPLICITY */
894
895 #if defined(PERL_GLOBAL_STRUCT)
896
897 #define PL_No                   (PL_Vars.GNo)
898 #define PL_Yes                  (PL_Vars.GYes)
899 #define PL_csighandlerp         (PL_Vars.Gcsighandlerp)
900 #define PL_curinterp            (PL_Vars.Gcurinterp)
901 #define PL_do_undump            (PL_Vars.Gdo_undump)
902 #define PL_dollarzero_mutex     (PL_Vars.Gdollarzero_mutex)
903 #define PL_hexdigit             (PL_Vars.Ghexdigit)
904 #define PL_malloc_mutex         (PL_Vars.Gmalloc_mutex)
905 #define PL_op_mutex             (PL_Vars.Gop_mutex)
906 #define PL_patleave             (PL_Vars.Gpatleave)
907 #define PL_sh_path              (PL_Vars.Gsh_path)
908 #define PL_sigfpe_saved         (PL_Vars.Gsigfpe_saved)
909 #define PL_sv_placeholder       (PL_Vars.Gsv_placeholder)
910 #define PL_thr_key              (PL_Vars.Gthr_key)
911
912 #else /* !PERL_GLOBAL_STRUCT */
913
914 #define PL_GNo                  PL_No
915 #define PL_GYes                 PL_Yes
916 #define PL_Gcsighandlerp        PL_csighandlerp
917 #define PL_Gcurinterp           PL_curinterp
918 #define PL_Gdo_undump           PL_do_undump
919 #define PL_Gdollarzero_mutex    PL_dollarzero_mutex
920 #define PL_Ghexdigit            PL_hexdigit
921 #define PL_Gmalloc_mutex        PL_malloc_mutex
922 #define PL_Gop_mutex            PL_op_mutex
923 #define PL_Gpatleave            PL_patleave
924 #define PL_Gsh_path             PL_sh_path
925 #define PL_Gsigfpe_saved        PL_sigfpe_saved
926 #define PL_Gsv_placeholder      PL_sv_placeholder
927 #define PL_Gthr_key             PL_thr_key
928
929 #endif /* PERL_GLOBAL_STRUCT */
930
931 #ifdef PERL_POLLUTE             /* disabled by default in 5.6.0 */
932
933 #define DBassertion             PL_DBassertion
934 #define DBsingle                PL_DBsingle
935 #define DBsub                   PL_DBsub
936 #define compiling               PL_compiling
937 #define curcop                  PL_curcop
938 #define curstash                PL_curstash
939 #define debstash                PL_debstash
940 #define defgv                   PL_defgv
941 #define diehook                 PL_diehook
942 #define dirty                   PL_dirty
943 #define dowarn                  PL_dowarn
944 #define errgv                   PL_errgv
945 #define na                      PL_na
946 #define no_modify               PL_no_modify
947 #define perl_destruct_level     PL_perl_destruct_level
948 #define perldb                  PL_perldb
949 #define ppaddr                  PL_ppaddr
950 #define rsfp                    PL_rsfp
951 #define rsfp_filters            PL_rsfp_filters
952 #define stack_base              PL_stack_base
953 #define stack_sp                PL_stack_sp
954 #define stdingv                 PL_stdingv
955 #define sv_arenaroot            PL_sv_arenaroot
956 #define sv_no                   PL_sv_no
957 #define sv_undef                PL_sv_undef
958 #define sv_yes                  PL_sv_yes
959 #define tainted                 PL_tainted
960 #define tainting                PL_tainting
961
962 #endif /* PERL_POLLUTE */