1 /* This file describes the "global" variables used by perl */
2 /* This used to be in perl.h directly but we want to */
3 /* abstract out which are per-thread per-interpreter really */
4 /* global and how initialized into one file */
11 PERLVAR(Gcurinterp, PerlInterpreter *) /* currently running interpreter */
13 PERLVAR(Gthr_key, perl_key) /* For per-thread struct perl_thread* */
14 PERLVAR(Gsv_mutex, perl_mutex) /* Mutex for allocating SVs in sv.c */
15 PERLVAR(Gmalloc_mutex, perl_mutex) /* Mutex for malloc */
16 PERLVAR(Geval_mutex, perl_mutex) /* Mutex for doeval */
17 PERLVAR(Geval_cond, perl_cond) /* Condition variable for doeval */
18 PERLVAR(Geval_owner, struct perl_thread *) /* Owner thread for doeval */
19 PERLVAR(Gnthreads, int) /* Number of threads currently */
20 PERLVAR(Gthreads_mutex, perl_mutex) /* Mutex for nthreads and thread list */
21 PERLVAR(Gnthreads_cond, perl_cond) /* Condition variable for nthreads */
22 PERLVAR(Gsvref_mutex, perl_mutex) /* Mutex for SvREFCNT_{inc,dec} */
23 PERLVARI(Gthreadsv_names, char *, THREADSV_NAMES)
25 PERLVAR(Gcurthr, struct perl_thread *) /* Currently executing (fake) thread */
27 #endif /* USE_THREADS */
29 PERLVAR(Guid, int) /* current real user id */
30 PERLVAR(Geuid, int) /* current effective user id */
31 PERLVAR(Ggid, int) /* current real group id */
32 PERLVAR(Gegid, int) /* current effective group id */
33 PERLVAR(Gnomemok, bool) /* let malloc context handle nomem */
34 PERLVAR(Gan, U32) /* malloc sequence number */
35 PERLVAR(Gcop_seqmax, U32) /* statement sequence number */
36 PERLVAR(Gop_seqmax, U16) /* op sequence number */
37 PERLVAR(Gevalseq, U32) /* eval sequence number */
38 PERLVAR(Gsub_generation, U32) /* inc to force methods to be looked up again */
39 PERLVAR(Gorigenviron, char **)
40 PERLVAR(Gorigalen, U32)
41 PERLVAR(Gpidstatus, HV *) /* pid-to-status mappings for waitpid */
42 PERLVAR(Gprofiledata, U32 *)
43 PERLVARI(Gmaxo, int, MAXO) /* Number of ops */
44 PERLVAR(Gosname, char *) /* operating system */
45 PERLVARI(Gsh_path, char *, SH_PATH) /* full path of shell */
46 PERLVAR(Gsighandlerp, Sighandler_t)
48 PERLVAR(Gxiv_arenaroot, XPV*) /* list of allocated xiv areas */
49 PERLVAR(Gxiv_root, IV **) /* free xiv list--shared by interpreters */
50 PERLVAR(Gxnv_root, double *) /* free xnv list--shared by interpreters */
51 PERLVAR(Gxrv_root, XRV *) /* free xrv list--shared by interpreters */
52 PERLVAR(Gxpv_root, XPV *) /* free xpv list--shared by interpreters */
53 PERLVAR(Ghe_root, HE *) /* free he list--shared by interpreters */
54 PERLVAR(Gnice_chunk, char *) /* a nice chunk of memory to reuse */
55 PERLVAR(Gnice_chunk_size, U32) /* how nice the chunk of memory is */
58 PERLVARI(Grunops, runops_proc_t, FUNC_NAME_TO_PTR(RUNOPS_DEFAULT))
60 PERLVARI(Grunops, runops_proc_t *, RUNOPS_DEFAULT)
63 PERLVAR(Gtokenbuf[256], char)
64 PERLVAR(Gna, STRLEN) /* for use in SvPV when length is Not Applicable */
66 PERLVAR(Gsv_undef, SV)
70 PERLVARI(Gcshname, char *, CSH)
74 PERLVAR(Glex_state, U32) /* next token is determined */
75 PERLVAR(Glex_defer, U32) /* state after determined token */
76 PERLVAR(Glex_expect, expectation) /* expect after determined token */
77 PERLVAR(Glex_brackets, I32) /* bracket count */
78 PERLVAR(Glex_formbrack, I32) /* bracket count at outer format level */
79 PERLVAR(Glex_fakebrack, I32) /* outer bracket is mere delimiter */
80 PERLVAR(Glex_casemods, I32) /* casemod count */
81 PERLVAR(Glex_dojoin, I32) /* doing an array interpolation */
82 PERLVAR(Glex_starts, I32) /* how many interps done on level */
83 PERLVAR(Glex_stuff, SV *) /* runtime pattern from m// or s/// */
84 PERLVAR(Glex_repl, SV *) /* runtime replacement from s/// */
85 PERLVAR(Glex_op, OP *) /* extra info to pass back on op */
86 PERLVAR(Glex_inpat, OP *) /* in pattern $) and $| are special */
87 PERLVAR(Glex_inwhat, I32) /* what kind of quoting are we in */
88 PERLVAR(Glex_brackstack, char *) /* what kind of brackets to pop */
89 PERLVAR(Glex_casestack, char *) /* what kind of case mods in effect */
91 /* What we know when we're in LEX_KNOWNEXT state. */
92 PERLVAR(Gnextval[5], YYSTYPE) /* value of next token, if any */
93 PERLVAR(Gnexttype[5], I32) /* type of next token */
94 PERLVAR(Gnexttoke, I32)
96 PERLVARI(Grsfp, PerlIO * VOL, Nullfp)
97 PERLVAR(Glinestr, SV *)
98 PERLVAR(Gbufptr, char *)
99 PERLVAR(Goldbufptr, char *)
100 PERLVAR(Goldoldbufptr, char *)
101 PERLVAR(Gbufend, char *)
102 PERLVARI(Gexpect, expectation, XSTATE) /* how to interpret ambiguous tokens */
103 PERLVAR(Grsfp_filters, AV *)
105 PERLVAR(Gmulti_start, I32) /* 1st line of multi-line string */
106 PERLVAR(Gmulti_end, I32) /* last line of multi-line string */
107 PERLVAR(Gmulti_open, I32) /* delimiter of said string */
108 PERLVAR(Gmulti_close, I32) /* delimiter of said string */
110 PERLVAR(Gerror_count, I32) /* how many errors so far, max 10 */
111 PERLVAR(Gsubline, I32) /* line this subroutine began on */
112 PERLVAR(Gsubname, SV *) /* name of current subroutine */
114 PERLVAR(Gcompcv, CV *) /* currently compiling subroutine */
115 PERLVAR(Gcomppad, AV *) /* storage for lexically scoped temporaries */
116 PERLVAR(Gcomppad_name, AV *) /* variable names for "my" variables */
117 PERLVAR(Gcomppad_name_fill, I32) /* last "introduced" variable offset */
118 PERLVAR(Gcomppad_name_floor, I32) /* start of vars in innermost block */
119 PERLVAR(Gmin_intro_pending, I32) /* start of vars to introduce */
120 PERLVAR(Gmax_intro_pending, I32) /* end of vars to introduce */
121 PERLVAR(Gpadix, I32) /* max used index in current "register" pad */
122 PERLVAR(Gpadix_floor, I32) /* how low may inner block reset padix */
123 PERLVAR(Gpad_reset_pending, I32) /* reset pad on next attempted alloc */
124 PERLVAR(Gcompiling, COP)
126 PERLVAR(Gthisexpr, I32) /* name id for nothing_in_common() */
127 PERLVAR(Glast_uni, char *) /* position of last named-unary operator */
128 PERLVAR(Glast_lop, char *) /* position of last list operator */
129 PERLVAR(Glast_lop_op, OPCODE) /* last list operator */
130 PERLVAR(Gin_my, bool) /* we're compiling a "my" declaration */
131 PERLVAR(Gin_my_stash, HV *) /* declared class of this "my" declaration */
133 PERLVAR(Gcryptseen, I32) /* has fast crypt() been initialized? */
136 PERLVAR(Ghints, U32) /* various compilation flags */
138 PERLVAR(Gdo_undump, bool) /* -u or dump seen? */
139 PERLVAR(Gdebug, VOL U32)
144 PERLVAR(Gamagic_generation, long)
148 #ifdef USE_LOCALE_COLLATE
149 PERLVAR(Gcollation_ix, U32) /* Collation generation index */
150 PERLVAR(Gcollation_name, char *) /* Name of current collation */
151 PERLVARI(Gcollation_standard, bool, TRUE) /* Assume simple collation */
152 PERLVAR(Gcollxfrm_base, Size_t) /* Basic overhead in *xfrm() */
153 PERLVARI(Gcollxfrm_mult, Size_t, 2) /* Expansion factor in *xfrm() */
154 #endif /* USE_LOCALE_COLLATE */
156 #ifdef USE_LOCALE_NUMERIC
158 PERLVAR(Gnumeric_name, char *) /* Name of current numeric locale */
159 PERLVARI(Gnumeric_standard, bool, TRUE) /* Assume simple numerics */
160 PERLVARI(Gnumeric_local, bool, TRUE) /* Assume local numerics */
162 #endif /* !USE_LOCALE_NUMERIC */
164 /* constants (these are not literals to facilitate pointer comparisons) */
165 PERLVARIC(GYes, char *, "1")
166 PERLVARIC(GNo, char *, "")
167 PERLVARIC(Ghexdigit, char *, "0123456789abcdef0123456789ABCDEFx")
168 PERLVARIC(Gpatleave, char *, "\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}")
170 PERLVAR(Gspecialsv_list[4], SV *) /* from byterun.h */