[win32] fix POSIX for mingw32
[p5sagit/p5-mst-13.2.git] / malloc.c
1 /*    malloc.c
2  *
3  */
4
5 #if defined(PERL_CORE) && !defined(DEBUGGING_MSTATS)
6 #  define DEBUGGING_MSTATS
7 #endif 
8
9 #ifndef lint
10 #  if defined(DEBUGGING) && !defined(NO_RCHECK)
11 #    define RCHECK
12 #  endif
13 /*
14  * malloc.c (Caltech) 2/21/82
15  * Chris Kingsley, kingsley@cit-20.
16  *
17  * This is a very fast storage allocator.  It allocates blocks of a small 
18  * number of different sizes, and keeps free lists of each size.  Blocks that
19  * don't exactly fit are passed up to the next larger size.  In this 
20  * implementation, the available sizes are 2^n-4 (or 2^n-12) bytes long.
21  * If PACK_MALLOC is defined, small blocks are 2^n bytes long.
22  * This is designed for use in a program that uses vast quantities of memory,
23  * but bombs when it runs out. 
24  */
25
26 #include "EXTERN.h"
27 #include "perl.h"
28
29 #ifdef DEBUGGING
30 #undef DEBUG_m
31 #define DEBUG_m(a)  if (debug & 128)   a
32 #endif
33
34 /* I don't much care whether these are defined in sys/types.h--LAW */
35
36 #define u_char unsigned char
37 #define u_int unsigned int
38 #define u_short unsigned short
39
40 /* 286 and atarist like big chunks, which gives too much overhead. */
41 #if (defined(RCHECK) || defined(I286) || defined(atarist)) && defined(PACK_MALLOC)
42 #undef PACK_MALLOC
43 #endif 
44
45
46 /*
47  * The description below is applicable if PACK_MALLOC is not defined.
48  *
49  * The overhead on a block is at least 4 bytes.  When free, this space
50  * contains a pointer to the next free block, and the bottom two bits must
51  * be zero.  When in use, the first byte is set to MAGIC, and the second
52  * byte is the size index.  The remaining bytes are for alignment.
53  * If range checking is enabled and the size of the block fits
54  * in two bytes, then the top two bytes hold the size of the requested block
55  * plus the range checking words, and the header word MINUS ONE.
56  */
57 union   overhead {
58         union   overhead *ov_next;      /* when free */
59 #if MEM_ALIGNBYTES > 4
60         double  strut;                  /* alignment problems */
61 #endif
62         struct {
63                 u_char  ovu_magic;      /* magic number */
64                 u_char  ovu_index;      /* bucket # */
65 #ifdef RCHECK
66                 u_short ovu_size;       /* actual block size */
67                 u_int   ovu_rmagic;     /* range magic number */
68 #endif
69         } ovu;
70 #define ov_magic        ovu.ovu_magic
71 #define ov_index        ovu.ovu_index
72 #define ov_size         ovu.ovu_size
73 #define ov_rmagic       ovu.ovu_rmagic
74 };
75
76 #ifdef DEBUGGING
77 static void botch _((char *s));
78 #endif
79 static void morecore _((int bucket));
80 static int findbucket _((union overhead *freep, int srchlen));
81
82 #define MAGIC           0xff            /* magic # on accounting info */
83 #define RMAGIC          0x55555555      /* magic # on range info */
84 #ifdef RCHECK
85 #  define       RSLOP           sizeof (u_int)
86 #  ifdef TWO_POT_OPTIMIZE
87 #    define MAX_SHORT_BUCKET 12
88 #  else
89 #    define MAX_SHORT_BUCKET 13
90 #  endif 
91 #else
92 #  define       RSLOP           0
93 #endif
94
95 #ifdef PACK_MALLOC
96 /*
97  * In this case it is assumed that if we do sbrk() in 2K units, we
98  * will get 2K aligned blocks. The bucket number of the given subblock is
99  * on the boundary of 2K block which contains the subblock.
100  * Several following bytes contain the magic numbers for the subblocks
101  * in the block.
102  *
103  * Sizes of chunks are powers of 2 for chunks in buckets <=
104  * MAX_PACKED, after this they are (2^n - sizeof(union overhead)) (to
105  * get alignment right).
106  *
107  * We suppose that starts of all the chunks in a 2K block are in
108  * different 2^n-byte-long chunks.  If the top of the last chunk is
109  * aligned on a boundary of 2K block, this means that
110  * sizeof(union overhead)*"number of chunks" < 2^n, or
111  * sizeof(union overhead)*2K < 4^n, or n > 6 + log2(sizeof()/2)/2, if a
112  * chunk of size 2^n - overhead is used. Since this rules out n = 7
113  * for 8 byte alignment, we specialcase allocation of the first of 16
114  * 128-byte-long chunks.
115  *
116  * Note that with the above assumption we automatically have enough
117  * place for MAGIC at the start of 2K block.  Note also that we
118  * overlay union overhead over the chunk, thus the start of the chunk
119  * is immediately overwritten after freeing.
120  */
121 #  define MAX_PACKED 6
122 #  define MAX_2_POT_ALGO ((1<<(MAX_PACKED + 1)) - M_OVERHEAD)
123 #  define TWOK_MASK ((1<<11) - 1)
124 #  define TWOK_MASKED(x) ((u_int)(x) & ~TWOK_MASK)
125 #  define TWOK_SHIFT(x) ((u_int)(x) & TWOK_MASK)
126 #  define OV_INDEXp(block) ((u_char*)(TWOK_MASKED(block)))
127 #  define OV_INDEX(block) (*OV_INDEXp(block))
128 #  define OV_MAGIC(block,bucket) (*(OV_INDEXp(block) +                  \
129                                     (TWOK_SHIFT(block)>>(bucket + 3)) + \
130                                     (bucket > MAX_NONSHIFT ? 1 : 0)))
131 #  define CHUNK_SHIFT 0
132
133 static u_char n_blks[11 - 3]     = {224, 120, 62, 31, 16, 8, 4, 2};
134 static u_short blk_shift[11 - 3] = {256, 128, 64, 32, 
135                                     16*sizeof(union overhead), 
136                                     8*sizeof(union overhead), 
137                                     4*sizeof(union overhead), 
138                                     2*sizeof(union overhead), 
139 #  define MAX_NONSHIFT 2        /* Shift 64 greater than chunk 32. */
140 };
141
142 #else  /* !PACK_MALLOC */
143
144 #  define OV_MAGIC(block,bucket) (block)->ov_magic
145 #  define OV_INDEX(block) (block)->ov_index
146 #  define CHUNK_SHIFT 1
147 #endif /* !PACK_MALLOC */
148
149 #  define M_OVERHEAD (sizeof(union overhead) + RSLOP)
150
151 /*
152  * Big allocations are often of the size 2^n bytes. To make them a
153  * little bit better, make blocks of size 2^n+pagesize for big n.
154  */
155
156 #ifdef TWO_POT_OPTIMIZE
157
158 #  ifndef PERL_PAGESIZE
159 #    define PERL_PAGESIZE 4096
160 #  endif 
161 #  ifndef FIRST_BIG_TWO_POT
162 #    define FIRST_BIG_TWO_POT 14        /* 16K */
163 #  endif
164 #  define FIRST_BIG_BLOCK (1<<FIRST_BIG_TWO_POT) /* 16K */
165 /* If this value or more, check against bigger blocks. */
166 #  define FIRST_BIG_BOUND (FIRST_BIG_BLOCK - M_OVERHEAD)
167 /* If less than this value, goes into 2^n-overhead-block. */
168 #  define LAST_SMALL_BOUND ((FIRST_BIG_BLOCK>>1) - M_OVERHEAD)
169
170 #endif /* TWO_POT_OPTIMIZE */
171
172 #if defined(PERL_EMERGENCY_SBRK) && defined(PERL_CORE)
173
174 #ifndef BIG_SIZE
175 #  define BIG_SIZE (1<<16)              /* 64K */
176 #endif 
177
178 static char *emergency_buffer;
179 static MEM_SIZE emergency_buffer_size;
180
181 static Malloc_t
182 emergency_sbrk(size)
183     MEM_SIZE size;
184 {
185     if (size >= BIG_SIZE) {
186         /* Give the possibility to recover: */
187         die("Out of memory during request for %i bytes", size);
188         /* croak may eat too much memory. */
189     }
190
191     if (!emergency_buffer) {            
192         dTHR;
193         /* First offense, give a possibility to recover by dieing. */
194         /* No malloc involved here: */
195         GV **gvp = (GV**)hv_fetch(defstash, "^M", 2, 0);
196         SV *sv;
197         char *pv;
198
199         if (!gvp) gvp = (GV**)hv_fetch(defstash, "\015", 1, 0);
200         if (!gvp || !(sv = GvSV(*gvp)) || !SvPOK(sv) 
201             || (SvLEN(sv) < (1<<11) - M_OVERHEAD)) 
202             return (char *)-1;          /* Now die die die... */
203
204         /* Got it, now detach SvPV: */
205         pv = SvPV(sv, na);
206         /* Check alignment: */
207         if (((u_int)(pv - M_OVERHEAD)) & ((1<<11) - 1)) {
208             PerlIO_puts(PerlIO_stderr(),"Bad alignment of $^M!\n");
209             return (char *)-1;          /* die die die */
210         }
211
212         emergency_buffer = pv - M_OVERHEAD;
213         emergency_buffer_size = SvLEN(sv) + M_OVERHEAD;
214         SvPOK_off(sv);
215         SvREADONLY_on(sv);
216         die("Out of memory!");          /* croak may eat too much memory. */
217     }
218     else if (emergency_buffer_size >= size) {
219         emergency_buffer_size -= size;
220         return emergency_buffer + emergency_buffer_size;
221     }
222     
223     return (char *)-1;                  /* poor guy... */
224 }
225
226 #else /* !(defined(TWO_POT_OPTIMIZE) && defined(PERL_CORE)) */
227 #  define emergency_sbrk(size)  -1
228 #endif /* !(defined(TWO_POT_OPTIMIZE) && defined(PERL_CORE)) */
229
230 /*
231  * nextf[i] is the pointer to the next free block of size 2^(i+3).  The
232  * smallest allocatable block is 8 bytes.  The overhead information
233  * precedes the data area returned to the user.
234  */
235 #define NBUCKETS 30
236 static  union overhead *nextf[NBUCKETS];
237
238 #ifdef USE_PERL_SBRK
239 #define sbrk(a) Perl_sbrk(a)
240 Malloc_t Perl_sbrk _((int size));
241 #else 
242 #ifdef DONT_DECLARE_STD
243 #ifdef I_UNISTD
244 #include <unistd.h>
245 #endif
246 #else
247 extern  Malloc_t sbrk(int);
248 #endif
249 #endif
250
251 #ifdef DEBUGGING_MSTATS
252 /*
253  * nmalloc[i] is the difference between the number of mallocs and frees
254  * for a given block size.
255  */
256 static  u_int nmalloc[NBUCKETS];
257 static  u_int goodsbrk;
258 static  u_int sbrk_slack;
259 static  u_int start_slack;
260 #endif
261
262 #ifdef DEBUGGING
263 #define ASSERT(p)   if (!(p)) botch(STRINGIFY(p));  else
264 static void
265 botch(char *s)
266 {
267         PerlIO_printf(PerlIO_stderr(), "assertion botched: %s\n", s);
268         PerlProc_abort();
269 }
270 #else
271 #define ASSERT(p)
272 #endif
273
274 Malloc_t
275 malloc(register size_t nbytes)
276 {
277         register union overhead *p;
278         register int bucket = 0;
279         register MEM_SIZE shiftr;
280
281 #if defined(DEBUGGING) || defined(RCHECK)
282         MEM_SIZE size = nbytes;
283 #endif
284
285 #ifdef PERL_CORE
286 #ifdef HAS_64K_LIMIT
287         if (nbytes > 0xffff) {
288                 PerlIO_printf(PerlIO_stderr(),
289                               "Allocation too large: %lx\n", (long)nbytes);
290                 my_exit(1);
291         }
292 #endif /* HAS_64K_LIMIT */
293 #ifdef DEBUGGING
294         if ((long)nbytes < 0)
295                 croak("panic: malloc");
296 #endif
297 #endif /* PERL_CORE */
298
299         MUTEX_LOCK(&malloc_mutex);
300         /*
301          * Convert amount of memory requested into
302          * closest block size stored in hash buckets
303          * which satisfies request.  Account for
304          * space used per block for accounting.
305          */
306 #ifdef PACK_MALLOC
307         if (nbytes == 0)
308             nbytes = 1;
309         else if (nbytes > MAX_2_POT_ALGO)
310 #endif
311         {
312 #ifdef TWO_POT_OPTIMIZE
313                 if (nbytes >= FIRST_BIG_BOUND)
314                         nbytes -= PERL_PAGESIZE;
315 #endif 
316                 nbytes += M_OVERHEAD;
317                 nbytes = (nbytes + 3) &~ 3; 
318         }
319         shiftr = (nbytes - 1) >> 2;
320         /* apart from this loop, this is O(1) */
321         while (shiftr >>= 1)
322                 bucket++;
323         /*
324          * If nothing in hash bucket right now,
325          * request more memory from the system.
326          */
327         if (nextf[bucket] == NULL)    
328                 morecore(bucket);
329         if ((p = (union overhead *)nextf[bucket]) == NULL) {
330                 MUTEX_UNLOCK(&malloc_mutex);
331 #ifdef PERL_CORE
332                 if (!nomemok) {
333                     PerlIO_puts(PerlIO_stderr(),"Out of memory!\n");
334                     my_exit(1);
335                 }
336 #else
337                 return (NULL);
338 #endif
339         }
340
341 #ifdef PERL_CORE
342     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05lu) malloc %ld bytes\n",
343         (unsigned long)(p+1),(unsigned long)(an++),(long)size));
344 #endif /* PERL_CORE */
345
346         /* remove from linked list */
347 #ifdef RCHECK
348         if (*((int*)p) & (sizeof(union overhead) - 1))
349             PerlIO_printf(PerlIO_stderr(), "Corrupt malloc ptr 0x%lx at 0x%lx\n",
350                 (unsigned long)*((int*)p),(unsigned long)p);
351 #endif
352         nextf[bucket] = p->ov_next;
353         OV_MAGIC(p, bucket) = MAGIC;
354 #ifndef PACK_MALLOC
355         OV_INDEX(p) = bucket;
356 #endif
357 #ifdef RCHECK
358         /*
359          * Record allocated size of block and
360          * bound space with magic numbers.
361          */
362         nbytes = (size + M_OVERHEAD + 3) &~ 3; 
363         if (nbytes <= 0x10000)
364                 p->ov_size = nbytes - 1;
365         p->ov_rmagic = RMAGIC;
366         *((u_int *)((caddr_t)p + nbytes - RSLOP)) = RMAGIC;
367 #endif
368         MUTEX_UNLOCK(&malloc_mutex);
369         return ((Malloc_t)(p + CHUNK_SHIFT));
370 }
371
372 /*
373  * Allocate more memory to the indicated bucket.
374  */
375 static void
376 morecore(register int bucket)
377 {
378         register union overhead *ovp;
379         register int rnu;       /* 2^rnu bytes will be requested */
380         register int nblks;     /* become nblks blocks of the desired size */
381         register MEM_SIZE siz, needed;
382         int slack = 0;
383
384         if (nextf[bucket])
385                 return;
386         if (bucket == (sizeof(MEM_SIZE)*8 - 3)) {
387             croak("Allocation too large");
388         }
389         /*
390          * Insure memory is allocated
391          * on a page boundary.  Should
392          * make getpageize call?
393          */
394 #ifndef atarist /* on the atari we dont have to worry about this */
395         ovp = (union overhead *)sbrk(0);
396 #  ifndef I286
397         if ((UV)ovp & (0x7FF >> CHUNK_SHIFT)) {
398             slack = (0x800 >> CHUNK_SHIFT) - ((UV)ovp & (0x7FF >> CHUNK_SHIFT));
399             (void)sbrk(slack);
400 #    if defined(DEBUGGING_MSTATS)
401             sbrk_slack += slack;
402 #    endif
403         }
404 #  else
405         /* The sbrk(0) call on the I286 always returns the next segment */
406 #  endif
407 #endif /* atarist */
408
409 #if !(defined(I286) || defined(atarist))
410         /* take 2k unless the block is bigger than that */
411         rnu = (bucket <= 8) ? 11 : bucket + 3;
412 #else
413         /* take 16k unless the block is bigger than that 
414            (80286s like large segments!), probably good on the atari too */
415         rnu = (bucket <= 11) ? 14 : bucket + 3;
416 #endif
417         nblks = 1 << (rnu - (bucket + 3));  /* how many blocks to get */
418         needed = (MEM_SIZE)1 << rnu;
419 #ifdef TWO_POT_OPTIMIZE
420         needed += (bucket >= (FIRST_BIG_TWO_POT - 3) ? PERL_PAGESIZE : 0);
421 #endif 
422         ovp = (union overhead *)sbrk(needed);
423         /* no more room! */
424         if (ovp == (union overhead *)-1) {
425             ovp = (union overhead *)emergency_sbrk(needed);
426             if (ovp == (union overhead *)-1)
427                 return;
428         }
429 #ifdef DEBUGGING_MSTATS
430         goodsbrk += needed;
431 #endif  
432         /*
433          * Round up to minimum allocation size boundary
434          * and deduct from block count to reflect.
435          */
436 #ifndef I286
437 #  ifdef PACK_MALLOC
438         if ((UV)ovp & 0x7FF)
439                 croak("panic: Off-page sbrk");
440 #  endif
441         if ((UV)ovp & 7) {
442                 ovp = (union overhead *)(((UV)ovp + 8) & ~7);
443                 nblks--;
444         }
445 #else
446         /* Again, this should always be ok on an 80286 */
447 #endif
448         /*
449          * Add new memory allocated to that on
450          * free list for this hash bucket.
451          */
452         siz = 1 << (bucket + 3);
453 #ifdef PACK_MALLOC
454         *(u_char*)ovp = bucket; /* Fill index. */
455         if (bucket <= MAX_PACKED - 3) {
456             ovp = (union overhead *) ((char*)ovp + blk_shift[bucket]);
457             nblks = n_blks[bucket];
458 #  ifdef DEBUGGING_MSTATS
459             start_slack += blk_shift[bucket];
460 #  endif
461         } else if (bucket <= 11 - 1 - 3) {
462             ovp = (union overhead *) ((char*)ovp + blk_shift[bucket]);
463             /* nblks = n_blks[bucket]; */
464             siz -= sizeof(union overhead);
465         } else ovp++;           /* One chunk per block. */
466 #endif /* !PACK_MALLOC */
467         nextf[bucket] = ovp;
468 #ifdef DEBUGGING_MSTATS
469         nmalloc[bucket] += nblks;
470 #endif 
471         while (--nblks > 0) {
472                 ovp->ov_next = (union overhead *)((caddr_t)ovp + siz);
473                 ovp = (union overhead *)((caddr_t)ovp + siz);
474         }
475         /* Not all sbrks return zeroed memory.*/
476         ovp->ov_next = (union overhead *)NULL;
477 #ifdef PACK_MALLOC
478         if (bucket == 7 - 3) {  /* Special case, explanation is above. */
479             union overhead *n_op = nextf[7 - 3]->ov_next;
480             nextf[7 - 3] = (union overhead *)((caddr_t)nextf[7 - 3] 
481                                               - sizeof(union overhead));
482             nextf[7 - 3]->ov_next = n_op;
483         }
484 #endif /* !PACK_MALLOC */
485 }
486
487 Free_t
488 free(void *mp)
489 {   
490         register MEM_SIZE size;
491         register union overhead *ovp;
492         char *cp = (char*)mp;
493 #ifdef PACK_MALLOC
494         u_char bucket;
495 #endif 
496
497 #ifdef PERL_CORE
498     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05lu) free\n",(unsigned long)cp,(unsigned long)(an++)));
499 #endif /* PERL_CORE */
500
501         if (cp == NULL)
502                 return;
503         ovp = (union overhead *)((caddr_t)cp 
504                                  - sizeof (union overhead) * CHUNK_SHIFT);
505 #ifdef PACK_MALLOC
506         bucket = OV_INDEX(ovp);
507 #endif 
508         if (OV_MAGIC(ovp, bucket) != MAGIC) {
509                 static int bad_free_warn = -1;
510                 if (bad_free_warn == -1) {
511                     char *pbf = PerlEnv_getenv("PERL_BADFREE");
512                     bad_free_warn = (pbf) ? atoi(pbf) : 1;
513                 }
514                 if (!bad_free_warn)
515                     return;
516 #ifdef RCHECK
517                 warn("%s free() ignored",
518                     ovp->ov_rmagic == RMAGIC - 1 ? "Duplicate" : "Bad");
519 #else
520                 warn("Bad free() ignored");
521 #endif
522                 return;                         /* sanity */
523         }
524         MUTEX_LOCK(&malloc_mutex);
525 #ifdef RCHECK
526         ASSERT(ovp->ov_rmagic == RMAGIC);
527         if (OV_INDEX(ovp) <= MAX_SHORT_BUCKET)
528                 ASSERT(*(u_int *)((caddr_t)ovp + ovp->ov_size + 1 - RSLOP) == RMAGIC);
529         ovp->ov_rmagic = RMAGIC - 1;
530 #endif
531         ASSERT(OV_INDEX(ovp) < NBUCKETS);
532         size = OV_INDEX(ovp);
533         ovp->ov_next = nextf[size];
534         nextf[size] = ovp;
535         MUTEX_UNLOCK(&malloc_mutex);
536 }
537
538 /*
539  * When a program attempts "storage compaction" as mentioned in the
540  * old malloc man page, it realloc's an already freed block.  Usually
541  * this is the last block it freed; occasionally it might be farther
542  * back.  We have to search all the free lists for the block in order
543  * to determine its bucket: 1st we make one pass thru the lists
544  * checking only the first block in each; if that fails we search
545  * ``reall_srchlen'' blocks in each list for a match (the variable
546  * is extern so the caller can modify it).  If that fails we just copy
547  * however many bytes was given to realloc() and hope it's not huge.
548  */
549 int reall_srchlen = 4;  /* 4 should be plenty, -1 =>'s whole list */
550
551 Malloc_t
552 realloc(void *mp, size_t nbytes)
553 {   
554         register MEM_SIZE onb;
555         union overhead *ovp;
556         char *res;
557         register int i;
558         int was_alloced = 0;
559         char *cp = (char*)mp;
560
561 #ifdef DEBUGGING
562         MEM_SIZE size = nbytes;
563 #endif
564
565 #ifdef PERL_CORE
566 #ifdef HAS_64K_LIMIT
567         if (nbytes > 0xffff) {
568                 PerlIO_printf(PerlIO_stderr(),
569                               "Reallocation too large: %lx\n", size);
570                 my_exit(1);
571         }
572 #endif /* HAS_64K_LIMIT */
573         if (!cp)
574                 return malloc(nbytes);
575 #ifdef DEBUGGING
576         if ((long)nbytes < 0)
577                 croak("panic: realloc");
578 #endif
579 #endif /* PERL_CORE */
580
581         MUTEX_LOCK(&malloc_mutex);
582         ovp = (union overhead *)((caddr_t)cp 
583                                  - sizeof (union overhead) * CHUNK_SHIFT);
584         i = OV_INDEX(ovp);
585         if (OV_MAGIC(ovp, i) == MAGIC) {
586                 was_alloced = 1;
587         } else {
588                 /*
589                  * Already free, doing "compaction".
590                  *
591                  * Search for the old block of memory on the
592                  * free list.  First, check the most common
593                  * case (last element free'd), then (this failing)
594                  * the last ``reall_srchlen'' items free'd.
595                  * If all lookups fail, then assume the size of
596                  * the memory block being realloc'd is the
597                  * smallest possible.
598                  */
599                 if ((i = findbucket(ovp, 1)) < 0 &&
600                     (i = findbucket(ovp, reall_srchlen)) < 0)
601                         i = 0;
602         }
603         onb = (1L << (i + 3)) - 
604 #ifdef PACK_MALLOC
605             (i <= (MAX_PACKED - 3) ? 0 : M_OVERHEAD)
606 #else
607             M_OVERHEAD
608 #endif
609 #ifdef TWO_POT_OPTIMIZE
610             + (i >= (FIRST_BIG_TWO_POT - 3) ? PERL_PAGESIZE : 0)
611 #endif
612             ;
613         /* 
614          *  avoid the copy if same size block.
615          *  We are not agressive with boundary cases. Note that it is
616          *  possible for small number of cases give false negative if
617          *  both new size and old one are in the bucket for
618          *  FIRST_BIG_TWO_POT, but the new one is near the lower end.
619          */
620         if (was_alloced &&
621 #ifdef STRESS_REALLOC
622             0 && /* always do it the hard way */
623 #endif
624             nbytes <= onb && (nbytes > ( (onb >> 1) - M_OVERHEAD )
625 #ifdef TWO_POT_OPTIMIZE
626                               || (i == (FIRST_BIG_TWO_POT - 3) 
627                                   && nbytes >= LAST_SMALL_BOUND )
628 #endif  
629                 )) {
630 #ifdef RCHECK
631                 /*
632                  * Record new allocated size of block and
633                  * bound space with magic numbers.
634                  */
635                 if (OV_INDEX(ovp) <= MAX_SHORT_BUCKET) {
636                         /*
637                          * Convert amount of memory requested into
638                          * closest block size stored in hash buckets
639                          * which satisfies request.  Account for
640                          * space used per block for accounting.
641                          */
642                         nbytes += M_OVERHEAD;
643                         nbytes = (nbytes + 3) &~ 3; 
644                         ovp->ov_size = nbytes - 1;
645                         *((u_int *)((caddr_t)ovp + nbytes - RSLOP)) = RMAGIC;
646                 }
647 #endif
648                 res = cp;
649                 MUTEX_UNLOCK(&malloc_mutex);
650         }
651         else {
652                 MUTEX_UNLOCK(&malloc_mutex);
653                 if ((res = (char*)malloc(nbytes)) == NULL)
654                         return (NULL);
655                 if (cp != res)                  /* common optimization */
656                         Copy(cp, res, (MEM_SIZE)(nbytes<onb?nbytes:onb), char);
657                 if (was_alloced)
658                         free(cp);
659         }
660
661 #ifdef PERL_CORE
662 #ifdef DEBUGGING
663     if (debug & 128) {
664         PerlIO_printf(Perl_debug_log, "0x%lx: (%05lu) rfree\n",(unsigned long)res,(unsigned long)(an++));
665         PerlIO_printf(Perl_debug_log, "0x%lx: (%05lu) realloc %ld bytes\n",
666             (unsigned long)res,(unsigned long)(an++),(long)size);
667     }
668 #endif
669 #endif /* PERL_CORE */
670         return ((Malloc_t)res);
671 }
672
673 /*
674  * Search ``srchlen'' elements of each free list for a block whose
675  * header starts at ``freep''.  If srchlen is -1 search the whole list.
676  * Return bucket number, or -1 if not found.
677  */
678 static int
679 findbucket(union overhead *freep, int srchlen)
680 {
681         register union overhead *p;
682         register int i, j;
683
684         for (i = 0; i < NBUCKETS; i++) {
685                 j = 0;
686                 for (p = nextf[i]; p && j != srchlen; p = p->ov_next) {
687                         if (p == freep)
688                                 return (i);
689                         j++;
690                 }
691         }
692         return (-1);
693 }
694
695 Malloc_t
696 calloc(register size_t elements, register size_t size)
697 {
698     long sz = elements * size;
699     Malloc_t p = malloc(sz);
700
701     if (p) {
702         memset((void*)p, 0, sz);
703     }
704     return p;
705 }
706
707 #ifdef DEBUGGING_MSTATS
708 /*
709  * mstats - print out statistics about malloc
710  * 
711  * Prints two lines of numbers, one showing the length of the free list
712  * for each size category, the second showing the number of mallocs -
713  * frees for each size category.
714  */
715 void
716 dump_mstats(char *s)
717 {
718         register int i, j;
719         register union overhead *p;
720         int topbucket=0, totfree=0, total=0;
721         u_int nfree[NBUCKETS];
722
723         for (i=0; i < NBUCKETS; i++) {
724                 for (j = 0, p = nextf[i]; p; p = p->ov_next, j++)
725                         ;
726                 nfree[i] = j;
727                 totfree += nfree[i]   * (1 << (i + 3));
728                 total += nmalloc[i] * (1 << (i + 3));
729                 if (nmalloc[i])
730                         topbucket = i;
731         }
732         if (s)
733                 PerlIO_printf(PerlIO_stderr(), "Memory allocation statistics %s (buckets 8..%d)\n",
734                         s, (1 << (topbucket + 3)) );
735         PerlIO_printf(PerlIO_stderr(), "%8d free:", totfree);
736         for (i=0; i <= topbucket; i++) {
737                 PerlIO_printf(PerlIO_stderr(), (i<5 || i==7)?" %5d": (i<9)?" %3d":" %d", nfree[i]);
738         }
739         PerlIO_printf(PerlIO_stderr(), "\n%8d used:", total - totfree);
740         for (i=0; i <= topbucket; i++) {
741                 PerlIO_printf(PerlIO_stderr(), (i<5 || i==7)?" %5d": (i<9)?" %3d":" %d", nmalloc[i] - nfree[i]);
742         }
743         PerlIO_printf(PerlIO_stderr(), "\nTotal sbrk(): %8d. Odd ends: sbrk(): %7d, malloc(): %7d bytes.\n",
744                       goodsbrk + sbrk_slack, sbrk_slack, start_slack);
745 }
746 #else
747 void
748 dump_mstats(char *s)
749 {
750 }
751 #endif
752 #endif /* lint */
753
754
755 #ifdef USE_PERL_SBRK
756
757 #   ifdef NeXT
758 #      define PERL_SBRK_VIA_MALLOC
759 #   endif
760
761 #   ifdef PERL_SBRK_VIA_MALLOC
762 #      if defined(HIDEMYMALLOC) || defined(EMBEDMYMALLOC)
763 #         undef malloc
764 #      else
765 #         include "Error: -DPERL_SBRK_VIA_MALLOC needs -D(HIDE|EMBED)MYMALLOC"
766 #      endif
767
768 /* it may seem schizophrenic to use perl's malloc and let it call system */
769 /* malloc, the reason for that is only the 3.2 version of the OS that had */
770 /* frequent core dumps within nxzonefreenolock. This sbrk routine put an */
771 /* end to the cores */
772
773 #      define SYSTEM_ALLOC(a) malloc(a)
774
775 #   endif  /* PERL_SBRK_VIA_MALLOC */
776
777 static IV Perl_sbrk_oldchunk;
778 static long Perl_sbrk_oldsize;
779
780 #   define PERLSBRK_32_K (1<<15)
781 #   define PERLSBRK_64_K (1<<16)
782
783 Malloc_t
784 Perl_sbrk(size)
785 int size;
786 {
787     IV got;
788     int small, reqsize;
789
790     if (!size) return 0;
791 #ifdef PERL_CORE
792     reqsize = size; /* just for the DEBUG_m statement */
793 #endif
794 #ifdef PACK_MALLOC
795     size = (size + 0x7ff) & ~0x7ff;
796 #endif
797     if (size <= Perl_sbrk_oldsize) {
798         got = Perl_sbrk_oldchunk;
799         Perl_sbrk_oldchunk += size;
800         Perl_sbrk_oldsize -= size;
801     } else {
802       if (size >= PERLSBRK_32_K) {
803         small = 0;
804       } else {
805 #ifndef PERL_CORE
806         reqsize = size;
807 #endif
808         size = PERLSBRK_64_K;
809         small = 1;
810       }
811       got = (IV)SYSTEM_ALLOC(size);
812 #ifdef PACK_MALLOC
813       got = (got + 0x7ff) & ~0x7ff;
814 #endif
815       if (small) {
816         /* Chunk is small, register the rest for future allocs. */
817         Perl_sbrk_oldchunk = got + reqsize;
818         Perl_sbrk_oldsize = size - reqsize;
819       }
820     }
821
822 #ifdef PERL_CORE
823     DEBUG_m(PerlIO_printf(Perl_debug_log, "sbrk malloc size %ld (reqsize %ld), left size %ld, give addr 0x%lx\n",
824                     size, reqsize, Perl_sbrk_oldsize, got));
825 #endif
826
827     return (void *)got;
828 }
829
830 #endif /* ! defined USE_PERL_SBRK */