| [3181] | 1 | /* thdrvar.h
|
|---|
| 2 | *
|
|---|
| 3 | * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 by Larry Wall and others
|
|---|
| 4 | *
|
|---|
| 5 | * You may distribute under the terms of either the GNU General Public
|
|---|
| 6 | * License or the Artistic License, as specified in the README file.
|
|---|
| 7 | *
|
|---|
| 8 | */
|
|---|
| 9 |
|
|---|
| 10 | /*
|
|---|
| 11 | =head1 Global Variables
|
|---|
| 12 | */
|
|---|
| 13 |
|
|---|
| 14 | /***********************************************/
|
|---|
| 15 | /* Global only to current thread */
|
|---|
| 16 | /***********************************************/
|
|---|
| 17 |
|
|---|
| 18 | /* Don't forget to re-run embed.pl to propagate changes! */
|
|---|
| 19 |
|
|---|
| 20 | /* The 'T' prefix is only needed for vars that need appropriate #defines
|
|---|
| 21 | * generated when built with or without USE_5005THREADS. It is also used
|
|---|
| 22 | * to generate the appropriate export list for win32.
|
|---|
| 23 | *
|
|---|
| 24 | * When building without USE_5005THREADS, these variables will be truly global.
|
|---|
| 25 | * When building without USE_5005THREADS but with MULTIPLICITY, these variables
|
|---|
| 26 | * will be global per-interpreter. */
|
|---|
| 27 |
|
|---|
| 28 | /* Important ones in the first cache line (if alignment is done right) */
|
|---|
| 29 |
|
|---|
| 30 | #ifdef USE_5005THREADS
|
|---|
| 31 | PERLVAR(interp, PerlInterpreter*) /* thread owner */
|
|---|
| 32 | #endif
|
|---|
| 33 |
|
|---|
| 34 | PERLVAR(Tstack_sp, SV **) /* top of the stack */
|
|---|
| 35 | #ifdef OP_IN_REGISTER
|
|---|
| 36 | PERLVAR(Topsave, OP *)
|
|---|
| 37 | #else
|
|---|
| 38 | PERLVAR(Top, OP *) /* currently executing op */
|
|---|
| 39 | #endif
|
|---|
| 40 | PERLVAR(Tcurpad, SV **) /* active pad (lexicals+tmps) */
|
|---|
| 41 |
|
|---|
| 42 | PERLVAR(Tstack_base, SV **)
|
|---|
| 43 | PERLVAR(Tstack_max, SV **)
|
|---|
| 44 |
|
|---|
| 45 | PERLVAR(Tscopestack, I32 *) /* scopes we've ENTERed */
|
|---|
| 46 | PERLVAR(Tscopestack_ix, I32)
|
|---|
| 47 | PERLVAR(Tscopestack_max,I32)
|
|---|
| 48 |
|
|---|
| 49 | PERLVAR(Tsavestack, ANY *) /* items that need to be restored
|
|---|
| 50 | when LEAVEing scopes we've ENTERed */
|
|---|
| 51 | PERLVAR(Tsavestack_ix, I32)
|
|---|
| 52 | PERLVAR(Tsavestack_max, I32)
|
|---|
| 53 |
|
|---|
| 54 | PERLVAR(Ttmps_stack, SV **) /* mortals we've made */
|
|---|
| 55 | PERLVARI(Ttmps_ix, I32, -1)
|
|---|
| 56 | PERLVARI(Ttmps_floor, I32, -1)
|
|---|
| 57 | PERLVAR(Ttmps_max, I32)
|
|---|
| 58 |
|
|---|
| 59 | PERLVAR(Tmarkstack, I32 *) /* stack_sp locations we're remembering */
|
|---|
| 60 | PERLVAR(Tmarkstack_ptr, I32 *)
|
|---|
| 61 | PERLVAR(Tmarkstack_max, I32 *)
|
|---|
| 62 |
|
|---|
| 63 | PERLVAR(Tretstack, OP **) /* OPs we have postponed executing */
|
|---|
| 64 | PERLVAR(Tretstack_ix, I32)
|
|---|
| 65 | PERLVAR(Tretstack_max, I32)
|
|---|
| 66 |
|
|---|
| 67 | PERLVAR(TSv, SV *) /* used to hold temporary values */
|
|---|
| 68 | PERLVAR(TXpv, XPV *) /* used to hold temporary values */
|
|---|
| 69 |
|
|---|
| 70 | /*
|
|---|
| 71 | =for apidoc Amn|STRLEN|PL_na
|
|---|
| 72 |
|
|---|
| 73 | A convenience variable which is typically used with C<SvPV> when one
|
|---|
| 74 | doesn't care about the length of the string. It is usually more efficient
|
|---|
| 75 | to either declare a local variable and use that instead or to use the
|
|---|
| 76 | C<SvPV_nolen> macro.
|
|---|
| 77 |
|
|---|
| 78 | =cut
|
|---|
| 79 | */
|
|---|
| 80 |
|
|---|
| 81 | PERLVAR(Tna, STRLEN) /* for use in SvPV when length is
|
|---|
| 82 | Not Applicable */
|
|---|
| 83 |
|
|---|
| 84 | /* stat stuff */
|
|---|
| 85 | PERLVAR(Tstatbuf, Stat_t)
|
|---|
| 86 | PERLVAR(Tstatcache, Stat_t) /* _ */
|
|---|
| 87 | PERLVAR(Tstatgv, GV *)
|
|---|
| 88 | PERLVARI(Tstatname, SV *, Nullsv)
|
|---|
| 89 |
|
|---|
| 90 | #ifdef HAS_TIMES
|
|---|
| 91 | PERLVAR(Ttimesbuf, struct tms)
|
|---|
| 92 | #endif
|
|---|
| 93 |
|
|---|
| 94 | /* Fields used by magic variables such as $@, $/ and so on */
|
|---|
| 95 | PERLVAR(Ttainted, bool) /* using variables controlled by $< */
|
|---|
| 96 | PERLVAR(Tcurpm, PMOP *) /* what to do \ interps in REs from */
|
|---|
| 97 | PERLVAR(Tnrs, SV *) /* placeholder: unused since 5.8.0 (5.7.2 patch #12027 for bug ID 20010815.012) */
|
|---|
| 98 |
|
|---|
| 99 | /*
|
|---|
| 100 | =for apidoc mn|SV*|PL_rs
|
|---|
| 101 |
|
|---|
| 102 | The input record separator - C<$/> in Perl space.
|
|---|
| 103 |
|
|---|
| 104 | =for apidoc mn|GV*|PL_last_in_gv
|
|---|
| 105 |
|
|---|
| 106 | The GV which was last used for a filehandle input operation. (C<< <FH> >>)
|
|---|
| 107 |
|
|---|
| 108 | =for apidoc mn|SV*|PL_ofs_sv
|
|---|
| 109 |
|
|---|
| 110 | The output field separator - C<$,> in Perl space.
|
|---|
| 111 |
|
|---|
| 112 | =cut
|
|---|
| 113 | */
|
|---|
| 114 |
|
|---|
| 115 | PERLVAR(Trs, SV *) /* input record separator $/ */
|
|---|
| 116 | PERLVAR(Tlast_in_gv, GV *) /* GV used in last <FH> */
|
|---|
| 117 | PERLVAR(Tofs_sv, SV *) /* output field separator $, */
|
|---|
| 118 | PERLVAR(Tdefoutgv, GV *) /* default FH for output */
|
|---|
| 119 | PERLVARI(Tchopset, const char *, " \n-") /* $: */
|
|---|
| 120 | PERLVAR(Tformtarget, SV *)
|
|---|
| 121 | PERLVAR(Tbodytarget, SV *)
|
|---|
| 122 | PERLVAR(Ttoptarget, SV *)
|
|---|
| 123 |
|
|---|
| 124 | /* Stashes */
|
|---|
| 125 | PERLVAR(Tdefstash, HV *) /* main symbol table */
|
|---|
| 126 | PERLVAR(Tcurstash, HV *) /* symbol table for current package */
|
|---|
| 127 |
|
|---|
| 128 | PERLVAR(Trestartop, OP *) /* propagating an error from croak? */
|
|---|
| 129 | PERLVARI(Tcurcop, COP * VOL, &PL_compiling)
|
|---|
| 130 | PERLVAR(Tin_eval, VOL int) /* trap "fatal" errors? */
|
|---|
| 131 | PERLVAR(Tdelaymagic, int) /* ($<,$>) = ... */
|
|---|
| 132 | PERLVARI(Tdirty, bool, FALSE) /* in the middle of tearing things down? */
|
|---|
| 133 | PERLVAR(Tlocalizing, int) /* are we processing a local() list? */
|
|---|
| 134 |
|
|---|
| 135 | PERLVAR(Tcurstack, AV *) /* THE STACK */
|
|---|
| 136 | PERLVAR(Tcurstackinfo, PERL_SI *) /* current stack + context */
|
|---|
| 137 | PERLVAR(Tmainstack, AV *) /* the stack when nothing funny is happening */
|
|---|
| 138 |
|
|---|
| 139 | PERLVAR(Ttop_env, JMPENV *) /* ptr. to current sigjmp() environment */
|
|---|
| 140 | PERLVAR(Tstart_env, JMPENV) /* empty startup sigjmp() environment */
|
|---|
| 141 | #ifdef PERL_FLEXIBLE_EXCEPTIONS
|
|---|
| 142 | PERLVARI(Tprotect, protect_proc_t, MEMBER_TO_FPTR(Perl_default_protect))
|
|---|
| 143 | #endif
|
|---|
| 144 | PERLVARI(Terrors, SV *, Nullsv) /* outstanding queued errors */
|
|---|
| 145 |
|
|---|
| 146 | /* statics "owned" by various functions */
|
|---|
| 147 | PERLVAR(Tav_fetch_sv, SV *) /* unused as of change #19268 */
|
|---|
| 148 | PERLVAR(Thv_fetch_sv, SV *) /* unused as of change #19268 */
|
|---|
| 149 | PERLVAR(Thv_fetch_ent_mh, HE*) /* owned by hv_fetch_ent() */
|
|---|
| 150 |
|
|---|
| 151 | PERLVAR(Tmodcount, I32) /* how much mod()ification in assignment? */
|
|---|
| 152 |
|
|---|
| 153 | PERLVAR(Tlastgotoprobe, OP*) /* from pp_ctl.c */
|
|---|
| 154 | PERLVARI(Tdumpindent, I32, 4) /* # of blanks per dump indentation level */
|
|---|
| 155 |
|
|---|
| 156 | /* sort stuff */
|
|---|
| 157 | PERLVAR(Tsortcop, OP *) /* user defined sort routine */
|
|---|
| 158 | PERLVAR(Tsortstash, HV *) /* which is in some package or other */
|
|---|
| 159 | PERLVAR(Tfirstgv, GV *) /* $a */
|
|---|
| 160 | PERLVAR(Tsecondgv, GV *) /* $b */
|
|---|
| 161 | PERLVAR(Tsortcxix, I32) /* from pp_ctl.c */
|
|---|
| 162 |
|
|---|
| 163 | /* float buffer */
|
|---|
| 164 | PERLVAR(Tefloatbuf, char*)
|
|---|
| 165 | PERLVAR(Tefloatsize, STRLEN)
|
|---|
| 166 |
|
|---|
| 167 | /* regex stuff */
|
|---|
| 168 |
|
|---|
| 169 | PERLVAR(Tscreamfirst, I32 *)
|
|---|
| 170 | PERLVAR(Tscreamnext, I32 *)
|
|---|
| 171 | PERLVARI(Tmaxscream, I32, -1)
|
|---|
| 172 | PERLVAR(Tlastscream, SV *)
|
|---|
| 173 |
|
|---|
| 174 | PERLVAR(Tregdummy, regnode) /* from regcomp.c */
|
|---|
| 175 | PERLVAR(Tregcomp_parse, char*) /* Input-scan pointer. */
|
|---|
| 176 | PERLVAR(Tregxend, char*) /* End of input for compile */
|
|---|
| 177 | PERLVAR(Tregcode, regnode*) /* Code-emit pointer; ®dummy = don't */
|
|---|
| 178 | PERLVAR(Tregnaughty, I32) /* How bad is this pattern? */
|
|---|
| 179 | PERLVAR(Tregsawback, I32) /* Did we see \1, ...? */
|
|---|
| 180 | PERLVAR(Tregprecomp, char *) /* uncompiled string. */
|
|---|
| 181 | PERLVAR(Tregnpar, I32) /* () count. */
|
|---|
| 182 | PERLVAR(Tregsize, I32) /* Code size. */
|
|---|
| 183 | PERLVAR(Tregflags, U32) /* are we folding, multilining? */
|
|---|
| |
|---|