3 * Copyright (c) 1991-1997, Larry Wall
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.
10 #if !defined(__STDC__)
21 #define Null(type) ((type)NULL)
22 #define Nullch Null(char*)
23 #define Nullfp Null(PerlIO*)
24 #define Nullsv Null(SV*)
36 /* XXX Configure ought to have a test for a boolean type, if I can
37 just figure out all the headers such a test needs.
38 Andy Dougherty August 1996
40 /* bool is built-in for g++-2.6.3, which might be used for an extension.
41 If the extension includes <_G_config.h> before this file then
42 _G_HAVE_BOOL will be properly set. If, however, the extension includes
43 this file first, then you will have to manually set -DHAS_BOOL in
44 your command line to avoid a conflict.
54 /* The NeXT dynamic loader headers will not build with the bool macro
55 So declare them now to clear confusion.
60 typedef enum bool { FALSE = 0, TRUE = 1 } bool;
64 # endif /* !HAS_BOOL */
68 # if defined(UTS) || defined(VMS)
75 /* XXX A note on the perl source internal type system. The
76 original intent was that I32 be *exactly* 32 bits.
78 Currently, we only guarantee that I32 is *at least* 32 bits.
79 Specifically, if int is 64 bits, then so is I32. (This is the case
80 for the Cray.) This has the advantage of meshing nicely with
81 standard library calls (where we pass an I32 and the library is
82 expecting an int), but the disadvantage that an I32 is not 32 bits.
83 Andy Dougherty August 1996
85 There is no guarantee that there is *any* integral type with
86 exactly 32 bits. It is perfectly legal for a system to have
87 sizeof(short) == sizeof(int) == sizeof(long) == 8.
89 Similarly, there is no guarantee that I16 and U16 have exactly 16
92 For dealing with issues that may arise from various 32/64-bit
93 systems, we will ask Configure to check out
94 SHORTSIZE == sizeof(short)
95 INTSIZE == sizeof(int)
96 LONGSIZE == sizeof(long)
97 LONGLONGSIZE == sizeof(long long) (if HAS_LONG_LONG)
98 PTRSIZE == sizeof(void *)
99 DOUBLESIZE == sizeof(double)
100 LONG_DOUBLESIZE == sizeof(long double) (if HAS_LONG_DOUBLE).
101 Most of these are currently unused, but they are mentioned here so
102 metaconfig will include the appropriate tests in Configure and
103 we can then start to consider how best to deal with long long
105 Andy Dougherty April 1998
109 typedef unsigned char U8;
110 /* I8_MAX and I8_MIN constants are not defined, as I8 is an ambiguous type.
111 Please search CHAR_MAX in perl.h for further details. */
112 #define U8_MAX PERL_UCHAR_MAX
113 #define U8_MIN PERL_UCHAR_MIN
116 typedef unsigned short U16;
117 #define I16_MAX PERL_SHORT_MAX
118 #define I16_MIN PERL_SHORT_MIN
119 #define U16_MAX PERL_USHORT_MAX
120 #define U16_MIN PERL_USHORT_MIN
124 typedef unsigned int U32;
125 # define I32_MAX PERL_INT_MAX
126 # define I32_MIN PERL_INT_MIN
127 # define U32_MAX PERL_UINT_MAX
128 # define U32_MIN PERL_UINT_MIN
131 typedef unsigned long U32;
132 # define I32_MAX PERL_LONG_MAX
133 # define I32_MIN PERL_LONG_MIN
134 # define U32_MAX PERL_ULONG_MAX
135 # define U32_MIN PERL_ULONG_MIN
138 #define BIT_DIGITS(N) (((N)*146)/485 + 1) /* log2(10) =~ 146/485 */
139 #define TYPE_DIGITS(T) BIT_DIGITS(sizeof(T) * 8)
140 #define TYPE_CHARS(T) (TYPE_DIGITS(T) + 2) /* sign, NUL */
142 #define Ctl(ch) ((ch) & 037)
144 #define strNE(s1,s2) (strcmp(s1,s2))
145 #define strEQ(s1,s2) (!strcmp(s1,s2))
146 #define strLT(s1,s2) (strcmp(s1,s2) < 0)
147 #define strLE(s1,s2) (strcmp(s1,s2) <= 0)
148 #define strGT(s1,s2) (strcmp(s1,s2) > 0)
149 #define strGE(s1,s2) (strcmp(s1,s2) >= 0)
150 #define strnNE(s1,s2,l) (strncmp(s1,s2,l))
151 #define strnEQ(s1,s2,l) (!strncmp(s1,s2,l))
154 # define memNE(s1,s2,l) (memcmp(s1,s2,l))
155 # define memEQ(s1,s2,l) (!memcmp(s1,s2,l))
157 # define memNE(s1,s2,l) (bcmp(s1,s2,l))
158 # define memEQ(s1,s2,l) (!bcmp(s1,s2,l))
164 * Unfortunately, the introduction of locales means that we
165 * can't trust isupper(), etc. to tell the truth. And when
166 * it comes to /\w+/ with tainting enabled, we *must* be able
167 * to trust our character classes.
169 * Therefore, the default tests in the text of Perl will be
170 * independent of locale. Any code that wants to depend on
171 * the current locale will use the tests that begin with "lc".
174 #ifdef HAS_SETLOCALE /* XXX Is there a better test for this? */
180 #define isALNUM(c) (isALPHA(c) || isDIGIT(c) || (c) == '_')
181 #define isIDFIRST(c) (isALPHA(c) || (c) == '_')
182 #define isALPHA(c) (isUPPER(c) || isLOWER(c))
184 ((c) == ' ' || (c) == '\t' || (c) == '\n' || (c) =='\r' || (c) == '\f')
185 #define isDIGIT(c) ((c) >= '0' && (c) <= '9')
186 #define isUPPER(c) ((c) >= 'A' && (c) <= 'Z')
187 #define isLOWER(c) ((c) >= 'a' && (c) <= 'z')
188 #define isPRINT(c) (((c) > 32 && (c) < 127) || isSPACE(c))
189 #define toUPPER(c) (isLOWER(c) ? (c) - ('a' - 'A') : (c))
190 #define toLOWER(c) (isUPPER(c) ? (c) + ('a' - 'A') : (c))
192 #ifdef USE_NEXT_CTYPE
194 # define isALNUM_LC(c) \
195 (NXIsAlpha((unsigned int)(c)) || NXIsDigit((unsigned int)(c)) || \
197 # define isIDFIRST_LC(c) \
198 (NXIsAlpha((unsigned int)(c)) || (char)(c) == '_')
199 # define isALPHA_LC(c) NXIsAlpha((unsigned int)(c))
200 # define isSPACE_LC(c) NXIsSpace((unsigned int)(c))
201 # define isDIGIT_LC(c) NXIsDigit((unsigned int)(c))
202 # define isUPPER_LC(c) NXIsUpper((unsigned int)(c))
203 # define isLOWER_LC(c) NXIsLower((unsigned int)(c))
204 # define isPRINT_LC(c) NXIsPrint((unsigned int)(c))
205 # define toUPPER_LC(c) NXToUpper((unsigned int)(c))
206 # define toLOWER_LC(c) NXToLower((unsigned int)(c))
208 #else /* !USE_NEXT_CTYPE */
209 # if defined(CTYPE256) || (!defined(isascii) && !defined(HAS_ISASCII))
211 # define isALNUM_LC(c) \
212 (isalpha((unsigned char)(c)) || \
213 isdigit((unsigned char)(c)) || (char)(c) == '_')
214 # define isIDFIRST_LC(c) (isalpha((unsigned char)(c)) || (char)(c) == '_')
215 # define isALPHA_LC(c) isalpha((unsigned char)(c))
216 # define isSPACE_LC(c) isspace((unsigned char)(c))
217 # define isDIGIT_LC(c) isdigit((unsigned char)(c))
218 # define isUPPER_LC(c) isupper((unsigned char)(c))
219 # define isLOWER_LC(c) islower((unsigned char)(c))
220 # define isPRINT_LC(c) isprint((unsigned char)(c))
221 # define toUPPER_LC(c) toupper((unsigned char)(c))
222 # define toLOWER_LC(c) tolower((unsigned char)(c))
226 # define isALNUM_LC(c) \
227 (isascii(c) && (isalpha(c) || isdigit(c) || (c) == '_'))
228 # define isIDFIRST_LC(c) (isascii(c) && (isalpha(c) || (c) == '_'))
229 # define isALPHA_LC(c) (isascii(c) && isalpha(c))
230 # define isSPACE_LC(c) (isascii(c) && isspace(c))
231 # define isDIGIT_LC(c) (isascii(c) && isdigit(c))
232 # define isUPPER_LC(c) (isascii(c) && isupper(c))
233 # define isLOWER_LC(c) (isascii(c) && islower(c))
234 # define isPRINT_LC(c) (isascii(c) && isprint(c))
235 # define toUPPER_LC(c) toupper(c)
236 # define toLOWER_LC(c) tolower(c)
239 #endif /* USE_NEXT_CTYPE */
241 /* This conversion works both ways, strangely enough. */
242 #define toCTRL(c) (toUPPER(c) ^ 64)
244 /* Line numbers are unsigned, 16 bits. */
247 #define NOLINE ((line_t)0)
249 #define NOLINE ((line_t) 65535)
253 /* This looks obsolete (IZ):
255 XXX LEAKTEST doesn't really work in perl5. There are direct calls to
256 safemalloc() in the source, so LEAKTEST won't pick them up.
257 Further, if you try LEAKTEST, you'll also end up calling
258 Safefree, which might call safexfree() on some things that weren't
259 malloced with safexmalloc. The correct "fix" to this, if anyone
260 is interested, is to ensure that all calls go through the New and
262 --Andy Dougherty August 1996
267 #define NEWSV(x,len) newSV(len)
271 #define New(x,v,n,t) (v = (t*)safemalloc((MEM_SIZE)((n)*sizeof(t))))
272 #define Newc(x,v,n,t,c) (v = (c*)safemalloc((MEM_SIZE)((n)*sizeof(t))))
273 #define Newz(x,v,n,t) (v = (t*)safemalloc((MEM_SIZE)((n)*sizeof(t)))), \
274 memzero((char*)(v), (n)*sizeof(t))
275 #define Renew(v,n,t) \
276 (v = (t*)saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))
277 #define Renewc(v,n,t,c) \
278 (v = (c*)saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))
279 #define Safefree(d) safefree((Malloc_t)(d))
283 #define New(x,v,n,t) (v = (t*)safexmalloc((x),(MEM_SIZE)((n)*sizeof(t))))
284 #define Newc(x,v,n,t,c) (v = (c*)safexmalloc((x),(MEM_SIZE)((n)*sizeof(t))))
285 #define Newz(x,v,n,t) (v = (t*)safexmalloc((x),(MEM_SIZE)((n)*sizeof(t)))), \
286 memzero((char*)(v), (n)*sizeof(t))
287 #define Renew(v,n,t) \
288 (v = (t*)safexrealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))
289 #define Renewc(v,n,t,c) \
290 (v = (c*)safexrealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))
291 #define Safefree(d) safexfree((Malloc_t)(d))
293 #define MAXXCOUNT 1400
295 #define MAXYCOUNT 16 /* (MAXY_SIZE/4 + 1) */
296 extern long xcount[MAXXCOUNT];
297 extern long lastxcount[MAXXCOUNT];
298 extern long xycount[MAXXCOUNT][MAXYCOUNT];
299 extern long lastxycount[MAXXCOUNT][MAXYCOUNT];
301 #endif /* LEAKTEST */
303 #define Move(s,d,n,t) (void)memmove((char*)(d),(char*)(s), (n) * sizeof(t))
304 #define Copy(s,d,n,t) (void)memcpy((char*)(d),(char*)(s), (n) * sizeof(t))
305 #define Zero(d,n,t) (void)memzero((char*)(d), (n) * sizeof(t))
309 #define New(x,v,n,s) (v = Null(s *))
310 #define Newc(x,v,n,s,c) (v = Null(s *))
311 #define Newz(x,v,n,s) (v = Null(s *))
312 #define Renew(v,n,s) (v = Null(s *))
313 #define Move(s,d,n,t)
314 #define Copy(s,d,n,t)
316 #define Safefree(d) (d) = (d)
320 #ifdef USE_STRUCT_COPY
321 #define StructCopy(s,d,t) (*((t*)(d)) = *((t*)(s)))
323 #define StructCopy(s,d,t) Copy(s,d,1,t)