Efficiency patchlet for pp_aassign()
[p5sagit/p5-mst-13.2.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-1994, 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 #include "perl.h"
17
18 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
19 #include <signal.h>
20 #endif
21
22 #ifndef SIG_ERR
23 # define SIG_ERR ((Sighandler_t) -1)
24 #endif
25
26 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
27 #ifdef I_UNISTD
28 #  include <unistd.h>
29 #endif
30
31 #ifdef I_VFORK
32 #  include <vfork.h>
33 #endif
34
35 /* Put this after #includes because fork and vfork prototypes may
36    conflict.
37 */
38 #ifndef HAS_VFORK
39 #   define vfork fork
40 #endif
41
42 #ifdef I_FCNTL
43 #  include <fcntl.h>
44 #endif
45 #ifdef I_SYS_FILE
46 #  include <sys/file.h>
47 #endif
48
49 #ifdef I_SYS_WAIT
50 #  include <sys/wait.h>
51 #endif
52
53 #define FLUSH
54
55 #ifdef LEAKTEST
56 static void xstat _((void));
57 #endif
58
59 #ifndef MYMALLOC
60
61 /* paranoid version of malloc */
62
63 /* NOTE:  Do not call the next three routines directly.  Use the macros
64  * in handy.h, so that we can easily redefine everything to do tracking of
65  * allocated hunks back to the original New to track down any memory leaks.
66  * XXX This advice seems to be widely ignored :-(   --AD  August 1996.
67  */
68
69 Malloc_t
70 safemalloc(size)
71 MEM_SIZE size;
72 {
73     Malloc_t ptr;
74 #ifdef HAS_64K_LIMIT
75         if (size > 0xffff) {
76                 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
77                 my_exit(1);
78         }
79 #endif /* HAS_64K_LIMIT */
80 #ifdef DEBUGGING
81     if ((long)size < 0)
82         croak("panic: malloc");
83 #endif
84     ptr = malloc(size?size:1);  /* malloc(0) is NASTY on our system */
85 #if !(defined(I286) || defined(atarist))
86     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
87 #else
88     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,an++,(long)size));
89 #endif
90     if (ptr != Nullch)
91         return ptr;
92     else if (nomemok)
93         return Nullch;
94     else {
95         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
96         my_exit(1);
97     }
98     /*NOTREACHED*/
99 }
100
101 /* paranoid version of realloc */
102
103 Malloc_t
104 saferealloc(where,size)
105 Malloc_t where;
106 MEM_SIZE size;
107 {
108     Malloc_t ptr;
109 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
110     Malloc_t realloc();
111 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
112
113 #ifdef HAS_64K_LIMIT 
114     if (size > 0xffff) {
115         PerlIO_printf(PerlIO_stderr(),
116                       "Reallocation too large: %lx\n", size) FLUSH;
117         my_exit(1);
118     }
119 #endif /* HAS_64K_LIMIT */
120     if (!where)
121         croak("Null realloc");
122 #ifdef DEBUGGING
123     if ((long)size < 0)
124         croak("panic: realloc");
125 #endif
126     ptr = realloc(where,size?size:1);   /* realloc(0) is NASTY on our system */
127
128 #if !(defined(I286) || defined(atarist))
129     DEBUG_m( {
130         PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,an++);
131         PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
132     } )
133 #else
134     DEBUG_m( {
135         PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,an++);
136         PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,an++,(long)size);
137     } )
138 #endif
139
140     if (ptr != Nullch)
141         return ptr;
142     else if (nomemok)
143         return Nullch;
144     else {
145         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
146         my_exit(1);
147     }
148     /*NOTREACHED*/
149 }
150
151 /* safe version of free */
152
153 void
154 safefree(where)
155 Malloc_t where;
156 {
157 #if !(defined(I286) || defined(atarist))
158     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",where,an++));
159 #else
160     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",where,an++));
161 #endif
162     if (where) {
163         /*SUPPRESS 701*/
164         free(where);
165     }
166 }
167
168 /* safe version of calloc */
169
170 Malloc_t
171 safecalloc(count, size)
172 MEM_SIZE count;
173 MEM_SIZE size;
174 {
175     Malloc_t ptr;
176
177 #ifdef HAS_64K_LIMIT
178     if (size * count > 0xffff) {
179         PerlIO_printf(PerlIO_stderr(),
180                       "Allocation too large: %lx\n", size * count) FLUSH;
181         my_exit(1);
182     }
183 #endif /* HAS_64K_LIMIT */
184 #ifdef DEBUGGING
185     if ((long)size < 0 || (long)count < 0)
186         croak("panic: calloc");
187 #endif
188 #if !(defined(I286) || defined(atarist))
189     DEBUG_m(PerlIO_printf(PerlIO_stderr(), "0x%x: (%05d) calloc %ld  x %ld bytes\n",ptr,an++,(long)count,(long)size));
190 #else
191     DEBUG_m(PerlIO_printf(PerlIO_stderr(), "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,an++,(long)count,(long)size));
192 #endif
193     size *= count;
194     ptr = malloc(size?size:1);  /* malloc(0) is NASTY on our system */
195     if (ptr != Nullch) {
196         memset((void*)ptr, 0, size);
197         return ptr;
198     }
199     else if (nomemok)
200         return Nullch;
201     else {
202         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
203         my_exit(1);
204     }
205     /*NOTREACHED*/
206 }
207
208 #endif /* !MYMALLOC */
209
210 #ifdef LEAKTEST
211
212 #define ALIGN sizeof(long)
213
214 Malloc_t
215 safexmalloc(x,size)
216 I32 x;
217 MEM_SIZE size;
218 {
219     register Malloc_t where;
220
221     where = safemalloc(size + ALIGN);
222     xcount[x]++;
223     where[0] = x % 100;
224     where[1] = x / 100;
225     return where + ALIGN;
226 }
227
228 Malloc_t
229 safexrealloc(where,size)
230 Malloc_t where;
231 MEM_SIZE size;
232 {
233     register Malloc_t new = saferealloc(where - ALIGN, size + ALIGN);
234     return new + ALIGN;
235 }
236
237 void
238 safexfree(where)
239 Malloc_t where;
240 {
241     I32 x;
242
243     if (!where)
244         return;
245     where -= ALIGN;
246     x = where[0] + 100 * where[1];
247     xcount[x]--;
248     safefree(where);
249 }
250
251 Malloc_t
252 safexcalloc(x,count,size)
253 I32 x;
254 MEM_SIZE count;
255 MEM_SIZE size;
256 {
257     register Malloc_t where;
258
259     where = safexmalloc(x, size * count + ALIGN);
260     xcount[x]++;
261     memset((void*)where + ALIGN, 0, size * count);
262     where[0] = x % 100;
263     where[1] = x / 100;
264     return where + ALIGN;
265 }
266
267 static void
268 xstat()
269 {
270     register I32 i;
271
272     for (i = 0; i < MAXXCOUNT; i++) {
273         if (xcount[i] > lastxcount[i]) {
274             PerlIO_printf(PerlIO_stderr(),"%2d %2d\t%ld\n", i / 100, i % 100, xcount[i]);
275             lastxcount[i] = xcount[i];
276         }
277     }
278 }
279
280 #endif /* LEAKTEST */
281
282 /* copy a string up to some (non-backslashed) delimiter, if any */
283
284 char *
285 cpytill(to,from,fromend,delim,retlen)
286 register char *to;
287 register char *from;
288 register char *fromend;
289 register int delim;
290 I32 *retlen;
291 {
292     char *origto = to;
293
294     for (; from < fromend; from++,to++) {
295         if (*from == '\\') {
296             if (from[1] == delim)
297                 from++;
298             else if (from[1] == '\\')
299                 *to++ = *from++;
300         }
301         else if (*from == delim)
302             break;
303         *to = *from;
304     }
305     *to = '\0';
306     *retlen = to - origto;
307     return from;
308 }
309
310 /* return ptr to little string in big string, NULL if not found */
311 /* This routine was donated by Corey Satten. */
312
313 char *
314 instr(big, little)
315 register char *big;
316 register char *little;
317 {
318     register char *s, *x;
319     register I32 first;
320
321     if (!little)
322         return big;
323     first = *little++;
324     if (!first)
325         return big;
326     while (*big) {
327         if (*big++ != first)
328             continue;
329         for (x=big,s=little; *s; /**/ ) {
330             if (!*x)
331                 return Nullch;
332             if (*s++ != *x++) {
333                 s--;
334                 break;
335             }
336         }
337         if (!*s)
338             return big-1;
339     }
340     return Nullch;
341 }
342
343 /* same as instr but allow embedded nulls */
344
345 char *
346 ninstr(big, bigend, little, lend)
347 register char *big;
348 register char *bigend;
349 char *little;
350 char *lend;
351 {
352     register char *s, *x;
353     register I32 first = *little;
354     register char *littleend = lend;
355
356     if (!first && little >= littleend)
357         return big;
358     if (bigend - big < littleend - little)
359         return Nullch;
360     bigend -= littleend - little++;
361     while (big <= bigend) {
362         if (*big++ != first)
363             continue;
364         for (x=big,s=little; s < littleend; /**/ ) {
365             if (*s++ != *x++) {
366                 s--;
367                 break;
368             }
369         }
370         if (s >= littleend)
371             return big-1;
372     }
373     return Nullch;
374 }
375
376 /* reverse of the above--find last substring */
377
378 char *
379 rninstr(big, bigend, little, lend)
380 register char *big;
381 char *bigend;
382 char *little;
383 char *lend;
384 {
385     register char *bigbeg;
386     register char *s, *x;
387     register I32 first = *little;
388     register char *littleend = lend;
389
390     if (!first && little >= littleend)
391         return bigend;
392     bigbeg = big;
393     big = bigend - (littleend - little++);
394     while (big >= bigbeg) {
395         if (*big-- != first)
396             continue;
397         for (x=big+2,s=little; s < littleend; /**/ ) {
398             if (*s++ != *x++) {
399                 s--;
400                 break;
401             }
402         }
403         if (s >= littleend)
404             return big+1;
405     }
406     return Nullch;
407 }
408
409 /*
410  * Set up for a new ctype locale.
411  */
412 void
413 perl_new_ctype(newctype)
414     char *newctype;
415 {
416 #ifdef USE_LOCALE_CTYPE
417
418     int i;
419
420     for (i = 0; i < 256; i++) {
421         if (isUPPER_LC(i))
422             fold_locale[i] = toLOWER_LC(i);
423         else if (isLOWER_LC(i))
424             fold_locale[i] = toUPPER_LC(i);
425         else
426             fold_locale[i] = i;
427     }
428
429 #endif /* USE_LOCALE_CTYPE */
430 }
431
432 /*
433  * Set up for a new collation locale.
434  */
435 void
436 perl_new_collate(newcoll)
437     char *newcoll;
438 {
439 #ifdef USE_LOCALE_COLLATE
440
441     if (! newcoll) {
442         if (collation_name) {
443             ++collation_ix;
444             Safefree(collation_name);
445             collation_name = NULL;
446             collation_standard = TRUE;
447             collxfrm_base = 0;
448             collxfrm_mult = 2;
449         }
450         return;
451     }
452
453     if (! collation_name || strNE(collation_name, newcoll)) {
454         ++collation_ix;
455         Safefree(collation_name);
456         collation_name = savepv(newcoll);
457         collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
458
459         {
460           /*  2: at most so many chars ('a', 'b'). */
461           /* 50: surely no system expands a char more. */
462 #define XFRMBUFSIZE  (2 * 50)
463           char xbuf[XFRMBUFSIZE];
464           Size_t fa = strxfrm(xbuf, "a",  XFRMBUFSIZE);
465           Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
466           SSize_t mult = fb - fa;
467           if (mult < 1)
468               croak("strxfrm() gets absurd");
469           collxfrm_base = (fa > mult) ? (fa - mult) : 0;
470           collxfrm_mult = mult;
471         }
472     }
473
474 #endif /* USE_LOCALE_COLLATE */
475 }
476
477 /*
478  * Set up for a new numeric locale.
479  */
480 void
481 perl_new_numeric(newnum)
482     char *newnum;
483 {
484 #ifdef USE_LOCALE_NUMERIC
485
486     if (! newnum) {
487         if (numeric_name) {
488             Safefree(numeric_name);
489             numeric_name = NULL;
490             numeric_standard = TRUE;
491             numeric_local = TRUE;
492         }
493         return;
494     }
495
496     if (! numeric_name || strNE(numeric_name, newnum)) {
497         Safefree(numeric_name);
498         numeric_name = savepv(newnum);
499         numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
500         numeric_local = TRUE;
501     }
502
503 #endif /* USE_LOCALE_NUMERIC */
504 }
505
506 void
507 perl_set_numeric_standard()
508 {
509 #ifdef USE_LOCALE_NUMERIC
510
511     if (! numeric_standard) {
512         setlocale(LC_NUMERIC, "C");
513         numeric_standard = TRUE;
514         numeric_local = FALSE;
515     }
516
517 #endif /* USE_LOCALE_NUMERIC */
518 }
519
520 void
521 perl_set_numeric_local()
522 {
523 #ifdef USE_LOCALE_NUMERIC
524
525     if (! numeric_local) {
526         setlocale(LC_NUMERIC, numeric_name);
527         numeric_standard = FALSE;
528         numeric_local = TRUE;
529     }
530
531 #endif /* USE_LOCALE_NUMERIC */
532 }
533
534
535 /*
536  * Initialize locale awareness.
537  */
538 int
539 perl_init_i18nl10n(printwarn)   
540     int printwarn;
541 {
542     int ok = 1;
543     /* returns
544      *    1 = set ok or not applicable,
545      *    0 = fallback to C locale,
546      *   -1 = fallback to C locale failed
547      */
548
549 #ifdef USE_LOCALE
550
551 #ifdef USE_LOCALE_CTYPE
552     char *curctype   = NULL;
553 #endif /* USE_LOCALE_CTYPE */
554 #ifdef USE_LOCALE_COLLATE
555     char *curcoll    = NULL;
556 #endif /* USE_LOCALE_COLLATE */
557 #ifdef USE_LOCALE_NUMERIC
558     char *curnum     = NULL;
559 #endif /* USE_LOCALE_NUMERIC */
560     char *lc_all     = getenv("LC_ALL");
561     char *lang       = getenv("LANG");
562     bool setlocale_failure = FALSE;
563
564 #ifdef LOCALE_ENVIRON_REQUIRED
565
566     /*
567      * Ultrix setlocale(..., "") fails if there are no environment
568      * variables from which to get a locale name.
569      */
570
571     bool done = FALSE;
572
573 #ifdef LC_ALL
574     if (lang) {
575         if (setlocale(LC_ALL, ""))
576             done = TRUE;
577         else
578             setlocale_failure = TRUE;
579     }
580     if (!setlocale_failure)
581 #endif /* LC_ALL */
582     {
583 #ifdef USE_LOCALE_CTYPE
584         if (! (curctype = setlocale(LC_CTYPE,
585                                     (!done && (lang || getenv("LC_CTYPE")))
586                                     ? "" : Nullch)))
587             setlocale_failure = TRUE;
588 #endif /* USE_LOCALE_CTYPE */
589 #ifdef USE_LOCALE_COLLATE
590         if (! (curcoll = setlocale(LC_COLLATE,
591                                    (!done && (lang || getenv("LC_COLLATE")))
592                                    ? "" : Nullch)))
593             setlocale_failure = TRUE;
594 #endif /* USE_LOCALE_COLLATE */
595 #ifdef USE_LOCALE_NUMERIC
596         if (! (curnum = setlocale(LC_NUMERIC,
597                                   (!done && (lang || getenv("LC_NUMERIC")))
598                                   ? "" : Nullch)))
599             setlocale_failure = TRUE;
600 #endif /* USE_LOCALE_NUMERIC */
601     }
602
603 #else /* !LOCALE_ENVIRON_REQUIRED */
604
605 #ifdef LC_ALL
606
607     if (! setlocale(LC_ALL, ""))
608         setlocale_failure = TRUE;
609     else {
610 #ifdef USE_LOCALE_CTYPE
611         curctype = setlocale(LC_CTYPE, Nullch);
612 #endif /* USE_LOCALE_CTYPE */
613 #ifdef USE_LOCALE_COLLATE
614         curcoll = setlocale(LC_COLLATE, Nullch);
615 #endif /* USE_LOCALE_COLLATE */
616 #ifdef USE_LOCALE_NUMERIC
617         curnum = setlocale(LC_NUMERIC, Nullch);
618 #endif /* USE_LOCALE_NUMERIC */
619     }
620
621 #else /* !LC_ALL */
622
623 #ifdef USE_LOCALE_CTYPE
624     if (! (curctype = setlocale(LC_CTYPE, "")))
625         setlocale_failure = TRUE;
626 #endif /* USE_LOCALE_CTYPE */
627 #ifdef USE_LOCALE_COLLATE
628     if (! (curcoll = setlocale(LC_COLLATE, "")))
629         setlocale_failure = TRUE;
630 #endif /* USE_LOCALE_COLLATE */
631 #ifdef USE_LOCALE_NUMERIC
632     if (! (curnum = setlocale(LC_NUMERIC, "")))
633         setlocale_failure = TRUE;
634 #endif /* USE_LOCALE_NUMERIC */
635
636 #endif /* LC_ALL */
637
638 #endif /* !LOCALE_ENVIRON_REQUIRED */
639
640     if (setlocale_failure) {
641         char *p;
642         bool locwarn = (printwarn > 1 || 
643                         printwarn &&
644                         (!(p = getenv("PERL_BADLANG")) || atoi(p)));
645
646         if (locwarn) {
647 #ifdef LC_ALL
648   
649             PerlIO_printf(PerlIO_stderr(),
650                "perl: warning: Setting locale failed.\n");
651
652 #else /* !LC_ALL */
653   
654             PerlIO_printf(PerlIO_stderr(),
655                "perl: warning: Setting locale failed for the categories:\n\t");
656 #ifdef USE_LOCALE_CTYPE
657             if (! curctype)
658                 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
659 #endif /* USE_LOCALE_CTYPE */
660 #ifdef USE_LOCALE_COLLATE
661             if (! curcoll)
662                 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
663 #endif /* USE_LOCALE_COLLATE */
664 #ifdef USE_LOCALE_NUMERIC
665             if (! curnum)
666                 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
667 #endif /* USE_LOCALE_NUMERIC */
668             PerlIO_printf(PerlIO_stderr(), "\n");
669
670 #endif /* LC_ALL */
671
672             PerlIO_printf(PerlIO_stderr(),
673                 "perl: warning: Please check that your locale settings:\n");
674
675             PerlIO_printf(PerlIO_stderr(),
676                           "\tLC_ALL = %c%s%c,\n",
677                           lc_all ? '"' : '(',
678                           lc_all ? lc_all : "unset",
679                           lc_all ? '"' : ')');
680
681             {
682               char **e;
683               for (e = environ; *e; e++) {
684                   if (strnEQ(*e, "LC_", 3)
685                         && strnNE(*e, "LC_ALL=", 7)
686                         && (p = strchr(*e, '=')))
687                       PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
688                                     (p - *e), *e, p + 1);
689               }
690             }
691
692             PerlIO_printf(PerlIO_stderr(),
693                           "\tLANG = %c%s%c\n",
694                           lang ? '"' : '(',
695                           lang ? lang : "unset",
696                           lang ? '"' : ')');
697
698             PerlIO_printf(PerlIO_stderr(),
699                           "    are supported and installed on your system.\n");
700         }
701
702 #ifdef LC_ALL
703
704         if (setlocale(LC_ALL, "C")) {
705             if (locwarn)
706                 PerlIO_printf(PerlIO_stderr(),
707       "perl: warning: Falling back to the standard locale (\"C\").\n");
708             ok = 0;
709         }
710         else {
711             if (locwarn)
712                 PerlIO_printf(PerlIO_stderr(),
713       "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
714             ok = -1;
715         }
716
717 #else /* ! LC_ALL */
718
719         if (0
720 #ifdef USE_LOCALE_CTYPE
721             || !(curctype || setlocale(LC_CTYPE, "C"))
722 #endif /* USE_LOCALE_CTYPE */
723 #ifdef USE_LOCALE_COLLATE
724             || !(curcoll || setlocale(LC_COLLATE, "C"))
725 #endif /* USE_LOCALE_COLLATE */
726 #ifdef USE_LOCALE_NUMERIC
727             || !(curnum || setlocale(LC_NUMERIC, "C"))
728 #endif /* USE_LOCALE_NUMERIC */
729             )
730         {
731             if (locwarn)
732                 PerlIO_printf(PerlIO_stderr(),
733       "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
734             ok = -1;
735         }
736
737 #endif /* ! LC_ALL */
738
739 #ifdef USE_LOCALE_CTYPE
740         curctype = setlocale(LC_CTYPE, Nullch);
741 #endif /* USE_LOCALE_CTYPE */
742 #ifdef USE_LOCALE_COLLATE
743         curcoll = setlocale(LC_COLLATE, Nullch);
744 #endif /* USE_LOCALE_COLLATE */
745 #ifdef USE_LOCALE_NUMERIC
746         curnum = setlocale(LC_NUMERIC, Nullch);
747 #endif /* USE_LOCALE_NUMERIC */
748     }
749
750 #ifdef USE_LOCALE_CTYPE
751     perl_new_ctype(curctype);
752 #endif /* USE_LOCALE_CTYPE */
753
754 #ifdef USE_LOCALE_COLLATE
755     perl_new_collate(curcoll);
756 #endif /* USE_LOCALE_COLLATE */
757
758 #ifdef USE_LOCALE_NUMERIC
759     perl_new_numeric(curnum);
760 #endif /* USE_LOCALE_NUMERIC */
761
762 #endif /* USE_LOCALE */
763
764     return ok;
765 }
766
767 /* Backwards compatibility. */
768 int
769 perl_init_i18nl14n(printwarn)   
770     int printwarn;
771 {
772     return perl_init_i18nl10n(printwarn);
773 }
774
775 #ifdef USE_LOCALE_COLLATE
776
777 /*
778  * mem_collxfrm() is a bit like strxfrm() but with two important
779  * differences. First, it handles embedded NULs. Second, it allocates
780  * a bit more memory than needed for the transformed data itself.
781  * The real transformed data begins at offset sizeof(collationix).
782  * Please see sv_collxfrm() to see how this is used.
783  */
784 char *
785 mem_collxfrm(s, len, xlen)
786      const char *s;
787      STRLEN len;
788      STRLEN *xlen;
789 {
790     char *xbuf;
791     STRLEN xalloc, xin, xout;
792
793     /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
794     /* the +1 is for the terminating NUL. */
795
796     xalloc = sizeof(collation_ix) + collxfrm_base + (collxfrm_mult * len) + 1;
797     New(171, xbuf, xalloc, char);
798     if (! xbuf)
799         goto bad;
800
801     *(U32*)xbuf = collation_ix;
802     xout = sizeof(collation_ix);
803     for (xin = 0; xin < len; ) {
804         SSize_t xused;
805
806         for (;;) {
807             xused = strxfrm(xbuf + xout, s + xin, xalloc - xout);
808             if (xused == -1)
809                 goto bad;
810             if (xused < xalloc - xout)
811                 break;
812             xalloc = (2 * xalloc) + 1;
813             Renew(xbuf, xalloc, char);
814             if (! xbuf)
815                 goto bad;
816         }
817
818         xin += strlen(s + xin) + 1;
819         xout += xused;
820
821         /* Embedded NULs are understood but silently skipped
822          * because they make no sense in locale collation. */
823     }
824
825     xbuf[xout] = '\0';
826     *xlen = xout - sizeof(collation_ix);
827     return xbuf;
828
829   bad:
830     Safefree(xbuf);
831     *xlen = 0;
832     return NULL;
833 }
834
835 #endif /* USE_LOCALE_COLLATE */
836
837 void
838 fbm_compile(sv)
839 SV *sv;
840 {
841     register unsigned char *s;
842     register unsigned char *table;
843     register U32 i;
844     register U32 len = SvCUR(sv);
845     I32 rarest = 0;
846     U32 frequency = 256;
847
848     if (len > 255)
849         return;                 /* can't have offsets that big */
850     Sv_Grow(sv,len+258);
851     table = (unsigned char*)(SvPVX(sv) + len + 1);
852     s = table - 2;
853     for (i = 0; i < 256; i++) {
854         table[i] = len;
855     }
856     i = 0;
857     while (s >= (unsigned char*)(SvPVX(sv)))
858     {
859         if (table[*s] == len)
860             table[*s] = i;
861         s--,i++;
862     }
863     sv_upgrade(sv, SVt_PVBM);
864     sv_magic(sv, Nullsv, 'B', Nullch, 0);       /* deep magic */
865     SvVALID_on(sv);
866
867     s = (unsigned char*)(SvPVX(sv));            /* deeper magic */
868     for (i = 0; i < len; i++) {
869         if (freq[s[i]] < frequency) {
870             rarest = i;
871             frequency = freq[s[i]];
872         }
873     }
874     BmRARE(sv) = s[rarest];
875     BmPREVIOUS(sv) = rarest;
876     DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
877 }
878
879 char *
880 fbm_instr(big, bigend, littlestr)
881 unsigned char *big;
882 register unsigned char *bigend;
883 SV *littlestr;
884 {
885     register unsigned char *s;
886     register I32 tmp;
887     register I32 littlelen;
888     register unsigned char *little;
889     register unsigned char *table;
890     register unsigned char *olds;
891     register unsigned char *oldlittle;
892
893     if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
894         STRLEN len;
895         char *l = SvPV(littlestr,len);
896         if (!len)
897             return (char*)big;
898         return ninstr((char*)big,(char*)bigend, l, l + len);
899     }
900
901     littlelen = SvCUR(littlestr);
902     if (SvTAIL(littlestr) && !multiline) {      /* tail anchored? */
903         if (littlelen > bigend - big)
904             return Nullch;
905         little = (unsigned char*)SvPVX(littlestr);
906         s = bigend - littlelen;
907         if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
908             return (char*)s;            /* how sweet it is */
909         else if (bigend[-1] == '\n' && little[littlelen-1] != '\n'
910                  && s > big) {
911             s--;
912             if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
913                 return (char*)s;
914         }
915         return Nullch;
916     }
917     table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
918     if (--littlelen >= bigend - big)
919         return Nullch;
920     s = big + littlelen;
921     oldlittle = little = table - 2;
922     if (s < bigend) {
923       top2:
924         /*SUPPRESS 560*/
925         if (tmp = table[*s]) {
926 #ifdef POINTERRIGOR
927             if (bigend - s > tmp) {
928                 s += tmp;
929                 goto top2;
930             }
931 #else
932             if ((s += tmp) < bigend)
933                 goto top2;
934 #endif
935             return Nullch;
936         }
937         else {
938             tmp = littlelen;    /* less expensive than calling strncmp() */
939             olds = s;
940             while (tmp--) {
941                 if (*--s == *--little)
942                     continue;
943                 s = olds + 1;   /* here we pay the price for failure */
944                 little = oldlittle;
945                 if (s < bigend) /* fake up continue to outer loop */
946                     goto top2;
947                 return Nullch;
948             }
949             return (char *)s;
950         }
951     }
952     return Nullch;
953 }
954
955 char *
956 screaminstr(bigstr, littlestr)
957 SV *bigstr;
958 SV *littlestr;
959 {
960     register unsigned char *s, *x;
961     register unsigned char *big;
962     register I32 pos;
963     register I32 previous;
964     register I32 first;
965     register unsigned char *little;
966     register unsigned char *bigend;
967     register unsigned char *littleend;
968
969     if ((pos = screamfirst[BmRARE(littlestr)]) < 0) 
970         return Nullch;
971     little = (unsigned char *)(SvPVX(littlestr));
972     littleend = little + SvCUR(littlestr);
973     first = *little++;
974     previous = BmPREVIOUS(littlestr);
975     big = (unsigned char *)(SvPVX(bigstr));
976     bigend = big + SvCUR(bigstr);
977     while (pos < previous) {
978         if (!(pos += screamnext[pos]))
979             return Nullch;
980     }
981 #ifdef POINTERRIGOR
982     do {
983         if (big[pos-previous] != first)
984             continue;
985         for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
986             if (x >= bigend)
987                 return Nullch;
988             if (*s++ != *x++) {
989                 s--;
990                 break;
991             }
992         }
993         if (s == littleend)
994             return (char *)(big+pos-previous);
995     } while ( pos += screamnext[pos] );
996 #else /* !POINTERRIGOR */
997     big -= previous;
998     do {
999         if (big[pos] != first)
1000             continue;
1001         for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1002             if (x >= bigend)
1003                 return Nullch;
1004             if (*s++ != *x++) {
1005                 s--;
1006                 break;
1007             }
1008         }
1009         if (s == littleend)
1010             return (char *)(big+pos);
1011     } while ( pos += screamnext[pos] );
1012 #endif /* POINTERRIGOR */
1013     return Nullch;
1014 }
1015
1016 I32
1017 ibcmp(s1, s2, len)
1018 char *s1, *s2;
1019 register I32 len;
1020 {
1021     register U8 *a = (U8 *)s1;
1022     register U8 *b = (U8 *)s2;
1023     while (len--) {
1024         if (*a != *b && *a != fold[*b])
1025             return 1;
1026         a++,b++;
1027     }
1028     return 0;
1029 }
1030
1031 I32
1032 ibcmp_locale(s1, s2, len)
1033 char *s1, *s2;
1034 register I32 len;
1035 {
1036     register U8 *a = (U8 *)s1;
1037     register U8 *b = (U8 *)s2;
1038     while (len--) {
1039         if (*a != *b && *a != fold_locale[*b])
1040             return 1;
1041         a++,b++;
1042     }
1043     return 0;
1044 }
1045
1046 /* copy a string to a safe spot */
1047
1048 char *
1049 savepv(sv)
1050 char *sv;
1051 {
1052     register char *newaddr;
1053
1054     New(902,newaddr,strlen(sv)+1,char);
1055     (void)strcpy(newaddr,sv);
1056     return newaddr;
1057 }
1058
1059 /* same thing but with a known length */
1060
1061 char *
1062 savepvn(sv, len)
1063 char *sv;
1064 register I32 len;
1065 {
1066     register char *newaddr;
1067
1068     New(903,newaddr,len+1,char);
1069     Copy(sv,newaddr,len,char);          /* might not be null terminated */
1070     newaddr[len] = '\0';                /* is now */
1071     return newaddr;
1072 }
1073
1074 #ifdef I_STDARG
1075 char *
1076 mess(const char *pat, va_list *args)
1077 #else
1078 /*VARARGS0*/
1079 char *
1080 mess(pat, args)
1081     const char *pat;
1082     va_list *args;
1083 #endif
1084 {
1085     char *s;
1086     char *s_start;
1087     SV *tmpstr;
1088     I32 usermess;
1089 #ifndef HAS_VPRINTF
1090 #ifdef USE_CHAR_VSPRINTF
1091     char *vsprintf();
1092 #else
1093     I32 vsprintf();
1094 #endif
1095 #endif
1096
1097     s = s_start = buf;
1098     usermess = strEQ(pat, "%s");
1099     if (usermess) {
1100         tmpstr = sv_newmortal();
1101         sv_setpv(tmpstr, va_arg(*args, char *));
1102         *s++ = SvCUR(tmpstr) ? SvPVX(tmpstr)[SvCUR(tmpstr)-1] : ' ';
1103     }
1104     else {
1105         (void) vsprintf(s,pat,*args);
1106         s += strlen(s);
1107     }
1108     va_end(*args);
1109
1110     if (!(s > s_start && s[-1] == '\n')) {
1111         if (dirty)
1112             strcpy(s, " during global destruction.\n");
1113         else {
1114             if (curcop->cop_line) {
1115                 (void)sprintf(s," at %s line %ld",
1116                   SvPVX(GvSV(curcop->cop_filegv)), (long)curcop->cop_line);
1117                 s += strlen(s);
1118             }
1119             if (GvIO(last_in_gv) && IoLINES(GvIOp(last_in_gv))) {
1120                 bool line_mode = (RsSIMPLE(rs) &&
1121                                   SvLEN(rs) == 1 && *SvPVX(rs) == '\n');
1122                 (void)sprintf(s,", <%s> %s %ld",
1123                   last_in_gv == argvgv ? "" : GvNAME(last_in_gv),
1124                   line_mode ? "line" : "chunk", 
1125                   (long)IoLINES(GvIOp(last_in_gv)));
1126                 s += strlen(s);
1127             }
1128             (void)strcpy(s,".\n");
1129             s += 2;
1130         }
1131         if (usermess)
1132             sv_catpv(tmpstr,buf+1);
1133     }
1134
1135     if (s - s_start >= sizeof(buf)) {   /* Ooops! */
1136         if (usermess)
1137             PerlIO_puts(PerlIO_stderr(), SvPVX(tmpstr));
1138         else
1139             PerlIO_puts(PerlIO_stderr(), buf);
1140         PerlIO_puts(PerlIO_stderr(), "panic: message overflow - memory corrupted!\n");
1141         my_exit(1);
1142     }
1143     if (usermess)
1144         return SvPVX(tmpstr);
1145     else
1146         return buf;
1147 }
1148
1149 #ifdef I_STDARG
1150 OP *
1151 die(const char* pat, ...)
1152 #else
1153 /*VARARGS0*/
1154 OP *
1155 die(pat, va_alist)
1156     const char *pat;
1157     va_dcl
1158 #endif
1159 {
1160     va_list args;
1161     char *message;
1162     int oldrunlevel = runlevel;
1163     int was_in_eval = in_eval;
1164     HV *stash;
1165     GV *gv;
1166     CV *cv;
1167
1168     /* We have to switch back to mainstack or die_where may try to pop
1169      * the eval block from the wrong stack if die is being called from a
1170      * signal handler.  - dkindred@cs.cmu.edu */
1171     if (curstack != mainstack) {
1172         dSP;
1173         SWITCHSTACK(curstack, mainstack);
1174     }
1175
1176 #ifdef I_STDARG
1177     va_start(args, pat);
1178 #else
1179     va_start(args);
1180 #endif
1181     message = mess(pat, &args);
1182     va_end(args);
1183
1184     if (diehook) {
1185         /* sv_2cv might call croak() */
1186         SV *olddiehook = diehook;
1187         ENTER;
1188         SAVESPTR(diehook);
1189         diehook = Nullsv;
1190         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1191         LEAVE;
1192         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1193             dSP;
1194             SV *msg = sv_2mortal(newSVpv(message, 0));
1195
1196             PUSHMARK(sp);
1197             XPUSHs(msg);
1198             PUTBACK;
1199             perl_call_sv((SV*)cv, G_DISCARD);
1200
1201             /* It's okay for the __DIE__ hook to modify the message. */
1202             message = SvPV(msg, na);
1203         }
1204     }
1205
1206     restartop = die_where(message);
1207     if ((!restartop && was_in_eval) || oldrunlevel > 1)
1208         Siglongjmp(top_env, 3);
1209     return restartop;
1210 }
1211
1212 #ifdef I_STDARG
1213 void
1214 croak(const char* pat, ...)
1215 #else
1216 /*VARARGS0*/
1217 void
1218 croak(pat, va_alist)
1219     char *pat;
1220     va_dcl
1221 #endif
1222 {
1223     va_list args;
1224     char *message;
1225     HV *stash;
1226     GV *gv;
1227     CV *cv;
1228
1229 #ifdef I_STDARG
1230     va_start(args, pat);
1231 #else
1232     va_start(args);
1233 #endif
1234     message = mess(pat, &args);
1235     va_end(args);
1236     if (diehook) {
1237         /* sv_2cv might call croak() */
1238         SV *olddiehook = diehook;
1239         ENTER;
1240         SAVESPTR(diehook);
1241         diehook = Nullsv;
1242         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1243         LEAVE;
1244         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1245             dSP;
1246             SV *msg = sv_2mortal(newSVpv(message, 0));
1247
1248             PUSHMARK(sp);
1249             XPUSHs(msg);
1250             PUTBACK;
1251             perl_call_sv((SV*)cv, G_DISCARD);
1252
1253             /* It's okay for the __DIE__ hook to modify the message. */
1254             message = SvPV(msg, na);
1255         }
1256     }
1257     if (in_eval) {
1258         restartop = die_where(message);
1259         Siglongjmp(top_env, 3);
1260     }
1261     PerlIO_puts(PerlIO_stderr(),message);
1262     (void)PerlIO_flush(PerlIO_stderr());
1263     if (e_tmpname) {
1264         if (e_fp) {
1265             PerlIO_close(e_fp);
1266             e_fp = Nullfp;
1267         }
1268         (void)UNLINK(e_tmpname);
1269         Safefree(e_tmpname);
1270         e_tmpname = Nullch;
1271     }
1272     statusvalue = SHIFTSTATUS(statusvalue);
1273 #ifdef VMS
1274     my_exit((U32)(vaxc$errno?vaxc$errno:(statusvalue?statusvalue:44)));
1275 #else
1276     my_exit((U32)((errno&255)?errno:((statusvalue&255)?statusvalue:255)));
1277 #endif
1278 }
1279
1280 void
1281 #ifdef I_STDARG
1282 warn(const char* pat,...)
1283 #else
1284 /*VARARGS0*/
1285 warn(pat,va_alist)
1286     const char *pat;
1287     va_dcl
1288 #endif
1289 {
1290     va_list args;
1291     char *message;
1292     HV *stash;
1293     GV *gv;
1294     CV *cv;
1295
1296 #ifdef I_STDARG
1297     va_start(args, pat);
1298 #else
1299     va_start(args);
1300 #endif
1301     message = mess(pat, &args);
1302     va_end(args);
1303
1304     if (warnhook) {
1305         /* sv_2cv might call warn() */
1306         SV *oldwarnhook = warnhook;
1307         ENTER;
1308         SAVESPTR(warnhook);
1309         warnhook = Nullsv;
1310         cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1311         LEAVE;
1312         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1313             dSP;
1314             PUSHMARK(sp);
1315             XPUSHs(sv_2mortal(newSVpv(message,0)));
1316             PUTBACK;
1317             perl_call_sv((SV*)cv, G_DISCARD);
1318             return;
1319         }
1320     }
1321     PerlIO_puts(PerlIO_stderr(),message);
1322 #ifdef LEAKTEST
1323     DEBUG_L(xstat());
1324 #endif
1325     (void)PerlIO_flush(PerlIO_stderr());
1326 }
1327
1328 #ifndef VMS  /* VMS' my_setenv() is in VMS.c */
1329 void
1330 my_setenv(nam,val)
1331 char *nam, *val;
1332 {
1333     register I32 i=setenv_getix(nam);           /* where does it go? */
1334
1335     if (environ == origenviron) {       /* need we copy environment? */
1336         I32 j;
1337         I32 max;
1338         char **tmpenv;
1339
1340         /*SUPPRESS 530*/
1341         for (max = i; environ[max]; max++) ;
1342         New(901,tmpenv, max+2, char*);
1343         for (j=0; j<max; j++)           /* copy environment */
1344             tmpenv[j] = savepv(environ[j]);
1345         tmpenv[max] = Nullch;
1346         environ = tmpenv;               /* tell exec where it is now */
1347     }
1348     if (!val) {
1349         while (environ[i]) {
1350             environ[i] = environ[i+1];
1351             i++;
1352         }
1353         return;
1354     }
1355     if (!environ[i]) {                  /* does not exist yet */
1356         Renew(environ, i+2, char*);     /* just expand it a bit */
1357         environ[i+1] = Nullch;  /* make sure it's null terminated */
1358     }
1359     else
1360         Safefree(environ[i]);
1361     New(904, environ[i], strlen(nam) + strlen(val) + 2, char);
1362 #ifndef MSDOS
1363     (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1364 #else
1365     /* MS-DOS requires environment variable names to be in uppercase */
1366     /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1367      * some utilities and applications may break because they only look
1368      * for upper case strings. (Fixed strupr() bug here.)]
1369      */
1370     strcpy(environ[i],nam); strupr(environ[i]);
1371     (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1372 #endif /* MSDOS */
1373 }
1374
1375 I32
1376 setenv_getix(nam)
1377 char *nam;
1378 {
1379     register I32 i, len = strlen(nam);
1380
1381     for (i = 0; environ[i]; i++) {
1382         if (strnEQ(environ[i],nam,len) && environ[i][len] == '=')
1383             break;                      /* strnEQ must come first to avoid */
1384     }                                   /* potential SEGV's */
1385     return i;
1386 }
1387 #endif /* !VMS */
1388
1389 #ifdef UNLINK_ALL_VERSIONS
1390 I32
1391 unlnk(f)        /* unlink all versions of a file */
1392 char *f;
1393 {
1394     I32 i;
1395
1396     for (i = 0; unlink(f) >= 0; i++) ;
1397     return i ? 0 : -1;
1398 }
1399 #endif
1400
1401 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1402 char *
1403 my_bcopy(from,to,len)
1404 register char *from;
1405 register char *to;
1406 register I32 len;
1407 {
1408     char *retval = to;
1409
1410     if (from - to >= 0) {
1411         while (len--)
1412             *to++ = *from++;
1413     }
1414     else {
1415         to += len;
1416         from += len;
1417         while (len--)
1418             *(--to) = *(--from);
1419     }
1420     return retval;
1421 }
1422 #endif
1423
1424 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1425 char *
1426 my_bzero(loc,len)
1427 register char *loc;
1428 register I32 len;
1429 {
1430     char *retval = loc;
1431
1432     while (len--)
1433         *loc++ = 0;
1434     return retval;
1435 }
1436 #endif
1437
1438 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1439 I32
1440 my_memcmp(s1,s2,len)
1441 char *s1;
1442 char *s2;
1443 register I32 len;
1444 {
1445     register U8 *a = (U8 *)s1;
1446     register U8 *b = (U8 *)s2;
1447     register I32 tmp;
1448
1449     while (len--) {
1450         if (tmp = *a++ - *b++)
1451             return tmp;
1452     }
1453     return 0;
1454 }
1455 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1456
1457 #if defined(I_STDARG) || defined(I_VARARGS)
1458 #ifndef HAS_VPRINTF
1459
1460 #ifdef USE_CHAR_VSPRINTF
1461 char *
1462 #else
1463 int
1464 #endif
1465 vsprintf(dest, pat, args)
1466 char *dest;
1467 const char *pat;
1468 char *args;
1469 {
1470     FILE fakebuf;
1471
1472     fakebuf._ptr = dest;
1473     fakebuf._cnt = 32767;
1474 #ifndef _IOSTRG
1475 #define _IOSTRG 0
1476 #endif
1477     fakebuf._flag = _IOWRT|_IOSTRG;
1478     _doprnt(pat, args, &fakebuf);       /* what a kludge */
1479     (void)putc('\0', &fakebuf);
1480 #ifdef USE_CHAR_VSPRINTF
1481     return(dest);
1482 #else
1483     return 0;           /* perl doesn't use return value */
1484 #endif
1485 }
1486
1487 #endif /* HAS_VPRINTF */
1488 #endif /* I_VARARGS || I_STDARGS */
1489
1490 #ifdef MYSWAP
1491 #if BYTEORDER != 0x4321
1492 short
1493 #ifndef CAN_PROTOTYPE
1494 my_swap(s)
1495 short s;
1496 #else
1497 my_swap(short s)
1498 #endif
1499 {
1500 #if (BYTEORDER & 1) == 0
1501     short result;
1502
1503     result = ((s & 255) << 8) + ((s >> 8) & 255);
1504     return result;
1505 #else
1506     return s;
1507 #endif
1508 }
1509
1510 long
1511 #ifndef CAN_PROTOTYPE
1512 my_htonl(l)
1513 register long l;
1514 #else
1515 my_htonl(long l)
1516 #endif
1517 {
1518     union {
1519         long result;
1520         char c[sizeof(long)];
1521     } u;
1522
1523 #if BYTEORDER == 0x1234
1524     u.c[0] = (l >> 24) & 255;
1525     u.c[1] = (l >> 16) & 255;
1526     u.c[2] = (l >> 8) & 255;
1527     u.c[3] = l & 255;
1528     return u.result;
1529 #else
1530 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1531     croak("Unknown BYTEORDER\n");
1532 #else
1533     register I32 o;
1534     register I32 s;
1535
1536     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1537         u.c[o & 0xf] = (l >> s) & 255;
1538     }
1539     return u.result;
1540 #endif
1541 #endif
1542 }
1543
1544 long
1545 #ifndef CAN_PROTOTYPE
1546 my_ntohl(l)
1547 register long l;
1548 #else
1549 my_ntohl(long l)
1550 #endif
1551 {
1552     union {
1553         long l;
1554         char c[sizeof(long)];
1555     } u;
1556
1557 #if BYTEORDER == 0x1234
1558     u.c[0] = (l >> 24) & 255;
1559     u.c[1] = (l >> 16) & 255;
1560     u.c[2] = (l >> 8) & 255;
1561     u.c[3] = l & 255;
1562     return u.l;
1563 #else
1564 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1565     croak("Unknown BYTEORDER\n");
1566 #else
1567     register I32 o;
1568     register I32 s;
1569
1570     u.l = l;
1571     l = 0;
1572     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1573         l |= (u.c[o & 0xf] & 255) << s;
1574     }
1575     return l;
1576 #endif
1577 #endif
1578 }
1579
1580 #endif /* BYTEORDER != 0x4321 */
1581 #endif /* MYSWAP */
1582
1583 /*
1584  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1585  * If these functions are defined,
1586  * the BYTEORDER is neither 0x1234 nor 0x4321.
1587  * However, this is not assumed.
1588  * -DWS
1589  */
1590
1591 #define HTOV(name,type)                                         \
1592         type                                                    \
1593         name (n)                                                \
1594         register type n;                                        \
1595         {                                                       \
1596             union {                                             \
1597                 type value;                                     \
1598                 char c[sizeof(type)];                           \
1599             } u;                                                \
1600             register I32 i;                                     \
1601             register I32 s;                                     \
1602             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
1603                 u.c[i] = (n >> s) & 0xFF;                       \
1604             }                                                   \
1605             return u.value;                                     \
1606         }
1607
1608 #define VTOH(name,type)                                         \
1609         type                                                    \
1610         name (n)                                                \
1611         register type n;                                        \
1612         {                                                       \
1613             union {                                             \
1614                 type value;                                     \
1615                 char c[sizeof(type)];                           \
1616             } u;                                                \
1617             register I32 i;                                     \
1618             register I32 s;                                     \
1619             u.value = n;                                        \
1620             n = 0;                                              \
1621             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
1622                 n += (u.c[i] & 0xFF) << s;                      \
1623             }                                                   \
1624             return n;                                           \
1625         }
1626
1627 #if defined(HAS_HTOVS) && !defined(htovs)
1628 HTOV(htovs,short)
1629 #endif
1630 #if defined(HAS_HTOVL) && !defined(htovl)
1631 HTOV(htovl,long)
1632 #endif
1633 #if defined(HAS_VTOHS) && !defined(vtohs)
1634 VTOH(vtohs,short)
1635 #endif
1636 #if defined(HAS_VTOHL) && !defined(vtohl)
1637 VTOH(vtohl,long)
1638 #endif
1639
1640     /* VMS' my_popen() is in VMS.c, same with OS/2. */
1641 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
1642 PerlIO *
1643 my_popen(cmd,mode)
1644 char    *cmd;
1645 char    *mode;
1646 {
1647     int p[2];
1648     register I32 this, that;
1649     register I32 pid;
1650     SV *sv;
1651     I32 doexec = strNE(cmd,"-");
1652
1653 #ifdef OS2
1654     if (doexec) {
1655         return my_syspopen(cmd,mode);
1656     }
1657 #endif 
1658     if (pipe(p) < 0)
1659         return Nullfp;
1660     this = (*mode == 'w');
1661     that = !this;
1662     if (doexec && tainting) {
1663         taint_env();
1664         taint_proper("Insecure %s%s", "EXEC");
1665     }
1666     while ((pid = (doexec?vfork():fork())) < 0) {
1667         if (errno != EAGAIN) {
1668             close(p[this]);
1669             if (!doexec)
1670                 croak("Can't fork");
1671             return Nullfp;
1672         }
1673         sleep(5);
1674     }
1675     if (pid == 0) {
1676         GV* tmpgv;
1677
1678 #define THIS that
1679 #define THAT this
1680         close(p[THAT]);
1681         if (p[THIS] != (*mode == 'r')) {
1682             dup2(p[THIS], *mode == 'r');
1683             close(p[THIS]);
1684         }
1685         if (doexec) {
1686 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
1687             int fd;
1688
1689 #ifndef NOFILE
1690 #define NOFILE 20
1691 #endif
1692             for (fd = maxsysfd + 1; fd < NOFILE; fd++)
1693                 close(fd);
1694 #endif
1695             do_exec(cmd);       /* may or may not use the shell */
1696             _exit(1);
1697         }
1698         /*SUPPRESS 560*/
1699         if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1700             sv_setiv(GvSV(tmpgv),(I32)getpid());
1701         forkprocess = 0;
1702         hv_clear(pidstatus);    /* we have no children */
1703         return Nullfp;
1704 #undef THIS
1705 #undef THAT
1706     }
1707     do_execfree();      /* free any memory malloced by child on vfork */
1708     close(p[that]);
1709     if (p[that] < p[this]) {
1710         dup2(p[this], p[that]);
1711         close(p[this]);
1712         p[this] = p[that];
1713     }
1714     sv = *av_fetch(fdpid,p[this],TRUE);
1715     (void)SvUPGRADE(sv,SVt_IV);
1716     SvIVX(sv) = pid;
1717     forkprocess = pid;
1718     return PerlIO_fdopen(p[this], mode);
1719 }
1720 #else
1721 #if defined(atarist) || defined(DJGPP)
1722 FILE *popen();
1723 PerlIO *
1724 my_popen(cmd,mode)
1725 char    *cmd;
1726 char    *mode;
1727 {
1728     /* Needs work for PerlIO ! */
1729     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
1730     return popen(PerlIO_exportFILE(cmd, 0), mode);
1731 }
1732 #endif
1733
1734 #endif /* !DOSISH */
1735
1736 #ifdef DUMP_FDS
1737 dump_fds(s)
1738 char *s;
1739 {
1740     int fd;
1741     struct stat tmpstatbuf;
1742
1743     PerlIO_printf(PerlIO_stderr(),"%s", s);
1744     for (fd = 0; fd < 32; fd++) {
1745         if (Fstat(fd,&tmpstatbuf) >= 0)
1746             PerlIO_printf(PerlIO_stderr()," %d",fd);
1747     }
1748     PerlIO_printf(PerlIO_stderr(),"\n");
1749 }
1750 #endif
1751
1752 #ifndef HAS_DUP2
1753 int
1754 dup2(oldfd,newfd)
1755 int oldfd;
1756 int newfd;
1757 {
1758 #if defined(HAS_FCNTL) && defined(F_DUPFD)
1759     if (oldfd == newfd)
1760         return oldfd;
1761     close(newfd);
1762     return fcntl(oldfd, F_DUPFD, newfd);
1763 #else
1764     int fdtmp[256];
1765     I32 fdx = 0;
1766     int fd;
1767
1768     if (oldfd == newfd)
1769         return oldfd;
1770     close(newfd);
1771     while ((fd = dup(oldfd)) != newfd && fd >= 0) /* good enough for low fd's */
1772         fdtmp[fdx++] = fd;
1773     while (fdx > 0)
1774         close(fdtmp[--fdx]);
1775     return fd;
1776 #endif
1777 }
1778 #endif
1779
1780
1781 #ifdef HAS_SIGACTION
1782
1783 Sighandler_t
1784 rsignal(signo, handler)
1785 int signo;
1786 Sighandler_t handler;
1787 {
1788     struct sigaction act, oact;
1789
1790     act.sa_handler = handler;
1791     sigemptyset(&act.sa_mask);
1792     act.sa_flags = 0;
1793 #ifdef SA_RESTART
1794     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1795 #endif
1796     if (sigaction(signo, &act, &oact) == -1)
1797         return SIG_ERR;
1798     else
1799         return oact.sa_handler;
1800 }
1801
1802 Sighandler_t
1803 rsignal_state(signo)
1804 int signo;
1805 {
1806     struct sigaction oact;
1807
1808     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
1809         return SIG_ERR;
1810     else
1811         return oact.sa_handler;
1812 }
1813
1814 int
1815 rsignal_save(signo, handler, save)
1816 int signo;
1817 Sighandler_t handler;
1818 Sigsave_t *save;
1819 {
1820     struct sigaction act;
1821
1822     act.sa_handler = handler;
1823     sigemptyset(&act.sa_mask);
1824     act.sa_flags = 0;
1825 #ifdef SA_RESTART
1826     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
1827 #endif
1828     return sigaction(signo, &act, save);
1829 }
1830
1831 int
1832 rsignal_restore(signo, save)
1833 int signo;
1834 Sigsave_t *save;
1835 {
1836     return sigaction(signo, save, (struct sigaction *)NULL);
1837 }
1838
1839 #else /* !HAS_SIGACTION */
1840
1841 Sighandler_t
1842 rsignal(signo, handler)
1843 int signo;
1844 Sighandler_t handler;
1845 {
1846     return signal(signo, handler);
1847 }
1848
1849 static int sig_trapped;
1850
1851 static
1852 Signal_t
1853 sig_trap(signo)
1854 int signo;
1855 {
1856     sig_trapped++;
1857 }
1858
1859 Sighandler_t
1860 rsignal_state(signo)
1861 int signo;
1862 {
1863     Sighandler_t oldsig;
1864
1865     sig_trapped = 0;
1866     oldsig = signal(signo, sig_trap);
1867     signal(signo, oldsig);
1868     if (sig_trapped)
1869         kill(getpid(), signo);
1870     return oldsig;
1871 }
1872
1873 int
1874 rsignal_save(signo, handler, save)
1875 int signo;
1876 Sighandler_t handler;
1877 Sigsave_t *save;
1878 {
1879     *save = signal(signo, handler);
1880     return (*save == SIG_ERR) ? -1 : 0;
1881 }
1882
1883 int
1884 rsignal_restore(signo, save)
1885 int signo;
1886 Sigsave_t *save;
1887 {
1888     return (signal(signo, *save) == SIG_ERR) ? -1 : 0;
1889 }
1890
1891 #endif /* !HAS_SIGACTION */
1892
1893     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
1894 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
1895 I32
1896 my_pclose(ptr)
1897 PerlIO *ptr;
1898 {
1899     Sigsave_t hstat, istat, qstat;
1900     int status;
1901     SV **svp;
1902     int pid;
1903
1904     svp = av_fetch(fdpid,PerlIO_fileno(ptr),TRUE);
1905     pid = (int)SvIVX(*svp);
1906     SvREFCNT_dec(*svp);
1907     *svp = &sv_undef;
1908 #ifdef OS2
1909     if (pid == -1) {                    /* Opened by popen. */
1910         return my_syspclose(ptr);
1911     }
1912 #endif 
1913     PerlIO_close(ptr);
1914 #ifdef UTS
1915     if(kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
1916 #endif
1917     rsignal_save(SIGHUP, SIG_IGN, &hstat);
1918     rsignal_save(SIGINT, SIG_IGN, &istat);
1919     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
1920     do {
1921         pid = wait4pid(pid, &status, 0);
1922     } while (pid == -1 && errno == EINTR);
1923     rsignal_restore(SIGHUP, &hstat);
1924     rsignal_restore(SIGINT, &istat);
1925     rsignal_restore(SIGQUIT, &qstat);
1926     return(pid < 0 ? pid : status);
1927 }
1928 #endif /* !DOSISH */
1929
1930 #if  !defined(DOSISH) || defined(OS2)
1931 I32
1932 wait4pid(pid,statusp,flags)
1933 int pid;
1934 int *statusp;
1935 int flags;
1936 {
1937     SV *sv;
1938     SV** svp;
1939     char spid[16];
1940
1941     if (!pid)
1942         return -1;
1943     if (pid > 0) {
1944         sprintf(spid, "%d", pid);
1945         svp = hv_fetch(pidstatus,spid,strlen(spid),FALSE);
1946         if (svp && *svp != &sv_undef) {
1947             *statusp = SvIVX(*svp);
1948             (void)hv_delete(pidstatus,spid,strlen(spid),G_DISCARD);
1949             return pid;
1950         }
1951     }
1952     else {
1953         HE *entry;
1954
1955         hv_iterinit(pidstatus);
1956         if (entry = hv_iternext(pidstatus)) {
1957             pid = atoi(hv_iterkey(entry,(I32*)statusp));
1958             sv = hv_iterval(pidstatus,entry);
1959             *statusp = SvIVX(sv);
1960             sprintf(spid, "%d", pid);
1961             (void)hv_delete(pidstatus,spid,strlen(spid),G_DISCARD);
1962             return pid;
1963         }
1964     }
1965 #ifdef HAS_WAITPID
1966     return waitpid(pid,statusp,flags);
1967 #else
1968 #ifdef HAS_WAIT4
1969     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
1970 #else
1971     {
1972         I32 result;
1973         if (flags)
1974             croak("Can't do waitpid with flags");
1975         else {
1976             while ((result = wait(statusp)) != pid && pid > 0 && result >= 0)
1977                 pidgone(result,*statusp);
1978             if (result < 0)
1979                 *statusp = -1;
1980         }
1981         return result;
1982     }
1983 #endif
1984 #endif
1985 }
1986 #endif /* !DOSISH */
1987
1988 void
1989 /*SUPPRESS 590*/
1990 pidgone(pid,status)
1991 int pid;
1992 int status;
1993 {
1994     register SV *sv;
1995     char spid[16];
1996
1997     sprintf(spid, "%d", pid);
1998     sv = *hv_fetch(pidstatus,spid,strlen(spid),TRUE);
1999     (void)SvUPGRADE(sv,SVt_IV);
2000     SvIVX(sv) = status;
2001     return;
2002 }
2003
2004 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2005 int pclose();
2006 #ifdef HAS_FORK
2007 int                                     /* Cannot prototype with I32
2008                                            in os2ish.h. */
2009 my_syspclose(ptr)
2010 #else
2011 I32
2012 my_pclose(ptr)
2013 #endif 
2014 PerlIO *ptr;
2015 {
2016     /* Needs work for PerlIO ! */
2017     FILE *f = PerlIO_findFILE(ptr);
2018     I32 result = pclose(f);
2019     PerlIO_releaseFILE(ptr,f);
2020     return result;
2021 }
2022 #endif
2023
2024 void
2025 repeatcpy(to,from,len,count)
2026 register char *to;
2027 register char *from;
2028 I32 len;
2029 register I32 count;
2030 {
2031     register I32 todo;
2032     register char *frombase = from;
2033
2034     if (len == 1) {
2035         todo = *from;
2036         while (count-- > 0)
2037             *to++ = todo;
2038         return;
2039     }
2040     while (count-- > 0) {
2041         for (todo = len; todo > 0; todo--) {
2042             *to++ = *from++;
2043         }
2044         from = frombase;
2045     }
2046 }
2047
2048 #ifndef CASTNEGFLOAT
2049 U32
2050 cast_ulong(f)
2051 double f;
2052 {
2053     long along;
2054
2055 #if CASTFLAGS & 2
2056 #   define BIGDOUBLE 2147483648.0
2057     if (f >= BIGDOUBLE)
2058         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2059 #endif
2060     if (f >= 0.0)
2061         return (unsigned long)f;
2062     along = (long)f;
2063     return (unsigned long)along;
2064 }
2065 # undef BIGDOUBLE
2066 #endif
2067
2068 #ifndef CASTI32
2069
2070 /* Unfortunately, on some systems the cast_uv() function doesn't
2071    work with the system-supplied definition of ULONG_MAX.  The
2072    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2073    problem with the compiler constant folding.
2074
2075    In any case, this workaround should be fine on any two's complement
2076    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2077    ccflags.
2078                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2079 */
2080
2081 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2082    of LONG_(MIN/MAX).
2083                            -- Kenneth Albanowski <kjahds@kjahds.com>
2084 */                                      
2085
2086 #ifndef MY_UV_MAX
2087 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2088 #endif
2089
2090 I32
2091 cast_i32(f)
2092 double f;
2093 {
2094     if (f >= I32_MAX)
2095         return (I32) I32_MAX;
2096     if (f <= I32_MIN)
2097         return (I32) I32_MIN;
2098     return (I32) f;
2099 }
2100
2101 IV
2102 cast_iv(f)
2103 double f;
2104 {
2105     if (f >= IV_MAX)
2106         return (IV) IV_MAX;
2107     if (f <= IV_MIN)
2108         return (IV) IV_MIN;
2109     return (IV) f;
2110 }
2111
2112 UV
2113 cast_uv(f)
2114 double f;
2115 {
2116     if (f >= MY_UV_MAX)
2117         return (UV) MY_UV_MAX;
2118     return (UV) f;
2119 }
2120
2121 #endif
2122
2123 #ifndef HAS_RENAME
2124 I32
2125 same_dirent(a,b)
2126 char *a;
2127 char *b;
2128 {
2129     char *fa = strrchr(a,'/');
2130     char *fb = strrchr(b,'/');
2131     struct stat tmpstatbuf1;
2132     struct stat tmpstatbuf2;
2133 #ifndef MAXPATHLEN
2134 #define MAXPATHLEN 1024
2135 #endif
2136     char tmpbuf[MAXPATHLEN+1];
2137
2138     if (fa)
2139         fa++;
2140     else
2141         fa = a;
2142     if (fb)
2143         fb++;
2144     else
2145         fb = b;
2146     if (strNE(a,b))
2147         return FALSE;
2148     if (fa == a)
2149         strcpy(tmpbuf,".");
2150     else
2151         strncpy(tmpbuf, a, fa - a);
2152     if (Stat(tmpbuf, &tmpstatbuf1) < 0)
2153         return FALSE;
2154     if (fb == b)
2155         strcpy(tmpbuf,".");
2156     else
2157         strncpy(tmpbuf, b, fb - b);
2158     if (Stat(tmpbuf, &tmpstatbuf2) < 0)
2159         return FALSE;
2160     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2161            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2162 }
2163 #endif /* !HAS_RENAME */
2164
2165 UV
2166 scan_oct(start, len, retlen)
2167 char *start;
2168 I32 len;
2169 I32 *retlen;
2170 {
2171     register char *s = start;
2172     register UV retval = 0;
2173     bool overflowed = FALSE;
2174
2175     while (len && *s >= '0' && *s <= '7') {
2176         register UV n = retval << 3;
2177         if (!overflowed && (n >> 3) != retval) {
2178             warn("Integer overflow in octal number");
2179             overflowed = TRUE;
2180         }
2181         retval = n | (*s++ - '0');
2182         len--;
2183     }
2184     if (dowarn && len && (*s == '8' || *s == '9'))
2185         warn("Illegal octal digit ignored");
2186     *retlen = s - start;
2187     return retval;
2188 }
2189
2190 UV
2191 scan_hex(start, len, retlen)
2192 char *start;
2193 I32 len;
2194 I32 *retlen;
2195 {
2196     register char *s = start;
2197     register UV retval = 0;
2198     bool overflowed = FALSE;
2199     char *tmp;
2200
2201     while (len-- && *s && (tmp = strchr(hexdigit, *s))) {
2202         register UV n = retval << 4;
2203         if (!overflowed && (n >> 4) != retval) {
2204             warn("Integer overflow in hex number");
2205             overflowed = TRUE;
2206         }
2207         retval = n | (tmp - hexdigit) & 15;
2208         s++;
2209     }
2210     *retlen = s - start;
2211     return retval;
2212 }
2213
2214
2215 #ifdef HUGE_VAL
2216 /*
2217  * This hack is to force load of "huge" support from libm.a
2218  * So it is in perl for (say) POSIX to use. 
2219  * Needed for SunOS with Sun's 'acc' for example.
2220  */
2221 double 
2222 Perl_huge()
2223 {
2224  return HUGE_VAL;
2225 }
2226 #endif