3 * Copyright (c) 1991-1999, 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.
11 * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12 * not content." --Gandalf
18 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
23 # define SIG_ERR ((Sighandler_t) -1)
26 /* XXX If this causes problems, set i_unistd=undef in the hint file. */
35 /* Put this after #includes because fork and vfork prototypes may
46 # include <sys/file.h>
50 # include <sys/wait.h>
57 static void xstat _((int));
58 long xcount[MAXXCOUNT];
59 long lastxcount[MAXXCOUNT];
60 long xycount[MAXXCOUNT][MAXYCOUNT];
61 long lastxycount[MAXXCOUNT][MAXYCOUNT];
65 /* paranoid version of system's malloc() */
67 /* NOTE: Do not call the next three routines directly. Use the macros
68 * in handy.h, so that we can easily redefine everything to do tracking of
69 * allocated hunks back to the original New to track down any memory leaks.
70 * XXX This advice seems to be widely ignored :-( --AD August 1996.
74 safesysmalloc(MEM_SIZE size)
79 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
82 #endif /* HAS_64K_LIMIT */
85 croak("panic: malloc");
87 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
88 #if !(defined(I286) || defined(atarist))
89 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
91 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
98 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
105 /* paranoid version of system's realloc() */
108 safesysrealloc(Malloc_t where,MEM_SIZE size)
111 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
112 Malloc_t PerlMem_realloc();
113 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
117 PerlIO_printf(PerlIO_stderr(),
118 "Reallocation too large: %lx\n", size) FLUSH;
121 #endif /* HAS_64K_LIMIT */
128 return safesysmalloc(size);
131 croak("panic: realloc");
133 ptr = PerlMem_realloc(where,size);
135 #if !(defined(I286) || defined(atarist))
137 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,PL_an++);
138 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
142 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,PL_an++);
143 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
152 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
159 /* safe version of system's free() */
162 safesysfree(Malloc_t where)
164 #if !(defined(I286) || defined(atarist))
165 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,PL_an++));
167 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,PL_an++));
175 /* safe version of system's calloc() */
178 safesyscalloc(MEM_SIZE count, MEM_SIZE size)
183 if (size * count > 0xffff) {
184 PerlIO_printf(PerlIO_stderr(),
185 "Allocation too large: %lx\n", size * count) FLUSH;
188 #endif /* HAS_64K_LIMIT */
190 if ((long)size < 0 || (long)count < 0)
191 croak("panic: calloc");
194 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
195 #if !(defined(I286) || defined(atarist))
196 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
198 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
201 memset((void*)ptr, 0, size);
207 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
216 struct mem_test_strut {
224 # define ALIGN sizeof(struct mem_test_strut)
226 # define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
227 # define typeof_chunk(ch) \
228 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
229 # define set_typeof_chunk(ch,t) \
230 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
231 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
234 ? ((size) - 1)/8 + 5 \
238 safexmalloc(I32 x, MEM_SIZE size)
240 register char* where = (char*)safemalloc(size + ALIGN);
243 xycount[x][SIZE_TO_Y(size)]++;
244 set_typeof_chunk(where, x);
245 sizeof_chunk(where) = size;
246 return (Malloc_t)(where + ALIGN);
250 safexrealloc(Malloc_t wh, MEM_SIZE size)
252 char *where = (char*)wh;
255 return safexmalloc(0,size);
258 MEM_SIZE old = sizeof_chunk(where - ALIGN);
259 int t = typeof_chunk(where - ALIGN);
260 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
262 xycount[t][SIZE_TO_Y(old)]--;
263 xycount[t][SIZE_TO_Y(size)]++;
264 xcount[t] += size - old;
265 sizeof_chunk(new) = size;
266 return (Malloc_t)(new + ALIGN);
271 safexfree(Malloc_t wh)
274 char *where = (char*)wh;
280 size = sizeof_chunk(where);
281 x = where[0] + 100 * where[1];
283 xycount[x][SIZE_TO_Y(size)]--;
288 safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
290 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
292 xycount[x][SIZE_TO_Y(size)]++;
293 memset((void*)(where + ALIGN), 0, size * count);
294 set_typeof_chunk(where, x);
295 sizeof_chunk(where) = size;
296 return (Malloc_t)(where + ALIGN);
302 register I32 i, j, total = 0;
303 I32 subtot[MAXYCOUNT];
305 for (j = 0; j < MAXYCOUNT; j++) {
309 PerlIO_printf(PerlIO_stderr(), " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
310 for (i = 0; i < MAXXCOUNT; i++) {
312 for (j = 0; j < MAXYCOUNT; j++) {
313 subtot[j] += xycount[i][j];
316 ? xcount[i] /* Have something */
318 ? xcount[i] != lastxcount[i] /* Changed */
319 : xcount[i] > lastxcount[i])) { /* Growed */
320 PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100,
321 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
322 lastxcount[i] = xcount[i];
323 for (j = 0; j < MAXYCOUNT; j++) {
325 ? xycount[i][j] /* Have something */
327 ? xycount[i][j] != lastxycount[i][j] /* Changed */
328 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
329 PerlIO_printf(PerlIO_stderr(),"%3ld ",
331 ? xycount[i][j] - lastxycount[i][j]
333 lastxycount[i][j] = xycount[i][j];
335 PerlIO_printf(PerlIO_stderr(), " . ", xycount[i][j]);
338 PerlIO_printf(PerlIO_stderr(), "\n");
342 PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
343 for (j = 0; j < MAXYCOUNT; j++) {
345 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
347 PerlIO_printf(PerlIO_stderr(), " . ");
350 PerlIO_printf(PerlIO_stderr(), "\n");
354 #endif /* LEAKTEST */
356 /* copy a string up to some (non-backslashed) delimiter, if any */
359 delimcpy(register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
362 for (tolen = 0; from < fromend; from++, tolen++) {
364 if (from[1] == delim)
373 else if (*from == delim)
384 /* return ptr to little string in big string, NULL if not found */
385 /* This routine was donated by Corey Satten. */
388 instr(register const char *big, register const char *little)
390 register const char *s, *x;
401 for (x=big,s=little; *s; /**/ ) {
410 return (char*)(big-1);
415 /* same as instr but allow embedded nulls */
418 ninstr(register const char *big, register const char *bigend, const char *little, const char *lend)
420 register const char *s, *x;
421 register I32 first = *little;
422 register const char *littleend = lend;
424 if (!first && little >= littleend)
426 if (bigend - big < littleend - little)
428 bigend -= littleend - little++;
429 while (big <= bigend) {
432 for (x=big,s=little; s < littleend; /**/ ) {
439 return (char*)(big-1);
444 /* reverse of the above--find last substring */
447 rninstr(register const char *big, const char *bigend, const char *little, const char *lend)
449 register const char *bigbeg;
450 register const char *s, *x;
451 register I32 first = *little;
452 register const char *littleend = lend;
454 if (!first && little >= littleend)
455 return (char*)bigend;
457 big = bigend - (littleend - little++);
458 while (big >= bigbeg) {
461 for (x=big+2,s=little; s < littleend; /**/ ) {
468 return (char*)(big+1);
474 * Set up for a new ctype locale.
477 perl_new_ctype(const char *newctype)
479 #ifdef USE_LOCALE_CTYPE
483 for (i = 0; i < 256; i++) {
485 PL_fold_locale[i] = toLOWER_LC(i);
486 else if (isLOWER_LC(i))
487 PL_fold_locale[i] = toUPPER_LC(i);
489 PL_fold_locale[i] = i;
492 #endif /* USE_LOCALE_CTYPE */
496 * Set up for a new collation locale.
499 perl_new_collate(const char *newcoll)
501 #ifdef USE_LOCALE_COLLATE
504 if (PL_collation_name) {
506 Safefree(PL_collation_name);
507 PL_collation_name = NULL;
508 PL_collation_standard = TRUE;
509 PL_collxfrm_base = 0;
510 PL_collxfrm_mult = 2;
515 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
517 Safefree(PL_collation_name);
518 PL_collation_name = savepv(newcoll);
519 PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
522 /* 2: at most so many chars ('a', 'b'). */
523 /* 50: surely no system expands a char more. */
524 #define XFRMBUFSIZE (2 * 50)
525 char xbuf[XFRMBUFSIZE];
526 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
527 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
528 SSize_t mult = fb - fa;
530 croak("strxfrm() gets absurd");
531 PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
532 PL_collxfrm_mult = mult;
536 #endif /* USE_LOCALE_COLLATE */
540 * Set up for a new numeric locale.
543 perl_new_numeric(const char *newnum)
545 #ifdef USE_LOCALE_NUMERIC
548 if (PL_numeric_name) {
549 Safefree(PL_numeric_name);
550 PL_numeric_name = NULL;
551 PL_numeric_standard = TRUE;
552 PL_numeric_local = TRUE;
557 if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
558 Safefree(PL_numeric_name);
559 PL_numeric_name = savepv(newnum);
560 PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
561 PL_numeric_local = TRUE;
564 #endif /* USE_LOCALE_NUMERIC */
568 perl_set_numeric_standard(void)
570 #ifdef USE_LOCALE_NUMERIC
572 if (! PL_numeric_standard) {
573 setlocale(LC_NUMERIC, "C");
574 PL_numeric_standard = TRUE;
575 PL_numeric_local = FALSE;
578 #endif /* USE_LOCALE_NUMERIC */
582 perl_set_numeric_local(void)
584 #ifdef USE_LOCALE_NUMERIC
586 if (! PL_numeric_local) {
587 setlocale(LC_NUMERIC, PL_numeric_name);
588 PL_numeric_standard = FALSE;
589 PL_numeric_local = TRUE;
592 #endif /* USE_LOCALE_NUMERIC */
597 * Initialize locale awareness.
600 perl_init_i18nl10n(int printwarn)
604 * 1 = set ok or not applicable,
605 * 0 = fallback to C locale,
606 * -1 = fallback to C locale failed
611 #ifdef USE_LOCALE_CTYPE
612 char *curctype = NULL;
613 #endif /* USE_LOCALE_CTYPE */
614 #ifdef USE_LOCALE_COLLATE
615 char *curcoll = NULL;
616 #endif /* USE_LOCALE_COLLATE */
617 #ifdef USE_LOCALE_NUMERIC
619 #endif /* USE_LOCALE_NUMERIC */
621 char *language = PerlEnv_getenv("LANGUAGE");
623 char *lc_all = PerlEnv_getenv("LC_ALL");
624 char *lang = PerlEnv_getenv("LANG");
625 bool setlocale_failure = FALSE;
627 #ifdef LOCALE_ENVIRON_REQUIRED
630 * Ultrix setlocale(..., "") fails if there are no environment
631 * variables from which to get a locale name.
638 if (setlocale(LC_ALL, ""))
641 setlocale_failure = TRUE;
643 if (!setlocale_failure) {
644 #ifdef USE_LOCALE_CTYPE
647 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
649 setlocale_failure = TRUE;
650 #endif /* USE_LOCALE_CTYPE */
651 #ifdef USE_LOCALE_COLLATE
653 setlocale(LC_COLLATE,
654 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
656 setlocale_failure = TRUE;
657 #endif /* USE_LOCALE_COLLATE */
658 #ifdef USE_LOCALE_NUMERIC
660 setlocale(LC_NUMERIC,
661 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
663 setlocale_failure = TRUE;
664 #endif /* USE_LOCALE_NUMERIC */
669 #endif /* !LOCALE_ENVIRON_REQUIRED */
672 if (! setlocale(LC_ALL, ""))
673 setlocale_failure = TRUE;
676 if (!setlocale_failure) {
677 #ifdef USE_LOCALE_CTYPE
678 if (! (curctype = setlocale(LC_CTYPE, "")))
679 setlocale_failure = TRUE;
680 #endif /* USE_LOCALE_CTYPE */
681 #ifdef USE_LOCALE_COLLATE
682 if (! (curcoll = setlocale(LC_COLLATE, "")))
683 setlocale_failure = TRUE;
684 #endif /* USE_LOCALE_COLLATE */
685 #ifdef USE_LOCALE_NUMERIC
686 if (! (curnum = setlocale(LC_NUMERIC, "")))
687 setlocale_failure = TRUE;
688 #endif /* USE_LOCALE_NUMERIC */
691 if (setlocale_failure) {
693 bool locwarn = (printwarn > 1 ||
695 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
700 PerlIO_printf(PerlIO_stderr(),
701 "perl: warning: Setting locale failed.\n");
705 PerlIO_printf(PerlIO_stderr(),
706 "perl: warning: Setting locale failed for the categories:\n\t");
707 #ifdef USE_LOCALE_CTYPE
709 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
710 #endif /* USE_LOCALE_CTYPE */
711 #ifdef USE_LOCALE_COLLATE
713 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
714 #endif /* USE_LOCALE_COLLATE */
715 #ifdef USE_LOCALE_NUMERIC
717 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
718 #endif /* USE_LOCALE_NUMERIC */
719 PerlIO_printf(PerlIO_stderr(), "\n");
723 PerlIO_printf(PerlIO_stderr(),
724 "perl: warning: Please check that your locale settings:\n");
727 PerlIO_printf(PerlIO_stderr(),
728 "\tLANGUAGE = %c%s%c,\n",
729 language ? '"' : '(',
730 language ? language : "unset",
731 language ? '"' : ')');
734 PerlIO_printf(PerlIO_stderr(),
735 "\tLC_ALL = %c%s%c,\n",
737 lc_all ? lc_all : "unset",
742 for (e = environ; *e; e++) {
743 if (strnEQ(*e, "LC_", 3)
744 && strnNE(*e, "LC_ALL=", 7)
745 && (p = strchr(*e, '=')))
746 PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
747 (int)(p - *e), *e, p + 1);
751 PerlIO_printf(PerlIO_stderr(),
754 lang ? lang : "unset",
757 PerlIO_printf(PerlIO_stderr(),
758 " are supported and installed on your system.\n");
763 if (setlocale(LC_ALL, "C")) {
765 PerlIO_printf(PerlIO_stderr(),
766 "perl: warning: Falling back to the standard locale (\"C\").\n");
771 PerlIO_printf(PerlIO_stderr(),
772 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
779 #ifdef USE_LOCALE_CTYPE
780 || !(curctype || setlocale(LC_CTYPE, "C"))
781 #endif /* USE_LOCALE_CTYPE */
782 #ifdef USE_LOCALE_COLLATE
783 || !(curcoll || setlocale(LC_COLLATE, "C"))
784 #endif /* USE_LOCALE_COLLATE */
785 #ifdef USE_LOCALE_NUMERIC
786 || !(curnum || setlocale(LC_NUMERIC, "C"))
787 #endif /* USE_LOCALE_NUMERIC */
791 PerlIO_printf(PerlIO_stderr(),
792 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
796 #endif /* ! LC_ALL */
798 #ifdef USE_LOCALE_CTYPE
799 curctype = setlocale(LC_CTYPE, Nullch);
800 #endif /* USE_LOCALE_CTYPE */
801 #ifdef USE_LOCALE_COLLATE
802 curcoll = setlocale(LC_COLLATE, Nullch);
803 #endif /* USE_LOCALE_COLLATE */
804 #ifdef USE_LOCALE_NUMERIC
805 curnum = setlocale(LC_NUMERIC, Nullch);
806 #endif /* USE_LOCALE_NUMERIC */
809 #ifdef USE_LOCALE_CTYPE
810 perl_new_ctype(curctype);
811 #endif /* USE_LOCALE_CTYPE */
813 #ifdef USE_LOCALE_COLLATE
814 perl_new_collate(curcoll);
815 #endif /* USE_LOCALE_COLLATE */
817 #ifdef USE_LOCALE_NUMERIC
818 perl_new_numeric(curnum);
819 #endif /* USE_LOCALE_NUMERIC */
821 #endif /* USE_LOCALE */
826 /* Backwards compatibility. */
828 perl_init_i18nl14n(int printwarn)
830 return perl_init_i18nl10n(printwarn);
833 #ifdef USE_LOCALE_COLLATE
836 * mem_collxfrm() is a bit like strxfrm() but with two important
837 * differences. First, it handles embedded NULs. Second, it allocates
838 * a bit more memory than needed for the transformed data itself.
839 * The real transformed data begins at offset sizeof(collationix).
840 * Please see sv_collxfrm() to see how this is used.
843 mem_collxfrm(const char *s, STRLEN len, STRLEN *xlen)
846 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
848 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
849 /* the +1 is for the terminating NUL. */
851 xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
852 New(171, xbuf, xAlloc, char);
856 *(U32*)xbuf = PL_collation_ix;
857 xout = sizeof(PL_collation_ix);
858 for (xin = 0; xin < len; ) {
862 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
865 if (xused < xAlloc - xout)
867 xAlloc = (2 * xAlloc) + 1;
868 Renew(xbuf, xAlloc, char);
873 xin += strlen(s + xin) + 1;
876 /* Embedded NULs are understood but silently skipped
877 * because they make no sense in locale collation. */
881 *xlen = xout - sizeof(PL_collation_ix);
890 #endif /* USE_LOCALE_COLLATE */
893 fbm_compile(SV *sv, U32 flags /* not used yet */)
902 s = (U8*)SvPV_force(sv, len);
903 (void)SvUPGRADE(sv, SVt_PVBM);
904 if (len > 255 || len == 0) /* TAIL might be on on a zero-length string. */
905 return; /* can't have offsets that big */
907 Sv_Grow(sv,len + 258);
908 table = (unsigned char*)(SvPVX(sv) + len + 1);
910 for (i = 0; i < 256; i++) {
914 while (s >= (unsigned char*)(SvPVX(sv)))
916 if (table[*s] == len)
921 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
924 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
925 for (i = 0; i < len; i++) {
926 if (PL_freq[s[i]] < frequency) {
928 frequency = PL_freq[s[i]];
931 BmRARE(sv) = s[rarest];
932 BmPREVIOUS(sv) = rarest;
933 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
937 fbm_instr(unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
939 register unsigned char *s;
941 register I32 littlelen;
942 register unsigned char *little;
943 register unsigned char *table;
944 register unsigned char *olds;
945 register unsigned char *oldlittle;
947 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
949 char *l = SvPV(littlestr,len);
951 if (SvTAIL(littlestr)) { /* Can be only 0-len constant
952 substr => we can ignore SvVALID */
955 if ((s = (unsigned char*)ninstr((char*)big, (char*)bigend,
960 if (bigend > big && bigend[-1] == '\n')
961 return (char *)(bigend - 1);
963 return (char *) bigend;
967 return ninstr((char*)big,(char*)bigend, l, l + len);
970 littlelen = SvCUR(littlestr);
971 if (SvTAIL(littlestr) && !PL_multiline) { /* tail anchored? */
972 if (littlelen > bigend - big)
974 little = (unsigned char*)SvPVX(littlestr);
975 s = bigend - littlelen;
977 && bigend[-1] == '\n'
978 && s[-1] == *little && memEQ((char*)s - 1,(char*)little,littlelen))
979 return (char*)s - 1; /* how sweet it is */
980 else if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
981 return (char*)s; /* how sweet it is */
984 if (littlelen <= 2) {
985 unsigned char c1 = (unsigned char)SvPVX(littlestr)[0];
986 unsigned char c2 = (unsigned char)SvPVX(littlestr)[1];
987 /* This may do extra comparisons if littlelen == 2, but this
988 should be hidden in the noise since we do less indirection. */
992 while (s <= bigend) {
994 && (littlelen == 1 || s[1] == c2)
995 && (!SvTAIL(littlestr)
997 || s[littlelen] == '\n')) /* Automatically multiline */
1005 table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
1006 if (--littlelen >= bigend - big)
1008 s = big + littlelen;
1009 oldlittle = little = table - 2;
1013 if (tmp = table[*s]) {
1015 if (bigend - s > tmp) {
1020 if ((s += tmp) < bigend)
1026 tmp = littlelen; /* less expensive than calling strncmp() */
1029 if (*--s == *--little)
1032 s = olds + 1; /* here we pay the price for failure */
1034 if (s < bigend) /* fake up continue to outer loop */
1038 if (SvTAIL(littlestr) /* automatically multiline */
1039 && olds + 1 != bigend
1048 /* start_shift, end_shift are positive quantities which give offsets
1049 of ends of some substring of bigstr.
1050 If `last' we want the last occurence.
1051 old_posp is the way of communication between consequent calls if
1052 the next call needs to find the .
1053 The initial *old_posp should be -1.
1054 Note that we do not take into account SvTAIL, so it may give wrong
1055 positives if _ALL flag is set.
1059 screaminstr(SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1062 register unsigned char *s, *x;
1063 register unsigned char *big;
1065 register I32 previous;
1067 register unsigned char *little;
1068 register I32 stop_pos;
1069 register unsigned char *littleend;
1073 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1074 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0))
1076 little = (unsigned char *)(SvPVX(littlestr));
1077 littleend = little + SvCUR(littlestr);
1079 /* The value of pos we can start at: */
1080 previous = BmPREVIOUS(littlestr);
1081 big = (unsigned char *)(SvPVX(bigstr));
1082 /* The value of pos we can stop at: */
1083 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1084 if (previous + start_shift > stop_pos) return Nullch;
1085 while (pos < previous + start_shift) {
1086 if (!(pos += PL_screamnext[pos]))
1091 if (pos >= stop_pos) break;
1092 if (big[pos-previous] != first)
1094 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1100 if (s == littleend) {
1102 if (!last) return (char *)(big+pos-previous);
1105 } while ( pos += PL_screamnext[pos] );
1106 return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1107 #else /* !POINTERRIGOR */
1110 if (pos >= stop_pos) break;
1111 if (big[pos] != first)
1113 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1119 if (s == littleend) {
1121 if (!last) return (char *)(big+pos);
1124 } while ( pos += PL_screamnext[pos] );
1125 return (last && found) ? (char *)(big+(*old_posp)) : Nullch;
1126 #endif /* POINTERRIGOR */
1130 ibcmp(const char *s1, const char *s2, register I32 len)
1132 register U8 *a = (U8 *)s1;
1133 register U8 *b = (U8 *)s2;
1135 if (*a != *b && *a != PL_fold[*b])
1143 ibcmp_locale(const char *s1, const char *s2, register I32 len)
1145 register U8 *a = (U8 *)s1;
1146 register U8 *b = (U8 *)s2;
1148 if (*a != *b && *a != PL_fold_locale[*b])
1155 /* copy a string to a safe spot */
1158 savepv(const char *sv)
1160 register char *newaddr;
1162 New(902,newaddr,strlen(sv)+1,char);
1163 (void)strcpy(newaddr,sv);
1167 /* same thing but with a known length */
1170 savepvn(const char *sv, register I32 len)
1172 register char *newaddr;
1174 New(903,newaddr,len+1,char);
1175 Copy(sv,newaddr,len,char); /* might not be null terminated */
1176 newaddr[len] = '\0'; /* is now */
1180 /* the SV for form() and mess() is not kept in an arena */
1190 return sv_2mortal(newSVpvn("",0));
1195 /* Create as PVMG now, to avoid any upgrading later */
1196 New(905, sv, 1, SV);
1197 Newz(905, any, 1, XPVMG);
1198 SvFLAGS(sv) = SVt_PVMG;
1199 SvANY(sv) = (void*)any;
1200 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1206 form(const char* pat, ...)
1208 SV *sv = mess_alloc();
1210 va_start(args, pat);
1211 sv_vsetpvfn(sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
1217 mess(const char *pat, va_list *args)
1219 SV *sv = mess_alloc();
1220 static char dgd[] = " during global destruction.\n";
1222 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1223 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1225 if (PL_curcop->cop_line)
1226 sv_catpvf(sv, " at %_ line %ld",
1227 GvSV(PL_curcop->cop_filegv), (long)PL_curcop->cop_line);
1228 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1229 bool line_mode = (RsSIMPLE(PL_rs) &&
1230 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1231 sv_catpvf(sv, ", <%s> %s %ld",
1232 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1233 line_mode ? "line" : "chunk",
1234 (long)IoLINES(GvIOp(PL_last_in_gv)));
1236 sv_catpv(sv, PL_dirty ? dgd : ".\n");
1242 die(const char* pat, ...)
1247 int was_in_eval = PL_in_eval;
1254 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1255 "%p: die: curstack = %p, mainstack = %p\n",
1256 thr, PL_curstack, PL_mainstack));
1258 va_start(args, pat);
1260 msv = mess(pat, &args);
1261 message = SvPV(msv,msglen);
1268 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1269 "%p: die: message = %s\ndiehook = %p\n",
1270 thr, message, PL_diehook));
1272 /* sv_2cv might call croak() */
1273 SV *olddiehook = PL_diehook;
1275 SAVESPTR(PL_diehook);
1276 PL_diehook = Nullsv;
1277 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1279 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1285 msg = newSVpvn(message, msglen);
1293 PUSHSTACKi(PERLSI_DIEHOOK);
1297 perl_call_sv((SV*)cv, G_DISCARD);
1303 PL_restartop = die_where(message, msglen);
1304 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1305 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1306 thr, PL_restartop, was_in_eval, PL_top_env));
1307 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1309 return PL_restartop;
1313 croak(const char* pat, ...)
1324 va_start(args, pat);
1325 msv = mess(pat, &args);
1326 message = SvPV(msv,msglen);
1328 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1330 /* sv_2cv might call croak() */
1331 SV *olddiehook = PL_diehook;
1333 SAVESPTR(PL_diehook);
1334 PL_diehook = Nullsv;
1335 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1337 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1342 msg = newSVpvn(message, msglen);
1346 PUSHSTACKi(PERLSI_DIEHOOK);
1350 perl_call_sv((SV*)cv, G_DISCARD);
1356 PL_restartop = die_where(message, msglen);
1361 /* SFIO can really mess with your errno */
1364 PerlIO_write(PerlIO_stderr(), message, msglen);
1365 (void)PerlIO_flush(PerlIO_stderr());
1374 warn(const char* pat,...)
1384 va_start(args, pat);
1385 msv = mess(pat, &args);
1386 message = SvPV(msv, msglen);
1390 /* sv_2cv might call warn() */
1392 SV *oldwarnhook = PL_warnhook;
1394 SAVESPTR(PL_warnhook);
1395 PL_warnhook = Nullsv;
1396 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1398 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1403 msg = newSVpvn(message, msglen);
1407 PUSHSTACKi(PERLSI_WARNHOOK);
1411 perl_call_sv((SV*)cv, G_DISCARD);
1417 PerlIO_write(PerlIO_stderr(), message, msglen);
1419 DEBUG_L(*message == '!'
1420 ? (xstat(message[1]=='!'
1421 ? (message[2]=='!' ? 2 : 1)
1426 (void)PerlIO_flush(PerlIO_stderr());
1430 warner(U32 err, const char* pat,...)
1441 va_start(args, pat);
1442 msv = mess(pat, &args);
1443 message = SvPV(msv, msglen);
1448 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1449 #endif /* USE_THREADS */
1451 /* sv_2cv might call croak() */
1452 SV *olddiehook = PL_diehook;
1454 SAVESPTR(PL_diehook);
1455 PL_diehook = Nullsv;
1456 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1458 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1463 msg = newSVpvn(message, msglen);
1470 perl_call_sv((SV*)cv, G_DISCARD);
1476 PL_restartop = die_where(message, msglen);
1479 PerlIO_write(PerlIO_stderr(), message, msglen);
1480 (void)PerlIO_flush(PerlIO_stderr());
1486 /* sv_2cv might call warn() */
1488 SV *oldwarnhook = PL_warnhook;
1490 SAVESPTR(PL_warnhook);
1491 PL_warnhook = Nullsv;
1492 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1494 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1499 msg = newSVpvn(message, msglen);
1506 perl_call_sv((SV*)cv, G_DISCARD);
1512 PerlIO_write(PerlIO_stderr(), message, msglen);
1516 (void)PerlIO_flush(PerlIO_stderr());
1520 #ifndef VMS /* VMS' my_setenv() is in VMS.c */
1523 my_setenv(char *nam, char *val)
1525 #ifndef PERL_USE_SAFE_PUTENV
1526 /* most putenv()s leak, so we manipulate environ directly */
1527 register I32 i=setenv_getix(nam); /* where does it go? */
1529 if (environ == PL_origenviron) { /* need we copy environment? */
1535 for (max = i; environ[max]; max++) ;
1536 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1537 for (j=0; j<max; j++) { /* copy environment */
1538 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1539 strcpy(tmpenv[j], environ[j]);
1541 tmpenv[max] = Nullch;
1542 environ = tmpenv; /* tell exec where it is now */
1545 safesysfree(environ[i]);
1546 while (environ[i]) {
1547 environ[i] = environ[i+1];
1552 if (!environ[i]) { /* does not exist yet */
1553 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1554 environ[i+1] = Nullch; /* make sure it's null terminated */
1557 safesysfree(environ[i]);
1558 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1561 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1563 /* MS-DOS requires environment variable names to be in uppercase */
1564 /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1565 * some utilities and applications may break because they only look
1566 * for upper case strings. (Fixed strupr() bug here.)]
1568 strcpy(environ[i],nam); strupr(environ[i]);
1569 (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1572 #else /* PERL_USE_SAFE_PUTENV */
1575 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1577 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1579 strcpy(new_env,nam); strupr(new_env);
1580 (void)sprintf(new_env + strlen(nam),"=%s",val);
1582 (void)putenv(new_env);
1583 #endif /* PERL_USE_SAFE_PUTENV */
1586 #else /* if WIN32 */
1589 my_setenv(char *nam,char *val)
1592 #ifdef USE_WIN32_RTL_ENV
1594 register char *envstr;
1595 STRLEN namlen = strlen(nam);
1597 char *oldstr = environ[setenv_getix(nam)];
1599 /* putenv() has totally broken semantics in both the Borland
1600 * and Microsoft CRTLs. They either store the passed pointer in
1601 * the environment without making a copy, or make a copy and don't
1602 * free it. And on top of that, they dont free() old entries that
1603 * are being replaced/deleted. This means the caller must
1604 * free any old entries somehow, or we end up with a memory
1605 * leak every time my_setenv() is called. One might think
1606 * one could directly manipulate environ[], like the UNIX code
1607 * above, but direct changes to environ are not allowed when
1608 * calling putenv(), since the RTLs maintain an internal
1609 * *copy* of environ[]. Bad, bad, *bad* stink.
1620 vallen = strlen(val);
1621 envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
1622 (void)sprintf(envstr,"%s=%s",nam,val);
1623 (void)PerlEnv_putenv(envstr);
1625 safesysfree(oldstr);
1627 safesysfree(envstr); /* MSVCRT leaks without this */
1630 #else /* !USE_WIN32_RTL_ENV */
1632 register char *envstr;
1633 STRLEN len = strlen(nam) + 3;
1638 New(904, envstr, len, char);
1639 (void)sprintf(envstr,"%s=%s",nam,val);
1640 (void)PerlEnv_putenv(envstr);
1649 setenv_getix(char *nam)
1651 register I32 i, len = strlen(nam);
1653 for (i = 0; environ[i]; i++) {
1656 strnicmp(environ[i],nam,len) == 0
1658 strnEQ(environ[i],nam,len)
1660 && environ[i][len] == '=')
1661 break; /* strnEQ must come first to avoid */
1662 } /* potential SEGV's */
1668 #ifdef UNLINK_ALL_VERSIONS
1670 unlnk(f) /* unlink all versions of a file */
1675 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
1680 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1682 my_bcopy(register const char *from,register char *to,register I32 len)
1686 if (from - to >= 0) {
1694 *(--to) = *(--from);
1702 my_memset(register char *loc, register I32 ch, register I32 len)
1712 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1714 my_bzero(register char *loc, register I32 len)
1724 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1726 my_memcmp(const char *s1, const char *s2, register I32 len)
1728 register U8 *a = (U8 *)s1;
1729 register U8 *b = (U8 *)s2;
1733 if (tmp = *a++ - *b++)
1738 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1742 #ifdef USE_CHAR_VSPRINTF
1747 vsprintf(char *dest, const char *pat, char *args)
1751 fakebuf._ptr = dest;
1752 fakebuf._cnt = 32767;
1756 fakebuf._flag = _IOWRT|_IOSTRG;
1757 _doprnt(pat, args, &fakebuf); /* what a kludge */
1758 (void)putc('\0', &fakebuf);
1759 #ifdef USE_CHAR_VSPRINTF
1762 return 0; /* perl doesn't use return value */
1766 #endif /* HAS_VPRINTF */
1769 #if BYTEORDER != 0x4321
1773 #if (BYTEORDER & 1) == 0
1776 result = ((s & 255) << 8) + ((s >> 8) & 255);
1788 char c[sizeof(long)];
1791 #if BYTEORDER == 0x1234
1792 u.c[0] = (l >> 24) & 255;
1793 u.c[1] = (l >> 16) & 255;
1794 u.c[2] = (l >> 8) & 255;
1798 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1799 croak("Unknown BYTEORDER\n");
1804 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1805 u.c[o & 0xf] = (l >> s) & 255;
1817 char c[sizeof(long)];
1820 #if BYTEORDER == 0x1234
1821 u.c[0] = (l >> 24) & 255;
1822 u.c[1] = (l >> 16) & 255;
1823 u.c[2] = (l >> 8) & 255;
1827 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1828 croak("Unknown BYTEORDER\n");
1835 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1836 l |= (u.c[o & 0xf] & 255) << s;
1843 #endif /* BYTEORDER != 0x4321 */
1847 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1848 * If these functions are defined,
1849 * the BYTEORDER is neither 0x1234 nor 0x4321.
1850 * However, this is not assumed.
1854 #define HTOV(name,type) \
1861 char c[sizeof(type)]; \
1865 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1866 u.c[i] = (n >> s) & 0xFF; \
1871 #define VTOH(name,type) \
1878 char c[sizeof(type)]; \
1884 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1885 n += (u.c[i] & 0xFF) << s; \
1890 #if defined(HAS_HTOVS) && !defined(htovs)
1893 #if defined(HAS_HTOVL) && !defined(htovl)
1896 #if defined(HAS_VTOHS) && !defined(vtohs)
1899 #if defined(HAS_VTOHL) && !defined(vtohl)
1903 /* VMS' my_popen() is in VMS.c, same with OS/2. */
1904 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM)
1906 my_popen(char *cmd, char *mode)
1909 register I32 This, that;
1912 I32 doexec = strNE(cmd,"-");
1914 PERL_FLUSHALL_FOR_CHILD;
1917 return my_syspopen(cmd,mode);
1920 This = (*mode == 'w');
1922 if (doexec && PL_tainting) {
1924 taint_proper("Insecure %s%s", "EXEC");
1926 if (PerlProc_pipe(p) < 0)
1928 while ((pid = (doexec?vfork():fork())) < 0) {
1929 if (errno != EAGAIN) {
1930 PerlLIO_close(p[This]);
1932 croak("Can't fork");
1944 PerlLIO_close(p[THAT]);
1945 if (p[THIS] != (*mode == 'r')) {
1946 PerlLIO_dup2(p[THIS], *mode == 'r');
1947 PerlLIO_close(p[THIS]);
1950 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
1956 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
1959 do_exec(cmd); /* may or may not use the shell */
1963 if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1964 sv_setiv(GvSV(tmpgv), (IV)getpid());
1966 hv_clear(PL_pidstatus); /* we have no children */
1971 do_execfree(); /* free any memory malloced by child on vfork */
1972 PerlLIO_close(p[that]);
1973 if (p[that] < p[This]) {
1974 PerlLIO_dup2(p[This], p[that]);
1975 PerlLIO_close(p[This]);
1978 sv = *av_fetch(PL_fdpid,p[This],TRUE);
1979 (void)SvUPGRADE(sv,SVt_IV);
1981 PL_forkprocess = pid;
1982 return PerlIO_fdopen(p[This], mode);
1985 #if defined(atarist) || defined(DJGPP)
1988 my_popen(char *cmd, char *mode)
1990 /* Needs work for PerlIO ! */
1991 /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
1992 PERL_FLUSHALL_FOR_CHILD;
1993 return popen(PerlIO_exportFILE(cmd, 0), mode);
1997 #endif /* !DOSISH */
2004 struct stat tmpstatbuf;
2006 PerlIO_printf(PerlIO_stderr(),"%s", s);
2007 for (fd = 0; fd < 32; fd++) {
2008 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2009 PerlIO_printf(PerlIO_stderr()," %d",fd);
2011 PerlIO_printf(PerlIO_stderr(),"\n");
2013 #endif /* DUMP_FDS */
2021 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2024 PerlLIO_close(newfd);
2025 return fcntl(oldfd, F_DUPFD, newfd);
2027 #define DUP2_MAX_FDS 256
2028 int fdtmp[DUP2_MAX_FDS];
2034 PerlLIO_close(newfd);
2035 /* good enough for low fd's... */
2036 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2037 if (fdx >= DUP2_MAX_FDS) {
2045 PerlLIO_close(fdtmp[--fdx]);
2052 #ifdef HAS_SIGACTION
2055 rsignal(int signo, Sighandler_t handler)
2057 struct sigaction act, oact;
2059 act.sa_handler = handler;
2060 sigemptyset(&act.sa_mask);
2063 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2066 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2067 act.sa_flags |= SA_NOCLDWAIT;
2069 if (sigaction(signo, &act, &oact) == -1)
2072 return oact.sa_handler;
2076 rsignal_state(int signo)
2078 struct sigaction oact;
2080 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2083 return oact.sa_handler;
2087 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2089 struct sigaction act;
2091 act.sa_handler = handler;
2092 sigemptyset(&act.sa_mask);
2095 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2098 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2099 act.sa_flags |= SA_NOCLDWAIT;
2101 return sigaction(signo, &act, save);
2105 rsignal_restore(int signo, Sigsave_t *save)
2107 return sigaction(signo, save, (struct sigaction *)NULL);
2110 #else /* !HAS_SIGACTION */
2113 rsignal(int signo, Sighandler_t handler)
2115 return PerlProc_signal(signo, handler);
2118 static int sig_trapped;
2128 rsignal_state(int signo)
2130 Sighandler_t oldsig;
2133 oldsig = PerlProc_signal(signo, sig_trap);
2134 PerlProc_signal(signo, oldsig);
2136 PerlProc_kill(getpid(), signo);
2141 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2143 *save = PerlProc_signal(signo, handler);
2144 return (*save == SIG_ERR) ? -1 : 0;
2148 rsignal_restore(int signo, Sigsave_t *save)
2150 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2153 #endif /* !HAS_SIGACTION */
2155 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2156 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM)
2158 my_pclose(PerlIO *ptr)
2160 Sigsave_t hstat, istat, qstat;
2168 int saved_vaxc_errno;
2171 int saved_win32_errno;
2174 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2175 pid = (int)SvIVX(*svp);
2177 *svp = &PL_sv_undef;
2179 if (pid == -1) { /* Opened by popen. */
2180 return my_syspclose(ptr);
2183 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2184 saved_errno = errno;
2186 saved_vaxc_errno = vaxc$errno;
2189 saved_win32_errno = GetLastError();
2193 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2195 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2196 rsignal_save(SIGINT, SIG_IGN, &istat);
2197 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2199 pid2 = wait4pid(pid, &status, 0);
2200 } while (pid2 == -1 && errno == EINTR);
2201 rsignal_restore(SIGHUP, &hstat);
2202 rsignal_restore(SIGINT, &istat);
2203 rsignal_restore(SIGQUIT, &qstat);
2205 SETERRNO(saved_errno, saved_vaxc_errno);
2208 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2210 #endif /* !DOSISH */
2212 #if !defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(CYGWIN32)
2214 wait4pid(int pid, int *statusp, int flags)
2218 char spid[TYPE_CHARS(int)];
2223 sprintf(spid, "%d", pid);
2224 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2225 if (svp && *svp != &PL_sv_undef) {
2226 *statusp = SvIVX(*svp);
2227 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2234 hv_iterinit(PL_pidstatus);
2235 if (entry = hv_iternext(PL_pidstatus)) {
2236 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2237 sv = hv_iterval(PL_pidstatus,entry);
2238 *statusp = SvIVX(sv);
2239 sprintf(spid, "%d", pid);
2240 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2245 # ifdef HAS_WAITPID_RUNTIME
2246 if (!HAS_WAITPID_RUNTIME)
2249 return PerlProc_waitpid(pid,statusp,flags);
2251 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2252 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2254 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2259 croak("Can't do waitpid with flags");
2261 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2262 pidgone(result,*statusp);
2270 #endif /* !DOSISH || OS2 || WIN32 */
2274 pidgone(int pid, int status)
2277 char spid[TYPE_CHARS(int)];
2279 sprintf(spid, "%d", pid);
2280 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2281 (void)SvUPGRADE(sv,SVt_IV);
2286 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2289 int /* Cannot prototype with I32
2298 /* Needs work for PerlIO ! */
2299 FILE *f = PerlIO_findFILE(ptr);
2300 I32 result = pclose(f);
2301 PerlIO_releaseFILE(ptr,f);
2307 repeatcpy(register char *to, register const char *from, I32 len, register I32 count)
2310 register const char *frombase = from;
2313 register const char c = *from;
2318 while (count-- > 0) {
2319 for (todo = len; todo > 0; todo--) {
2327 cast_ulong(double f)
2332 # define BIGDOUBLE 2147483648.0
2334 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2337 return (unsigned long)f;
2339 return (unsigned long)along;
2343 /* Unfortunately, on some systems the cast_uv() function doesn't
2344 work with the system-supplied definition of ULONG_MAX. The
2345 comparison (f >= ULONG_MAX) always comes out true. It must be a
2346 problem with the compiler constant folding.
2348 In any case, this workaround should be fine on any two's complement
2349 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2351 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2354 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2356 -- Kenneth Albanowski <kjahds@kjahds.com>
2360 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2367 return (I32) I32_MAX;
2369 return (I32) I32_MIN;
2387 return (UV) MY_UV_MAX;
2393 same_dirent(char *a, char *b)
2395 char *fa = strrchr(a,'/');
2396 char *fb = strrchr(b,'/');
2397 struct stat tmpstatbuf1;
2398 struct stat tmpstatbuf2;
2399 SV *tmpsv = sv_newmortal();
2412 sv_setpv(tmpsv, ".");
2414 sv_setpvn(tmpsv, a, fa - a);
2415 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2418 sv_setpv(tmpsv, ".");
2420 sv_setpvn(tmpsv, b, fb - b);
2421 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2423 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2424 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2426 #endif /* !HAS_RENAME */
2429 scan_bin(char *start, I32 len, I32 *retlen)
2431 register char *s = start;
2432 register UV retval = 0;
2433 bool overflowed = FALSE;
2434 while (len && *s >= '0' && *s <= '1') {
2435 register UV n = retval << 1;
2436 if (!overflowed && (n >> 1) != retval) {
2437 warn("Integer overflow in binary number");
2440 retval = n | (*s++ - '0');
2443 if (len && (*s >= '2' && *s <= '9')) {
2445 if (ckWARN(WARN_UNSAFE))
2446 warner(WARN_UNSAFE, "Illegal binary digit '%c' ignored", *s);
2448 *retlen = s - start;
2452 scan_oct(char *start, I32 len, I32 *retlen)
2454 register char *s = start;
2455 register UV retval = 0;
2456 bool overflowed = FALSE;
2458 while (len && *s >= '0' && *s <= '7') {
2459 register UV n = retval << 3;
2460 if (!overflowed && (n >> 3) != retval) {
2461 warn("Integer overflow in octal number");
2464 retval = n | (*s++ - '0');
2467 if (len && (*s == '8' || *s == '9')) {
2469 if (ckWARN(WARN_OCTAL))
2470 warner(WARN_OCTAL, "Illegal octal digit '%c' ignored", *s);
2472 *retlen = s - start;
2477 scan_hex(char *start, I32 len, I32 *retlen)
2479 register char *s = start;
2480 register UV retval = 0;
2481 bool overflowed = FALSE;
2485 while (len-- && *s) {
2486 tmp = strchr((char *) PL_hexdigit, *s++);
2488 if (*(s-1) == '_' || (*(s-1) == 'x' && retval == 0))
2493 if (ckWARN(WARN_UNSAFE))
2494 warner(WARN_UNSAFE,"Illegal hex digit '%c' ignored", *s);
2499 if (!overflowed && (n >> 4) != retval) {
2500 warn("Integer overflow in hex number");
2503 retval = n | ((tmp - PL_hexdigit) & 15);
2505 *retlen = s - start;
2510 find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags)
2513 char *xfound = Nullch;
2514 char *xfailed = Nullch;
2515 char tmpbuf[MAXPATHLEN];
2519 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2520 # define SEARCH_EXTS ".bat", ".cmd", NULL
2521 # define MAX_EXT_LEN 4
2524 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2525 # define MAX_EXT_LEN 4
2528 # define SEARCH_EXTS ".pl", ".com", NULL
2529 # define MAX_EXT_LEN 4
2531 /* additional extensions to try in each dir if scriptname not found */
2533 char *exts[] = { SEARCH_EXTS };
2534 char **ext = search_ext ? search_ext : exts;
2535 int extidx = 0, i = 0;
2536 char *curext = Nullch;
2538 # define MAX_EXT_LEN 0
2542 * If dosearch is true and if scriptname does not contain path
2543 * delimiters, search the PATH for scriptname.
2545 * If SEARCH_EXTS is also defined, will look for each
2546 * scriptname{SEARCH_EXTS} whenever scriptname is not found
2547 * while searching the PATH.
2549 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2550 * proceeds as follows:
2551 * If DOSISH or VMSISH:
2552 * + look for ./scriptname{,.foo,.bar}
2553 * + search the PATH for scriptname{,.foo,.bar}
2556 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
2557 * this will not look in '.' if it's not in the PATH)
2562 # ifdef ALWAYS_DEFTYPES
2563 len = strlen(scriptname);
2564 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2565 int hasdir, idx = 0, deftypes = 1;
2568 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2571 int hasdir, idx = 0, deftypes = 1;
2574 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2576 /* The first time through, just add SEARCH_EXTS to whatever we
2577 * already have, so we can check for default file types. */
2579 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
2585 if ((strlen(tmpbuf) + strlen(scriptname)
2586 + MAX_EXT_LEN) >= sizeof tmpbuf)
2587 continue; /* don't search dir with too-long name */
2588 strcat(tmpbuf, scriptname);
2592 if (strEQ(scriptname, "-"))
2594 if (dosearch) { /* Look in '.' first. */
2595 char *cur = scriptname;
2597 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2599 if (strEQ(ext[i++],curext)) {
2600 extidx = -1; /* already has an ext */
2605 DEBUG_p(PerlIO_printf(Perl_debug_log,
2606 "Looking for %s\n",cur));
2607 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
2608 && !S_ISDIR(PL_statbuf.st_mode)) {
2616 if (cur == scriptname) {
2617 len = strlen(scriptname);
2618 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
2620 cur = strcpy(tmpbuf, scriptname);
2622 } while (extidx >= 0 && ext[extidx] /* try an extension? */
2623 && strcpy(tmpbuf+len, ext[extidx++]));
2628 if (dosearch && !strchr(scriptname, '/')
2630 && !strchr(scriptname, '\\')
2632 && (s = PerlEnv_getenv("PATH"))) {
2635 PL_bufend = s + strlen(s);
2636 while (s < PL_bufend) {
2637 #if defined(atarist) || defined(DOSISH)
2642 && *s != ';'; len++, s++) {
2643 if (len < sizeof tmpbuf)
2646 if (len < sizeof tmpbuf)
2648 #else /* ! (atarist || DOSISH) */
2649 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
2652 #endif /* ! (atarist || DOSISH) */
2655 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
2656 continue; /* don't search dir with too-long name */
2658 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
2659 && tmpbuf[len - 1] != '/'
2660 && tmpbuf[len - 1] != '\\'
2663 tmpbuf[len++] = '/';
2664 if (len == 2 && tmpbuf[0] == '.')
2666 (void)strcpy(tmpbuf + len, scriptname);
2670 len = strlen(tmpbuf);
2671 if (extidx > 0) /* reset after previous loop */
2675 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
2676 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
2677 if (S_ISDIR(PL_statbuf.st_mode)) {
2681 } while ( retval < 0 /* not there */
2682 && extidx>=0 && ext[extidx] /* try an extension? */
2683 && strcpy(tmpbuf+len, ext[extidx++])
2688 if (S_ISREG(PL_statbuf.st_mode)
2689 && cando(S_IRUSR,TRUE,&PL_statbuf)
2691 && cando(S_IXUSR,TRUE,&PL_statbuf)
2695 xfound = tmpbuf; /* bingo! */
2699 xfailed = savepv(tmpbuf);
2702 if (!xfound && !seen_dot && !xfailed &&
2703 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
2704 || S_ISDIR(PL_statbuf.st_mode)))
2706 seen_dot = 1; /* Disable message. */
2708 if (flags & 1) { /* do or die? */
2709 croak("Can't %s %s%s%s",
2710 (xfailed ? "execute" : "find"),
2711 (xfailed ? xfailed : scriptname),
2712 (xfailed ? "" : " on PATH"),
2713 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
2715 scriptname = Nullch;
2719 scriptname = xfound;
2721 return (scriptname ? savepv(scriptname) : Nullch);
2727 /* Very simplistic scheduler for now */
2731 thr = thr->i.next_run;
2735 perl_cond_init(perl_cond *cp)
2741 perl_cond_signal(perl_cond *cp)
2744 perl_cond cond = *cp;
2749 /* Insert t in the runnable queue just ahead of us */
2750 t->i.next_run = thr->i.next_run;
2751 thr->i.next_run->i.prev_run = t;
2752 t->i.prev_run = thr;
2753 thr->i.next_run = t;
2754 thr->i.wait_queue = 0;
2755 /* Remove from the wait queue */
2761 perl_cond_broadcast(perl_cond *cp)
2764 perl_cond cond, cond_next;
2766 for (cond = *cp; cond; cond = cond_next) {
2768 /* Insert t in the runnable queue just ahead of us */
2769 t->i.next_run = thr->i.next_run;
2770 thr->i.next_run->i.prev_run = t;
2771 t->i.prev_run = thr;
2772 thr->i.next_run = t;
2773 thr->i.wait_queue = 0;
2774 /* Remove from the wait queue */
2775 cond_next = cond->next;
2782 perl_cond_wait(perl_cond *cp)
2786 if (thr->i.next_run == thr)
2787 croak("panic: perl_cond_wait called by last runnable thread");
2789 New(666, cond, 1, struct perl_wait_queue);
2793 thr->i.wait_queue = cond;
2794 /* Remove ourselves from runnable queue */
2795 thr->i.next_run->i.prev_run = thr->i.prev_run;
2796 thr->i.prev_run->i.next_run = thr->i.next_run;
2798 #endif /* FAKE_THREADS */
2800 #ifdef PTHREAD_GETSPECIFIC_INT
2801 struct perl_thread *
2806 if (pthread_getspecific(PL_thr_key, &t))
2807 croak("panic: pthread_getspecific");
2808 return (struct perl_thread *) t;
2813 condpair_magic(SV *sv)
2817 SvUPGRADE(sv, SVt_PVMG);
2818 mg = mg_find(sv, 'm');
2822 New(53, cp, 1, condpair_t);
2823 MUTEX_INIT(&cp->mutex);
2824 COND_INIT(&cp->owner_cond);
2825 COND_INIT(&cp->cond);
2827 MUTEX_LOCK(&PL_cred_mutex); /* XXX need separate mutex? */
2828 mg = mg_find(sv, 'm');
2830 /* someone else beat us to initialising it */
2831 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
2832 MUTEX_DESTROY(&cp->mutex);
2833 COND_DESTROY(&cp->owner_cond);
2834 COND_DESTROY(&cp->cond);
2838 sv_magic(sv, Nullsv, 'm', 0, 0);
2840 mg->mg_ptr = (char *)cp;
2841 mg->mg_len = sizeof(cp);
2842 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
2843 DEBUG_S(WITH_THR(PerlIO_printf(PerlIO_stderr(),
2844 "%p: condpair_magic %p\n", thr, sv));)
2851 * Make a new perl thread structure using t as a prototype. Some of the
2852 * fields for the new thread are copied from the prototype thread, t,
2853 * so t should not be running in perl at the time this function is
2854 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
2855 * thread calling new_struct_thread) clearly satisfies this constraint.
2857 struct perl_thread *
2858 new_struct_thread(struct perl_thread *t)
2860 struct perl_thread *thr;
2865 sv = newSVpvn("", 0);
2866 SvGROW(sv, sizeof(struct perl_thread) + 1);
2867 SvCUR_set(sv, sizeof(struct perl_thread));
2868 thr = (Thread) SvPVX(sv);
2870 memset(thr, 0xab, sizeof(struct perl_thread));
2877 Zero(&PL_hv_fetch_ent_mh, 1, HE);
2879 Zero(thr, 1, struct perl_thread);
2885 PL_curcop = &PL_compiling;
2886 thr->cvcache = newHV();
2887 thr->threadsv = newAV();
2888 thr->specific = newAV();
2889 thr->errsv = newSVpvn("", 0);
2890 thr->errhv = newHV();
2891 thr->flags = THRf_R_JOINABLE;
2892 MUTEX_INIT(&thr->mutex);
2894 /* top_env needs to be non-zero. It points to an area
2895 in which longjmp() stuff is stored, as C callstack
2896 info there at least is thread specific this has to
2897 be per-thread. Otherwise a 'die' in a thread gives
2898 that thread the C stack of last thread to do an eval {}!
2899 See comments in scope.h
2900 Initialize top entry (as in perl.c for main thread)
2902 PL_start_env.je_prev = NULL;
2903 PL_start_env.je_ret = -1;
2904 PL_start_env.je_mustcatch = TRUE;
2905 PL_top_env = &PL_start_env;
2910 PL_statname = NEWSV(66,0);
2912 PL_regcompp = FUNC_NAME_TO_PTR(pregcomp);
2913 PL_regexecp = FUNC_NAME_TO_PTR(regexec_flags);
2915 PL_reginterp_cnt = 0;
2916 PL_lastscream = Nullsv;
2919 PL_reg_start_tmp = 0;
2920 PL_reg_start_tmpl = 0;
2922 /* parent thread's data needs to be locked while we make copy */
2923 MUTEX_LOCK(&t->mutex);
2925 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
2926 PL_defstash = t->Tdefstash; /* XXX maybe these should */
2927 PL_curstash = t->Tcurstash; /* always be set to main? */
2929 PL_tainted = t->Ttainted;
2930 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
2931 PL_nrs = newSVsv(t->Tnrs);
2932 PL_rs = SvREFCNT_inc(PL_nrs);
2933 PL_last_in_gv = Nullgv;
2934 PL_ofslen = t->Tofslen;
2935 PL_ofs = savepvn(t->Tofs, PL_ofslen);
2936 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
2937 PL_chopset = t->Tchopset;
2938 PL_formtarget = newSVsv(t->Tformtarget);
2939 PL_bodytarget = newSVsv(t->Tbodytarget);
2940 PL_toptarget = newSVsv(t->Ttoptarget);
2942 /* Initialise all per-thread SVs that the template thread used */
2943 svp = AvARRAY(t->threadsv);
2944 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
2945 if (*svp && *svp != &PL_sv_undef) {
2946 SV *sv = newSVsv(*svp);
2947 av_store(thr->threadsv, i, sv);
2948 sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
2949 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
2950 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
2953 thr->threadsvp = AvARRAY(thr->threadsv);
2955 MUTEX_LOCK(&PL_threads_mutex);
2957 thr->tid = ++PL_threadnum;
2958 thr->next = t->next;
2961 thr->next->prev = thr;
2962 MUTEX_UNLOCK(&PL_threads_mutex);
2964 /* done copying parent's state */
2965 MUTEX_UNLOCK(&t->mutex);
2967 #ifdef HAVE_THREAD_INTERN
2968 init_thread_intern(thr);
2969 #endif /* HAVE_THREAD_INTERN */
2972 #endif /* USE_THREADS */
2976 * This hack is to force load of "huge" support from libm.a
2977 * So it is in perl for (say) POSIX to use.
2978 * Needed for SunOS with Sun's 'acc' for example.
2987 #ifdef PERL_GLOBAL_STRUCT
3010 return (char*)PL_no_modify;
3020 get_specialsv_list(void)
3022 return PL_specialsv_list;
3025 #ifndef HAS_GETENV_SV
3027 getenv_sv(char *env_elem)
3031 if ((env_trans = PerlEnv_getenv(env_elem)) != Nullch) {
3032 temp_sv = newSVpv(env_trans, strlen(env_trans));
3035 return &PL_sv_undef;
3042 get_vtbl(int vtbl_id)
3044 MGVTBL* result = Null(MGVTBL*);
3048 result = &PL_vtbl_sv;
3051 result = &PL_vtbl_env;
3053 case want_vtbl_envelem:
3054 result = &PL_vtbl_envelem;
3057 result = &PL_vtbl_sig;
3059 case want_vtbl_sigelem:
3060 result = &PL_vtbl_sigelem;
3062 case want_vtbl_pack:
3063 result = &PL_vtbl_pack;
3065 case want_vtbl_packelem:
3066 result = &PL_vtbl_packelem;
3068 case want_vtbl_dbline:
3069 result = &PL_vtbl_dbline;
3072 result = &PL_vtbl_isa;
3074 case want_vtbl_isaelem:
3075 result = &PL_vtbl_isaelem;
3077 case want_vtbl_arylen:
3078 result = &PL_vtbl_arylen;
3080 case want_vtbl_glob:
3081 result = &PL_vtbl_glob;
3083 case want_vtbl_mglob:
3084 result = &PL_vtbl_mglob;
3086 case want_vtbl_nkeys:
3087 result = &PL_vtbl_nkeys;
3089 case want_vtbl_taint:
3090 result = &PL_vtbl_taint;
3092 case want_vtbl_substr:
3093 result = &PL_vtbl_substr;
3096 result = &PL_vtbl_vec;
3099 result = &PL_vtbl_pos;
3102 result = &PL_vtbl_bm;
3105 result = &PL_vtbl_fm;
3107 case want_vtbl_uvar:
3108 result = &PL_vtbl_uvar;
3111 case want_vtbl_mutex:
3112 result = &PL_vtbl_mutex;
3115 case want_vtbl_defelem:
3116 result = &PL_vtbl_defelem;
3118 case want_vtbl_regexp:
3119 result = &PL_vtbl_regexp;
3121 case want_vtbl_regdata:
3122 result = &PL_vtbl_regdata;
3124 case want_vtbl_regdatum:
3125 result = &PL_vtbl_regdatum;
3127 #ifdef USE_LOCALE_COLLATE
3128 case want_vtbl_collxfrm:
3129 result = &PL_vtbl_collxfrm;
3132 case want_vtbl_amagic:
3133 result = &PL_vtbl_amagic;
3135 case want_vtbl_amagicelem:
3136 result = &PL_vtbl_amagicelem;