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