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