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