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