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