microperl changes from Simon Cozens; Makefile for microperl
[p5sagit/p5-mst-13.2.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-2000, Larry Wall
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  * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12  * not content."  --Gandalf
13  */
14
15 #include "EXTERN.h"
16 #define PERL_IN_UTIL_C
17 #include "perl.h"
18
19 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
20 #include <signal.h>
21 #endif
22
23 #ifndef SIG_ERR
24 # define SIG_ERR ((Sighandler_t) -1)
25 #endif
26
27 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
28 #ifdef I_UNISTD
29 #  include <unistd.h>
30 #endif
31
32 #ifdef I_VFORK
33 #  include <vfork.h>
34 #endif
35
36 /* Put this after #includes because fork and vfork prototypes may
37    conflict.
38 */
39 #ifndef HAS_VFORK
40 #   define vfork fork
41 #endif
42
43 #ifdef I_SYS_WAIT
44 #  include <sys/wait.h>
45 #endif
46
47 #ifdef I_LOCALE
48 #  include <locale.h>
49 #endif
50
51 #define FLUSH
52
53 #ifdef LEAKTEST
54
55 long xcount[MAXXCOUNT];
56 long lastxcount[MAXXCOUNT];
57 long xycount[MAXXCOUNT][MAXYCOUNT];
58 long lastxycount[MAXXCOUNT][MAXYCOUNT];
59
60 #endif
61
62 #if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
63 #  define FD_CLOEXEC 1                  /* NeXT needs this */
64 #endif
65
66 /* paranoid version of system's malloc() */
67
68 /* NOTE:  Do not call the next three routines directly.  Use the macros
69  * in handy.h, so that we can easily redefine everything to do tracking of
70  * allocated hunks back to the original New to track down any memory leaks.
71  * XXX This advice seems to be widely ignored :-(   --AD  August 1996.
72  */
73
74 Malloc_t
75 Perl_safesysmalloc(MEM_SIZE size)
76 {
77     dTHX;
78     Malloc_t ptr;
79 #ifdef HAS_64K_LIMIT
80         if (size > 0xffff) {
81             PerlIO_printf(Perl_error_log,
82                           "Allocation too large: %lx\n", size) FLUSH;
83             my_exit(1);
84         }
85 #endif /* HAS_64K_LIMIT */
86 #ifdef DEBUGGING
87     if ((long)size < 0)
88         Perl_croak_nocontext("panic: malloc");
89 #endif
90     ptr = (Malloc_t)PerlMem_malloc(size?size:1);        /* malloc(0) is NASTY on our system */
91     PERL_ALLOC_CHECK(ptr);
92     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) malloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
93     if (ptr != Nullch)
94         return ptr;
95     else if (PL_nomemok)
96         return Nullch;
97     else {
98         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
99         my_exit(1);
100         return Nullch;
101     }
102     /*NOTREACHED*/
103 }
104
105 /* paranoid version of system's realloc() */
106
107 Malloc_t
108 Perl_safesysrealloc(Malloc_t where,MEM_SIZE size)
109 {
110     dTHX;
111     Malloc_t ptr;
112 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) && !defined(PERL_MICRO)
113     Malloc_t PerlMem_realloc();
114 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
115
116 #ifdef HAS_64K_LIMIT 
117     if (size > 0xffff) {
118         PerlIO_printf(Perl_error_log,
119                       "Reallocation too large: %lx\n", size) FLUSH;
120         my_exit(1);
121     }
122 #endif /* HAS_64K_LIMIT */
123     if (!size) {
124         safesysfree(where);
125         return NULL;
126     }
127
128     if (!where)
129         return safesysmalloc(size);
130 #ifdef DEBUGGING
131     if ((long)size < 0)
132         Perl_croak_nocontext("panic: realloc");
133 #endif
134     ptr = (Malloc_t)PerlMem_realloc(where,size);
135     PERL_ALLOC_CHECK(ptr);
136  
137     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) rfree\n",PTR2UV(where),(long)PL_an++));
138     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) realloc %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)size));
139
140     if (ptr != Nullch)
141         return ptr;
142     else if (PL_nomemok)
143         return Nullch;
144     else {
145         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
146         my_exit(1);
147         return Nullch;
148     }
149     /*NOTREACHED*/
150 }
151
152 /* safe version of system's free() */
153
154 Free_t
155 Perl_safesysfree(Malloc_t where)
156 {
157 #ifdef PERL_IMPLICIT_SYS
158     dTHX;
159 #endif
160     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) free\n",PTR2UV(where),(long)PL_an++));
161     if (where) {
162         /*SUPPRESS 701*/
163         PerlMem_free(where);
164     }
165 }
166
167 /* safe version of system's calloc() */
168
169 Malloc_t
170 Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size)
171 {
172     dTHX;
173     Malloc_t ptr;
174
175 #ifdef HAS_64K_LIMIT
176     if (size * count > 0xffff) {
177         PerlIO_printf(Perl_error_log,
178                       "Allocation too large: %lx\n", size * count) FLUSH;
179         my_exit(1);
180     }
181 #endif /* HAS_64K_LIMIT */
182 #ifdef DEBUGGING
183     if ((long)size < 0 || (long)count < 0)
184         Perl_croak_nocontext("panic: calloc");
185 #endif
186     size *= count;
187     ptr = (Malloc_t)PerlMem_malloc(size?size:1);        /* malloc(0) is NASTY on our system */
188     PERL_ALLOC_CHECK(ptr);
189     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) calloc %ld x %ld bytes\n",PTR2UV(ptr),(long)PL_an++,(long)count,(long)size));
190     if (ptr != Nullch) {
191         memset((void*)ptr, 0, size);
192         return ptr;
193     }
194     else if (PL_nomemok)
195         return Nullch;
196     else {
197         PerlIO_puts(Perl_error_log,PL_no_mem) FLUSH;
198         my_exit(1);
199         return Nullch;
200     }
201     /*NOTREACHED*/
202 }
203
204 #ifdef LEAKTEST
205
206 struct mem_test_strut {
207     union {
208         long type;
209         char c[2];
210     } u;
211     long size;
212 };
213
214 #    define ALIGN sizeof(struct mem_test_strut)
215
216 #    define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
217 #    define typeof_chunk(ch) \
218         (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
219 #    define set_typeof_chunk(ch,t) \
220         (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
221 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE                            \
222                           ? MAXYCOUNT - 1                               \
223                           : ( (size) > 40                               \
224                               ? ((size) - 1)/8 + 5                      \
225                               : ((size) - 1)/4))
226
227 Malloc_t
228 Perl_safexmalloc(I32 x, MEM_SIZE size)
229 {
230     register char* where = (char*)safemalloc(size + ALIGN);
231
232     xcount[x] += size;
233     xycount[x][SIZE_TO_Y(size)]++;
234     set_typeof_chunk(where, x);
235     sizeof_chunk(where) = size;
236     return (Malloc_t)(where + ALIGN);
237 }
238
239 Malloc_t
240 Perl_safexrealloc(Malloc_t wh, MEM_SIZE size)
241 {
242     char *where = (char*)wh;
243
244     if (!wh)
245         return safexmalloc(0,size);
246     
247     {
248         MEM_SIZE old = sizeof_chunk(where - ALIGN);
249         int t = typeof_chunk(where - ALIGN);
250         register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
251     
252         xycount[t][SIZE_TO_Y(old)]--;
253         xycount[t][SIZE_TO_Y(size)]++;
254         xcount[t] += size - old;
255         sizeof_chunk(new) = size;
256         return (Malloc_t)(new + ALIGN);
257     }
258 }
259
260 void
261 Perl_safexfree(Malloc_t wh)
262 {
263     I32 x;
264     char *where = (char*)wh;
265     MEM_SIZE size;
266     
267     if (!where)
268         return;
269     where -= ALIGN;
270     size = sizeof_chunk(where);
271     x = where[0] + 100 * where[1];
272     xcount[x] -= size;
273     xycount[x][SIZE_TO_Y(size)]--;
274     safefree(where);
275 }
276
277 Malloc_t
278 Perl_safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
279 {
280     register char * where = (char*)safexmalloc(x, size * count + ALIGN);
281     xcount[x] += size;
282     xycount[x][SIZE_TO_Y(size)]++;
283     memset((void*)(where + ALIGN), 0, size * count);
284     set_typeof_chunk(where, x);
285     sizeof_chunk(where) = size;
286     return (Malloc_t)(where + ALIGN);
287 }
288
289 STATIC void
290 S_xstat(pTHX_ int flag)
291 {
292     register I32 i, j, total = 0;
293     I32 subtot[MAXYCOUNT];
294
295     for (j = 0; j < MAXYCOUNT; j++) {
296         subtot[j] = 0;
297     }
298     
299     PerlIO_printf(Perl_debug_log, "   Id  subtot   4   8  12  16  20  24  28  32  36  40  48  56  64  72  80 80+\n", total);
300     for (i = 0; i < MAXXCOUNT; i++) {
301         total += xcount[i];
302         for (j = 0; j < MAXYCOUNT; j++) {
303             subtot[j] += xycount[i][j];
304         }
305         if (flag == 0
306             ? xcount[i]                 /* Have something */
307             : (flag == 2 
308                ? xcount[i] != lastxcount[i] /* Changed */
309                : xcount[i] > lastxcount[i])) { /* Growed */
310             PerlIO_printf(Perl_debug_log,"%2d %02d %7ld ", i / 100, i % 100, 
311                           flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
312             lastxcount[i] = xcount[i];
313             for (j = 0; j < MAXYCOUNT; j++) {
314                 if ( flag == 0 
315                      ? xycount[i][j]    /* Have something */
316                      : (flag == 2 
317                         ? xycount[i][j] != lastxycount[i][j] /* Changed */
318                         : xycount[i][j] > lastxycount[i][j])) { /* Growed */
319                     PerlIO_printf(Perl_debug_log,"%3ld ", 
320                                   flag == 2 
321                                   ? xycount[i][j] - lastxycount[i][j] 
322                                   : xycount[i][j]);
323                     lastxycount[i][j] = xycount[i][j];
324                 } else {
325                     PerlIO_printf(Perl_debug_log, "  . ", xycount[i][j]);
326                 }
327             }
328             PerlIO_printf(Perl_debug_log, "\n");
329         }
330     }
331     if (flag != 2) {
332         PerlIO_printf(Perl_debug_log, "Total %7ld ", total);
333         for (j = 0; j < MAXYCOUNT; j++) {
334             if (subtot[j]) {
335                 PerlIO_printf(Perl_debug_log, "%3ld ", subtot[j]);
336             } else {
337                 PerlIO_printf(Perl_debug_log, "  . ");
338             }
339         }
340         PerlIO_printf(Perl_debug_log, "\n");    
341     }
342 }
343
344 #endif /* LEAKTEST */
345
346 /* copy a string up to some (non-backslashed) delimiter, if any */
347
348 char *
349 Perl_delimcpy(pTHX_ register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
350 {
351     register I32 tolen;
352     for (tolen = 0; from < fromend; from++, tolen++) {
353         if (*from == '\\') {
354             if (from[1] == delim)
355                 from++;
356             else {
357                 if (to < toend)
358                     *to++ = *from;
359                 tolen++;
360                 from++;
361             }
362         }
363         else if (*from == delim)
364             break;
365         if (to < toend)
366             *to++ = *from;
367     }
368     if (to < toend)
369         *to = '\0';
370     *retlen = tolen;
371     return from;
372 }
373
374 /* return ptr to little string in big string, NULL if not found */
375 /* This routine was donated by Corey Satten. */
376
377 char *
378 Perl_instr(pTHX_ register const char *big, register const char *little)
379 {
380     register const char *s, *x;
381     register I32 first;
382
383     if (!little)
384         return (char*)big;
385     first = *little++;
386     if (!first)
387         return (char*)big;
388     while (*big) {
389         if (*big++ != first)
390             continue;
391         for (x=big,s=little; *s; /**/ ) {
392             if (!*x)
393                 return Nullch;
394             if (*s++ != *x++) {
395                 s--;
396                 break;
397             }
398         }
399         if (!*s)
400             return (char*)(big-1);
401     }
402     return Nullch;
403 }
404
405 /* same as instr but allow embedded nulls */
406
407 char *
408 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend)
409 {
410     register const char *s, *x;
411     register I32 first = *little;
412     register const char *littleend = lend;
413
414     if (!first && little >= littleend)
415         return (char*)big;
416     if (bigend - big < littleend - little)
417         return Nullch;
418     bigend -= littleend - little++;
419     while (big <= bigend) {
420         if (*big++ != first)
421             continue;
422         for (x=big,s=little; s < littleend; /**/ ) {
423             if (*s++ != *x++) {
424                 s--;
425                 break;
426             }
427         }
428         if (s >= littleend)
429             return (char*)(big-1);
430     }
431     return Nullch;
432 }
433
434 /* reverse of the above--find last substring */
435
436 char *
437 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend)
438 {
439     register const char *bigbeg;
440     register const char *s, *x;
441     register I32 first = *little;
442     register const char *littleend = lend;
443
444     if (!first && little >= littleend)
445         return (char*)bigend;
446     bigbeg = big;
447     big = bigend - (littleend - little++);
448     while (big >= bigbeg) {
449         if (*big-- != first)
450             continue;
451         for (x=big+2,s=little; s < littleend; /**/ ) {
452             if (*s++ != *x++) {
453                 s--;
454                 break;
455             }
456         }
457         if (s >= littleend)
458             return (char*)(big+1);
459     }
460     return Nullch;
461 }
462
463 /*
464  * Set up for a new ctype locale.
465  */
466 void
467 Perl_new_ctype(pTHX_ const char *newctype)
468 {
469 #ifdef USE_LOCALE_CTYPE
470
471     int i;
472
473     for (i = 0; i < 256; i++) {
474         if (isUPPER_LC(i))
475             PL_fold_locale[i] = toLOWER_LC(i);
476         else if (isLOWER_LC(i))
477             PL_fold_locale[i] = toUPPER_LC(i);
478         else
479             PL_fold_locale[i] = i;
480     }
481
482 #endif /* USE_LOCALE_CTYPE */
483 }
484
485 /*
486  * Set up for a new collation locale.
487  */
488 void
489 Perl_new_collate(pTHX_ const char *newcoll)
490 {
491 #ifdef USE_LOCALE_COLLATE
492
493     if (! newcoll) {
494         if (PL_collation_name) {
495             ++PL_collation_ix;
496             Safefree(PL_collation_name);
497             PL_collation_name = NULL;
498             PL_collation_standard = TRUE;
499             PL_collxfrm_base = 0;
500             PL_collxfrm_mult = 2;
501         }
502         return;
503     }
504
505     if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
506         ++PL_collation_ix;
507         Safefree(PL_collation_name);
508         PL_collation_name = savepv(newcoll);
509         PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
510
511         {
512           /*  2: at most so many chars ('a', 'b'). */
513           /* 50: surely no system expands a char more. */
514 #define XFRMBUFSIZE  (2 * 50)
515           char xbuf[XFRMBUFSIZE];
516           Size_t fa = strxfrm(xbuf, "a",  XFRMBUFSIZE);
517           Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
518           SSize_t mult = fb - fa;
519           if (mult < 1)
520               Perl_croak(aTHX_ "strxfrm() gets absurd");
521           PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
522           PL_collxfrm_mult = mult;
523         }
524     }
525
526 #endif /* USE_LOCALE_COLLATE */
527 }
528
529 void
530 Perl_set_numeric_radix(pTHX)
531 {
532 #ifdef USE_LOCALE_NUMERIC
533 # ifdef HAS_LOCALECONV
534     struct lconv* lc;
535
536     lc = localeconv();
537     if (lc && lc->decimal_point)
538         /* We assume that decimal separator aka the radix
539          * character is always a single character.  If it
540          * ever is a string, this needs to be rethunk. */
541         PL_numeric_radix = *lc->decimal_point;
542     else
543         PL_numeric_radix = 0;
544 # endif /* HAS_LOCALECONV */
545 #endif /* USE_LOCALE_NUMERIC */
546 }
547
548 /*
549  * Set up for a new numeric locale.
550  */
551 void
552 Perl_new_numeric(pTHX_ const char *newnum)
553 {
554 #ifdef USE_LOCALE_NUMERIC
555
556     if (! newnum) {
557         if (PL_numeric_name) {
558             Safefree(PL_numeric_name);
559             PL_numeric_name = NULL;
560             PL_numeric_standard = TRUE;
561             PL_numeric_local = TRUE;
562         }
563         return;
564     }
565
566     if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
567         Safefree(PL_numeric_name);
568         PL_numeric_name = savepv(newnum);
569         PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
570         PL_numeric_local = TRUE;
571         set_numeric_radix();
572     }
573
574 #endif /* USE_LOCALE_NUMERIC */
575 }
576
577 void
578 Perl_set_numeric_standard(pTHX)
579 {
580 #ifdef USE_LOCALE_NUMERIC
581
582     if (! PL_numeric_standard) {
583         setlocale(LC_NUMERIC, "C");
584         PL_numeric_standard = TRUE;
585         PL_numeric_local = FALSE;
586     }
587
588 #endif /* USE_LOCALE_NUMERIC */
589 }
590
591 void
592 Perl_set_numeric_local(pTHX)
593 {
594 #ifdef USE_LOCALE_NUMERIC
595
596     if (! PL_numeric_local) {
597         setlocale(LC_NUMERIC, PL_numeric_name);
598         PL_numeric_standard = FALSE;
599         PL_numeric_local = TRUE;
600         set_numeric_radix();
601     }
602
603 #endif /* USE_LOCALE_NUMERIC */
604 }
605
606 /*
607  * Initialize locale awareness.
608  */
609 int
610 Perl_init_i18nl10n(pTHX_ int printwarn)
611 {
612     int ok = 1;
613     /* returns
614      *    1 = set ok or not applicable,
615      *    0 = fallback to C locale,
616      *   -1 = fallback to C locale failed
617      */
618
619 #ifdef USE_LOCALE
620
621 #ifdef USE_LOCALE_CTYPE
622     char *curctype   = NULL;
623 #endif /* USE_LOCALE_CTYPE */
624 #ifdef USE_LOCALE_COLLATE
625     char *curcoll    = NULL;
626 #endif /* USE_LOCALE_COLLATE */
627 #ifdef USE_LOCALE_NUMERIC
628     char *curnum     = NULL;
629 #endif /* USE_LOCALE_NUMERIC */
630 #ifdef __GLIBC__
631     char *language   = PerlEnv_getenv("LANGUAGE");
632 #endif
633     char *lc_all     = PerlEnv_getenv("LC_ALL");
634     char *lang       = PerlEnv_getenv("LANG");
635     bool setlocale_failure = FALSE;
636
637 #ifdef LOCALE_ENVIRON_REQUIRED
638
639     /*
640      * Ultrix setlocale(..., "") fails if there are no environment
641      * variables from which to get a locale name.
642      */
643
644     bool done = FALSE;
645
646 #ifdef LC_ALL
647     if (lang) {
648         if (setlocale(LC_ALL, ""))
649             done = TRUE;
650         else
651             setlocale_failure = TRUE;
652     }
653     if (!setlocale_failure) {
654 #ifdef USE_LOCALE_CTYPE
655         if (! (curctype =
656                setlocale(LC_CTYPE,
657                          (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
658                                     ? "" : Nullch)))
659             setlocale_failure = TRUE;
660 #endif /* USE_LOCALE_CTYPE */
661 #ifdef USE_LOCALE_COLLATE
662         if (! (curcoll =
663                setlocale(LC_COLLATE,
664                          (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
665                                    ? "" : Nullch)))
666             setlocale_failure = TRUE;
667 #endif /* USE_LOCALE_COLLATE */
668 #ifdef USE_LOCALE_NUMERIC
669         if (! (curnum =
670                setlocale(LC_NUMERIC,
671                          (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
672                                   ? "" : Nullch)))
673             setlocale_failure = TRUE;
674 #endif /* USE_LOCALE_NUMERIC */
675     }
676
677 #endif /* LC_ALL */
678
679 #endif /* !LOCALE_ENVIRON_REQUIRED */
680
681 #ifdef LC_ALL
682     if (! setlocale(LC_ALL, ""))
683         setlocale_failure = TRUE;
684 #endif /* LC_ALL */
685
686     if (!setlocale_failure) {
687 #ifdef USE_LOCALE_CTYPE
688         if (! (curctype = setlocale(LC_CTYPE, "")))
689             setlocale_failure = TRUE;
690 #endif /* USE_LOCALE_CTYPE */
691 #ifdef USE_LOCALE_COLLATE
692         if (! (curcoll = setlocale(LC_COLLATE, "")))
693             setlocale_failure = TRUE;
694 #endif /* USE_LOCALE_COLLATE */
695 #ifdef USE_LOCALE_NUMERIC
696         if (! (curnum = setlocale(LC_NUMERIC, "")))
697             setlocale_failure = TRUE;
698 #endif /* USE_LOCALE_NUMERIC */
699     }
700
701     if (setlocale_failure) {
702         char *p;
703         bool locwarn = (printwarn > 1 || 
704                         (printwarn &&
705                          (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p))));
706
707         if (locwarn) {
708 #ifdef LC_ALL
709   
710             PerlIO_printf(Perl_error_log,
711                "perl: warning: Setting locale failed.\n");
712
713 #else /* !LC_ALL */
714   
715             PerlIO_printf(Perl_error_log,
716                "perl: warning: Setting locale failed for the categories:\n\t");
717 #ifdef USE_LOCALE_CTYPE
718             if (! curctype)
719                 PerlIO_printf(Perl_error_log, "LC_CTYPE ");
720 #endif /* USE_LOCALE_CTYPE */
721 #ifdef USE_LOCALE_COLLATE
722             if (! curcoll)
723                 PerlIO_printf(Perl_error_log, "LC_COLLATE ");
724 #endif /* USE_LOCALE_COLLATE */
725 #ifdef USE_LOCALE_NUMERIC
726             if (! curnum)
727                 PerlIO_printf(Perl_error_log, "LC_NUMERIC ");
728 #endif /* USE_LOCALE_NUMERIC */
729             PerlIO_printf(Perl_error_log, "\n");
730
731 #endif /* LC_ALL */
732
733             PerlIO_printf(Perl_error_log,
734                 "perl: warning: Please check that your locale settings:\n");
735
736 #ifdef __GLIBC__
737             PerlIO_printf(Perl_error_log,
738                           "\tLANGUAGE = %c%s%c,\n",
739                           language ? '"' : '(',
740                           language ? language : "unset",
741                           language ? '"' : ')');
742 #endif
743
744             PerlIO_printf(Perl_error_log,
745                           "\tLC_ALL = %c%s%c,\n",
746                           lc_all ? '"' : '(',
747                           lc_all ? lc_all : "unset",
748                           lc_all ? '"' : ')');
749
750             {
751               char **e;
752               for (e = environ; *e; e++) {
753                   if (strnEQ(*e, "LC_", 3)
754                         && strnNE(*e, "LC_ALL=", 7)
755                         && (p = strchr(*e, '=')))
756                       PerlIO_printf(Perl_error_log, "\t%.*s = \"%s\",\n",
757                                     (int)(p - *e), *e, p + 1);
758               }
759             }
760
761             PerlIO_printf(Perl_error_log,
762                           "\tLANG = %c%s%c\n",
763                           lang ? '"' : '(',
764                           lang ? lang : "unset",
765                           lang ? '"' : ')');
766
767             PerlIO_printf(Perl_error_log,
768                           "    are supported and installed on your system.\n");
769         }
770
771 #ifdef LC_ALL
772
773         if (setlocale(LC_ALL, "C")) {
774             if (locwarn)
775                 PerlIO_printf(Perl_error_log,
776       "perl: warning: Falling back to the standard locale (\"C\").\n");
777             ok = 0;
778         }
779         else {
780             if (locwarn)
781                 PerlIO_printf(Perl_error_log,
782       "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
783             ok = -1;
784         }
785
786 #else /* ! LC_ALL */
787
788         if (0
789 #ifdef USE_LOCALE_CTYPE
790             || !(curctype || setlocale(LC_CTYPE, "C"))
791 #endif /* USE_LOCALE_CTYPE */
792 #ifdef USE_LOCALE_COLLATE
793             || !(curcoll || setlocale(LC_COLLATE, "C"))
794 #endif /* USE_LOCALE_COLLATE */
795 #ifdef USE_LOCALE_NUMERIC
796             || !(curnum || setlocale(LC_NUMERIC, "C"))
797 #endif /* USE_LOCALE_NUMERIC */
798             )
799         {
800             if (locwarn)
801                 PerlIO_printf(Perl_error_log,
802       "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
803             ok = -1;
804         }
805
806 #endif /* ! LC_ALL */
807
808 #ifdef USE_LOCALE_CTYPE
809         curctype = setlocale(LC_CTYPE, Nullch);
810 #endif /* USE_LOCALE_CTYPE */
811 #ifdef USE_LOCALE_COLLATE
812         curcoll = setlocale(LC_COLLATE, Nullch);
813 #endif /* USE_LOCALE_COLLATE */
814 #ifdef USE_LOCALE_NUMERIC
815         curnum = setlocale(LC_NUMERIC, Nullch);
816 #endif /* USE_LOCALE_NUMERIC */
817     }
818
819 #ifdef USE_LOCALE_CTYPE
820     new_ctype(curctype);
821 #endif /* USE_LOCALE_CTYPE */
822
823 #ifdef USE_LOCALE_COLLATE
824     new_collate(curcoll);
825 #endif /* USE_LOCALE_COLLATE */
826
827 #ifdef USE_LOCALE_NUMERIC
828     new_numeric(curnum);
829 #endif /* USE_LOCALE_NUMERIC */
830
831 #endif /* USE_LOCALE */
832
833     return ok;
834 }
835
836 /* Backwards compatibility. */
837 int
838 Perl_init_i18nl14n(pTHX_ int printwarn)
839 {
840     return init_i18nl10n(printwarn);
841 }
842
843 #ifdef USE_LOCALE_COLLATE
844
845 /*
846  * mem_collxfrm() is a bit like strxfrm() but with two important
847  * differences. First, it handles embedded NULs. Second, it allocates
848  * a bit more memory than needed for the transformed data itself.
849  * The real transformed data begins at offset sizeof(collationix).
850  * Please see sv_collxfrm() to see how this is used.
851  */
852 char *
853 Perl_mem_collxfrm(pTHX_ const char *s, STRLEN len, STRLEN *xlen)
854 {
855     char *xbuf;
856     STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
857
858     /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
859     /* the +1 is for the terminating NUL. */
860
861     xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
862     New(171, xbuf, xAlloc, char);
863     if (! xbuf)
864         goto bad;
865
866     *(U32*)xbuf = PL_collation_ix;
867     xout = sizeof(PL_collation_ix);
868     for (xin = 0; xin < len; ) {
869         SSize_t xused;
870
871         for (;;) {
872             xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
873             if (xused == -1)
874                 goto bad;
875             if (xused < xAlloc - xout)
876                 break;
877             xAlloc = (2 * xAlloc) + 1;
878             Renew(xbuf, xAlloc, char);
879             if (! xbuf)
880                 goto bad;
881         }
882
883         xin += strlen(s + xin) + 1;
884         xout += xused;
885
886         /* Embedded NULs are understood but silently skipped
887          * because they make no sense in locale collation. */
888     }
889
890     xbuf[xout] = '\0';
891     *xlen = xout - sizeof(PL_collation_ix);
892     return xbuf;
893
894   bad:
895     Safefree(xbuf);
896     *xlen = 0;
897     return NULL;
898 }
899
900 #endif /* USE_LOCALE_COLLATE */
901
902 #define FBM_TABLE_OFFSET 2      /* Number of bytes between EOS and table*/
903
904 /* As a space optimization, we do not compile tables for strings of length
905    0 and 1, and for strings of length 2 unless FBMcf_TAIL.  These are
906    special-cased in fbm_instr().
907
908    If FBMcf_TAIL, the table is created as if the string has a trailing \n. */
909
910 /*
911 =for apidoc fbm_compile
912
913 Analyses the string in order to make fast searches on it using fbm_instr()
914 -- the Boyer-Moore algorithm.
915
916 =cut
917 */
918
919 void
920 Perl_fbm_compile(pTHX_ SV *sv, U32 flags)
921 {
922     register U8 *s;
923     register U8 *table;
924     register U32 i;
925     STRLEN len;
926     I32 rarest = 0;
927     U32 frequency = 256;
928
929     if (flags & FBMcf_TAIL)
930         sv_catpvn(sv, "\n", 1);         /* Taken into account in fbm_instr() */
931     s = (U8*)SvPV_force(sv, len);
932     (void)SvUPGRADE(sv, SVt_PVBM);
933     if (len == 0)               /* TAIL might be on on a zero-length string. */
934         return;
935     if (len > 2) {
936         U8 mlen;
937         unsigned char *sb;
938
939         if (len > 255)
940             mlen = 255;
941         else
942             mlen = (U8)len;
943         Sv_Grow(sv, len + 256 + FBM_TABLE_OFFSET);
944         table = (unsigned char*)(SvPVX(sv) + len + FBM_TABLE_OFFSET);
945         s = table - 1 - FBM_TABLE_OFFSET;       /* last char */
946         memset((void*)table, mlen, 256);
947         table[-1] = (U8)flags;
948         i = 0;
949         sb = s - mlen + 1;                      /* first char (maybe) */
950         while (s >= sb) {
951             if (table[*s] == mlen)
952                 table[*s] = (U8)i;
953             s--, i++;
954         }
955     }
956     sv_magic(sv, Nullsv, 'B', Nullch, 0);       /* deep magic */
957     SvVALID_on(sv);
958
959     s = (unsigned char*)(SvPVX(sv));            /* deeper magic */
960     for (i = 0; i < len; i++) {
961         if (PL_freq[s[i]] < frequency) {
962             rarest = i;
963             frequency = PL_freq[s[i]];
964         }
965     }
966     BmRARE(sv) = s[rarest];
967     BmPREVIOUS(sv) = rarest;
968     BmUSEFUL(sv) = 100;                 /* Initial value */
969     if (flags & FBMcf_TAIL)
970         SvTAIL_on(sv);
971     DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",
972                           BmRARE(sv),BmPREVIOUS(sv)));
973 }
974
975 /* If SvTAIL(littlestr), it has a fake '\n' at end. */
976 /* If SvTAIL is actually due to \Z or \z, this gives false positives
977    if multiline */
978
979 /*
980 =for apidoc fbm_instr
981
982 Returns the location of the SV in the string delimited by C<str> and
983 C<strend>.  It returns C<Nullch> if the string can't be found.  The C<sv>
984 does not have to be fbm_compiled, but the search will not be as fast
985 then.
986
987 =cut
988 */
989
990 char *
991 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
992 {
993     register unsigned char *s;
994     STRLEN l;
995     register unsigned char *little = (unsigned char *)SvPV(littlestr,l);
996     register STRLEN littlelen = l;
997     register I32 multiline = flags & FBMrf_MULTILINE;
998
999     if (bigend - big < littlelen) {
1000         if ( SvTAIL(littlestr) 
1001              && (bigend - big == littlelen - 1)
1002              && (littlelen == 1 
1003                  || (*big == *little &&
1004                      memEQ((char *)big, (char *)little, littlelen - 1))))
1005             return (char*)big;
1006         return Nullch;
1007     }
1008
1009     if (littlelen <= 2) {               /* Special-cased */
1010
1011         if (littlelen == 1) {
1012             if (SvTAIL(littlestr) && !multiline) { /* Anchor only! */
1013                 /* Know that bigend != big.  */
1014                 if (bigend[-1] == '\n')
1015                     return (char *)(bigend - 1);
1016                 return (char *) bigend;
1017             }
1018             s = big;
1019             while (s < bigend) {
1020                 if (*s == *little)
1021                     return (char *)s;
1022                 s++;
1023             }
1024             if (SvTAIL(littlestr))
1025                 return (char *) bigend;
1026             return Nullch;
1027         }
1028         if (!littlelen)
1029             return (char*)big;          /* Cannot be SvTAIL! */
1030
1031         /* littlelen is 2 */
1032         if (SvTAIL(littlestr) && !multiline) {
1033             if (bigend[-1] == '\n' && bigend[-2] == *little)
1034                 return (char*)bigend - 2;
1035             if (bigend[-1] == *little)
1036                 return (char*)bigend - 1;
1037             return Nullch;
1038         }
1039         {
1040             /* This should be better than FBM if c1 == c2, and almost
1041                as good otherwise: maybe better since we do less indirection.
1042                And we save a lot of memory by caching no table. */
1043             register unsigned char c1 = little[0];
1044             register unsigned char c2 = little[1];
1045
1046             s = big + 1;
1047             bigend--;
1048             if (c1 != c2) {
1049                 while (s <= bigend) {
1050                     if (s[0] == c2) {
1051                         if (s[-1] == c1)
1052                             return (char*)s - 1;
1053                         s += 2;
1054                         continue;
1055                     }
1056                   next_chars:
1057                     if (s[0] == c1) {
1058                         if (s == bigend)
1059                             goto check_1char_anchor;
1060                         if (s[1] == c2)
1061                             return (char*)s;
1062                         else {
1063                             s++;
1064                             goto next_chars;
1065                         }
1066                     }
1067                     else
1068                         s += 2;
1069                 }
1070                 goto check_1char_anchor;
1071             }
1072             /* Now c1 == c2 */
1073             while (s <= bigend) {
1074                 if (s[0] == c1) {
1075                     if (s[-1] == c1)
1076                         return (char*)s - 1;
1077                     if (s == bigend)
1078                         goto check_1char_anchor;
1079                     if (s[1] == c1)
1080                         return (char*)s;
1081                     s += 3;
1082                 }
1083                 else
1084                     s += 2;
1085             }
1086         }
1087       check_1char_anchor:               /* One char and anchor! */
1088         if (SvTAIL(littlestr) && (*bigend == *little))
1089             return (char *)bigend;      /* bigend is already decremented. */
1090         return Nullch;
1091     }
1092     if (SvTAIL(littlestr) && !multiline) {      /* tail anchored? */
1093         s = bigend - littlelen;
1094         if (s >= big && bigend[-1] == '\n' && *s == *little 
1095             /* Automatically of length > 2 */
1096             && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1097         {
1098             return (char*)s;            /* how sweet it is */
1099         }
1100         if (s[1] == *little
1101             && memEQ((char*)s + 2, (char*)little + 1, littlelen - 2))
1102         {
1103             return (char*)s + 1;        /* how sweet it is */
1104         }
1105         return Nullch;
1106     }
1107     if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
1108         char *b = ninstr((char*)big,(char*)bigend,
1109                          (char*)little, (char*)little + littlelen);
1110
1111         if (!b && SvTAIL(littlestr)) {  /* Automatically multiline!  */
1112             /* Chop \n from littlestr: */
1113             s = bigend - littlelen + 1;
1114             if (*s == *little
1115                 && memEQ((char*)s + 1, (char*)little + 1, littlelen - 2))
1116             {
1117                 return (char*)s;
1118             }
1119             return Nullch;
1120         }
1121         return b;
1122     }
1123     
1124     {   /* Do actual FBM.  */
1125         register unsigned char *table = little + littlelen + FBM_TABLE_OFFSET;
1126         register unsigned char *oldlittle;
1127
1128         if (littlelen > bigend - big)
1129             return Nullch;
1130         --littlelen;                    /* Last char found by table lookup */
1131
1132         s = big + littlelen;
1133         little += littlelen;            /* last char */
1134         oldlittle = little;
1135         if (s < bigend) {
1136             register I32 tmp;
1137
1138           top2:
1139             /*SUPPRESS 560*/
1140             if ((tmp = table[*s])) {
1141 #ifdef POINTERRIGOR
1142                 if (bigend - s > tmp) {
1143                     s += tmp;
1144                     goto top2;
1145                 }
1146                 s += tmp;
1147 #else
1148                 if ((s += tmp) < bigend)
1149                     goto top2;
1150 #endif
1151                 goto check_end;
1152             }
1153             else {              /* less expensive than calling strncmp() */
1154                 register unsigned char *olds = s;
1155
1156                 tmp = littlelen;
1157
1158                 while (tmp--) {
1159                     if (*--s == *--little)
1160                         continue;
1161                     s = olds + 1;       /* here we pay the price for failure */
1162                     little = oldlittle;
1163                     if (s < bigend)     /* fake up continue to outer loop */
1164                         goto top2;
1165                     goto check_end;
1166                 }
1167                 return (char *)s;
1168             }
1169         }
1170       check_end:
1171         if ( s == bigend && (table[-1] & FBMcf_TAIL)
1172              && memEQ((char *)(bigend - littlelen),
1173                       (char *)(oldlittle - littlelen), littlelen) )
1174             return (char*)bigend - littlelen;
1175         return Nullch;
1176     }
1177 }
1178
1179 /* start_shift, end_shift are positive quantities which give offsets
1180    of ends of some substring of bigstr.
1181    If `last' we want the last occurence.
1182    old_posp is the way of communication between consequent calls if
1183    the next call needs to find the . 
1184    The initial *old_posp should be -1.
1185
1186    Note that we take into account SvTAIL, so one can get extra
1187    optimizations if _ALL flag is set.
1188  */
1189
1190 /* If SvTAIL is actually due to \Z or \z, this gives false positives
1191    if PL_multiline.  In fact if !PL_multiline the autoritative answer
1192    is not supported yet. */
1193
1194 char *
1195 Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1196 {
1197     dTHR;
1198     register unsigned char *s, *x;
1199     register unsigned char *big;
1200     register I32 pos;
1201     register I32 previous;
1202     register I32 first;
1203     register unsigned char *little;
1204     register I32 stop_pos;
1205     register unsigned char *littleend;
1206     I32 found = 0;
1207
1208     if (*old_posp == -1
1209         ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1210         : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) {
1211       cant_find:
1212         if ( BmRARE(littlestr) == '\n' 
1213              && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) {
1214             little = (unsigned char *)(SvPVX(littlestr));
1215             littleend = little + SvCUR(littlestr);
1216             first = *little++;
1217             goto check_tail;
1218         }
1219         return Nullch;
1220     }
1221
1222     little = (unsigned char *)(SvPVX(littlestr));
1223     littleend = little + SvCUR(littlestr);
1224     first = *little++;
1225     /* The value of pos we can start at: */
1226     previous = BmPREVIOUS(littlestr);
1227     big = (unsigned char *)(SvPVX(bigstr));
1228     /* The value of pos we can stop at: */
1229     stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1230     if (previous + start_shift > stop_pos) {
1231         if (previous + start_shift == stop_pos + 1) /* A fake '\n'? */
1232             goto check_tail;
1233         return Nullch;
1234     }
1235     while (pos < previous + start_shift) {
1236         if (!(pos += PL_screamnext[pos]))
1237             goto cant_find;
1238     }
1239 #ifdef POINTERRIGOR
1240     do {
1241         if (pos >= stop_pos) break;
1242         if (big[pos-previous] != first)
1243             continue;
1244         for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1245             if (*s++ != *x++) {
1246                 s--;
1247                 break;
1248             }
1249         }
1250         if (s == littleend) {
1251             *old_posp = pos;
1252             if (!last) return (char *)(big+pos-previous);
1253             found = 1;
1254         }
1255     } while ( pos += PL_screamnext[pos] );
1256     return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1257 #else /* !POINTERRIGOR */
1258     big -= previous;
1259     do {
1260         if (pos >= stop_pos) break;
1261         if (big[pos] != first)
1262             continue;
1263         for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1264             if (*s++ != *x++) {
1265                 s--;
1266                 break;
1267             }
1268         }
1269         if (s == littleend) {
1270             *old_posp = pos;
1271             if (!last) return (char *)(big+pos);
1272             found = 1;
1273         }
1274     } while ( pos += PL_screamnext[pos] );
1275     if (last && found) 
1276         return (char *)(big+(*old_posp));
1277 #endif /* POINTERRIGOR */
1278   check_tail:
1279     if (!SvTAIL(littlestr) || (end_shift > 0))
1280         return Nullch;
1281     /* Ignore the trailing "\n".  This code is not microoptimized */
1282     big = (unsigned char *)(SvPVX(bigstr) + SvCUR(bigstr));
1283     stop_pos = littleend - little;      /* Actual littlestr len */
1284     if (stop_pos == 0)
1285         return (char*)big;
1286     big -= stop_pos;
1287     if (*big == first
1288         && ((stop_pos == 1) ||
1289             memEQ((char *)(big + 1), (char *)little, stop_pos - 1)))
1290         return (char*)big;
1291     return Nullch;
1292 }
1293
1294 I32
1295 Perl_ibcmp(pTHX_ const char *s1, const char *s2, register I32 len)
1296 {
1297     register U8 *a = (U8 *)s1;
1298     register U8 *b = (U8 *)s2;
1299     while (len--) {
1300         if (*a != *b && *a != PL_fold[*b])
1301             return 1;
1302         a++,b++;
1303     }
1304     return 0;
1305 }
1306
1307 I32
1308 Perl_ibcmp_locale(pTHX_ const char *s1, const char *s2, register I32 len)
1309 {
1310     register U8 *a = (U8 *)s1;
1311     register U8 *b = (U8 *)s2;
1312     while (len--) {
1313         if (*a != *b && *a != PL_fold_locale[*b])
1314             return 1;
1315         a++,b++;
1316     }
1317     return 0;
1318 }
1319
1320 /* copy a string to a safe spot */
1321
1322 /*
1323 =for apidoc savepv
1324
1325 Copy a string to a safe spot.  This does not use an SV.
1326
1327 =cut
1328 */
1329
1330 char *
1331 Perl_savepv(pTHX_ const char *sv)
1332 {
1333     register char *newaddr;
1334
1335     New(902,newaddr,strlen(sv)+1,char);
1336     (void)strcpy(newaddr,sv);
1337     return newaddr;
1338 }
1339
1340 /* same thing but with a known length */
1341
1342 /*
1343 =for apidoc savepvn
1344
1345 Copy a string to a safe spot.  The C<len> indicates number of bytes to
1346 copy.  This does not use an SV.
1347
1348 =cut
1349 */
1350
1351 char *
1352 Perl_savepvn(pTHX_ const char *sv, register I32 len)
1353 {
1354     register char *newaddr;
1355
1356     New(903,newaddr,len+1,char);
1357     Copy(sv,newaddr,len,char);          /* might not be null terminated */
1358     newaddr[len] = '\0';                /* is now */
1359     return newaddr;
1360 }
1361
1362 /* the SV for Perl_form() and mess() is not kept in an arena */
1363
1364 STATIC SV *
1365 S_mess_alloc(pTHX)
1366 {
1367     dTHR;
1368     SV *sv;
1369     XPVMG *any;
1370
1371     if (!PL_dirty)
1372         return sv_2mortal(newSVpvn("",0));
1373
1374     if (PL_mess_sv)
1375         return PL_mess_sv;
1376
1377     /* Create as PVMG now, to avoid any upgrading later */
1378     New(905, sv, 1, SV);
1379     Newz(905, any, 1, XPVMG);
1380     SvFLAGS(sv) = SVt_PVMG;
1381     SvANY(sv) = (void*)any;
1382     SvREFCNT(sv) = 1 << 30; /* practically infinite */
1383     PL_mess_sv = sv;
1384     return sv;
1385 }
1386
1387 #if defined(PERL_IMPLICIT_CONTEXT)
1388 char *
1389 Perl_form_nocontext(const char* pat, ...)
1390 {
1391     dTHX;
1392     char *retval;
1393     va_list args;
1394     va_start(args, pat);
1395     retval = vform(pat, &args);
1396     va_end(args);
1397     return retval;
1398 }
1399 #endif /* PERL_IMPLICIT_CONTEXT */
1400
1401 char *
1402 Perl_form(pTHX_ const char* pat, ...)
1403 {
1404     char *retval;
1405     va_list args;
1406     va_start(args, pat);
1407     retval = vform(pat, &args);
1408     va_end(args);
1409     return retval;
1410 }
1411
1412 char *
1413 Perl_vform(pTHX_ const char *pat, va_list *args)
1414 {
1415     SV *sv = mess_alloc();
1416     sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1417     return SvPVX(sv);
1418 }
1419
1420 #if defined(PERL_IMPLICIT_CONTEXT)
1421 SV *
1422 Perl_mess_nocontext(const char *pat, ...)
1423 {
1424     dTHX;
1425     SV *retval;
1426     va_list args;
1427     va_start(args, pat);
1428     retval = vmess(pat, &args);
1429     va_end(args);
1430     return retval;
1431 }
1432 #endif /* PERL_IMPLICIT_CONTEXT */
1433
1434 SV *
1435 Perl_mess(pTHX_ const char *pat, ...)
1436 {
1437     SV *retval;
1438     va_list args;
1439     va_start(args, pat);
1440     retval = vmess(pat, &args);
1441     va_end(args);
1442     return retval;
1443 }
1444
1445 SV *
1446 Perl_vmess(pTHX_ const char *pat, va_list *args)
1447 {
1448     SV *sv = mess_alloc();
1449     static char dgd[] = " during global destruction.\n";
1450
1451     sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1452     if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1453         dTHR;
1454         if (CopLINE(PL_curcop))
1455             Perl_sv_catpvf(aTHX_ sv, " at %s line %"IVdf,
1456                            CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
1457         if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1458             bool line_mode = (RsSIMPLE(PL_rs) &&
1459                               SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1460             Perl_sv_catpvf(aTHX_ sv, ", <%s> %s %"IVdf,
1461                       PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1462                       line_mode ? "line" : "chunk", 
1463                       (IV)IoLINES(GvIOp(PL_last_in_gv)));
1464         }
1465 #ifdef USE_THREADS
1466         if (thr->tid)
1467             Perl_sv_catpvf(aTHX_ sv, " thread %ld", thr->tid);
1468 #endif
1469         sv_catpv(sv, PL_dirty ? dgd : ".\n");
1470     }
1471     return sv;
1472 }
1473
1474 OP *
1475 Perl_vdie(pTHX_ const char* pat, va_list *args)
1476 {
1477     dTHR;
1478     char *message;
1479     int was_in_eval = PL_in_eval;
1480     HV *stash;
1481     GV *gv;
1482     CV *cv;
1483     SV *msv;
1484     STRLEN msglen;
1485
1486     DEBUG_S(PerlIO_printf(Perl_debug_log,
1487                           "%p: die: curstack = %p, mainstack = %p\n",
1488                           thr, PL_curstack, PL_mainstack));
1489
1490     if (pat) {
1491         msv = vmess(pat, args);
1492         if (PL_errors && SvCUR(PL_errors)) {
1493             sv_catsv(PL_errors, msv);
1494             message = SvPV(PL_errors, msglen);
1495             SvCUR_set(PL_errors, 0);
1496         }
1497         else
1498             message = SvPV(msv,msglen);
1499     }
1500     else {
1501         message = Nullch;
1502         msglen = 0;
1503     }
1504
1505     DEBUG_S(PerlIO_printf(Perl_debug_log,
1506                           "%p: die: message = %s\ndiehook = %p\n",
1507                           thr, message, PL_diehook));
1508     if (PL_diehook) {
1509         /* sv_2cv might call Perl_croak() */
1510         SV *olddiehook = PL_diehook;
1511         ENTER;
1512         SAVESPTR(PL_diehook);
1513         PL_diehook = Nullsv;
1514         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1515         LEAVE;
1516         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1517             dSP;
1518             SV *msg;
1519
1520             ENTER;
1521             save_re_context();
1522             if (message) {
1523                 msg = newSVpvn(message, msglen);
1524                 SvREADONLY_on(msg);
1525                 SAVEFREESV(msg);
1526             }
1527             else {
1528                 msg = ERRSV;
1529             }
1530
1531             PUSHSTACKi(PERLSI_DIEHOOK);
1532             PUSHMARK(SP);
1533             XPUSHs(msg);
1534             PUTBACK;
1535             call_sv((SV*)cv, G_DISCARD);
1536             POPSTACK;
1537             LEAVE;
1538         }
1539     }
1540
1541     PL_restartop = die_where(message, msglen);
1542     DEBUG_S(PerlIO_printf(Perl_debug_log,
1543           "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1544           thr, PL_restartop, was_in_eval, PL_top_env));
1545     if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1546         JMPENV_JUMP(3);
1547     return PL_restartop;
1548 }
1549
1550 #if defined(PERL_IMPLICIT_CONTEXT)
1551 OP *
1552 Perl_die_nocontext(const char* pat, ...)
1553 {
1554     dTHX;
1555     OP *o;
1556     va_list args;
1557     va_start(args, pat);
1558     o = vdie(pat, &args);
1559     va_end(args);
1560     return o;
1561 }
1562 #endif /* PERL_IMPLICIT_CONTEXT */
1563
1564 OP *
1565 Perl_die(pTHX_ const char* pat, ...)
1566 {
1567     OP *o;
1568     va_list args;
1569     va_start(args, pat);
1570     o = vdie(pat, &args);
1571     va_end(args);
1572     return o;
1573 }
1574
1575 void
1576 Perl_vcroak(pTHX_ const char* pat, va_list *args)
1577 {
1578     dTHR;
1579     char *message;
1580     HV *stash;
1581     GV *gv;
1582     CV *cv;
1583     SV *msv;
1584     STRLEN msglen;
1585
1586     if (pat) {
1587         msv = vmess(pat, args);
1588         if (PL_errors && SvCUR(PL_errors)) {
1589             sv_catsv(PL_errors, msv);
1590             message = SvPV(PL_errors, msglen);
1591             SvCUR_set(PL_errors, 0);
1592         }
1593         else
1594             message = SvPV(msv,msglen);
1595     }
1596     else {
1597         message = Nullch;
1598         msglen = 0;
1599     }
1600
1601     DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s",
1602                           PTR2UV(thr), message));
1603
1604     if (PL_diehook) {
1605         /* sv_2cv might call Perl_croak() */
1606         SV *olddiehook = PL_diehook;
1607         ENTER;
1608         SAVESPTR(PL_diehook);
1609         PL_diehook = Nullsv;
1610         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1611         LEAVE;
1612         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1613             dSP;
1614             SV *msg;
1615
1616             ENTER;
1617             save_re_context();
1618             if (message) {
1619                 msg = newSVpvn(message, msglen);
1620                 SvREADONLY_on(msg);
1621                 SAVEFREESV(msg);
1622             }
1623             else {
1624                 msg = ERRSV;
1625             }
1626
1627             PUSHSTACKi(PERLSI_DIEHOOK);
1628             PUSHMARK(SP);
1629             XPUSHs(msg);
1630             PUTBACK;
1631             call_sv((SV*)cv, G_DISCARD);
1632             POPSTACK;
1633             LEAVE;
1634         }
1635     }
1636     if (PL_in_eval) {
1637         PL_restartop = die_where(message, msglen);
1638         JMPENV_JUMP(3);
1639     }
1640     {
1641 #ifdef USE_SFIO
1642         /* SFIO can really mess with your errno */
1643         int e = errno;
1644 #endif
1645         PerlIO *serr = Perl_error_log;
1646
1647         PerlIO_write(serr, message, msglen);
1648         (void)PerlIO_flush(serr);
1649 #ifdef USE_SFIO
1650         errno = e;
1651 #endif
1652     }
1653     my_failure_exit();
1654 }
1655
1656 #if defined(PERL_IMPLICIT_CONTEXT)
1657 void
1658 Perl_croak_nocontext(const char *pat, ...)
1659 {
1660     dTHX;
1661     va_list args;
1662     va_start(args, pat);
1663     vcroak(pat, &args);
1664     /* NOTREACHED */
1665     va_end(args);
1666 }
1667 #endif /* PERL_IMPLICIT_CONTEXT */
1668
1669 /*
1670 =for apidoc croak
1671
1672 This is the XSUB-writer's interface to Perl's C<die> function.
1673 Normally use this function the same way you use the C C<printf>
1674 function.  See C<warn>.
1675
1676 If you want to throw an exception object, assign the object to
1677 C<$@> and then pass C<Nullch> to croak():
1678
1679    errsv = get_sv("@", TRUE);
1680    sv_setsv(errsv, exception_object);
1681    croak(Nullch);
1682
1683 =cut
1684 */
1685
1686 void
1687 Perl_croak(pTHX_ const char *pat, ...)
1688 {
1689     va_list args;
1690     va_start(args, pat);
1691     vcroak(pat, &args);
1692     /* NOTREACHED */
1693     va_end(args);
1694 }
1695
1696 void
1697 Perl_vwarn(pTHX_ const char* pat, va_list *args)
1698 {
1699     char *message;
1700     HV *stash;
1701     GV *gv;
1702     CV *cv;
1703     SV *msv;
1704     STRLEN msglen;
1705
1706     msv = vmess(pat, args);
1707     message = SvPV(msv, msglen);
1708
1709     if (PL_warnhook) {
1710         /* sv_2cv might call Perl_warn() */
1711         dTHR;
1712         SV *oldwarnhook = PL_warnhook;
1713         ENTER;
1714         SAVESPTR(PL_warnhook);
1715         PL_warnhook = Nullsv;
1716         cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1717         LEAVE;
1718         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1719             dSP;
1720             SV *msg;
1721
1722             ENTER;
1723             save_re_context();
1724             msg = newSVpvn(message, msglen);
1725             SvREADONLY_on(msg);
1726             SAVEFREESV(msg);
1727
1728             PUSHSTACKi(PERLSI_WARNHOOK);
1729             PUSHMARK(SP);
1730             XPUSHs(msg);
1731             PUTBACK;
1732             call_sv((SV*)cv, G_DISCARD);
1733             POPSTACK;
1734             LEAVE;
1735             return;
1736         }
1737     }
1738     {
1739         PerlIO *serr = Perl_error_log;
1740
1741         PerlIO_write(serr, message, msglen);
1742 #ifdef LEAKTEST
1743         DEBUG_L(*message == '!' 
1744                 ? (xstat(message[1]=='!'
1745                          ? (message[2]=='!' ? 2 : 1)
1746                          : 0)
1747                    , 0)
1748                 : 0);
1749 #endif
1750         (void)PerlIO_flush(serr);
1751     }
1752 }
1753
1754 #if defined(PERL_IMPLICIT_CONTEXT)
1755 void
1756 Perl_warn_nocontext(const char *pat, ...)
1757 {
1758     dTHX;
1759     va_list args;
1760     va_start(args, pat);
1761     vwarn(pat, &args);
1762     va_end(args);
1763 }
1764 #endif /* PERL_IMPLICIT_CONTEXT */
1765
1766 /*
1767 =for apidoc warn
1768
1769 This is the XSUB-writer's interface to Perl's C<warn> function.  Use this
1770 function the same way you use the C C<printf> function.  See
1771 C<croak>.
1772
1773 =cut
1774 */
1775
1776 void
1777 Perl_warn(pTHX_ const char *pat, ...)
1778 {
1779     va_list args;
1780     va_start(args, pat);
1781     vwarn(pat, &args);
1782     va_end(args);
1783 }
1784
1785 #if defined(PERL_IMPLICIT_CONTEXT)
1786 void
1787 Perl_warner_nocontext(U32 err, const char *pat, ...)
1788 {
1789     dTHX;
1790     va_list args;
1791     va_start(args, pat);
1792     vwarner(err, pat, &args);
1793     va_end(args);
1794 }
1795 #endif /* PERL_IMPLICIT_CONTEXT */
1796
1797 void
1798 Perl_warner(pTHX_ U32  err, const char* pat,...)
1799 {
1800     va_list args;
1801     va_start(args, pat);
1802     vwarner(err, pat, &args);
1803     va_end(args);
1804 }
1805
1806 void
1807 Perl_vwarner(pTHX_ U32  err, const char* pat, va_list* args)
1808 {
1809     dTHR;
1810     char *message;
1811     HV *stash;
1812     GV *gv;
1813     CV *cv;
1814     SV *msv;
1815     STRLEN msglen;
1816
1817     msv = vmess(pat, args);
1818     message = SvPV(msv, msglen);
1819
1820     if (ckDEAD(err)) {
1821 #ifdef USE_THREADS
1822         DEBUG_S(PerlIO_printf(Perl_debug_log, "croak: 0x%"UVxf" %s", PTR2UV(thr), message));
1823 #endif /* USE_THREADS */
1824         if (PL_diehook) {
1825             /* sv_2cv might call Perl_croak() */
1826             SV *olddiehook = PL_diehook;
1827             ENTER;
1828             SAVESPTR(PL_diehook);
1829             PL_diehook = Nullsv;
1830             cv = sv_2cv(olddiehook, &stash, &gv, 0);
1831             LEAVE;
1832             if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1833                 dSP;
1834                 SV *msg;
1835  
1836                 ENTER;
1837                 save_re_context();
1838                 msg = newSVpvn(message, msglen);
1839                 SvREADONLY_on(msg);
1840                 SAVEFREESV(msg);
1841  
1842                 PUSHSTACKi(PERLSI_DIEHOOK);
1843                 PUSHMARK(sp);
1844                 XPUSHs(msg);
1845                 PUTBACK;
1846                 call_sv((SV*)cv, G_DISCARD);
1847                 POPSTACK;
1848                 LEAVE;
1849             }
1850         }
1851         if (PL_in_eval) {
1852             PL_restartop = die_where(message, msglen);
1853             JMPENV_JUMP(3);
1854         }
1855         {
1856             PerlIO *serr = Perl_error_log;
1857             PerlIO_write(serr, message, msglen);
1858             (void)PerlIO_flush(serr);
1859         }
1860         my_failure_exit();
1861
1862     }
1863     else {
1864         if (PL_warnhook) {
1865             /* sv_2cv might call Perl_warn() */
1866             dTHR;
1867             SV *oldwarnhook = PL_warnhook;
1868             ENTER;
1869             SAVESPTR(PL_warnhook);
1870             PL_warnhook = Nullsv;
1871             cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1872             LEAVE;
1873             if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1874                 dSP;
1875                 SV *msg;
1876  
1877                 ENTER;
1878                 save_re_context();
1879                 msg = newSVpvn(message, msglen);
1880                 SvREADONLY_on(msg);
1881                 SAVEFREESV(msg);
1882  
1883                 PUSHSTACKi(PERLSI_WARNHOOK);
1884                 PUSHMARK(sp);
1885                 XPUSHs(msg);
1886                 PUTBACK;
1887                 call_sv((SV*)cv, G_DISCARD);
1888                 POPSTACK;
1889                 LEAVE;
1890                 return;
1891             }
1892         }
1893         {
1894             PerlIO *serr = Perl_error_log;
1895             PerlIO_write(serr, message, msglen);
1896 #ifdef LEAKTEST
1897             DEBUG_L(xstat());
1898 #endif
1899             (void)PerlIO_flush(serr);
1900         }
1901     }
1902 }
1903
1904 #ifndef VMS  /* VMS' my_setenv() is in VMS.c */
1905 #if !defined(WIN32) && !defined(__CYGWIN__)
1906 void
1907 Perl_my_setenv(pTHX_ char *nam, char *val)
1908 {
1909 #ifndef PERL_USE_SAFE_PUTENV
1910     /* most putenv()s leak, so we manipulate environ directly */
1911     register I32 i=setenv_getix(nam);           /* where does it go? */
1912
1913     if (environ == PL_origenviron) {    /* need we copy environment? */
1914         I32 j;
1915         I32 max;
1916         char **tmpenv;
1917
1918         /*SUPPRESS 530*/
1919         for (max = i; environ[max]; max++) ;
1920         tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1921         for (j=0; j<max; j++) {         /* copy environment */
1922             tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1923             strcpy(tmpenv[j], environ[j]);
1924         }
1925         tmpenv[max] = Nullch;
1926         environ = tmpenv;               /* tell exec where it is now */
1927     }
1928     if (!val) {
1929         safesysfree(environ[i]);
1930         while (environ[i]) {
1931             environ[i] = environ[i+1];
1932             i++;
1933         }
1934         return;
1935     }
1936     if (!environ[i]) {                  /* does not exist yet */
1937         environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1938         environ[i+1] = Nullch;  /* make sure it's null terminated */
1939     }
1940     else
1941         safesysfree(environ[i]);
1942     environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1943
1944     (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1945
1946 #else   /* PERL_USE_SAFE_PUTENV */
1947     char *new_env;
1948
1949     new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1950     (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1951     (void)putenv(new_env);
1952 #endif  /* PERL_USE_SAFE_PUTENV */
1953 }
1954
1955 #else /* WIN32 || __CYGWIN__ */
1956 #if defined(__CYGWIN__)
1957 /*
1958  * Save environ of perl.exe, currently Cygwin links in separate environ's
1959  * for each exe/dll.  Probably should be a member of impure_ptr.
1960  */
1961 static char ***Perl_main_environ;
1962
1963 EXTERN_C void
1964 Perl_my_setenv_init(char ***penviron)
1965 {
1966     Perl_main_environ = penviron;
1967 }
1968
1969 void
1970 Perl_my_setenv(pTHX_ char *nam, char *val)
1971 {
1972     /* You can not directly manipulate the environ[] array because
1973      * the routines do some additional work that syncs the Cygwin
1974      * environment with the Windows environment.
1975      */
1976     char *oldstr = environ[setenv_getix(nam)];
1977
1978     if (!val) {
1979        if (!oldstr)
1980            return;
1981        unsetenv(nam);
1982        safesysfree(oldstr);
1983        return;
1984     }
1985     setenv(nam, val, 1);
1986     environ = *Perl_main_environ; /* environ realloc can occur in setenv */
1987     if(oldstr && environ[setenv_getix(nam)] != oldstr)
1988        safesysfree(oldstr);
1989 }
1990 #else /* if WIN32 */
1991
1992 void
1993 Perl_my_setenv(pTHX_ char *nam,char *val)
1994 {
1995
1996 #ifdef USE_WIN32_RTL_ENV
1997
1998     register char *envstr;
1999     STRLEN namlen = strlen(nam);
2000     STRLEN vallen;
2001     char *oldstr = environ[setenv_getix(nam)];
2002
2003     /* putenv() has totally broken semantics in both the Borland
2004      * and Microsoft CRTLs.  They either store the passed pointer in
2005      * the environment without making a copy, or make a copy and don't
2006      * free it. And on top of that, they dont free() old entries that
2007      * are being replaced/deleted.  This means the caller must
2008      * free any old entries somehow, or we end up with a memory
2009      * leak every time my_setenv() is called.  One might think
2010      * one could directly manipulate environ[], like the UNIX code
2011      * above, but direct changes to environ are not allowed when
2012      * calling putenv(), since the RTLs maintain an internal
2013      * *copy* of environ[]. Bad, bad, *bad* stink.
2014      * GSAR 97-06-07
2015      */
2016
2017     if (!val) {
2018         if (!oldstr)
2019             return;
2020         val = "";
2021         vallen = 0;
2022     }
2023     else
2024         vallen = strlen(val);
2025     envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
2026     (void)sprintf(envstr,"%s=%s",nam,val);
2027     (void)PerlEnv_putenv(envstr);
2028     if (oldstr)
2029         safesysfree(oldstr);
2030 #ifdef _MSC_VER
2031     safesysfree(envstr);        /* MSVCRT leaks without this */
2032 #endif
2033
2034 #else /* !USE_WIN32_RTL_ENV */
2035
2036     register char *envstr;
2037     STRLEN len = strlen(nam) + 3;
2038     if (!val) {
2039         val = "";
2040     }
2041     len += strlen(val);
2042     New(904, envstr, len, char);
2043     (void)sprintf(envstr,"%s=%s",nam,val);
2044     (void)PerlEnv_putenv(envstr);
2045     Safefree(envstr);
2046
2047 #endif
2048 }
2049
2050 #endif /* WIN32 */
2051 #endif
2052
2053 I32
2054 Perl_setenv_getix(pTHX_ char *nam)
2055 {
2056     register I32 i, len = strlen(nam);
2057
2058     for (i = 0; environ[i]; i++) {
2059         if (
2060 #ifdef WIN32
2061             strnicmp(environ[i],nam,len) == 0
2062 #else
2063             strnEQ(environ[i],nam,len)
2064 #endif
2065             && environ[i][len] == '=')
2066             break;                      /* strnEQ must come first to avoid */
2067     }                                   /* potential SEGV's */
2068     return i;
2069 }
2070
2071 #endif /* !VMS */
2072
2073 #ifdef UNLINK_ALL_VERSIONS
2074 I32
2075 Perl_unlnk(pTHX_ char *f)       /* unlink all versions of a file */
2076 {
2077     I32 i;
2078
2079     for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
2080     return i ? 0 : -1;
2081 }
2082 #endif
2083
2084 /* this is a drop-in replacement for bcopy() */
2085 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
2086 char *
2087 Perl_my_bcopy(register const char *from,register char *to,register I32 len)
2088 {
2089     char *retval = to;
2090
2091     if (from - to >= 0) {
2092         while (len--)
2093             *to++ = *from++;
2094     }
2095     else {
2096         to += len;
2097         from += len;
2098         while (len--)
2099             *(--to) = *(--from);
2100     }
2101     return retval;
2102 }
2103 #endif
2104
2105 /* this is a drop-in replacement for memset() */
2106 #ifndef HAS_MEMSET
2107 void *
2108 Perl_my_memset(register char *loc, register I32 ch, register I32 len)
2109 {
2110     char *retval = loc;
2111
2112     while (len--)
2113         *loc++ = ch;
2114     return retval;
2115 }
2116 #endif
2117
2118 /* this is a drop-in replacement for bzero() */
2119 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
2120 char *
2121 Perl_my_bzero(register char *loc, register I32 len)
2122 {
2123     char *retval = loc;
2124
2125     while (len--)
2126         *loc++ = 0;
2127     return retval;
2128 }
2129 #endif
2130
2131 /* this is a drop-in replacement for memcmp() */
2132 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
2133 I32
2134 Perl_my_memcmp(const char *s1, const char *s2, register I32 len)
2135 {
2136     register U8 *a = (U8 *)s1;
2137     register U8 *b = (U8 *)s2;
2138     register I32 tmp;
2139
2140     while (len--) {
2141         if (tmp = *a++ - *b++)
2142             return tmp;
2143     }
2144     return 0;
2145 }
2146 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
2147
2148 #ifndef HAS_VPRINTF
2149
2150 #ifdef USE_CHAR_VSPRINTF
2151 char *
2152 #else
2153 int
2154 #endif
2155 vsprintf(char *dest, const char *pat, char *args)
2156 {
2157     FILE fakebuf;
2158
2159     fakebuf._ptr = dest;
2160     fakebuf._cnt = 32767;
2161 #ifndef _IOSTRG
2162 #define _IOSTRG 0
2163 #endif
2164     fakebuf._flag = _IOWRT|_IOSTRG;
2165     _doprnt(pat, args, &fakebuf);       /* what a kludge */
2166     (void)putc('\0', &fakebuf);
2167 #ifdef USE_CHAR_VSPRINTF
2168     return(dest);
2169 #else
2170     return 0;           /* perl doesn't use return value */
2171 #endif
2172 }
2173
2174 #endif /* HAS_VPRINTF */
2175
2176 #ifdef MYSWAP
2177 #if BYTEORDER != 0x4321
2178 short
2179 Perl_my_swap(pTHX_ short s)
2180 {
2181 #if (BYTEORDER & 1) == 0
2182     short result;
2183
2184     result = ((s & 255) << 8) + ((s >> 8) & 255);
2185     return result;
2186 #else
2187     return s;
2188 #endif
2189 }
2190
2191 long
2192 Perl_my_htonl(pTHX_ long l)
2193 {
2194     union {
2195         long result;
2196         char c[sizeof(long)];
2197     } u;
2198
2199 #if BYTEORDER == 0x1234
2200     u.c[0] = (l >> 24) & 255;
2201     u.c[1] = (l >> 16) & 255;
2202     u.c[2] = (l >> 8) & 255;
2203     u.c[3] = l & 255;
2204     return u.result;
2205 #else
2206 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2207     Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2208 #else
2209     register I32 o;
2210     register I32 s;
2211
2212     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2213         u.c[o & 0xf] = (l >> s) & 255;
2214     }
2215     return u.result;
2216 #endif
2217 #endif
2218 }
2219
2220 long
2221 Perl_my_ntohl(pTHX_ long l)
2222 {
2223     union {
2224         long l;
2225         char c[sizeof(long)];
2226     } u;
2227
2228 #if BYTEORDER == 0x1234
2229     u.c[0] = (l >> 24) & 255;
2230     u.c[1] = (l >> 16) & 255;
2231     u.c[2] = (l >> 8) & 255;
2232     u.c[3] = l & 255;
2233     return u.l;
2234 #else
2235 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
2236     Perl_croak(aTHX_ "Unknown BYTEORDER\n");
2237 #else
2238     register I32 o;
2239     register I32 s;
2240
2241     u.l = l;
2242     l = 0;
2243     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
2244         l |= (u.c[o & 0xf] & 255) << s;
2245     }
2246     return l;
2247 #endif
2248 #endif
2249 }
2250
2251 #endif /* BYTEORDER != 0x4321 */
2252 #endif /* MYSWAP */
2253
2254 /*
2255  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2256  * If these functions are defined,
2257  * the BYTEORDER is neither 0x1234 nor 0x4321.
2258  * However, this is not assumed.
2259  * -DWS
2260  */
2261
2262 #define HTOV(name,type)                                         \
2263         type                                                    \
2264         name (register type n)                                  \
2265         {                                                       \
2266             union {                                             \
2267                 type value;                                     \
2268                 char c[sizeof(type)];                           \
2269             } u;                                                \
2270             register I32 i;                                     \
2271             register I32 s;                                     \
2272             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
2273                 u.c[i] = (n >> s) & 0xFF;                       \
2274             }                                                   \
2275             return u.value;                                     \
2276         }
2277
2278 #define VTOH(name,type)                                         \
2279         type                                                    \
2280         name (register type n)                                  \
2281         {                                                       \
2282             union {                                             \
2283                 type value;                                     \
2284                 char c[sizeof(type)];                           \
2285             } u;                                                \
2286             register I32 i;                                     \
2287             register I32 s;                                     \
2288             u.value = n;                                        \
2289             n = 0;                                              \
2290             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
2291                 n += (u.c[i] & 0xFF) << s;                      \
2292             }                                                   \
2293             return n;                                           \
2294         }
2295
2296 #if defined(HAS_HTOVS) && !defined(htovs)
2297 HTOV(htovs,short)
2298 #endif
2299 #if defined(HAS_HTOVL) && !defined(htovl)
2300 HTOV(htovl,long)
2301 #endif
2302 #if defined(HAS_VTOHS) && !defined(vtohs)
2303 VTOH(vtohs,short)
2304 #endif
2305 #if defined(HAS_VTOHL) && !defined(vtohl)
2306 VTOH(vtohl,long)
2307 #endif
2308
2309     /* VMS' my_popen() is in VMS.c, same with OS/2. */
2310 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2311 PerlIO *
2312 Perl_my_popen(pTHX_ char *cmd, char *mode)
2313 {
2314     int p[2];
2315     register I32 This, that;
2316     register Pid_t pid;
2317     SV *sv;
2318     I32 doexec = strNE(cmd,"-");
2319     I32 did_pipes = 0;
2320     int pp[2];
2321
2322     PERL_FLUSHALL_FOR_CHILD;
2323 #ifdef OS2
2324     if (doexec) {
2325         return my_syspopen(aTHX_ cmd,mode);
2326     }
2327 #endif 
2328     This = (*mode == 'w');
2329     that = !This;
2330     if (doexec && PL_tainting) {
2331         taint_env();
2332         taint_proper("Insecure %s%s", "EXEC");
2333     }
2334     if (PerlProc_pipe(p) < 0)
2335         return Nullfp;
2336     if (doexec && PerlProc_pipe(pp) >= 0)
2337         did_pipes = 1;
2338     while ((pid = (doexec?vfork():fork())) < 0) {
2339         if (errno != EAGAIN) {
2340             PerlLIO_close(p[This]);
2341             if (did_pipes) {
2342                 PerlLIO_close(pp[0]);
2343                 PerlLIO_close(pp[1]);
2344             }
2345             if (!doexec)
2346                 Perl_croak(aTHX_ "Can't fork");
2347             return Nullfp;
2348         }
2349         sleep(5);
2350     }
2351     if (pid == 0) {
2352         GV* tmpgv;
2353
2354 #undef THIS
2355 #undef THAT
2356 #define THIS that
2357 #define THAT This
2358         PerlLIO_close(p[THAT]);
2359         if (did_pipes) {
2360             PerlLIO_close(pp[0]);
2361 #if defined(HAS_FCNTL) && defined(F_SETFD)
2362             fcntl(pp[1], F_SETFD, FD_CLOEXEC);
2363 #endif
2364         }
2365         if (p[THIS] != (*mode == 'r')) {
2366             PerlLIO_dup2(p[THIS], *mode == 'r');
2367             PerlLIO_close(p[THIS]);
2368         }
2369 #ifndef OS2
2370         if (doexec) {
2371 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
2372             int fd;
2373
2374 #ifndef NOFILE
2375 #define NOFILE 20
2376 #endif
2377             for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
2378                 if (fd != pp[1])
2379                     PerlLIO_close(fd);
2380 #endif
2381             do_exec3(cmd,pp[1],did_pipes);      /* may or may not use the shell */
2382             PerlProc__exit(1);
2383         }
2384 #endif  /* defined OS2 */
2385         /*SUPPRESS 560*/
2386         if ((tmpgv = gv_fetchpv("$",TRUE, SVt_PV)))
2387             sv_setiv(GvSV(tmpgv), PerlProc_getpid());
2388         PL_forkprocess = 0;
2389         hv_clear(PL_pidstatus); /* we have no children */
2390         return Nullfp;
2391 #undef THIS
2392 #undef THAT
2393     }
2394     do_execfree();      /* free any memory malloced by child on vfork */
2395     PerlLIO_close(p[that]);
2396     if (did_pipes)
2397         PerlLIO_close(pp[1]);
2398     if (p[that] < p[This]) {
2399         PerlLIO_dup2(p[This], p[that]);
2400         PerlLIO_close(p[This]);
2401         p[This] = p[that];
2402     }
2403     sv = *av_fetch(PL_fdpid,p[This],TRUE);
2404     (void)SvUPGRADE(sv,SVt_IV);
2405     SvIVX(sv) = pid;
2406     PL_forkprocess = pid;
2407     if (did_pipes && pid > 0) {
2408         int errkid;
2409         int n = 0, n1;
2410
2411         while (n < sizeof(int)) {
2412             n1 = PerlLIO_read(pp[0],
2413                               (void*)(((char*)&errkid)+n),
2414                               (sizeof(int)) - n);
2415             if (n1 <= 0)
2416                 break;
2417             n += n1;
2418         }
2419         PerlLIO_close(pp[0]);
2420         did_pipes = 0;
2421         if (n) {                        /* Error */
2422             if (n != sizeof(int))
2423                 Perl_croak(aTHX_ "panic: kid popen errno read");
2424             errno = errkid;             /* Propagate errno from kid */
2425             return Nullfp;
2426         }
2427     }
2428     if (did_pipes)
2429          PerlLIO_close(pp[0]);
2430     return PerlIO_fdopen(p[This], mode);
2431 }
2432 #else
2433 #if defined(atarist) || defined(DJGPP)
2434 FILE *popen();
2435 PerlIO *
2436 Perl_my_popen(pTHX_ char *cmd, char *mode)
2437 {
2438     /* Needs work for PerlIO ! */
2439     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2440     PERL_FLUSHALL_FOR_CHILD;
2441     return popen(PerlIO_exportFILE(cmd, 0), mode);
2442 }
2443 #endif
2444
2445 #endif /* !DOSISH */
2446
2447 #ifdef DUMP_FDS
2448 void
2449 Perl_dump_fds(pTHX_ char *s)
2450 {
2451     int fd;
2452     struct stat tmpstatbuf;
2453
2454     PerlIO_printf(Perl_debug_log,"%s", s);
2455     for (fd = 0; fd < 32; fd++) {
2456         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2457             PerlIO_printf(Perl_debug_log," %d",fd);
2458     }
2459     PerlIO_printf(Perl_debug_log,"\n");
2460 }
2461 #endif  /* DUMP_FDS */
2462
2463 #ifndef HAS_DUP2
2464 int
2465 dup2(int oldfd, int newfd)
2466 {
2467 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2468     if (oldfd == newfd)
2469         return oldfd;
2470     PerlLIO_close(newfd);
2471     return fcntl(oldfd, F_DUPFD, newfd);
2472 #else
2473 #define DUP2_MAX_FDS 256
2474     int fdtmp[DUP2_MAX_FDS];
2475     I32 fdx = 0;
2476     int fd;
2477
2478     if (oldfd == newfd)
2479         return oldfd;
2480     PerlLIO_close(newfd);
2481     /* good enough for low fd's... */
2482     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2483         if (fdx >= DUP2_MAX_FDS) {
2484             PerlLIO_close(fd);
2485             fd = -1;
2486             break;
2487         }
2488         fdtmp[fdx++] = fd;
2489     }
2490     while (fdx > 0)
2491         PerlLIO_close(fdtmp[--fdx]);
2492     return fd;
2493 #endif
2494 }
2495 #endif
2496
2497
2498 #ifdef HAS_SIGACTION
2499
2500 Sighandler_t
2501 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2502 {
2503     struct sigaction act, oact;
2504
2505     act.sa_handler = handler;
2506     sigemptyset(&act.sa_mask);
2507     act.sa_flags = 0;
2508 #ifdef SA_RESTART
2509     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2510 #endif
2511 #ifdef SA_NOCLDWAIT
2512     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2513         act.sa_flags |= SA_NOCLDWAIT;
2514 #endif
2515     if (sigaction(signo, &act, &oact) == -1)
2516         return SIG_ERR;
2517     else
2518         return oact.sa_handler;
2519 }
2520
2521 Sighandler_t
2522 Perl_rsignal_state(pTHX_ int signo)
2523 {
2524     struct sigaction oact;
2525
2526     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2527         return SIG_ERR;
2528     else
2529         return oact.sa_handler;
2530 }
2531
2532 int
2533 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2534 {
2535     struct sigaction act;
2536
2537     act.sa_handler = handler;
2538     sigemptyset(&act.sa_mask);
2539     act.sa_flags = 0;
2540 #ifdef SA_RESTART
2541     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2542 #endif
2543 #ifdef SA_NOCLDWAIT
2544     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2545         act.sa_flags |= SA_NOCLDWAIT;
2546 #endif
2547     return sigaction(signo, &act, save);
2548 }
2549
2550 int
2551 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2552 {
2553     return sigaction(signo, save, (struct sigaction *)NULL);
2554 }
2555
2556 #else /* !HAS_SIGACTION */
2557
2558 Sighandler_t
2559 Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
2560 {
2561     return PerlProc_signal(signo, handler);
2562 }
2563
2564 static int sig_trapped;
2565
2566 static
2567 Signal_t
2568 sig_trap(int signo)
2569 {
2570     sig_trapped++;
2571 }
2572
2573 Sighandler_t
2574 Perl_rsignal_state(pTHX_ int signo)
2575 {
2576     Sighandler_t oldsig;
2577
2578     sig_trapped = 0;
2579     oldsig = PerlProc_signal(signo, sig_trap);
2580     PerlProc_signal(signo, oldsig);
2581     if (sig_trapped)
2582         PerlProc_kill(PerlProc_getpid(), signo);
2583     return oldsig;
2584 }
2585
2586 int
2587 Perl_rsignal_save(pTHX_ int signo, Sighandler_t handler, Sigsave_t *save)
2588 {
2589     *save = PerlProc_signal(signo, handler);
2590     return (*save == SIG_ERR) ? -1 : 0;
2591 }
2592
2593 int
2594 Perl_rsignal_restore(pTHX_ int signo, Sigsave_t *save)
2595 {
2596     return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2597 }
2598
2599 #endif /* !HAS_SIGACTION */
2600
2601     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2602 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
2603 I32
2604 Perl_my_pclose(pTHX_ PerlIO *ptr)
2605 {
2606     Sigsave_t hstat, istat, qstat;
2607     int status;
2608     SV **svp;
2609     Pid_t pid;
2610     Pid_t pid2;
2611     bool close_failed;
2612     int saved_errno;
2613 #ifdef VMS
2614     int saved_vaxc_errno;
2615 #endif
2616 #ifdef WIN32
2617     int saved_win32_errno;
2618 #endif
2619
2620     svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2621     pid = SvIVX(*svp);
2622     SvREFCNT_dec(*svp);
2623     *svp = &PL_sv_undef;
2624 #ifdef OS2
2625     if (pid == -1) {                    /* Opened by popen. */
2626         return my_syspclose(ptr);
2627     }
2628 #endif 
2629     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2630         saved_errno = errno;
2631 #ifdef VMS
2632         saved_vaxc_errno = vaxc$errno;
2633 #endif
2634 #ifdef WIN32
2635         saved_win32_errno = GetLastError();
2636 #endif
2637     }
2638 #ifdef UTS
2639     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2640 #endif
2641     rsignal_save(SIGHUP, SIG_IGN, &hstat);
2642     rsignal_save(SIGINT, SIG_IGN, &istat);
2643     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2644     do {
2645         pid2 = wait4pid(pid, &status, 0);
2646     } while (pid2 == -1 && errno == EINTR);
2647     rsignal_restore(SIGHUP, &hstat);
2648     rsignal_restore(SIGINT, &istat);
2649     rsignal_restore(SIGQUIT, &qstat);
2650     if (close_failed) {
2651         SETERRNO(saved_errno, saved_vaxc_errno);
2652         return -1;
2653     }
2654     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2655 }
2656 #endif /* !DOSISH */
2657
2658 #if  (!defined(DOSISH) || defined(OS2) || defined(WIN32)) && !defined(MACOS_TRADITIONAL)
2659 I32
2660 Perl_wait4pid(pTHX_ Pid_t pid, int *statusp, int flags)
2661 {
2662     SV *sv;
2663     SV** svp;
2664     char spid[TYPE_CHARS(int)];
2665
2666     if (!pid)
2667         return -1;
2668     if (pid > 0) {
2669         sprintf(spid, "%"IVdf, (IV)pid);
2670         svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2671         if (svp && *svp != &PL_sv_undef) {
2672             *statusp = SvIVX(*svp);
2673             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2674             return pid;
2675         }
2676     }
2677     else {
2678         HE *entry;
2679
2680         hv_iterinit(PL_pidstatus);
2681         if ((entry = hv_iternext(PL_pidstatus))) {
2682             pid = atoi(hv_iterkey(entry,(I32*)statusp));
2683             sv = hv_iterval(PL_pidstatus,entry);
2684             *statusp = SvIVX(sv);
2685             sprintf(spid, "%"IVdf, (IV)pid);
2686             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2687             return pid;
2688         }
2689     }
2690 #ifdef HAS_WAITPID
2691 #  ifdef HAS_WAITPID_RUNTIME
2692     if (!HAS_WAITPID_RUNTIME)
2693         goto hard_way;
2694 #  endif
2695     return PerlProc_waitpid(pid,statusp,flags);
2696 #endif
2697 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2698     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2699 #endif
2700 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2701   hard_way:
2702     {
2703         I32 result;
2704         if (flags)
2705             Perl_croak(aTHX_ "Can't do waitpid with flags");
2706         else {
2707             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2708                 pidgone(result,*statusp);
2709             if (result < 0)
2710                 *statusp = -1;
2711         }
2712         return result;
2713     }
2714 #endif
2715 }
2716 #endif /* !DOSISH || OS2 || WIN32 */
2717
2718 void
2719 /*SUPPRESS 590*/
2720 Perl_pidgone(pTHX_ Pid_t pid, int status)
2721 {
2722     register SV *sv;
2723     char spid[TYPE_CHARS(int)];
2724
2725     sprintf(spid, "%"IVdf, (IV)pid);
2726     sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2727     (void)SvUPGRADE(sv,SVt_IV);
2728     SvIVX(sv) = status;
2729     return;
2730 }
2731
2732 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2733 int pclose();
2734 #ifdef HAS_FORK
2735 int                                     /* Cannot prototype with I32
2736                                            in os2ish.h. */
2737 my_syspclose(PerlIO *ptr)
2738 #else
2739 I32
2740 Perl_my_pclose(pTHX_ PerlIO *ptr)
2741 #endif 
2742 {
2743     /* Needs work for PerlIO ! */
2744     FILE *f = PerlIO_findFILE(ptr);
2745     I32 result = pclose(f);
2746 #if defined(DJGPP)
2747     result = (result << 8) & 0xff00;
2748 #endif
2749     PerlIO_releaseFILE(ptr,f);
2750     return result;
2751 }
2752 #endif
2753
2754 void
2755 Perl_repeatcpy(pTHX_ register char *to, register const char *from, I32 len, register I32 count)
2756 {
2757     register I32 todo;
2758     register const char *frombase = from;
2759
2760     if (len == 1) {
2761         register const char c = *from;
2762         while (count-- > 0)
2763             *to++ = c;
2764         return;
2765     }
2766     while (count-- > 0) {
2767         for (todo = len; todo > 0; todo--) {
2768             *to++ = *from++;
2769         }
2770         from = frombase;
2771     }
2772 }
2773
2774 U32
2775 Perl_cast_ulong(pTHX_ NV f)
2776 {
2777     long along;
2778
2779 #if CASTFLAGS & 2
2780 #   define BIGDOUBLE 2147483648.0
2781     if (f >= BIGDOUBLE)
2782         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2783 #endif
2784     if (f >= 0.0)
2785         return (unsigned long)f;
2786     along = (long)f;
2787     return (unsigned long)along;
2788 }
2789 # undef BIGDOUBLE
2790
2791 /* Unfortunately, on some systems the cast_uv() function doesn't
2792    work with the system-supplied definition of ULONG_MAX.  The
2793    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2794    problem with the compiler constant folding.
2795
2796    In any case, this workaround should be fine on any two's complement
2797    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2798    ccflags.
2799                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2800 */
2801
2802 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2803    of LONG_(MIN/MAX).
2804                            -- Kenneth Albanowski <kjahds@kjahds.com>
2805 */                                      
2806
2807 #ifndef MY_UV_MAX
2808 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2809 #endif
2810
2811 I32
2812 Perl_cast_i32(pTHX_ NV f)
2813 {
2814     if (f >= I32_MAX)
2815         return (I32) I32_MAX;
2816     if (f <= I32_MIN)
2817         return (I32) I32_MIN;
2818     return (I32) f;
2819 }
2820
2821 IV
2822 Perl_cast_iv(pTHX_ NV f)
2823 {
2824     if (f >= IV_MAX) {
2825         UV uv;
2826         
2827         if (f >= (NV)UV_MAX)
2828             return (IV) UV_MAX; 
2829         uv = (UV) f;
2830         return (IV)uv;
2831     }
2832     if (f <= IV_MIN)
2833         return (IV) IV_MIN;
2834     return (IV) f;
2835 }
2836
2837 UV
2838 Perl_cast_uv(pTHX_ NV f)
2839 {
2840     if (f >= MY_UV_MAX)
2841         return (UV) MY_UV_MAX;
2842     if (f < 0) {
2843         IV iv;
2844         
2845         if (f < IV_MIN)
2846             return (UV)IV_MIN;
2847         iv = (IV) f;
2848         return (UV) iv;
2849     }
2850     return (UV) f;
2851 }
2852
2853 #ifndef HAS_RENAME
2854 I32
2855 Perl_same_dirent(pTHX_ char *a, char *b)
2856 {
2857     char *fa = strrchr(a,'/');
2858     char *fb = strrchr(b,'/');
2859     struct stat tmpstatbuf1;
2860     struct stat tmpstatbuf2;
2861     SV *tmpsv = sv_newmortal();
2862
2863     if (fa)
2864         fa++;
2865     else
2866         fa = a;
2867     if (fb)
2868         fb++;
2869     else
2870         fb = b;
2871     if (strNE(a,b))
2872         return FALSE;
2873     if (fa == a)
2874         sv_setpv(tmpsv, ".");
2875     else
2876         sv_setpvn(tmpsv, a, fa - a);
2877     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2878         return FALSE;
2879     if (fb == b)
2880         sv_setpv(tmpsv, ".");
2881     else
2882         sv_setpvn(tmpsv, b, fb - b);
2883     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2884         return FALSE;
2885     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2886            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2887 }
2888 #endif /* !HAS_RENAME */
2889
2890 NV
2891 Perl_scan_bin(pTHX_ char *start, I32 len, I32 *retlen)
2892 {
2893     register char *s = start;
2894     register NV rnv = 0.0;
2895     register UV ruv = 0;
2896     register bool seenb = FALSE;
2897     register bool overflowed = FALSE;
2898
2899     for (; len-- && *s; s++) {
2900         if (!(*s == '0' || *s == '1')) {
2901             if (*s == '_' && len && *retlen
2902                 && (s[1] == '0' || s[1] == '1'))
2903             {
2904                 --len;
2905                 ++s;
2906             }
2907             else if (seenb == FALSE && *s == 'b' && ruv == 0) {
2908                 /* Disallow 0bbb0b0bbb... */
2909                 seenb = TRUE;
2910                 continue;
2911             }
2912             else {
2913                 dTHR;
2914                 if (ckWARN(WARN_DIGIT))
2915                     Perl_warner(aTHX_ WARN_DIGIT,
2916                                 "Illegal binary digit '%c' ignored", *s);
2917                 break;
2918             }
2919         }
2920         if (!overflowed) {
2921             register UV xuv = ruv << 1;
2922
2923             if ((xuv >> 1) != ruv) {
2924                 dTHR;
2925                 overflowed = TRUE;
2926                 rnv = (NV) ruv;
2927                 if (ckWARN_d(WARN_OVERFLOW))
2928                     Perl_warner(aTHX_ WARN_OVERFLOW,
2929                                 "Integer overflow in binary number");
2930             }
2931             else
2932                 ruv = xuv | (*s - '0');
2933         }
2934         if (overflowed) {
2935             rnv *= 2;
2936             /* If an NV has not enough bits in its mantissa to
2937              * represent an UV this summing of small low-order numbers
2938              * is a waste of time (because the NV cannot preserve
2939              * the low-order bits anyway): we could just remember when
2940              * did we overflow and in the end just multiply rnv by the
2941              * right amount. */
2942             rnv += (*s - '0');
2943         }
2944     }
2945     if (!overflowed)
2946         rnv = (NV) ruv;
2947     if (   ( overflowed && rnv > 4294967295.0)
2948 #if UVSIZE > 4
2949         || (!overflowed && ruv > 0xffffffff  )
2950 #endif
2951         ) { 
2952         dTHR;
2953         if (ckWARN(WARN_PORTABLE))
2954             Perl_warner(aTHX_ WARN_PORTABLE,
2955                         "Binary number > 0b11111111111111111111111111111111 non-portable");
2956     }
2957     *retlen = s - start;
2958     return rnv;
2959 }
2960
2961 NV
2962 Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen)
2963 {
2964     register char *s = start;
2965     register NV rnv = 0.0;
2966     register UV ruv = 0;
2967     register bool overflowed = FALSE;
2968
2969     for (; len-- && *s; s++) {
2970         if (!(*s >= '0' && *s <= '7')) {
2971             if (*s == '_' && len && *retlen
2972                 && (s[1] >= '0' && s[1] <= '7'))
2973             {
2974                 --len;
2975                 ++s;
2976             }
2977             else {
2978                 /* Allow \octal to work the DWIM way (that is, stop scanning
2979                  * as soon as non-octal characters are seen, complain only iff
2980                  * someone seems to want to use the digits eight and nine). */
2981                 if (*s == '8' || *s == '9') {
2982                     dTHR;
2983                     if (ckWARN(WARN_DIGIT))
2984                         Perl_warner(aTHX_ WARN_DIGIT,
2985                                     "Illegal octal digit '%c' ignored", *s);
2986                 }
2987                 break;
2988             }
2989         }
2990         if (!overflowed) {
2991             register UV xuv = ruv << 3;
2992
2993             if ((xuv >> 3) != ruv) {
2994                 dTHR;
2995                 overflowed = TRUE;
2996                 rnv = (NV) ruv;
2997                 if (ckWARN_d(WARN_OVERFLOW))
2998                     Perl_warner(aTHX_ WARN_OVERFLOW,
2999                                 "Integer overflow in octal number");
3000             }
3001             else
3002                 ruv = xuv | (*s - '0');
3003         }
3004         if (overflowed) {
3005             rnv *= 8.0;
3006             /* If an NV has not enough bits in its mantissa to
3007              * represent an UV this summing of small low-order numbers
3008              * is a waste of time (because the NV cannot preserve
3009              * the low-order bits anyway): we could just remember when
3010              * did we overflow and in the end just multiply rnv by the
3011              * right amount of 8-tuples. */
3012             rnv += (NV)(*s - '0');
3013         }
3014     }
3015     if (!overflowed)
3016         rnv = (NV) ruv;
3017     if (   ( overflowed && rnv > 4294967295.0)
3018 #if UVSIZE > 4
3019         || (!overflowed && ruv > 0xffffffff  )
3020 #endif
3021         ) {
3022         dTHR;
3023         if (ckWARN(WARN_PORTABLE))
3024             Perl_warner(aTHX_ WARN_PORTABLE,
3025                         "Octal number > 037777777777 non-portable");
3026     }
3027     *retlen = s - start;
3028     return rnv;
3029 }
3030
3031 NV
3032 Perl_scan_hex(pTHX_ char *start, I32 len, I32 *retlen)
3033 {
3034     register char *s = start;
3035     register NV rnv = 0.0;
3036     register UV ruv = 0;
3037     register bool seenx = FALSE;
3038     register bool overflowed = FALSE;
3039     char *hexdigit;
3040
3041     for (; len-- && *s; s++) {
3042         hexdigit = strchr((char *) PL_hexdigit, *s);
3043         if (!hexdigit) {
3044             if (*s == '_' && len && *retlen && s[1]
3045                 && (hexdigit = strchr((char *) PL_hexdigit, s[1])))
3046             {
3047                 --len;
3048                 ++s;
3049             }
3050             else if (seenx == FALSE && *s == 'x' && ruv == 0) {
3051                 /* Disallow 0xxx0x0xxx... */
3052                 seenx = TRUE;
3053                 continue;
3054             }
3055             else {
3056                 dTHR;
3057                 if (ckWARN(WARN_DIGIT))
3058                     Perl_warner(aTHX_ WARN_DIGIT,
3059                                 "Illegal hexadecimal digit '%c' ignored", *s);
3060                 break;
3061             }
3062         }
3063         if (!overflowed) {
3064             register UV xuv = ruv << 4;
3065
3066             if ((xuv >> 4) != ruv) {
3067                 dTHR;
3068                 overflowed = TRUE;
3069                 rnv = (NV) ruv;
3070                 if (ckWARN_d(WARN_OVERFLOW))
3071                     Perl_warner(aTHX_ WARN_OVERFLOW,
3072                                 "Integer overflow in hexadecimal number");
3073             }
3074             else
3075                 ruv = xuv | ((hexdigit - PL_hexdigit) & 15);
3076         }
3077         if (overflowed) {
3078             rnv *= 16.0;
3079             /* If an NV has not enough bits in its mantissa to
3080              * represent an UV this summing of small low-order numbers
3081              * is a waste of time (because the NV cannot preserve
3082              * the low-order bits anyway): we could just remember when
3083              * did we overflow and in the end just multiply rnv by the
3084              * right amount of 16-tuples. */
3085             rnv += (NV)((hexdigit - PL_hexdigit) & 15);
3086         }
3087     }
3088     if (!overflowed)
3089         rnv = (NV) ruv;
3090     if (   ( overflowed && rnv > 4294967295.0)
3091 #if UVSIZE > 4
3092         || (!overflowed && ruv > 0xffffffff  )
3093 #endif
3094         ) { 
3095         dTHR;
3096         if (ckWARN(WARN_PORTABLE))
3097             Perl_warner(aTHX_ WARN_PORTABLE,
3098                         "Hexadecimal number > 0xffffffff non-portable");
3099     }
3100     *retlen = s - start;
3101     return rnv;
3102 }
3103
3104 char*
3105 Perl_find_script(pTHX_ char *scriptname, bool dosearch, char **search_ext, I32 flags)
3106 {
3107     dTHR;
3108     char *xfound = Nullch;
3109     char *xfailed = Nullch;
3110     char tmpbuf[MAXPATHLEN];
3111     register char *s;
3112     I32 len;
3113     int retval;
3114 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
3115 #  define SEARCH_EXTS ".bat", ".cmd", NULL
3116 #  define MAX_EXT_LEN 4
3117 #endif
3118 #ifdef OS2
3119 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
3120 #  define MAX_EXT_LEN 4
3121 #endif
3122 #ifdef VMS
3123 #  define SEARCH_EXTS ".pl", ".com", NULL
3124 #  define MAX_EXT_LEN 4
3125 #endif
3126     /* additional extensions to try in each dir if scriptname not found */
3127 #ifdef SEARCH_EXTS
3128     char *exts[] = { SEARCH_EXTS };
3129     char **ext = search_ext ? search_ext : exts;
3130     int extidx = 0, i = 0;
3131     char *curext = Nullch;
3132 #else
3133 #  define MAX_EXT_LEN 0
3134 #endif
3135
3136     /*
3137      * If dosearch is true and if scriptname does not contain path
3138      * delimiters, search the PATH for scriptname.
3139      *
3140      * If SEARCH_EXTS is also defined, will look for each
3141      * scriptname{SEARCH_EXTS} whenever scriptname is not found
3142      * while searching the PATH.
3143      *
3144      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
3145      * proceeds as follows:
3146      *   If DOSISH or VMSISH:
3147      *     + look for ./scriptname{,.foo,.bar}
3148      *     + search the PATH for scriptname{,.foo,.bar}
3149      *
3150      *   If !DOSISH:
3151      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
3152      *       this will not look in '.' if it's not in the PATH)
3153      */
3154     tmpbuf[0] = '\0';
3155
3156 #ifdef VMS
3157 #  ifdef ALWAYS_DEFTYPES
3158     len = strlen(scriptname);
3159     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
3160         int hasdir, idx = 0, deftypes = 1;
3161         bool seen_dot = 1;
3162
3163         hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
3164 #  else
3165     if (dosearch) {
3166         int hasdir, idx = 0, deftypes = 1;
3167         bool seen_dot = 1;
3168
3169         hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
3170 #  endif
3171         /* The first time through, just add SEARCH_EXTS to whatever we
3172          * already have, so we can check for default file types. */
3173         while (deftypes ||
3174                (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
3175         {
3176             if (deftypes) {
3177                 deftypes = 0;
3178                 *tmpbuf = '\0';
3179             }
3180             if ((strlen(tmpbuf) + strlen(scriptname)
3181                  + MAX_EXT_LEN) >= sizeof tmpbuf)
3182                 continue;       /* don't search dir with too-long name */
3183             strcat(tmpbuf, scriptname);
3184 #else  /* !VMS */
3185
3186 #ifdef DOSISH
3187     if (strEQ(scriptname, "-"))
3188         dosearch = 0;
3189     if (dosearch) {             /* Look in '.' first. */
3190         char *cur = scriptname;
3191 #ifdef SEARCH_EXTS
3192         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
3193             while (ext[i])
3194                 if (strEQ(ext[i++],curext)) {
3195                     extidx = -1;                /* already has an ext */
3196                     break;
3197                 }
3198         do {
3199 #endif
3200             DEBUG_p(PerlIO_printf(Perl_debug_log,
3201                                   "Looking for %s\n",cur));
3202             if (PerlLIO_stat(cur,&PL_statbuf) >= 0
3203                 && !S_ISDIR(PL_statbuf.st_mode)) {
3204                 dosearch = 0;
3205                 scriptname = cur;
3206 #ifdef SEARCH_EXTS
3207                 break;
3208 #endif
3209             }
3210 #ifdef SEARCH_EXTS
3211             if (cur == scriptname) {
3212                 len = strlen(scriptname);
3213                 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
3214                     break;
3215                 cur = strcpy(tmpbuf, scriptname);
3216             }
3217         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
3218                  && strcpy(tmpbuf+len, ext[extidx++]));
3219 #endif
3220     }
3221 #endif
3222
3223 #ifdef MACOS_TRADITIONAL
3224     if (dosearch && !strchr(scriptname, ':') &&
3225         (s = PerlEnv_getenv("Commands")))
3226 #else
3227     if (dosearch && !strchr(scriptname, '/')
3228 #ifdef DOSISH
3229                  && !strchr(scriptname, '\\')
3230 #endif
3231                  && (s = PerlEnv_getenv("PATH")))
3232 #endif
3233     {
3234         bool seen_dot = 0;
3235         
3236         PL_bufend = s + strlen(s);
3237         while (s < PL_bufend) {
3238 #ifdef MACOS_TRADITIONAL
3239             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3240                         ',',
3241                         &len);
3242 #else
3243 #if defined(atarist) || defined(DOSISH)
3244             for (len = 0; *s
3245 #  ifdef atarist
3246                     && *s != ','
3247 #  endif
3248                     && *s != ';'; len++, s++) {
3249                 if (len < sizeof tmpbuf)
3250                     tmpbuf[len] = *s;
3251             }
3252             if (len < sizeof tmpbuf)
3253                 tmpbuf[len] = '\0';
3254 #else  /* ! (atarist || DOSISH) */
3255             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
3256                         ':',
3257                         &len);
3258 #endif /* ! (atarist || DOSISH) */
3259 #endif /* MACOS_TRADITIONAL */
3260             if (s < PL_bufend)
3261                 s++;
3262             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
3263                 continue;       /* don't search dir with too-long name */
3264 #ifdef MACOS_TRADITIONAL
3265             if (len && tmpbuf[len - 1] != ':')
3266                 tmpbuf[len++] = ':';
3267 #else
3268             if (len
3269 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
3270                 && tmpbuf[len - 1] != '/'
3271                 && tmpbuf[len - 1] != '\\'
3272 #endif
3273                )
3274                 tmpbuf[len++] = '/';
3275             if (len == 2 && tmpbuf[0] == '.')
3276                 seen_dot = 1;
3277 #endif
3278             (void)strcpy(tmpbuf + len, scriptname);
3279 #endif  /* !VMS */
3280
3281 #ifdef SEARCH_EXTS
3282             len = strlen(tmpbuf);
3283             if (extidx > 0)     /* reset after previous loop */
3284                 extidx = 0;
3285             do {
3286 #endif
3287                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
3288                 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
3289                 if (S_ISDIR(PL_statbuf.st_mode)) {
3290                     retval = -1;
3291                 }
3292 #ifdef SEARCH_EXTS
3293             } while (  retval < 0               /* not there */
3294                     && extidx>=0 && ext[extidx] /* try an extension? */
3295                     && strcpy(tmpbuf+len, ext[extidx++])
3296                 );
3297 #endif
3298             if (retval < 0)
3299                 continue;
3300             if (S_ISREG(PL_statbuf.st_mode)
3301                 && cando(S_IRUSR,TRUE,&PL_statbuf)
3302 #if !defined(DOSISH) && !defined(MACOS_TRADITIONAL)
3303                 && cando(S_IXUSR,TRUE,&PL_statbuf)
3304 #endif
3305                 )
3306             {
3307                 xfound = tmpbuf;              /* bingo! */
3308                 break;
3309             }
3310             if (!xfailed)
3311                 xfailed = savepv(tmpbuf);
3312         }
3313 #ifndef DOSISH
3314         if (!xfound && !seen_dot && !xfailed &&
3315             (PerlLIO_stat(scriptname,&PL_statbuf) < 0 
3316              || S_ISDIR(PL_statbuf.st_mode)))
3317 #endif
3318             seen_dot = 1;                       /* Disable message. */
3319         if (!xfound) {
3320             if (flags & 1) {                    /* do or die? */
3321                 Perl_croak(aTHX_ "Can't %s %s%s%s",
3322                       (xfailed ? "execute" : "find"),
3323                       (xfailed ? xfailed : scriptname),
3324                       (xfailed ? "" : " on PATH"),
3325                       (xfailed || seen_dot) ? "" : ", '.' not in PATH");
3326             }
3327             scriptname = Nullch;
3328         }
3329         if (xfailed)
3330             Safefree(xfailed);
3331         scriptname = xfound;
3332     }
3333     return (scriptname ? savepv(scriptname) : Nullch);
3334 }
3335
3336 #ifndef PERL_GET_CONTEXT_DEFINED
3337
3338 void *
3339 Perl_get_context(void)
3340 {
3341 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3342 #  ifdef OLD_PTHREADS_API
3343     pthread_addr_t t;
3344     if (pthread_getspecific(PL_thr_key, &t))
3345         Perl_croak_nocontext("panic: pthread_getspecific");
3346     return (void*)t;
3347 #  else
3348 #  ifdef I_MACH_CTHREADS
3349     return (void*)cthread_data(cthread_self());
3350 #  else
3351     return (void*)pthread_getspecific(PL_thr_key);
3352 #  endif
3353 #  endif
3354 #else
3355     return (void*)NULL;
3356 #endif
3357 }
3358
3359 void
3360 Perl_set_context(void *t)
3361 {
3362 #if defined(USE_THREADS) || defined(USE_ITHREADS)
3363 #  ifdef I_MACH_CTHREADS
3364     cthread_set_data(cthread_self(), t);
3365 #  else
3366     if (pthread_setspecific(PL_thr_key, t))
3367         Perl_croak_nocontext("panic: pthread_setspecific");
3368 #  endif
3369 #endif
3370 }
3371
3372 #endif /* !PERL_GET_CONTEXT_DEFINED */
3373
3374 #ifdef USE_THREADS
3375
3376 #ifdef FAKE_THREADS
3377 /* Very simplistic scheduler for now */
3378 void
3379 schedule(void)
3380 {
3381     thr = thr->i.next_run;
3382 }
3383
3384 void
3385 Perl_cond_init(pTHX_ perl_cond *cp)
3386 {
3387     *cp = 0;
3388 }
3389
3390 void
3391 Perl_cond_signal(pTHX_ perl_cond *cp)
3392 {
3393     perl_os_thread t;
3394     perl_cond cond = *cp;
3395     
3396     if (!cond)
3397         return;
3398     t = cond->thread;
3399     /* Insert t in the runnable queue just ahead of us */
3400     t->i.next_run = thr->i.next_run;
3401     thr->i.next_run->i.prev_run = t;
3402     t->i.prev_run = thr;
3403     thr->i.next_run = t;
3404     thr->i.wait_queue = 0;
3405     /* Remove from the wait queue */
3406     *cp = cond->next;
3407     Safefree(cond);
3408 }
3409
3410 void
3411 Perl_cond_broadcast(pTHX_ perl_cond *cp)
3412 {
3413     perl_os_thread t;
3414     perl_cond cond, cond_next;
3415     
3416     for (cond = *cp; cond; cond = cond_next) {
3417         t = cond->thread;
3418         /* Insert t in the runnable queue just ahead of us */
3419         t->i.next_run = thr->i.next_run;
3420         thr->i.next_run->i.prev_run = t;
3421         t->i.prev_run = thr;
3422         thr->i.next_run = t;
3423         thr->i.wait_queue = 0;
3424         /* Remove from the wait queue */
3425         cond_next = cond->next;
3426         Safefree(cond);
3427     }
3428     *cp = 0;
3429 }
3430
3431 void
3432 Perl_cond_wait(pTHX_ perl_cond *cp)
3433 {
3434     perl_cond cond;
3435
3436     if (thr->i.next_run == thr)
3437         Perl_croak(aTHX_ "panic: perl_cond_wait called by last runnable thread");
3438     
3439     New(666, cond, 1, struct perl_wait_queue);
3440     cond->thread = thr;
3441     cond->next = *cp;
3442     *cp = cond;
3443     thr->i.wait_queue = cond;
3444     /* Remove ourselves from runnable queue */
3445     thr->i.next_run->i.prev_run = thr->i.prev_run;
3446     thr->i.prev_run->i.next_run = thr->i.next_run;
3447 }
3448 #endif /* FAKE_THREADS */
3449
3450 MAGIC *
3451 Perl_condpair_magic(pTHX_ SV *sv)
3452 {
3453     MAGIC *mg;
3454     
3455     SvUPGRADE(sv, SVt_PVMG);
3456     mg = mg_find(sv, 'm');
3457     if (!mg) {
3458         condpair_t *cp;
3459
3460         New(53, cp, 1, condpair_t);
3461         MUTEX_INIT(&cp->mutex);
3462         COND_INIT(&cp->owner_cond);
3463         COND_INIT(&cp->cond);
3464         cp->owner = 0;
3465         LOCK_CRED_MUTEX;                /* XXX need separate mutex? */
3466         mg = mg_find(sv, 'm');
3467         if (mg) {
3468             /* someone else beat us to initialising it */
3469             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3470             MUTEX_DESTROY(&cp->mutex);
3471             COND_DESTROY(&cp->owner_cond);
3472             COND_DESTROY(&cp->cond);
3473             Safefree(cp);
3474         }
3475         else {
3476             sv_magic(sv, Nullsv, 'm', 0, 0);
3477             mg = SvMAGIC(sv);
3478             mg->mg_ptr = (char *)cp;
3479             mg->mg_len = sizeof(cp);
3480             UNLOCK_CRED_MUTEX;          /* XXX need separate mutex? */
3481             DEBUG_S(WITH_THR(PerlIO_printf(Perl_debug_log,
3482                                            "%p: condpair_magic %p\n", thr, sv));)
3483         }
3484     }
3485     return mg;
3486 }
3487
3488 /*
3489  * Make a new perl thread structure using t as a prototype. Some of the
3490  * fields for the new thread are copied from the prototype thread, t,
3491  * so t should not be running in perl at the time this function is
3492  * called. The use by ext/Thread/Thread.xs in core perl (where t is the
3493  * thread calling new_struct_thread) clearly satisfies this constraint.
3494  */
3495 struct perl_thread *
3496 Perl_new_struct_thread(pTHX_ struct perl_thread *t)
3497 {
3498 #if !defined(PERL_IMPLICIT_CONTEXT)
3499     struct perl_thread *thr;
3500 #endif
3501     SV *sv;
3502     SV **svp;
3503     I32 i;
3504
3505     sv = newSVpvn("", 0);
3506     SvGROW(sv, sizeof(struct perl_thread) + 1);
3507     SvCUR_set(sv, sizeof(struct perl_thread));
3508     thr = (Thread) SvPVX(sv);
3509 #ifdef DEBUGGING
3510     memset(thr, 0xab, sizeof(struct perl_thread));
3511     PL_markstack = 0;
3512     PL_scopestack = 0;
3513     PL_savestack = 0;
3514     PL_retstack = 0;
3515     PL_dirty = 0;
3516     PL_localizing = 0;
3517     Zero(&PL_hv_fetch_ent_mh, 1, HE);
3518 #else
3519     Zero(thr, 1, struct perl_thread);
3520 #endif
3521
3522     thr->oursv = sv;
3523     init_stacks();
3524
3525     PL_curcop = &PL_compiling;
3526     thr->interp = t->interp;
3527     thr->cvcache = newHV();
3528     thr->threadsv = newAV();
3529     thr->specific = newAV();
3530     thr->errsv = newSVpvn("", 0);
3531     thr->flags = THRf_R_JOINABLE;
3532     MUTEX_INIT(&thr->mutex);
3533
3534     JMPENV_BOOTSTRAP;
3535
3536     PL_in_eval = EVAL_NULL;     /* ~(EVAL_INEVAL|EVAL_WARNONLY|EVAL_KEEPERR) */
3537     PL_restartop = 0;
3538
3539     PL_statname = NEWSV(66,0);
3540     PL_errors = newSVpvn("", 0);
3541     PL_maxscream = -1;
3542     PL_regcompp = MEMBER_TO_FPTR(Perl_pregcomp);
3543     PL_regexecp = MEMBER_TO_FPTR(Perl_regexec_flags);
3544     PL_regint_start = MEMBER_TO_FPTR(Perl_re_intuit_start);
3545     PL_regint_string = MEMBER_TO_FPTR(Perl_re_intuit_string);
3546     PL_regfree = MEMBER_TO_FPTR(Perl_pregfree);
3547     PL_regindent = 0;
3548     PL_reginterp_cnt = 0;
3549     PL_lastscream = Nullsv;
3550     PL_screamfirst = 0;
3551     PL_screamnext = 0;
3552     PL_reg_start_tmp = 0;
3553     PL_reg_start_tmpl = 0;
3554     PL_reg_poscache = Nullch;
3555
3556     /* parent thread's data needs to be locked while we make copy */
3557     MUTEX_LOCK(&t->mutex);
3558
3559 #ifdef PERL_FLEXIBLE_EXCEPTIONS
3560     PL_protect = t->Tprotect;
3561 #endif
3562
3563     PL_curcop = t->Tcurcop;       /* XXX As good a guess as any? */
3564     PL_defstash = t->Tdefstash;   /* XXX maybe these should */
3565     PL_curstash = t->Tcurstash;   /* always be set to main? */
3566
3567     PL_tainted = t->Ttainted;
3568     PL_curpm = t->Tcurpm;         /* XXX No PMOP ref count */
3569     PL_nrs = newSVsv(t->Tnrs);
3570     PL_rs = SvREFCNT_inc(PL_nrs);
3571     PL_last_in_gv = Nullgv;
3572     PL_ofslen = t->Tofslen;
3573     PL_ofs = savepvn(t->Tofs, PL_ofslen);
3574     PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
3575     PL_chopset = t->Tchopset;
3576     PL_bodytarget = newSVsv(t->Tbodytarget);
3577     PL_toptarget = newSVsv(t->Ttoptarget);
3578     if (t->Tformtarget == t->Ttoptarget)
3579         PL_formtarget = PL_toptarget;
3580     else
3581         PL_formtarget = PL_bodytarget;
3582
3583     /* Initialise all per-thread SVs that the template thread used */
3584     svp = AvARRAY(t->threadsv);
3585     for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3586         if (*svp && *svp != &PL_sv_undef) {
3587             SV *sv = newSVsv(*svp);
3588             av_store(thr->threadsv, i, sv);
3589             sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3590             DEBUG_S(PerlIO_printf(Perl_debug_log,
3591                 "new_struct_thread: copied threadsv %"IVdf" %p->%p\n",
3592                                   (IV)i, t, thr));
3593         }
3594     } 
3595     thr->threadsvp = AvARRAY(thr->threadsv);
3596
3597     MUTEX_LOCK(&PL_threads_mutex);
3598     PL_nthreads++;
3599     thr->tid = ++PL_threadnum;
3600     thr->next = t->next;
3601     thr->prev = t;
3602     t->next = thr;
3603     thr->next->prev = thr;
3604     MUTEX_UNLOCK(&PL_threads_mutex);
3605
3606     /* done copying parent's state */
3607     MUTEX_UNLOCK(&t->mutex);
3608
3609 #ifdef HAVE_THREAD_INTERN
3610     Perl_init_thread_intern(thr);
3611 #endif /* HAVE_THREAD_INTERN */
3612     return thr;
3613 }
3614 #endif /* USE_THREADS */
3615
3616 #if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
3617 /*
3618  * This hack is to force load of "huge" support from libm.a
3619  * So it is in perl for (say) POSIX to use. 
3620  * Needed for SunOS with Sun's 'acc' for example.
3621  */
3622 NV 
3623 Perl_huge(void)
3624 {
3625 #   if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3626     return HUGE_VALL;
3627 #   endif
3628     return HUGE_VAL;
3629 }
3630 #endif
3631
3632 #ifdef PERL_GLOBAL_STRUCT
3633 struct perl_vars *
3634 Perl_GetVars(pTHX)
3635 {
3636  return &PL_Vars;
3637 }
3638 #endif
3639
3640 char **
3641 Perl_get_op_names(pTHX)
3642 {
3643  return PL_op_name;
3644 }
3645
3646 char **
3647 Perl_get_op_descs(pTHX)
3648 {
3649  return PL_op_desc;
3650 }
3651
3652 char *
3653 Perl_get_no_modify(pTHX)
3654 {
3655  return (char*)PL_no_modify;
3656 }
3657
3658 U32 *
3659 Perl_get_opargs(pTHX)
3660 {
3661  return PL_opargs;
3662 }
3663
3664 PPADDR_t*
3665 Perl_get_ppaddr(pTHX)
3666 {
3667  return (PPADDR_t*)PL_ppaddr;
3668 }
3669
3670 #ifndef HAS_GETENV_LEN
3671 char *
3672 Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len)
3673 {
3674     char *env_trans = PerlEnv_getenv(env_elem);
3675     if (env_trans)
3676         *len = strlen(env_trans);
3677     return env_trans;
3678 }
3679 #endif
3680
3681
3682 MGVTBL*
3683 Perl_get_vtbl(pTHX_ int vtbl_id)
3684 {
3685     MGVTBL* result = Null(MGVTBL*);
3686
3687     switch(vtbl_id) {
3688     case want_vtbl_sv:
3689         result = &PL_vtbl_sv;
3690         break;
3691     case want_vtbl_env:
3692         result = &PL_vtbl_env;
3693         break;
3694     case want_vtbl_envelem:
3695         result = &PL_vtbl_envelem;
3696         break;
3697     case want_vtbl_sig:
3698         result = &PL_vtbl_sig;
3699         break;
3700     case want_vtbl_sigelem:
3701         result = &PL_vtbl_sigelem;
3702         break;
3703     case want_vtbl_pack:
3704         result = &PL_vtbl_pack;
3705         break;
3706     case want_vtbl_packelem:
3707         result = &PL_vtbl_packelem;
3708         break;
3709     case want_vtbl_dbline:
3710         result = &PL_vtbl_dbline;
3711         break;
3712     case want_vtbl_isa:
3713         result = &PL_vtbl_isa;
3714         break;
3715     case want_vtbl_isaelem:
3716         result = &PL_vtbl_isaelem;
3717         break;
3718     case want_vtbl_arylen:
3719         result = &PL_vtbl_arylen;
3720         break;
3721     case want_vtbl_glob:
3722         result = &PL_vtbl_glob;
3723         break;
3724     case want_vtbl_mglob:
3725         result = &PL_vtbl_mglob;
3726         break;
3727     case want_vtbl_nkeys:
3728         result = &PL_vtbl_nkeys;
3729         break;
3730     case want_vtbl_taint:
3731         result = &PL_vtbl_taint;
3732         break;
3733     case want_vtbl_substr:
3734         result = &PL_vtbl_substr;
3735         break;
3736     case want_vtbl_vec:
3737         result = &PL_vtbl_vec;
3738         break;
3739     case want_vtbl_pos:
3740         result = &PL_vtbl_pos;
3741         break;
3742     case want_vtbl_bm:
3743         result = &PL_vtbl_bm;
3744         break;
3745     case want_vtbl_fm:
3746         result = &PL_vtbl_fm;
3747         break;
3748     case want_vtbl_uvar:
3749         result = &PL_vtbl_uvar;
3750         break;
3751 #ifdef USE_THREADS
3752     case want_vtbl_mutex:
3753         result = &PL_vtbl_mutex;
3754         break;
3755 #endif
3756     case want_vtbl_defelem:
3757         result = &PL_vtbl_defelem;
3758         break;
3759     case want_vtbl_regexp:
3760         result = &PL_vtbl_regexp;
3761         break;
3762     case want_vtbl_regdata:
3763         result = &PL_vtbl_regdata;
3764         break;
3765     case want_vtbl_regdatum:
3766         result = &PL_vtbl_regdatum;
3767         break;
3768 #ifdef USE_LOCALE_COLLATE
3769     case want_vtbl_collxfrm:
3770         result = &PL_vtbl_collxfrm;
3771         break;
3772 #endif
3773     case want_vtbl_amagic:
3774         result = &PL_vtbl_amagic;
3775         break;
3776     case want_vtbl_amagicelem:
3777         result = &PL_vtbl_amagicelem;
3778         break;
3779     case want_vtbl_backref:
3780         result = &PL_vtbl_backref;
3781         break;
3782     }
3783     return result;
3784 }
3785
3786 I32
3787 Perl_my_fflush_all(pTHX)
3788 {
3789 #ifdef FFLUSH_NULL
3790     return PerlIO_flush(NULL);
3791 #else
3792     long open_max = -1;
3793 # if defined(FFLUSH_ALL) && defined(HAS_STDIO_STREAM_ARRAY)
3794 #  ifdef PERL_FFLUSH_ALL_FOPEN_MAX
3795     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
3796 #  else
3797 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3798     open_max = sysconf(_SC_OPEN_MAX);
3799 #  else
3800 #   ifdef FOPEN_MAX
3801     open_max = FOPEN_MAX;
3802 #   else
3803 #    ifdef OPEN_MAX
3804     open_max = OPEN_MAX;
3805 #    else
3806 #     ifdef _NFILE
3807     open_max = _NFILE;
3808 #     endif
3809 #    endif
3810 #   endif
3811 #  endif
3812 #  endif
3813     if (open_max > 0) {
3814       long i;
3815       for (i = 0; i < open_max; i++)
3816             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
3817                 STDIO_STREAM_ARRAY[i]._file < open_max &&
3818                 STDIO_STREAM_ARRAY[i]._flag)
3819                 PerlIO_flush(&STDIO_STREAM_ARRAY[i]);
3820       return 0;
3821     }
3822 # endif
3823     SETERRNO(EBADF,RMS$_IFI);
3824     return EOF;
3825 #endif
3826 }
3827
3828 NV
3829 Perl_my_atof(pTHX_ const char* s)
3830 {
3831 #ifdef USE_LOCALE_NUMERIC
3832     if ((PL_hints & HINT_LOCALE) && PL_numeric_local) {
3833         NV x, y;
3834
3835         x = Perl_atof(s);
3836         SET_NUMERIC_STANDARD();
3837         y = Perl_atof(s);
3838         SET_NUMERIC_LOCAL();
3839         if ((y < 0.0 && y < x) || (y > 0.0 && y > x))
3840             return y;
3841         return x;
3842     }
3843     else
3844         return Perl_atof(s);
3845 #else
3846     return Perl_atof(s);
3847 #endif
3848 }
3849
3850 void
3851 Perl_report_closed_fh(pTHX_ GV *gv, IO *io, const char *func, const char *obj)
3852 {
3853     SV *sv;
3854     char *name;
3855
3856     assert(gv);
3857
3858     sv = sv_newmortal();
3859     gv_efullname3(sv, gv, Nullch);
3860     name = SvPVX(sv);
3861
3862     Perl_warner(aTHX_ WARN_CLOSED, "%s() on closed %s %s", func, obj, name);
3863
3864     if (io && IoDIRP(io))
3865         Perl_warner(aTHX_ WARN_CLOSED,
3866                     "\t(Are you trying to call %s() on dirhandle %s?)\n",
3867                     func, name);
3868 }