This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
PL_scopestack_name needs to be copied in perl_clone()
[perl5.git] / malloc.c
CommitLineData
a0d0e21e 1/* malloc.c
8d063cd8 2 *
8d063cd8
LW
3 */
4
87c6202a 5/*
4ac71550
TC
6 * 'The Chamber of Records,' said Gimli. 'I guess that is where we now stand.'
7 *
8 * [p.321 of _The Lord of the Rings_, II/v: "The Bridge of Khazad-Dûm"]
d31a8517
AT
9 */
10
166f8a29
DM
11/* This file contains Perl's own implementation of the malloc library.
12 * It is used if Configure decides that, on your platform, Perl's
13 * version is better than the OS's, or if you give Configure the
14 * -Dusemymalloc command-line option.
15 */
16
d31a8517 17/*
741df71a
IZ
18 Here are some notes on configuring Perl's malloc. (For non-perl
19 usage see below.)
87c6202a
IZ
20
21 There are two macros which serve as bulk disablers of advanced
22 features of this malloc: NO_FANCY_MALLOC, PLAIN_MALLOC (undef by
23 default). Look in the list of default values below to understand
24 their exact effect. Defining NO_FANCY_MALLOC returns malloc.c to the
25 state of the malloc in Perl 5.004. Additionally defining PLAIN_MALLOC
26 returns it to the state as of Perl 5.000.
27
28 Note that some of the settings below may be ignored in the code based
29 on values of other macros. The PERL_CORE symbol is only defined when
30 perl itself is being compiled (so malloc can make some assumptions
31 about perl's facilities being available to it).
32
33 Each config option has a short description, followed by its name,
34 default value, and a comment about the default (if applicable). Some
35 options take a precise value, while the others are just boolean.
36 The boolean ones are listed first.
37
22f7c9c9
JH
38 # Read configuration settings from malloc_cfg.h
39 HAVE_MALLOC_CFG_H undef
40
87c6202a
IZ
41 # Enable code for an emergency memory pool in $^M. See perlvar.pod
42 # for a description of $^M.
22f7c9c9 43 PERL_EMERGENCY_SBRK (!PLAIN_MALLOC && (PERL_CORE || !NO_MALLOC_DYNAMIC_CFG))
87c6202a
IZ
44
45 # Enable code for printing memory statistics.
46 DEBUGGING_MSTATS (!PLAIN_MALLOC && PERL_CORE)
47
48 # Move allocation info for small buckets into separate areas.
49 # Memory optimization (especially for small allocations, of the
50 # less than 64 bytes). Since perl usually makes a large number
51 # of small allocations, this is usually a win.
52 PACK_MALLOC (!PLAIN_MALLOC && !RCHECK)
53
54 # Add one page to big powers of two when calculating bucket size.
55 # This is targeted at big allocations, as are common in image
56 # processing.
57 TWO_POT_OPTIMIZE !PLAIN_MALLOC
58
59 # Use intermediate bucket sizes between powers-of-two. This is
60 # generally a memory optimization, and a (small) speed pessimization.
61 BUCKETS_ROOT2 !NO_FANCY_MALLOC
62
63 # Do not check small deallocations for bad free(). Memory
64 # and speed optimization, error reporting pessimization.
65 IGNORE_SMALL_BAD_FREE (!NO_FANCY_MALLOC && !RCHECK)
66
67 # Use table lookup to decide in which bucket a given allocation will go.
68 SMALL_BUCKET_VIA_TABLE !NO_FANCY_MALLOC
69
38ac2dc8
DD
70 # Use a perl-defined sbrk() instead of the (presumably broken or
71 # missing) system-supplied sbrk().
72 USE_PERL_SBRK undef
73
74 # Use system malloc() (or calloc() etc.) to emulate sbrk(). Normally
75 # only used with broken sbrk()s.
87c6202a
IZ
76 PERL_SBRK_VIA_MALLOC undef
77
38ac2dc8
DD
78 # Which allocator to use if PERL_SBRK_VIA_MALLOC
79 SYSTEM_ALLOC(a) malloc(a)
80
9ee81ef6 81 # Minimal alignment (in bytes, should be a power of 2) of SYSTEM_ALLOC
5bbd1ef5
IZ
82 SYSTEM_ALLOC_ALIGNMENT MEM_ALIGNBYTES
83
87c6202a
IZ
84 # Disable memory overwrite checking with DEBUGGING. Memory and speed
85 # optimization, error reporting pessimization.
86 NO_RCHECK undef
87
88 # Enable memory overwrite checking with DEBUGGING. Memory and speed
89 # pessimization, error reporting optimization
90 RCHECK (DEBUGGING && !NO_RCHECK)
91
22f7c9c9
JH
92 # Do not overwrite uninit areas with DEBUGGING. Speed
93 # optimization, error reporting pessimization
94 NO_MFILL undef
95
96 # Overwrite uninit areas with DEBUGGING. Speed
97 # pessimization, error reporting optimization
98 MALLOC_FILL (DEBUGGING && !NO_RCHECK && !NO_MFILL)
99
100 # Do not check overwritten uninit areas with DEBUGGING. Speed
101 # optimization, error reporting pessimization
102 NO_FILL_CHECK undef
103
104 # Check overwritten uninit areas with DEBUGGING. Speed
105 # pessimization, error reporting optimization
106 MALLOC_FILL_CHECK (DEBUGGING && !NO_RCHECK && !NO_FILL_CHECK)
107
87c6202a
IZ
108 # Failed allocations bigger than this size croak (if
109 # PERL_EMERGENCY_SBRK is enabled) without touching $^M. See
110 # perlvar.pod for a description of $^M.
111 BIG_SIZE (1<<16) # 64K
112
113 # Starting from this power of two, add an extra page to the
114 # size of the bucket. This enables optimized allocations of sizes
115 # close to powers of 2. Note that the value is indexed at 0.
116 FIRST_BIG_POW2 15 # 32K, 16K is used too often
117
118 # Estimate of minimal memory footprint. malloc uses this value to
119 # request the most reasonable largest blocks of memory from the system.
120 FIRST_SBRK (48*1024)
121
122 # Round up sbrk()s to multiples of this.
123 MIN_SBRK 2048
124
125 # Round up sbrk()s to multiples of this percent of footprint.
126 MIN_SBRK_FRAC 3
127
22f7c9c9
JH
128 # Round up sbrk()s to multiples of this multiple of 1/1000 of footprint.
129 MIN_SBRK_FRAC1000 (10 * MIN_SBRK_FRAC)
130
87c6202a
IZ
131 # Add this much memory to big powers of two to get the bucket size.
132 PERL_PAGESIZE 4096
133
134 # This many sbrk() discontinuities should be tolerated even
135 # from the start without deciding that sbrk() is usually
136 # discontinuous.
137 SBRK_ALLOW_FAILURES 3
138
139 # This many continuous sbrk()s compensate for one discontinuous one.
140 SBRK_FAILURE_PRICE 50
141
28ac10b1
IZ
142 # Some configurations may ask for 12-byte-or-so allocations which
143 # require 8-byte alignment (?!). In such situation one needs to
144 # define this to disable 12-byte bucket (will increase memory footprint)
145 STRICT_ALIGNMENT undef
146
22f7c9c9
JH
147 # Do not allow configuration of runtime options at runtime
148 NO_MALLOC_DYNAMIC_CFG undef
149
150 # Do not allow configuration of runtime options via $ENV{PERL_MALLOC_OPT}
151 NO_PERL_MALLOC_ENV undef
152
153 [The variable consists of ;-separated parts of the form CODE=VALUE
154 with 1-character codes F, M, f, A, P, G, d, a, c for runtime
155 configuration of FIRST_SBRK, MIN_SBRK, MIN_SBRK_FRAC1000,
156 SBRK_ALLOW_FAILURES, SBRK_FAILURE_PRICE, sbrk_goodness,
157 filldead, fillalive, fillcheck. The last 3 are for DEBUGGING
158 build, and allow switching the tests for free()ed memory read,
159 uninit memory reads, and free()ed memory write.]
160
87c6202a
IZ
161 This implementation assumes that calling PerlIO_printf() does not
162 result in any memory allocation calls (used during a panic).
163
164 */
165
741df71a
IZ
166/*
167 If used outside of Perl environment, it may be useful to redefine
168 the following macros (listed below with defaults):
169
170 # Type of address returned by allocation functions
171 Malloc_t void *
172
173 # Type of size argument for allocation functions
174 MEM_SIZE unsigned long
175
c7374474
GS
176 # size of void*
177 PTRSIZE 4
178
741df71a
IZ
179 # Maximal value in LONG
180 LONG_MAX 0x7FFFFFFF
181
182 # Unsigned integer type big enough to keep a pointer
183 UV unsigned long
184
22f7c9c9
JH
185 # Signed integer of the same sizeof() as UV
186 IV long
187
741df71a
IZ
188 # Type of pointer with 1-byte granularity
189 caddr_t char *
190
191 # Type returned by free()
192 Free_t void
193
22f7c9c9
JH
194 # Conversion of pointer to integer
195 PTR2UV(ptr) ((UV)(ptr))
196
197 # Conversion of integer to pointer
198 INT2PTR(type, i) ((type)(i))
199
200 # printf()-%-Conversion of UV to pointer
201 UVuf "lu"
202
203 # printf()-%-Conversion of UV to hex pointer
204 UVxf "lx"
205
206 # Alignment to use
207 MEM_ALIGNBYTES 4
208
5bbd1ef5
IZ
209 # Very fatal condition reporting function (cannot call any )
210 fatalcroak(arg) write(2,arg,strlen(arg)) + exit(2)
211
741df71a
IZ
212 # Fatal error reporting function
213 croak(format, arg) warn(idem) + exit(1)
214
b022d2d2
IZ
215 # Fatal error reporting function
216 croak2(format, arg1, arg2) warn2(idem) + exit(1)
217
741df71a
IZ
218 # Error reporting function
219 warn(format, arg) fprintf(stderr, idem)
220
b022d2d2
IZ
221 # Error reporting function
222 warn2(format, arg1, arg2) fprintf(stderr, idem)
223
741df71a 224 # Locking/unlocking for MT operation
efc57feb
GS
225 MALLOC_LOCK MUTEX_LOCK(&PL_malloc_mutex)
226 MALLOC_UNLOCK MUTEX_UNLOCK(&PL_malloc_mutex)
741df71a
IZ
227
228 # Locking/unlocking mutex for MT operation
229 MUTEX_LOCK(l) void
230 MUTEX_UNLOCK(l) void
231 */
232
22f7c9c9
JH
233#ifdef HAVE_MALLOC_CFG_H
234# include "malloc_cfg.h"
235#endif
236
e8bc2b5c
GS
237#ifndef NO_FANCY_MALLOC
238# ifndef SMALL_BUCKET_VIA_TABLE
239# define SMALL_BUCKET_VIA_TABLE
240# endif
241# ifndef BUCKETS_ROOT2
242# define BUCKETS_ROOT2
243# endif
244# ifndef IGNORE_SMALL_BAD_FREE
245# define IGNORE_SMALL_BAD_FREE
246# endif
3562ef9b
IZ
247#endif
248
e8bc2b5c
GS
249#ifndef PLAIN_MALLOC /* Bulk enable features */
250# ifndef PACK_MALLOC
251# define PACK_MALLOC
252# endif
253# ifndef TWO_POT_OPTIMIZE
254# define TWO_POT_OPTIMIZE
255# endif
22f7c9c9 256# if (defined(PERL_CORE) || !defined(NO_MALLOC_DYNAMIC_CFG)) && !defined(PERL_EMERGENCY_SBRK)
d720c441 257# define PERL_EMERGENCY_SBRK
e8bc2b5c
GS
258# endif
259# if defined(PERL_CORE) && !defined(DEBUGGING_MSTATS)
260# define DEBUGGING_MSTATS
261# endif
262#endif
263
264#define MIN_BUC_POW2 (sizeof(void*) > 4 ? 3 : 2) /* Allow for 4-byte arena. */
265#define MIN_BUCKET (MIN_BUC_POW2 * BUCKETS_PER_POW2)
266
e94c1c05 267#if !(defined(I286) || defined(atarist))
e8bc2b5c
GS
268 /* take 2k unless the block is bigger than that */
269# define LOG_OF_MIN_ARENA 11
270#else
271 /* take 16k unless the block is bigger than that
272 (80286s like large segments!), probably good on the atari too */
273# define LOG_OF_MIN_ARENA 14
274#endif
275
075abff3
AL
276#if defined(DEBUGGING) && !defined(NO_RCHECK)
277# define RCHECK
278#endif
279#if defined(DEBUGGING) && !defined(NO_RCHECK) && !defined(NO_MFILL) && !defined(MALLOC_FILL)
280# define MALLOC_FILL
281#endif
282#if defined(DEBUGGING) && !defined(NO_RCHECK) && !defined(NO_FILL_CHECK) && !defined(MALLOC_FILL_CHECK)
283# define MALLOC_FILL_CHECK
284#endif
285#if defined(RCHECK) && defined(IGNORE_SMALL_BAD_FREE)
286# undef IGNORE_SMALL_BAD_FREE
287#endif
8d063cd8
LW
288/*
289 * malloc.c (Caltech) 2/21/82
290 * Chris Kingsley, kingsley@cit-20.
291 *
292 * This is a very fast storage allocator. It allocates blocks of a small
293 * number of different sizes, and keeps free lists of each size. Blocks that
294 * don't exactly fit are passed up to the next larger size. In this
295 * implementation, the available sizes are 2^n-4 (or 2^n-12) bytes long.
cf5c4ad8 296 * If PACK_MALLOC is defined, small blocks are 2^n bytes long.
8d063cd8 297 * This is designed for use in a program that uses vast quantities of memory,
741df71a
IZ
298 * but bombs when it runs out.
299 *
4eb8286e 300 * Modifications Copyright Ilya Zakharevich 1996-99.
741df71a
IZ
301 *
302 * Still very quick, but much more thrifty. (Std config is 10% slower
303 * than it was, and takes 67% of old heap size for typical usage.)
304 *
305 * Allocations of small blocks are now table-driven to many different
306 * buckets. Sizes of really big buckets are increased to accomodata
307 * common size=power-of-2 blocks. Running-out-of-memory is made into
308 * an exception. Deeply configurable and thread-safe.
309 *
8d063cd8
LW
310 */
311
d720c441
IZ
312#ifdef PERL_CORE
313# include "EXTERN.h"
4ad56ec9 314# define PERL_IN_MALLOC_C
d720c441 315# include "perl.h"
cea2e8a9
GS
316# if defined(PERL_IMPLICIT_CONTEXT)
317# define croak Perl_croak_nocontext
b022d2d2 318# define croak2 Perl_croak_nocontext
cea2e8a9 319# define warn Perl_warn_nocontext
b022d2d2
IZ
320# define warn2 Perl_warn_nocontext
321# else
322# define croak2 croak
323# define warn2 warn
cea2e8a9 324# endif
22f7c9c9
JH
325# if defined(USE_5005THREADS) || defined(USE_ITHREADS)
326# define PERL_MAYBE_ALIVE PL_thr_key
327# else
328# define PERL_MAYBE_ALIVE 1
329# endif
d720c441
IZ
330#else
331# ifdef PERL_FOR_X2P
332# include "../EXTERN.h"
333# include "../perl.h"
334# else
335# include <stdlib.h>
336# include <stdio.h>
337# include <memory.h>
22f7c9c9
JH
338# ifdef OS2
339# include <io.h>
340# endif
341# include <string.h>
d720c441
IZ
342# ifndef Malloc_t
343# define Malloc_t void *
344# endif
c7374474
GS
345# ifndef PTRSIZE
346# define PTRSIZE 4
347# endif
d720c441
IZ
348# ifndef MEM_SIZE
349# define MEM_SIZE unsigned long
350# endif
351# ifndef LONG_MAX
352# define LONG_MAX 0x7FFFFFFF
353# endif
354# ifndef UV
355# define UV unsigned long
356# endif
22f7c9c9
JH
357# ifndef IV
358# define IV long
359# endif
d720c441
IZ
360# ifndef caddr_t
361# define caddr_t char *
362# endif
363# ifndef Free_t
364# define Free_t void
365# endif
366# define Copy(s,d,n,t) (void)memcpy((char*)(d),(char*)(s), (n) * sizeof(t))
e90e2364 367# define CopyD(s,d,n,t) memcpy((char*)(d),(char*)(s), (n) * sizeof(t))
d720c441
IZ
368# define PerlEnv_getenv getenv
369# define PerlIO_printf fprintf
370# define PerlIO_stderr() stderr
22f7c9c9
JH
371# define PerlIO_puts(f,s) fputs(s,f)
372# ifndef INT2PTR
373# define INT2PTR(t,i) ((t)(i))
374# endif
375# ifndef PTR2UV
376# define PTR2UV(p) ((UV)(p))
377# endif
378# ifndef UVuf
379# define UVuf "lu"
380# endif
381# ifndef UVxf
382# define UVxf "lx"
383# endif
22f7c9c9
JH
384# ifndef MEM_ALIGNBYTES
385# define MEM_ALIGNBYTES 4
386# endif
d720c441 387# endif
e8bc2b5c 388# ifndef croak /* make depend */
741df71a 389# define croak(mess, arg) (warn((mess), (arg)), exit(1))
d720c441 390# endif
b022d2d2
IZ
391# ifndef croak2 /* make depend */
392# define croak2(mess, arg1, arg2) (warn2((mess), (arg1), (arg2)), exit(1))
393# endif
d720c441 394# ifndef warn
741df71a 395# define warn(mess, arg) fprintf(stderr, (mess), (arg))
e8bc2b5c 396# endif
0b415716 397# ifndef warn2
22f7c9c9 398# define warn2(mess, arg1, arg2) fprintf(stderr, (mess), (arg1), (arg2))
b022d2d2 399# endif
e8bc2b5c
GS
400# ifdef DEBUG_m
401# undef DEBUG_m
402# endif
403# define DEBUG_m(a)
404# ifdef DEBUGGING
405# undef DEBUGGING
406# endif
cea2e8a9
GS
407# ifndef pTHX
408# define pTHX void
409# define pTHX_
0dbb1585 410# ifdef HASATTRIBUTE_UNUSED
5ba4cab2 411# define dTHX extern int Perl___notused PERL_UNUSED_DECL
afb90382
MS
412# else
413# define dTHX extern int Perl___notused
414# endif
cea2e8a9
GS
415# define WITH_THX(s) s
416# endif
c5be433b
GS
417# ifndef PERL_GET_INTERP
418# define PERL_GET_INTERP PL_curinterp
419# endif
22f7c9c9 420# define PERL_MAYBE_ALIVE 1
4ad56ec9
IZ
421# ifndef Perl_malloc
422# define Perl_malloc malloc
423# endif
424# ifndef Perl_mfree
425# define Perl_mfree free
426# endif
427# ifndef Perl_realloc
428# define Perl_realloc realloc
429# endif
430# ifndef Perl_calloc
431# define Perl_calloc calloc
432# endif
433# ifndef Perl_strdup
434# define Perl_strdup strdup
435# endif
22f7c9c9 436#endif /* defined PERL_CORE */
e8bc2b5c
GS
437
438#ifndef MUTEX_LOCK
439# define MUTEX_LOCK(l)
440#endif
441
442#ifndef MUTEX_UNLOCK
443# define MUTEX_UNLOCK(l)
444#endif
445
741df71a 446#ifndef MALLOC_LOCK
efc57feb 447# define MALLOC_LOCK MUTEX_LOCK(&PL_malloc_mutex)
741df71a
IZ
448#endif
449
450#ifndef MALLOC_UNLOCK
efc57feb 451# define MALLOC_UNLOCK MUTEX_UNLOCK(&PL_malloc_mutex)
741df71a
IZ
452#endif
453
5bbd1ef5
IZ
454# ifndef fatalcroak /* make depend */
455# define fatalcroak(mess) (write(2, (mess), strlen(mess)), exit(2))
456# endif
457
760ac839 458#ifdef DEBUGGING
e8bc2b5c 459# undef DEBUG_m
51a5ed28 460# define DEBUG_m(a) \
0b250b9e 461 STMT_START { \
22f7c9c9 462 if (PERL_MAYBE_ALIVE && PERL_GET_THX) { \
51a5ed28
HS
463 dTHX; \
464 if (DEBUG_m_TEST) { \
465 PL_debug &= ~DEBUG_m_FLAG; \
466 a; \
467 PL_debug |= DEBUG_m_FLAG; \
468 } \
469 } \
0b250b9e 470 } STMT_END
760ac839
LW
471#endif
472
e476b1b5
GS
473#ifdef PERL_IMPLICIT_CONTEXT
474# define PERL_IS_ALIVE aTHX
475#else
476# define PERL_IS_ALIVE TRUE
477#endif
478
479
e9397286
GS
480/*
481 * Layout of memory:
482 * ~~~~~~~~~~~~~~~~
483 * The memory is broken into "blocks" which occupy multiples of 2K (and
484 * generally speaking, have size "close" to a power of 2). The addresses
485 * of such *unused* blocks are kept in nextf[i] with big enough i. (nextf
486 * is an array of linked lists.) (Addresses of used blocks are not known.)
487 *
4ad56ec9 488 * Moreover, since the algorithm may try to "bite" smaller blocks out
e9397286
GS
489 * of unused bigger ones, there are also regions of "irregular" size,
490 * managed separately, by a linked list chunk_chain.
491 *
492 * The third type of storage is the sbrk()ed-but-not-yet-used space, its
493 * end and size are kept in last_sbrk_top and sbrked_remains.
494 *
495 * Growing blocks "in place":
496 * ~~~~~~~~~~~~~~~~~~~~~~~~~
497 * The address of the block with the greatest address is kept in last_op
498 * (if not known, last_op is 0). If it is known that the memory above
499 * last_op is not continuous, or contains a chunk from chunk_chain,
500 * last_op is set to 0.
501 *
502 * The chunk with address last_op may be grown by expanding into
503 * sbrk()ed-but-not-yet-used space, or trying to sbrk() more continuous
504 * memory.
505 *
506 * Management of last_op:
507 * ~~~~~~~~~~~~~~~~~~~~~
508 *
509 * free() never changes the boundaries of blocks, so is not relevant.
510 *
511 * The only way realloc() may change the boundaries of blocks is if it
512 * grows a block "in place". However, in the case of success such a
513 * chunk is automatically last_op, and it remains last_op. In the case
514 * of failure getpages_adjacent() clears last_op.
515 *
516 * malloc() may change blocks by calling morecore() only.
517 *
518 * morecore() may create new blocks by:
519 * a) biting pieces from chunk_chain (cannot create one above last_op);
520 * b) biting a piece from an unused block (if block was last_op, this
521 * may create a chunk from chain above last_op, thus last_op is
522 * invalidated in such a case).
523 * c) biting of sbrk()ed-but-not-yet-used space. This creates
524 * a block which is last_op.
525 * d) Allocating new pages by calling getpages();
526 *
527 * getpages() creates a new block. It marks last_op at the bottom of
528 * the chunk of memory it returns.
529 *
530 * Active pages footprint:
531 * ~~~~~~~~~~~~~~~~~~~~~~
532 * Note that we do not need to traverse the lists in nextf[i], just take
533 * the first element of this list. However, we *need* to traverse the
534 * list in chunk_chain, but most the time it should be a very short one,
535 * so we do not step on a lot of pages we are not going to use.
536 *
537 * Flaws:
538 * ~~~~~
539 * get_from_bigger_buckets(): forget to increment price => Quite
540 * aggressive.
541 */
542
135863df
AB
543/* I don't much care whether these are defined in sys/types.h--LAW */
544
545#define u_char unsigned char
546#define u_int unsigned int
56431972
RB
547/*
548 * I removed the definition of u_bigint which appeared to be u_bigint = UV
549 * u_bigint was only used in TWOK_MASKED and TWOK_SHIFT
550 * where I have used PTR2UV. RMB
551 */
135863df 552#define u_short unsigned short
8d063cd8 553
cf5c4ad8 554/* 286 and atarist like big chunks, which gives too much overhead. */
e94c1c05 555#if (defined(RCHECK) || defined(I286) || defined(atarist)) && defined(PACK_MALLOC)
e8bc2b5c 556# undef PACK_MALLOC
cf5c4ad8 557#endif
558
8d063cd8 559/*
cf5c4ad8 560 * The description below is applicable if PACK_MALLOC is not defined.
561 *
8d063cd8
LW
562 * The overhead on a block is at least 4 bytes. When free, this space
563 * contains a pointer to the next free block, and the bottom two bits must
564 * be zero. When in use, the first byte is set to MAGIC, and the second
565 * byte is the size index. The remaining bytes are for alignment.
566 * If range checking is enabled and the size of the block fits
567 * in two bytes, then the top two bytes hold the size of the requested block
568 * plus the range checking words, and the header word MINUS ONE.
569 */
570union overhead {
571 union overhead *ov_next; /* when free */
85e6fe83 572#if MEM_ALIGNBYTES > 4
c623bd54 573 double strut; /* alignment problems */
2b1d54e5
JH
574# if MEM_ALIGNBYTES > 8
575 char sstrut[MEM_ALIGNBYTES]; /* for the sizing */
576# endif
a687059c 577#endif
8d063cd8 578 struct {
00ff3b56
JH
579/*
580 * Keep the ovu_index and ovu_magic in this order, having a char
581 * field first gives alignment indigestion in some systems, such as
582 * MachTen.
583 */
8d063cd8 584 u_char ovu_index; /* bucket # */
b72ff565 585 u_char ovu_magic; /* magic number */
8d063cd8 586#ifdef RCHECK
d0bbed78 587 /* Subtract one to fit into u_short for an extra bucket */
22f7c9c9 588 u_short ovu_size; /* block size (requested + overhead - 1) */
8d063cd8
LW
589 u_int ovu_rmagic; /* range magic number */
590#endif
591 } ovu;
592#define ov_magic ovu.ovu_magic
593#define ov_index ovu.ovu_index
594#define ov_size ovu.ovu_size
595#define ov_rmagic ovu.ovu_rmagic
596};
597
598#define MAGIC 0xff /* magic # on accounting info */
599#define RMAGIC 0x55555555 /* magic # on range info */
e8bc2b5c
GS
600#define RMAGIC_C 0x55 /* magic # on range info */
601
8d063cd8 602#ifdef RCHECK
d0bbed78 603# define RMAGIC_SZ sizeof (u_int) /* Overhead at end of bucket */
c2a5c2d2 604# ifdef TWO_POT_OPTIMIZE
22f7c9c9 605# define MAX_SHORT_BUCKET (12 * BUCKETS_PER_POW2) /* size-1 fits in short */
c2a5c2d2 606# else
e8bc2b5c 607# define MAX_SHORT_BUCKET (13 * BUCKETS_PER_POW2)
c2a5c2d2 608# endif
8d063cd8 609#else
d0bbed78 610# define RMAGIC_SZ 0
8d063cd8
LW
611#endif
612
e8bc2b5c
GS
613#if !defined(PACK_MALLOC) && defined(BUCKETS_ROOT2)
614# undef BUCKETS_ROOT2
615#endif
616
617#ifdef BUCKETS_ROOT2
618# define BUCKET_TABLE_SHIFT 2
619# define BUCKET_POW2_SHIFT 1
620# define BUCKETS_PER_POW2 2
621#else
622# define BUCKET_TABLE_SHIFT MIN_BUC_POW2
623# define BUCKET_POW2_SHIFT 0
624# define BUCKETS_PER_POW2 1
625#endif
626
274c7500
IZ
627#if !defined(MEM_ALIGNBYTES) || ((MEM_ALIGNBYTES > 4) && !defined(STRICT_ALIGNMENT))
628/* Figure out the alignment of void*. */
629struct aligner {
630 char c;
631 void *p;
632};
633# define ALIGN_SMALL ((int)((caddr_t)&(((struct aligner*)0)->p)))
634#else
635# define ALIGN_SMALL MEM_ALIGNBYTES
636#endif
637
638#define IF_ALIGN_8(yes,no) ((ALIGN_SMALL>4) ? (yes) : (no))
639
e8bc2b5c
GS
640#ifdef BUCKETS_ROOT2
641# define MAX_BUCKET_BY_TABLE 13
a3b680e6 642static const u_short buck_size[MAX_BUCKET_BY_TABLE + 1] =
e8bc2b5c
GS
643 {
644 0, 0, 0, 0, 4, 4, 8, 12, 16, 24, 32, 48, 64, 80,
645 };
d0bbed78 646# define BUCKET_SIZE_NO_SURPLUS(i) ((i) % 2 ? buck_size[i] : (1 << ((i) >> BUCKET_POW2_SHIFT)))
e8bc2b5c
GS
647# define BUCKET_SIZE_REAL(i) ((i) <= MAX_BUCKET_BY_TABLE \
648 ? buck_size[i] \
649 : ((1 << ((i) >> BUCKET_POW2_SHIFT)) \
650 - MEM_OVERHEAD(i) \
651 + POW2_OPTIMIZE_SURPLUS(i)))
652#else
d0bbed78
IZ
653# define BUCKET_SIZE_NO_SURPLUS(i) (1 << ((i) >> BUCKET_POW2_SHIFT))
654# define BUCKET_SIZE(i) (BUCKET_SIZE_NO_SURPLUS(i) + POW2_OPTIMIZE_SURPLUS(i))
655# define BUCKET_SIZE_REAL(i) (BUCKET_SIZE(i) - MEM_OVERHEAD(i))
e8bc2b5c
GS
656#endif
657
658
cf5c4ad8 659#ifdef PACK_MALLOC
4ad56ec9
IZ
660/* In this case there are several possible layout of arenas depending
661 * on the size. Arenas are of sizes multiple to 2K, 2K-aligned, and
662 * have a size close to a power of 2.
663 *
664 * Arenas of the size >= 4K keep one chunk only. Arenas of size 2K
665 * may keep one chunk or multiple chunks. Here are the possible
666 * layouts of arenas:
667 *
668 * # One chunk only, chunksize 2^k + SOMETHING - ALIGN, k >= 11
669 *
670 * INDEX MAGIC1 UNUSED CHUNK1
671 *
672 * # Multichunk with sanity checking and chunksize 2^k-ALIGN, k>7
673 *
674 * INDEX MAGIC1 MAGIC2 MAGIC3 UNUSED CHUNK1 CHUNK2 CHUNK3 ...
675 *
676 * # Multichunk with sanity checking and size 2^k-ALIGN, k=7
677 *
678 * INDEX MAGIC1 MAGIC2 MAGIC3 UNUSED CHUNK1 UNUSED CHUNK2 CHUNK3 ...
679 *
680 * # Multichunk with sanity checking and size up to 80
681 *
682 * INDEX UNUSED MAGIC1 UNUSED MAGIC2 UNUSED ... CHUNK1 CHUNK2 CHUNK3 ...
683 *
684 * # No sanity check (usually up to 48=byte-long buckets)
685 * INDEX UNUSED CHUNK1 CHUNK2 ...
686 *
687 * Above INDEX and MAGIC are one-byte-long. Sizes of UNUSED are
688 * appropriate to keep algorithms simple and memory aligned. INDEX
689 * encodes the size of the chunk, while MAGICn encodes state (used,
690 * free or non-managed-by-us-so-it-indicates-a-bug) of CHUNKn. MAGIC
691 * is used for sanity checking purposes only. SOMETHING is 0 or 4K
692 * (to make size of big CHUNK accomodate allocations for powers of two
693 * better).
694 *
695 * [There is no need to alignment between chunks, since C rules ensure
696 * that structs which need 2^k alignment have sizeof which is
697 * divisible by 2^k. Thus as far as the last chunk is aligned at the
698 * end of the arena, and 2K-alignment does not contradict things,
699 * everything is going to be OK for sizes of chunks 2^n and 2^n +
700 * 2^k. Say, 80-bit buckets will be 16-bit aligned, and as far as we
701 * put allocations for requests in 65..80 range, all is fine.
702 *
703 * Note, however, that standard malloc() puts more strict
704 * requirements than the above C rules. Moreover, our algorithms of
705 * realloc() may break this idyll, but we suppose that realloc() does
706 * need not change alignment.]
707 *
708 * Is very important to make calculation of the offset of MAGICm as
709 * quick as possible, since it is done on each malloc()/free(). In
710 * fact it is so quick that it has quite little effect on the speed of
711 * doing malloc()/free(). [By default] We forego such calculations
712 * for small chunks, but only to save extra 3% of memory, not because
713 * of speed considerations.
714 *
715 * Here is the algorithm [which is the same for all the allocations
716 * schemes above], see OV_MAGIC(block,bucket). Let OFFSETm be the
717 * offset of the CHUNKm from the start of ARENA. Then offset of
718 * MAGICm is (OFFSET1 >> SHIFT) + ADDOFFSET. Here SHIFT and ADDOFFSET
719 * are numbers which depend on the size of the chunks only.
720 *
721 * Let as check some sanity conditions. Numbers OFFSETm>>SHIFT are
722 * different for all the chunks in the arena if 2^SHIFT is not greater
723 * than size of the chunks in the arena. MAGIC1 will not overwrite
724 * INDEX provided ADDOFFSET is >0 if OFFSET1 < 2^SHIFT. MAGIClast
725 * will not overwrite CHUNK1 if OFFSET1 > (OFFSETlast >> SHIFT) +
726 * ADDOFFSET.
727 *
728 * Make SHIFT the maximal possible (there is no point in making it
729 * smaller). Since OFFSETlast is 2K - CHUNKSIZE, above restrictions
730 * give restrictions on OFFSET1 and on ADDOFFSET.
731 *
732 * In particular, for chunks of size 2^k with k>=6 we can put
733 * ADDOFFSET to be from 0 to 2^k - 2^(11-k), and have
734 * OFFSET1==chunksize. For chunks of size 80 OFFSET1 of 2K%80=48 is
735 * large enough to have ADDOFFSET between 1 and 16 (similarly for 96,
736 * when ADDOFFSET should be 1). In particular, keeping MAGICs for
737 * these sizes gives no additional size penalty.
738 *
739 * However, for chunks of size 2^k with k<=5 this gives OFFSET1 >=
740 * ADDOFSET + 2^(11-k). Keeping ADDOFFSET 0 allows for 2^(11-k)-2^(11-2k)
741 * chunks per arena. This is smaller than 2^(11-k) - 1 which are
742 * needed if no MAGIC is kept. [In fact, having a negative ADDOFFSET
743 * would allow for slightly more buckets per arena for k=2,3.]
744 *
745 * Similarly, for chunks of size 3/2*2^k with k<=5 MAGICs would span
746 * the area up to 2^(11-k)+ADDOFFSET. For k=4 this give optimal
747 * ADDOFFSET as -7..0. For k=3 ADDOFFSET can go up to 4 (with tiny
748 * savings for negative ADDOFFSET). For k=5 ADDOFFSET can go -1..16
749 * (with no savings for negative values).
cf5c4ad8 750 *
4ad56ec9
IZ
751 * In particular, keeping ADDOFFSET 0 for sizes of chunks up to 2^6
752 * leads to tiny pessimizations in case of sizes 4, 8, 12, 24, and
753 * leads to no contradictions except for size=80 (or 96.)
cf5c4ad8 754 *
4ad56ec9
IZ
755 * However, it also makes sense to keep no magic for sizes 48 or less.
756 * This is what we do. In this case one needs ADDOFFSET>=1 also for
757 * chunksizes 12, 24, and 48, unless one gets one less chunk per
758 * arena.
759 *
760 * The algo of OV_MAGIC(block,bucket) keeps ADDOFFSET 0 until
761 * chunksize of 64, then makes it 1.
cf5c4ad8 762 *
4ad56ec9
IZ
763 * This allows for an additional optimization: the above scheme leads
764 * to giant overheads for sizes 128 or more (one whole chunk needs to
765 * be sacrifised to keep INDEX). Instead we use chunks not of size
766 * 2^k, but of size 2^k-ALIGN. If we pack these chunks at the end of
767 * the arena, then the beginnings are still in different 2^k-long
768 * sections of the arena if k>=7 for ALIGN==4, and k>=8 if ALIGN=8.
769 * Thus for k>7 the above algo of calculating the offset of the magic
770 * will still give different answers for different chunks. And to
771 * avoid the overrun of MAGIC1 into INDEX, one needs ADDOFFSET of >=1.
772 * In the case k=7 we just move the first chunk an extra ALIGN
773 * backward inside the ARENA (this is done once per arena lifetime,
774 * thus is not a big overhead). */
e8bc2b5c
GS
775# define MAX_PACKED_POW2 6
776# define MAX_PACKED (MAX_PACKED_POW2 * BUCKETS_PER_POW2 + BUCKET_POW2_SHIFT)
777# define MAX_POW2_ALGO ((1<<(MAX_PACKED_POW2 + 1)) - M_OVERHEAD)
778# define TWOK_MASK ((1<<LOG_OF_MIN_ARENA) - 1)
56431972
RB
779# define TWOK_MASKED(x) (PTR2UV(x) & ~TWOK_MASK)
780# define TWOK_SHIFT(x) (PTR2UV(x) & TWOK_MASK)
781# define OV_INDEXp(block) (INT2PTR(u_char*,TWOK_MASKED(block)))
cf5c4ad8 782# define OV_INDEX(block) (*OV_INDEXp(block))
783# define OV_MAGIC(block,bucket) (*(OV_INDEXp(block) + \
e8bc2b5c
GS
784 (TWOK_SHIFT(block)>> \
785 (bucket>>BUCKET_POW2_SHIFT)) + \
786 (bucket >= MIN_NEEDS_SHIFT ? 1 : 0)))
787 /* A bucket can have a shift smaller than it size, we need to
788 shift its magic number so it will not overwrite index: */
789# ifdef BUCKETS_ROOT2
790# define MIN_NEEDS_SHIFT (7*BUCKETS_PER_POW2 - 1) /* Shift 80 greater than chunk 64. */
791# else
792# define MIN_NEEDS_SHIFT (7*BUCKETS_PER_POW2) /* Shift 128 greater than chunk 32. */
793# endif
cf5c4ad8 794# define CHUNK_SHIFT 0
795
e8bc2b5c
GS
796/* Number of active buckets of given ordinal. */
797#ifdef IGNORE_SMALL_BAD_FREE
798#define FIRST_BUCKET_WITH_CHECK (6 * BUCKETS_PER_POW2) /* 64 */
799# define N_BLKS(bucket) ( (bucket) < FIRST_BUCKET_WITH_CHECK \
d0bbed78 800 ? ((1<<LOG_OF_MIN_ARENA) - 1)/BUCKET_SIZE_NO_SURPLUS(bucket) \
e8bc2b5c
GS
801 : n_blks[bucket] )
802#else
803# define N_BLKS(bucket) n_blks[bucket]
804#endif
805
a3b680e6 806static const u_short n_blks[LOG_OF_MIN_ARENA * BUCKETS_PER_POW2] =
e8bc2b5c
GS
807 {
808# if BUCKETS_PER_POW2==1
809 0, 0,
810 (MIN_BUC_POW2==2 ? 384 : 0),
811 224, 120, 62, 31, 16, 8, 4, 2
812# else
813 0, 0, 0, 0,
814 (MIN_BUC_POW2==2 ? 384 : 0), (MIN_BUC_POW2==2 ? 384 : 0), /* 4, 4 */
815 224, 149, 120, 80, 62, 41, 31, 25, 16, 16, 8, 8, 4, 4, 2, 2
816# endif
817 };
818
819/* Shift of the first bucket with the given ordinal inside 2K chunk. */
820#ifdef IGNORE_SMALL_BAD_FREE
821# define BLK_SHIFT(bucket) ( (bucket) < FIRST_BUCKET_WITH_CHECK \
822 ? ((1<<LOG_OF_MIN_ARENA) \
d0bbed78 823 - BUCKET_SIZE_NO_SURPLUS(bucket) * N_BLKS(bucket)) \
e8bc2b5c
GS
824 : blk_shift[bucket])
825#else
826# define BLK_SHIFT(bucket) blk_shift[bucket]
827#endif
828
a3b680e6 829static const u_short blk_shift[LOG_OF_MIN_ARENA * BUCKETS_PER_POW2] =
e8bc2b5c
GS
830 {
831# if BUCKETS_PER_POW2==1
832 0, 0,
833 (MIN_BUC_POW2==2 ? 512 : 0),
834 256, 128, 64, 64, /* 8 to 64 */
835 16*sizeof(union overhead),
836 8*sizeof(union overhead),
837 4*sizeof(union overhead),
838 2*sizeof(union overhead),
839# else
840 0, 0, 0, 0,
841 (MIN_BUC_POW2==2 ? 512 : 0), (MIN_BUC_POW2==2 ? 512 : 0),
842 256, 260, 128, 128, 64, 80, 64, 48, /* 8 to 96 */
843 16*sizeof(union overhead), 16*sizeof(union overhead),
844 8*sizeof(union overhead), 8*sizeof(union overhead),
845 4*sizeof(union overhead), 4*sizeof(union overhead),
846 2*sizeof(union overhead), 2*sizeof(union overhead),
847# endif
848 };
cf5c4ad8 849
5bbd1ef5
IZ
850# define NEEDED_ALIGNMENT 0x800 /* 2k boundaries */
851# define WANTED_ALIGNMENT 0x800 /* 2k boundaries */
852
cf5c4ad8 853#else /* !PACK_MALLOC */
854
855# define OV_MAGIC(block,bucket) (block)->ov_magic
856# define OV_INDEX(block) (block)->ov_index
857# define CHUNK_SHIFT 1
e8bc2b5c 858# define MAX_PACKED -1
5bbd1ef5
IZ
859# define NEEDED_ALIGNMENT MEM_ALIGNBYTES
860# define WANTED_ALIGNMENT 0x400 /* 1k boundaries */
861
cf5c4ad8 862#endif /* !PACK_MALLOC */
863
d0bbed78 864#define M_OVERHEAD (sizeof(union overhead) + RMAGIC_SZ) /* overhead at start+end */
e8bc2b5c
GS
865
866#ifdef PACK_MALLOC
867# define MEM_OVERHEAD(bucket) \
868 (bucket <= MAX_PACKED ? 0 : M_OVERHEAD)
869# ifdef SMALL_BUCKET_VIA_TABLE
870# define START_SHIFTS_BUCKET ((MAX_PACKED_POW2 + 1) * BUCKETS_PER_POW2)
871# define START_SHIFT MAX_PACKED_POW2
872# ifdef BUCKETS_ROOT2 /* Chunks of size 3*2^n. */
873# define SIZE_TABLE_MAX 80
874# else
875# define SIZE_TABLE_MAX 64
876# endif
a3b680e6 877static const char bucket_of[] =
e8bc2b5c
GS
878 {
879# ifdef BUCKETS_ROOT2 /* Chunks of size 3*2^n. */
880 /* 0 to 15 in 4-byte increments. */
881 (sizeof(void*) > 4 ? 6 : 5), /* 4/8, 5-th bucket for better reports */
882 6, /* 8 */
274c7500 883 IF_ALIGN_8(8,7), 8, /* 16/12, 16 */
e8bc2b5c
GS
884 9, 9, 10, 10, /* 24, 32 */
885 11, 11, 11, 11, /* 48 */
886 12, 12, 12, 12, /* 64 */
887 13, 13, 13, 13, /* 80 */
888 13, 13, 13, 13 /* 80 */
889# else /* !BUCKETS_ROOT2 */
890 /* 0 to 15 in 4-byte increments. */
891 (sizeof(void*) > 4 ? 3 : 2),
892 3,
893 4, 4,
894 5, 5, 5, 5,
895 6, 6, 6, 6,
896 6, 6, 6, 6
897# endif /* !BUCKETS_ROOT2 */
898 };
899# else /* !SMALL_BUCKET_VIA_TABLE */
900# define START_SHIFTS_BUCKET MIN_BUCKET
901# define START_SHIFT (MIN_BUC_POW2 - 1)
902# endif /* !SMALL_BUCKET_VIA_TABLE */
903#else /* !PACK_MALLOC */
904# define MEM_OVERHEAD(bucket) M_OVERHEAD
905# ifdef SMALL_BUCKET_VIA_TABLE
906# undef SMALL_BUCKET_VIA_TABLE
907# endif
908# define START_SHIFTS_BUCKET MIN_BUCKET
909# define START_SHIFT (MIN_BUC_POW2 - 1)
910#endif /* !PACK_MALLOC */
cf5c4ad8 911
8d063cd8 912/*
55497cff 913 * Big allocations are often of the size 2^n bytes. To make them a
914 * little bit better, make blocks of size 2^n+pagesize for big n.
915 */
916
917#ifdef TWO_POT_OPTIMIZE
918
5f05dabc 919# ifndef PERL_PAGESIZE
920# define PERL_PAGESIZE 4096
921# endif
e8bc2b5c
GS
922# ifndef FIRST_BIG_POW2
923# define FIRST_BIG_POW2 15 /* 32K, 16K is used too often. */
5f05dabc 924# endif
e8bc2b5c 925# define FIRST_BIG_BLOCK (1<<FIRST_BIG_POW2)
55497cff 926/* If this value or more, check against bigger blocks. */
927# define FIRST_BIG_BOUND (FIRST_BIG_BLOCK - M_OVERHEAD)
928/* If less than this value, goes into 2^n-overhead-block. */
929# define LAST_SMALL_BOUND ((FIRST_BIG_BLOCK>>1) - M_OVERHEAD)
930
e8bc2b5c
GS
931# define POW2_OPTIMIZE_ADJUST(nbytes) \
932 ((nbytes >= FIRST_BIG_BOUND) ? nbytes -= PERL_PAGESIZE : 0)
933# define POW2_OPTIMIZE_SURPLUS(bucket) \
934 ((bucket >= FIRST_BIG_POW2 * BUCKETS_PER_POW2) ? PERL_PAGESIZE : 0)
935
936#else /* !TWO_POT_OPTIMIZE */
937# define POW2_OPTIMIZE_ADJUST(nbytes)
938# define POW2_OPTIMIZE_SURPLUS(bucket) 0
939#endif /* !TWO_POT_OPTIMIZE */
940
941#if defined(HAS_64K_LIMIT) && defined(PERL_CORE)
942# define BARK_64K_LIMIT(what,nbytes,size) \
943 if (nbytes > 0xffff) { \
944 PerlIO_printf(PerlIO_stderr(), \
945 "%s too large: %lx\n", what, size); \
946 my_exit(1); \
947 }
948#else /* !HAS_64K_LIMIT || !PERL_CORE */
949# define BARK_64K_LIMIT(what,nbytes,size)
950#endif /* !HAS_64K_LIMIT || !PERL_CORE */
55497cff 951
e8bc2b5c
GS
952#ifndef MIN_SBRK
953# define MIN_SBRK 2048
954#endif
955
956#ifndef FIRST_SBRK
d720c441 957# define FIRST_SBRK (48*1024)
e8bc2b5c
GS
958#endif
959
960/* Minimal sbrk in percents of what is already alloced. */
961#ifndef MIN_SBRK_FRAC
962# define MIN_SBRK_FRAC 3
963#endif
964
965#ifndef SBRK_ALLOW_FAILURES
966# define SBRK_ALLOW_FAILURES 3
967#endif
55497cff 968
e8bc2b5c
GS
969#ifndef SBRK_FAILURE_PRICE
970# define SBRK_FAILURE_PRICE 50
55497cff 971#endif
972
24dd13bf
JH
973static void morecore (register int bucket);
974# if defined(DEBUGGING)
9dbded1f 975static void botch (const char *diag, const char *s, const char *file, int line);
24dd13bf
JH
976# endif
977static void add_to_chain (void *p, MEM_SIZE size, MEM_SIZE chip);
978static void* get_from_chain (MEM_SIZE size);
979static void* get_from_bigger_buckets(int bucket, MEM_SIZE size);
980static union overhead *getpages (MEM_SIZE needed, int *nblksp, int bucket);
981static int getpages_adjacent(MEM_SIZE require);
982
febabd2a 983#ifdef PERL_CORE
e8bc2b5c 984
3541dd58 985#ifdef I_MACH_CTHREADS
772fe5b3
HM
986# undef MUTEX_LOCK
987# define MUTEX_LOCK(m) STMT_START { if (*m) mutex_lock(*m); } STMT_END
988# undef MUTEX_UNLOCK
989# define MUTEX_UNLOCK(m) STMT_START { if (*m) mutex_unlock(*m); } STMT_END
3541dd58
HM
990#endif
991
22f7c9c9
JH
992#endif /* defined PERL_CORE */
993
994#ifndef PTRSIZE
995# define PTRSIZE sizeof(void*)
996#endif
997
b022d2d2
IZ
998#ifndef BITS_IN_PTR
999# define BITS_IN_PTR (8*PTRSIZE)
1000#endif
1001
1002/*
1003 * nextf[i] is the pointer to the next free block of size 2^i. The
1004 * smallest allocatable block is 8 bytes. The overhead information
1005 * precedes the data area returned to the user.
1006 */
1007#define NBUCKETS (BITS_IN_PTR*BUCKETS_PER_POW2 + 1)
1008static union overhead *nextf[NBUCKETS];
1009
1010#if defined(PURIFY) && !defined(USE_PERL_SBRK)
1011# define USE_PERL_SBRK
1012#endif
1013
1014#ifdef USE_PERL_SBRK
3f270f98 1015# define sbrk(a) Perl_sbrk(a)
b022d2d2 1016Malloc_t Perl_sbrk (int size);
b022d2d2 1017#else
3f270f98 1018# ifndef HAS_SBRK_PROTO /* <unistd.h> usually takes care of this */
b022d2d2 1019extern Malloc_t sbrk(int);
3f270f98 1020# endif
ef9f17be 1021#endif
b022d2d2 1022
22f7c9c9
JH
1023#ifndef MIN_SBRK_FRAC1000 /* Backward compatibility */
1024# define MIN_SBRK_FRAC1000 (MIN_SBRK_FRAC * 10)
1025#endif
1026
1027#ifndef START_EXTERN_C
1028# ifdef __cplusplus
1029# define START_EXTERN_C extern "C" {
1030# else
1031# define START_EXTERN_C
1032# endif
1033#endif
1034
1035#ifndef END_EXTERN_C
1036# ifdef __cplusplus
1037# define END_EXTERN_C };
1038# else
1039# define END_EXTERN_C
1040# endif
1041#endif
1042
1043#include "malloc_ctl.h"
1044
1045#ifndef NO_MALLOC_DYNAMIC_CFG
1046# define PERL_MALLOC_OPT_CHARS "FMfAPGdac"
1047
41ad8e42
JH
1048# ifndef FILL_DEAD_DEFAULT
1049# define FILL_DEAD_DEFAULT 1
1050# endif
1051# ifndef FILL_ALIVE_DEFAULT
1052# define FILL_ALIVE_DEFAULT 1
1053# endif
1054# ifndef FILL_CHECK_DEFAULT
1055# define FILL_CHECK_DEFAULT 1
1056# endif
1057
22f7c9c9
JH
1058static IV MallocCfg[MallocCfg_last] = {
1059 FIRST_SBRK,
1060 MIN_SBRK,
1061 MIN_SBRK_FRAC,
1062 SBRK_ALLOW_FAILURES,
1063 SBRK_FAILURE_PRICE,
1064 SBRK_ALLOW_FAILURES * SBRK_FAILURE_PRICE, /* sbrk_goodness */
41ad8e42
JH
1065 FILL_DEAD_DEFAULT, /* FILL_DEAD */
1066 FILL_ALIVE_DEFAULT, /* FILL_ALIVE */
1067 FILL_CHECK_DEFAULT, /* FILL_CHECK */
22f7c9c9
JH
1068 0, /* MallocCfg_skip_cfg_env */
1069 0, /* MallocCfg_cfg_env_read */
1070 0, /* MallocCfg_emergency_buffer_size */
1071 0, /* MallocCfg_emergency_buffer_prepared_size */
1072 0 /* MallocCfg_emergency_buffer_last_req */
1073};
1074IV *MallocCfg_ptr = MallocCfg;
1075
6af660ee
IZ
1076static char* MallocCfgP[MallocCfg_last] = {
1077 0, /* MallocCfgP_emergency_buffer */
1078 0, /* MallocCfgP_emergency_buffer_prepared */
1079};
1080char **MallocCfgP_ptr = MallocCfgP;
1081
22f7c9c9
JH
1082# undef MIN_SBRK
1083# undef FIRST_SBRK
1084# undef MIN_SBRK_FRAC1000
1085# undef SBRK_ALLOW_FAILURES
1086# undef SBRK_FAILURE_PRICE
1087
1088# define MIN_SBRK MallocCfg[MallocCfg_MIN_SBRK]
1089# define FIRST_SBRK MallocCfg[MallocCfg_FIRST_SBRK]
1090# define MIN_SBRK_FRAC1000 MallocCfg[MallocCfg_MIN_SBRK_FRAC1000]
1091# define SBRK_ALLOW_FAILURES MallocCfg[MallocCfg_SBRK_ALLOW_FAILURES]
1092# define SBRK_FAILURE_PRICE MallocCfg[MallocCfg_SBRK_FAILURE_PRICE]
1093
1094# define sbrk_goodness MallocCfg[MallocCfg_sbrk_goodness]
1095
1096# define emergency_buffer_size MallocCfg[MallocCfg_emergency_buffer_size]
1097# define emergency_buffer_last_req MallocCfg[MallocCfg_emergency_buffer_last_req]
1098
1099# define FILL_DEAD MallocCfg[MallocCfg_filldead]
1100# define FILL_ALIVE MallocCfg[MallocCfg_fillalive]
1101# define FILL_CHECK_CFG MallocCfg[MallocCfg_fillcheck]
1102# define FILL_CHECK (FILL_DEAD && FILL_CHECK_CFG)
1103
6af660ee
IZ
1104# define emergency_buffer MallocCfgP[MallocCfgP_emergency_buffer]
1105# define emergency_buffer_prepared MallocCfgP[MallocCfgP_emergency_buffer_prepared]
1106
22f7c9c9
JH
1107#else /* defined(NO_MALLOC_DYNAMIC_CFG) */
1108
1109# define FILL_DEAD 1
1110# define FILL_ALIVE 1
1111# define FILL_CHECK 1
1112static int sbrk_goodness = SBRK_ALLOW_FAILURES * SBRK_FAILURE_PRICE;
1113
1114# define NO_PERL_MALLOC_ENV
1115
1116#endif
1117
b022d2d2
IZ
1118#ifdef DEBUGGING_MSTATS
1119/*
1120 * nmalloc[i] is the difference between the number of mallocs and frees
1121 * for a given block size.
1122 */
1123static u_int nmalloc[NBUCKETS];
1124static u_int sbrk_slack;
1125static u_int start_slack;
1126#else /* !( defined DEBUGGING_MSTATS ) */
1127# define sbrk_slack 0
1128#endif
1129
1130static u_int goodsbrk;
1131
22f7c9c9 1132#ifdef PERL_EMERGENCY_SBRK
febabd2a
DD
1133
1134# ifndef BIG_SIZE
1135# define BIG_SIZE (1<<16) /* 64K */
1136# endif
1137
22f7c9c9 1138# ifdef NO_MALLOC_DYNAMIC_CFG
55497cff 1139static MEM_SIZE emergency_buffer_size;
22f7c9c9
JH
1140 /* 0 if the last request for more memory succeeded.
1141 Otherwise the size of the failing request. */
1142static MEM_SIZE emergency_buffer_last_req;
6af660ee
IZ
1143static char *emergency_buffer;
1144static char *emergency_buffer_prepared;
22f7c9c9
JH
1145# endif
1146
1147# ifndef emergency_sbrk_croak
1148# define emergency_sbrk_croak croak2
1149# endif
1150
1151# ifdef PERL_CORE
1152static char *
1153perl_get_emergency_buffer(IV *size)
1154{
1155 dTHX;
1156 /* First offense, give a possibility to recover by dieing. */
1157 /* No malloc involved here: */
22f7c9c9
JH
1158 SV *sv;
1159 char *pv;
a4fc7abc 1160 GV **gvp = (GV**)hv_fetchs(PL_defstash, "^M", FALSE);
22f7c9c9 1161
a4fc7abc 1162 if (!gvp) gvp = (GV**)hv_fetchs(PL_defstash, "\015", FALSE);
22f7c9c9
JH
1163 if (!gvp || !(sv = GvSV(*gvp)) || !SvPOK(sv)
1164 || (SvLEN(sv) < (1<<LOG_OF_MIN_ARENA) - M_OVERHEAD))
1165 return NULL; /* Now die die die... */
1166 /* Got it, now detach SvPV: */
4b1c440c 1167 pv = SvPV_nolen(sv);
22f7c9c9
JH
1168 /* Check alignment: */
1169 if ((PTR2UV(pv) - sizeof(union overhead)) & (NEEDED_ALIGNMENT - 1)) {
1170 PerlIO_puts(PerlIO_stderr(),"Bad alignment of $^M!\n");
1171 return NULL; /* die die die */
1172 }
1173
1174 SvPOK_off(sv);
bd61b366 1175 SvPV_set(sv, NULL);
87a1ef3d
SP
1176 SvCUR_set(sv, 0);
1177 SvLEN_set(sv, 0);
22f7c9c9
JH
1178 *size = malloced_size(pv) + M_OVERHEAD;
1179 return pv - sizeof(union overhead);
1180}
1181# define PERL_GET_EMERGENCY_BUFFER(p) perl_get_emergency_buffer(p)
1182# else
1183# define PERL_GET_EMERGENCY_BUFFER(p) NULL
1184# endif /* defined PERL_CORE */
1185
1186# ifndef NO_MALLOC_DYNAMIC_CFG
1187static char *
1188get_emergency_buffer(IV *size)
1189{
1190 char *pv = emergency_buffer_prepared;
1191
1192 *size = MallocCfg[MallocCfg_emergency_buffer_prepared_size];
1193 emergency_buffer_prepared = 0;
1194 MallocCfg[MallocCfg_emergency_buffer_prepared_size] = 0;
1195 return pv;
1196}
1197
1198/* Returns 0 on success, -1 on bad alignment, -2 if not implemented */
1199int
1200set_emergency_buffer(char *b, IV size)
1201{
1202 if (PTR2UV(b) & (NEEDED_ALIGNMENT - 1))
1203 return -1;
1204 if (MallocCfg[MallocCfg_emergency_buffer_prepared_size])
1205 add_to_chain((void*)emergency_buffer_prepared,
1206 MallocCfg[MallocCfg_emergency_buffer_prepared_size], 0);
1207 emergency_buffer_prepared = b;
1208 MallocCfg[MallocCfg_emergency_buffer_prepared_size] = size;
1209 return 0;
1210}
1211# define GET_EMERGENCY_BUFFER(p) get_emergency_buffer(p)
1212# else /* NO_MALLOC_DYNAMIC_CFG */
1213# define GET_EMERGENCY_BUFFER(p) NULL
1214int
1215set_emergency_buffer(char *b, IV size)
1216{
1217 return -1;
1218}
1219# endif
55497cff 1220
cea2e8a9
GS
1221static Malloc_t
1222emergency_sbrk(MEM_SIZE size)
55497cff 1223{
28ac10b1
IZ
1224 MEM_SIZE rsize = (((size - 1)>>LOG_OF_MIN_ARENA) + 1)<<LOG_OF_MIN_ARENA;
1225
22f7c9c9 1226 if (size >= BIG_SIZE
575fbe19
SH
1227 && (!emergency_buffer_last_req ||
1228 (size < (MEM_SIZE)emergency_buffer_last_req))) {
b022d2d2 1229 /* Give the possibility to recover, but avoid an infinite cycle. */
741df71a 1230 MALLOC_UNLOCK;
22f7c9c9
JH
1231 emergency_buffer_last_req = size;
1232 emergency_sbrk_croak("Out of memory during \"large\" request for %"UVuf" bytes, total sbrk() is %"UVuf" bytes", (UV)size, (UV)(goodsbrk + sbrk_slack));
55497cff 1233 }
1234
575fbe19 1235 if ((MEM_SIZE)emergency_buffer_size >= rsize) {
28ac10b1
IZ
1236 char *old = emergency_buffer;
1237
1238 emergency_buffer_size -= rsize;
1239 emergency_buffer += rsize;
1240 return old;
1241 } else {
55497cff 1242 /* First offense, give a possibility to recover by dieing. */
1243 /* No malloc involved here: */
22f7c9c9
JH
1244 IV Size;
1245 char *pv = GET_EMERGENCY_BUFFER(&Size);
28ac10b1 1246 int have = 0;
55497cff 1247
28ac10b1
IZ
1248 if (emergency_buffer_size) {
1249 add_to_chain(emergency_buffer, emergency_buffer_size, 0);
1250 emergency_buffer_size = 0;
bd61b366 1251 emergency_buffer = NULL;
28ac10b1
IZ
1252 have = 1;
1253 }
22f7c9c9
JH
1254
1255 if (!pv)
1256 pv = PERL_GET_EMERGENCY_BUFFER(&Size);
1257 if (!pv) {
28ac10b1
IZ
1258 if (have)
1259 goto do_croak;
55497cff 1260 return (char *)-1; /* Now die die die... */
28ac10b1 1261 }
22f7c9c9 1262
55497cff 1263 /* Check alignment: */
22f7c9c9
JH
1264 if (PTR2UV(pv) & (NEEDED_ALIGNMENT - 1)) {
1265 dTHX;
1266
55497cff 1267 PerlIO_puts(PerlIO_stderr(),"Bad alignment of $^M!\n");
bbce6d69 1268 return (char *)-1; /* die die die */
55497cff 1269 }
1270
22f7c9c9
JH
1271 emergency_buffer = pv;
1272 emergency_buffer_size = Size;
55497cff 1273 }
28ac10b1 1274 do_croak:
741df71a 1275 MALLOC_UNLOCK;
22f7c9c9 1276 emergency_sbrk_croak("Out of memory during request for %"UVuf" bytes, total sbrk() is %"UVuf" bytes", (UV)size, (UV)(goodsbrk + sbrk_slack));
ce70748c 1277 /* NOTREACHED */
bd61b366 1278 return NULL;
55497cff 1279}
1280
22f7c9c9 1281#else /* !defined(PERL_EMERGENCY_SBRK) */
55497cff 1282# define emergency_sbrk(size) -1
22f7c9c9
JH
1283#endif /* defined PERL_EMERGENCY_SBRK */
1284
1285static void
9dbded1f 1286write2(const char *mess)
22f7c9c9
JH
1287{
1288 write(2, mess, strlen(mess));
1289}
55497cff 1290
760ac839 1291#ifdef DEBUGGING
3541dd58 1292#undef ASSERT
e7e7e0a5
DM
1293#define ASSERT(p,diag) if (!(p)) botch(diag,STRINGIFY(p),__FILE__,__LINE__);
1294
cea2e8a9 1295static void
9dbded1f 1296botch(const char *diag, const char *s, const char *file, int line)
8d063cd8 1297{
899be101 1298 dVAR;
9dbded1f 1299 dTHX;
22f7c9c9
JH
1300 if (!(PERL_MAYBE_ALIVE && PERL_GET_THX))
1301 goto do_write;
1302 else {
22f7c9c9 1303 if (PerlIO_printf(PerlIO_stderr(),
67920cb2 1304 "assertion botched (%s?): %s %s:%d\n",
066d1a89 1305 diag, s, file, line) != 0) {
22f7c9c9
JH
1306 do_write: /* Can be initializing interpreter */
1307 write2("assertion botched (");
1308 write2(diag);
1309 write2("?): ");
1310 write2(s);
066d1a89
JH
1311 write2(" (");
1312 write2(file);
1313 write2(":");
6bf964e1
JH
1314 {
1315 char linebuf[10];
1316 char *s = linebuf + sizeof(linebuf) - 1;
1317 int n = line;
1318 *s = 0;
1319 do {
1320 *--s = '0' + (n % 10);
1321 } while (n /= 10);
1322 write2(s);
1323 }
066d1a89 1324 write2(")\n");
22f7c9c9 1325 }
3028581b 1326 PerlProc_abort();
22f7c9c9 1327 }
8d063cd8
LW
1328}
1329#else
3541dd58 1330#define ASSERT(p, diag)
8d063cd8
LW
1331#endif
1332
22f7c9c9
JH
1333#ifdef MALLOC_FILL
1334/* Fill should be long enough to cover long */
1335static void
1336fill_pat_4bytes(unsigned char *s, size_t nbytes, const unsigned char *fill)
1337{
1338 unsigned char *e = s + nbytes;
1339 long *lp;
b464bac0 1340 const long lfill = *(long*)fill;
22f7c9c9
JH
1341
1342 if (PTR2UV(s) & (sizeof(long)-1)) { /* Align the pattern */
1343 int shift = sizeof(long) - (PTR2UV(s) & (sizeof(long)-1));
1344 unsigned const char *f = fill + sizeof(long) - shift;
1345 unsigned char *e1 = s + shift;
1346
1347 while (s < e1)
1348 *s++ = *f++;
1349 }
1350 lp = (long*)s;
1351 while ((unsigned char*)(lp + 1) <= e)
1352 *lp++ = lfill;
1353 s = (unsigned char*)lp;
1354 while (s < e)
1355 *s++ = *fill++;
1356}
1357/* Just malloc()ed */
1358static const unsigned char fill_feedadad[] =
1359 {0xFE, 0xED, 0xAD, 0xAD, 0xFE, 0xED, 0xAD, 0xAD,
1360 0xFE, 0xED, 0xAD, 0xAD, 0xFE, 0xED, 0xAD, 0xAD};
1361/* Just free()ed */
1362static const unsigned char fill_deadbeef[] =
1363 {0xDE, 0xAD, 0xBE, 0xEF, 0xDE, 0xAD, 0xBE, 0xEF,
1364 0xDE, 0xAD, 0xBE, 0xEF, 0xDE, 0xAD, 0xBE, 0xEF};
1365# define FILL_DEADBEEF(s, n) \
1366 (void)(FILL_DEAD? (fill_pat_4bytes((s), (n), fill_deadbeef), 0) : 0)
1367# define FILL_FEEDADAD(s, n) \
1368 (void)(FILL_ALIVE? (fill_pat_4bytes((s), (n), fill_feedadad), 0) : 0)
1369#else
1370# define FILL_DEADBEEF(s, n) ((void)0)
1371# define FILL_FEEDADAD(s, n) ((void)0)
1372# undef MALLOC_FILL_CHECK
1373#endif
1374
1375#ifdef MALLOC_FILL_CHECK
1376static int
1377cmp_pat_4bytes(unsigned char *s, size_t nbytes, const unsigned char *fill)
1378{
1379 unsigned char *e = s + nbytes;
1380 long *lp;
b464bac0 1381 const long lfill = *(long*)fill;
22f7c9c9
JH
1382
1383 if (PTR2UV(s) & (sizeof(long)-1)) { /* Align the pattern */
1384 int shift = sizeof(long) - (PTR2UV(s) & (sizeof(long)-1));
1385 unsigned const char *f = fill + sizeof(long) - shift;
1386 unsigned char *e1 = s + shift;
1387
1388 while (s < e1)
1389 if (*s++ != *f++)
1390 return 1;
1391 }
1392 lp = (long*)s;
1393 while ((unsigned char*)(lp + 1) <= e)
1394 if (*lp++ != lfill)
1395 return 1;
1396 s = (unsigned char*)lp;
1397 while (s < e)
1398 if (*s++ != *fill++)
1399 return 1;
1400 return 0;
1401}
1402# define FILLCHECK_DEADBEEF(s, n) \
1403 ASSERT(!FILL_CHECK || !cmp_pat_4bytes(s, n, fill_deadbeef), \
1404 "free()ed/realloc()ed-away memory was overwritten")
1405#else
1406# define FILLCHECK_DEADBEEF(s, n) ((void)0)
1407#endif
1408
64107180
NC
1409int
1410S_ajust_size_and_find_bucket(size_t *nbytes_p)
8d063cd8 1411{
64107180
NC
1412 MEM_SIZE shiftr;
1413 int bucket;
1414 size_t nbytes = *nbytes_p;
45d8adaa 1415
8d063cd8
LW
1416 /*
1417 * Convert amount of memory requested into
1418 * closest block size stored in hash buckets
1419 * which satisfies request. Account for
1420 * space used per block for accounting.
1421 */
cf5c4ad8 1422#ifdef PACK_MALLOC
e8bc2b5c
GS
1423# ifdef SMALL_BUCKET_VIA_TABLE
1424 if (nbytes == 0)
1425 bucket = MIN_BUCKET;
1426 else if (nbytes <= SIZE_TABLE_MAX) {
1427 bucket = bucket_of[(nbytes - 1) >> BUCKET_TABLE_SHIFT];
1428 } else
1429# else
043bf814
RB
1430 if (nbytes == 0)
1431 nbytes = 1;
e8bc2b5c
GS
1432 if (nbytes <= MAX_POW2_ALGO) goto do_shifts;
1433 else
1434# endif
55497cff 1435#endif
e8bc2b5c
GS
1436 {
1437 POW2_OPTIMIZE_ADJUST(nbytes);
1438 nbytes += M_OVERHEAD;
1439 nbytes = (nbytes + 3) &~ 3;
516a5887 1440#if defined(PACK_MALLOC) && !defined(SMALL_BUCKET_VIA_TABLE)
e8bc2b5c 1441 do_shifts:
516a5887 1442#endif
e8bc2b5c
GS
1443 shiftr = (nbytes - 1) >> START_SHIFT;
1444 bucket = START_SHIFTS_BUCKET;
1445 /* apart from this loop, this is O(1) */
1446 while (shiftr >>= 1)
1447 bucket += BUCKETS_PER_POW2;
cf5c4ad8 1448 }
64107180
NC
1449 *nbytes_p = nbytes;
1450 return bucket;
1451}
1452
1453Malloc_t
1454Perl_malloc(size_t nbytes)
1455{
1456 dVAR;
1457 register union overhead *p;
1458 register int bucket;
1459
1460#if defined(DEBUGGING) || defined(RCHECK)
1461 MEM_SIZE size = nbytes;
1462#endif
1463
1464 BARK_64K_LIMIT("Allocation",nbytes,nbytes);
1465#ifdef DEBUGGING
1466 if ((long)nbytes < 0)
1467 croak("%s", "panic: malloc");
1468#endif
1469
1470 bucket = S_ajust_size_and_find_bucket(&nbytes);
4ad56ec9 1471 MALLOC_LOCK;
8d063cd8
LW
1472 /*
1473 * If nothing in hash bucket right now,
1474 * request more memory from the system.
1475 */
1476 if (nextf[bucket] == NULL)
1477 morecore(bucket);
e8bc2b5c 1478 if ((p = nextf[bucket]) == NULL) {
741df71a 1479 MALLOC_UNLOCK;
55497cff 1480#ifdef PERL_CORE
0b250b9e
GS
1481 {
1482 dTHX;
1483 if (!PL_nomemok) {
febabd2a
DD
1484#if defined(PLAIN_MALLOC) && defined(NO_FANCY_MALLOC)
1485 PerlIO_puts(PerlIO_stderr(),"Out of memory!\n");
1486#else
b022d2d2
IZ
1487 char buff[80];
1488 char *eb = buff + sizeof(buff) - 1;
1489 char *s = eb;
1490 size_t n = nbytes;
1491
1492 PerlIO_puts(PerlIO_stderr(),"Out of memory during request for ");
1493#if defined(DEBUGGING) || defined(RCHECK)
1494 n = size;
1495#endif
1496 *s = 0;
1497 do {
1498 *--s = '0' + (n % 10);
1499 } while (n /= 10);
1500 PerlIO_puts(PerlIO_stderr(),s);
1501 PerlIO_puts(PerlIO_stderr()," bytes, total sbrk() is ");
1502 s = eb;
1503 n = goodsbrk + sbrk_slack;
1504 do {
1505 *--s = '0' + (n % 10);
1506 } while (n /= 10);
1507 PerlIO_puts(PerlIO_stderr(),s);
1508 PerlIO_puts(PerlIO_stderr()," bytes!\n");
febabd2a 1509#endif /* defined(PLAIN_MALLOC) && defined(NO_FANCY_MALLOC) */
0b250b9e
GS
1510 my_exit(1);
1511 }
ee0007ab 1512 }
45d8adaa 1513#endif
4ad56ec9 1514 return (NULL);
45d8adaa
LW
1515 }
1516
8d063cd8 1517 /* remove from linked list */
22f7c9c9
JH
1518#ifdef DEBUGGING
1519 if ( (PTR2UV(p) & (MEM_ALIGNBYTES - 1))
1520 /* Can't get this low */
1521 || (p && PTR2UV(p) < (1<<LOG_OF_MIN_ARENA)) ) {
e8cd8248 1522 dTHX;
b900a521 1523 PerlIO_printf(PerlIO_stderr(),
7fa2f4f1
GS
1524 "Unaligned pointer in the free chain 0x%"UVxf"\n",
1525 PTR2UV(p));
1526 }
22f7c9c9
JH
1527 if ( (PTR2UV(p->ov_next) & (MEM_ALIGNBYTES - 1))
1528 || (p->ov_next && PTR2UV(p->ov_next) < (1<<LOG_OF_MIN_ARENA)) ) {
e8cd8248 1529 dTHX;
7fa2f4f1 1530 PerlIO_printf(PerlIO_stderr(),
a0288114 1531 "Unaligned \"next\" pointer in the free "
d2560b70 1532 "chain 0x%"UVxf" at 0x%"UVxf"\n",
7fa2f4f1 1533 PTR2UV(p->ov_next), PTR2UV(p));
32e30700 1534 }
bf38876a
LW
1535#endif
1536 nextf[bucket] = p->ov_next;
4ad56ec9
IZ
1537
1538 MALLOC_UNLOCK;
1539
51a5ed28
HS
1540 DEBUG_m(PerlIO_printf(Perl_debug_log,
1541 "0x%"UVxf": (%05lu) malloc %ld bytes\n",
253fdc3f 1542 PTR2UV((Malloc_t)(p + CHUNK_SHIFT)), (unsigned long)(PL_an++),
51a5ed28
HS
1543 (long)size));
1544
22f7c9c9 1545 FILLCHECK_DEADBEEF((unsigned char*)(p + CHUNK_SHIFT),
d0bbed78 1546 BUCKET_SIZE_REAL(bucket) + RMAGIC_SZ);
22f7c9c9 1547
e8bc2b5c
GS
1548#ifdef IGNORE_SMALL_BAD_FREE
1549 if (bucket >= FIRST_BUCKET_WITH_CHECK)
1550#endif
1551 OV_MAGIC(p, bucket) = MAGIC;
cf5c4ad8 1552#ifndef PACK_MALLOC
1553 OV_INDEX(p) = bucket;
1554#endif
8d063cd8
LW
1555#ifdef RCHECK
1556 /*
1557 * Record allocated size of block and
1558 * bound space with magic numbers.
1559 */
8d063cd8 1560 p->ov_rmagic = RMAGIC;
e8bc2b5c
GS
1561 if (bucket <= MAX_SHORT_BUCKET) {
1562 int i;
1563
1564 nbytes = size + M_OVERHEAD;
1565 p->ov_size = nbytes - 1;
d0bbed78
IZ
1566 if ((i = nbytes & (RMAGIC_SZ-1))) {
1567 i = RMAGIC_SZ - i;
1568 while (i--) /* nbytes - RMAGIC_SZ is end of alloced area */
1569 ((caddr_t)p + nbytes - RMAGIC_SZ)[i] = RMAGIC_C;
e8bc2b5c 1570 }
d0bbed78
IZ
1571 /* Same at RMAGIC_SZ-aligned RMAGIC */
1572 nbytes = (nbytes + RMAGIC_SZ - 1) & ~(RMAGIC_SZ - 1);
1573 ((u_int *)((caddr_t)p + nbytes))[-1] = RMAGIC;
e8bc2b5c 1574 }
22f7c9c9 1575 FILL_FEEDADAD((unsigned char *)(p + CHUNK_SHIFT), size);
8d063cd8 1576#endif
cf5c4ad8 1577 return ((Malloc_t)(p + CHUNK_SHIFT));
8d063cd8
LW
1578}
1579
e8bc2b5c
GS
1580static char *last_sbrk_top;
1581static char *last_op; /* This arena can be easily extended. */
6e21dc91 1582static MEM_SIZE sbrked_remains;
e8bc2b5c
GS
1583
1584#ifdef DEBUGGING_MSTATS
1585static int sbrks;
1586#endif
1587
1588struct chunk_chain_s {
1589 struct chunk_chain_s *next;
1590 MEM_SIZE size;
1591};
1592static struct chunk_chain_s *chunk_chain;
1593static int n_chunks;
1594static char max_bucket;
1595
1596/* Cutoff a piece of one of the chunks in the chain. Prefer smaller chunk. */
cea2e8a9
GS
1597static void *
1598get_from_chain(MEM_SIZE size)
e8bc2b5c
GS
1599{
1600 struct chunk_chain_s *elt = chunk_chain, **oldp = &chunk_chain;
1601 struct chunk_chain_s **oldgoodp = NULL;
1602 long min_remain = LONG_MAX;
1603
1604 while (elt) {
1605 if (elt->size >= size) {
1606 long remains = elt->size - size;
1607 if (remains >= 0 && remains < min_remain) {
1608 oldgoodp = oldp;
1609 min_remain = remains;
1610 }
1611 if (remains == 0) {
1612 break;
1613 }
1614 }
1615 oldp = &( elt->next );
1616 elt = elt->next;
1617 }
1618 if (!oldgoodp) return NULL;
1619 if (min_remain) {
1620 void *ret = *oldgoodp;
1621 struct chunk_chain_s *next = (*oldgoodp)->next;
1622
1623 *oldgoodp = (struct chunk_chain_s *)((char*)ret + size);
1624 (*oldgoodp)->size = min_remain;
1625 (*oldgoodp)->next = next;
1626 return ret;
1627 } else {
1628 void *ret = *oldgoodp;
1629 *oldgoodp = (*oldgoodp)->next;
1630 n_chunks--;
1631 return ret;
1632 }
1633}
1634
cea2e8a9
GS
1635static void
1636add_to_chain(void *p, MEM_SIZE size, MEM_SIZE chip)
e8bc2b5c
GS
1637{
1638 struct chunk_chain_s *next = chunk_chain;
1639 char *cp = (char*)p;
1640
1641 cp += chip;
1642 chunk_chain = (struct chunk_chain_s *)cp;
1643 chunk_chain->size = size - chip;
1644 chunk_chain->next = next;
1645 n_chunks++;
1646}
1647
cea2e8a9
GS
1648static void *
1649get_from_bigger_buckets(int bucket, MEM_SIZE size)
e8bc2b5c
GS
1650{
1651 int price = 1;
1652 static int bucketprice[NBUCKETS];
1653 while (bucket <= max_bucket) {
1654 /* We postpone stealing from bigger buckets until we want it
1655 often enough. */
1656 if (nextf[bucket] && bucketprice[bucket]++ >= price) {
1657 /* Steal it! */
1658 void *ret = (void*)(nextf[bucket] - 1 + CHUNK_SHIFT);
1659 bucketprice[bucket] = 0;
1660 if (((char*)nextf[bucket]) - M_OVERHEAD == last_op) {
1661 last_op = NULL; /* Disable optimization */
1662 }
1663 nextf[bucket] = nextf[bucket]->ov_next;
1664#ifdef DEBUGGING_MSTATS
1665 nmalloc[bucket]--;
1666 start_slack -= M_OVERHEAD;
1667#endif
d0bbed78 1668 add_to_chain(ret, (BUCKET_SIZE_NO_SURPLUS(bucket) +
e8bc2b5c
GS
1669 POW2_OPTIMIZE_SURPLUS(bucket)),
1670 size);
1671 return ret;
1672 }
1673 bucket++;
1674 }
1675 return NULL;
1676}
1677
cea2e8a9 1678static union overhead *
c7374474 1679getpages(MEM_SIZE needed, int *nblksp, int bucket)
fa423c5b 1680{
899be101 1681 dVAR;
fa423c5b
IZ
1682 /* Need to do (possibly expensive) system call. Try to
1683 optimize it for rare calling. */
1684 MEM_SIZE require = needed - sbrked_remains;
1685 char *cp;
1686 union overhead *ovp;
c7374474 1687 MEM_SIZE slack = 0;
fa423c5b 1688
22f7c9c9 1689 if (sbrk_goodness > 0) {
575fbe19 1690 if (!last_sbrk_top && require < (MEM_SIZE)FIRST_SBRK)
fa423c5b 1691 require = FIRST_SBRK;
575fbe19 1692 else if (require < (MEM_SIZE)MIN_SBRK) require = MIN_SBRK;
fa423c5b 1693
22f7c9c9
JH
1694 if (require < goodsbrk * MIN_SBRK_FRAC1000 / 1000)
1695 require = goodsbrk * MIN_SBRK_FRAC1000 / 1000;
fa423c5b
IZ
1696 require = ((require - 1 + MIN_SBRK) / MIN_SBRK) * MIN_SBRK;
1697 } else {
1698 require = needed;
1699 last_sbrk_top = 0;
1700 sbrked_remains = 0;
1701 }
1702
1703 DEBUG_m(PerlIO_printf(Perl_debug_log,
1704 "sbrk(%ld) for %ld-byte-long arena\n",
1705 (long)require, (long) needed));
1706 cp = (char *)sbrk(require);
1707#ifdef DEBUGGING_MSTATS
1708 sbrks++;
1709#endif
1710 if (cp == last_sbrk_top) {
1711 /* Common case, anything is fine. */
22f7c9c9 1712 sbrk_goodness++;
fa423c5b 1713 ovp = (union overhead *) (cp - sbrked_remains);
e9397286 1714 last_op = cp - sbrked_remains;
fa423c5b
IZ
1715 sbrked_remains = require - (needed - sbrked_remains);
1716 } else if (cp == (char *)-1) { /* no more room! */
1717 ovp = (union overhead *)emergency_sbrk(needed);
1718 if (ovp == (union overhead *)-1)
1719 return 0;
e9397286
GS
1720 if (((char*)ovp) > last_op) { /* Cannot happen with current emergency_sbrk() */
1721 last_op = 0;
1722 }
fa423c5b
IZ
1723 return ovp;
1724 } else { /* Non-continuous or first sbrk(). */
1725 long add = sbrked_remains;
1726 char *newcp;
1727
1728 if (sbrked_remains) { /* Put rest into chain, we
1729 cannot use it right now. */
1730 add_to_chain((void*)(last_sbrk_top - sbrked_remains),
1731 sbrked_remains, 0);
1732 }
1733
1734 /* Second, check alignment. */
1735 slack = 0;
1736
cd86ed9d 1737#if !defined(atarist) /* on the atari we dont have to worry about this */
fa423c5b 1738# ifndef I286 /* The sbrk(0) call on the I286 always returns the next segment */
5bbd1ef5
IZ
1739 /* WANTED_ALIGNMENT may be more than NEEDED_ALIGNMENT, but this may
1740 improve performance of memory access. */
56431972
RB
1741 if (PTR2UV(cp) & (WANTED_ALIGNMENT - 1)) { /* Not aligned. */
1742 slack = WANTED_ALIGNMENT - (PTR2UV(cp) & (WANTED_ALIGNMENT - 1));
fa423c5b
IZ
1743 add += slack;
1744 }
1745# endif
cd86ed9d 1746#endif /* !atarist */
fa423c5b
IZ
1747
1748 if (add) {
1749 DEBUG_m(PerlIO_printf(Perl_debug_log,
1750 "sbrk(%ld) to fix non-continuous/off-page sbrk:\n\t%ld for alignement,\t%ld were assumed to come from the tail of the previous sbrk\n",
1751 (long)add, (long) slack,
1752 (long) sbrked_remains));
1753 newcp = (char *)sbrk(add);
1754#if defined(DEBUGGING_MSTATS)
1755 sbrks++;
1756 sbrk_slack += add;
1757#endif
1758 if (newcp != cp + require) {
1759 /* Too bad: even rounding sbrk() is not continuous.*/
1760 DEBUG_m(PerlIO_printf(Perl_debug_log,
1761 "failed to fix bad sbrk()\n"));
1762#ifdef PACK_MALLOC
1763 if (slack) {
741df71a 1764 MALLOC_UNLOCK;
5bbd1ef5 1765 fatalcroak("panic: Off-page sbrk\n");
fa423c5b
IZ
1766 }
1767#endif
1768 if (sbrked_remains) {
1769 /* Try again. */
1770#if defined(DEBUGGING_MSTATS)
1771 sbrk_slack += require;
1772#endif
1773 require = needed;
1774 DEBUG_m(PerlIO_printf(Perl_debug_log,
1775 "straight sbrk(%ld)\n",
1776 (long)require));
1777 cp = (char *)sbrk(require);
1778#ifdef DEBUGGING_MSTATS
1779 sbrks++;
1780#endif
1781 if (cp == (char *)-1)
1782 return 0;
1783 }
22f7c9c9 1784 sbrk_goodness = -1; /* Disable optimization!
fa423c5b
IZ
1785 Continue with not-aligned... */
1786 } else {
1787 cp += slack;
1788 require += sbrked_remains;
1789 }
1790 }
1791
1792 if (last_sbrk_top) {
22f7c9c9 1793 sbrk_goodness -= SBRK_FAILURE_PRICE;
fa423c5b
IZ
1794 }
1795
1796 ovp = (union overhead *) cp;
1797 /*
1798 * Round up to minimum allocation size boundary
1799 * and deduct from block count to reflect.
1800 */
1801
5bbd1ef5 1802# if NEEDED_ALIGNMENT > MEM_ALIGNBYTES
56431972 1803 if (PTR2UV(ovp) & (NEEDED_ALIGNMENT - 1))
5bbd1ef5
IZ
1804 fatalcroak("Misalignment of sbrk()\n");
1805 else
1806# endif
fa423c5b 1807#ifndef I286 /* Again, this should always be ok on an 80286 */
56431972 1808 if (PTR2UV(ovp) & (MEM_ALIGNBYTES - 1)) {
fa423c5b
IZ
1809 DEBUG_m(PerlIO_printf(Perl_debug_log,
1810 "fixing sbrk(): %d bytes off machine alignement\n",
56431972
RB
1811 (int)(PTR2UV(ovp) & (MEM_ALIGNBYTES - 1))));
1812 ovp = INT2PTR(union overhead *,(PTR2UV(ovp) + MEM_ALIGNBYTES) &
5bbd1ef5 1813 (MEM_ALIGNBYTES - 1));
fa423c5b
IZ
1814 (*nblksp)--;
1815# if defined(DEBUGGING_MSTATS)
1816 /* This is only approx. if TWO_POT_OPTIMIZE: */
5bbd1ef5 1817 sbrk_slack += (1 << (bucket >> BUCKET_POW2_SHIFT));
fa423c5b
IZ
1818# endif
1819 }
1820#endif
a0288114 1821 ; /* Finish "else" */
fa423c5b 1822 sbrked_remains = require - needed;
e9397286 1823 last_op = cp;
fa423c5b 1824 }
febabd2a 1825#if !defined(PLAIN_MALLOC) && !defined(NO_FANCY_MALLOC)
22f7c9c9 1826 emergency_buffer_last_req = 0;
febabd2a 1827#endif
fa423c5b 1828 last_sbrk_top = cp + require;
fa423c5b
IZ
1829#ifdef DEBUGGING_MSTATS
1830 goodsbrk += require;
1831#endif
1832 return ovp;
1833}
1834
cea2e8a9 1835static int
c7374474 1836getpages_adjacent(MEM_SIZE require)
fa423c5b
IZ
1837{
1838 if (require <= sbrked_remains) {
1839 sbrked_remains -= require;
1840 } else {
1841 char *cp;
1842
1843 require -= sbrked_remains;
1844 /* We do not try to optimize sbrks here, we go for place. */
1845 cp = (char*) sbrk(require);
1846#ifdef DEBUGGING_MSTATS
1847 sbrks++;
1848 goodsbrk += require;
1849#endif
1850 if (cp == last_sbrk_top) {
1851 sbrked_remains = 0;
1852 last_sbrk_top = cp + require;
1853 } else {
28ac10b1
IZ
1854 if (cp == (char*)-1) { /* Out of memory */
1855#ifdef DEBUGGING_MSTATS
1856 goodsbrk -= require;
1857#endif
1858 return 0;
1859 }
fa423c5b
IZ
1860 /* Report the failure: */
1861 if (sbrked_remains)
1862 add_to_chain((void*)(last_sbrk_top - sbrked_remains),
1863 sbrked_remains, 0);
1864 add_to_chain((void*)cp, require, 0);
22f7c9c9 1865 sbrk_goodness -= SBRK_FAILURE_PRICE;
fa423c5b
IZ
1866 sbrked_remains = 0;
1867 last_sbrk_top = 0;
1868 last_op = 0;
1869 return 0;
1870 }
1871 }
1872
1873 return 1;
1874}
1875
8d063cd8
LW
1876/*
1877 * Allocate more memory to the indicated bucket.
1878 */
cea2e8a9
GS
1879static void
1880morecore(register int bucket)
8d063cd8 1881{
899be101 1882 dVAR;
72aaf631 1883 register union overhead *ovp;
8d063cd8 1884 register int rnu; /* 2^rnu bytes will be requested */
fa423c5b 1885 int nblks; /* become nblks blocks of the desired size */
bbce6d69 1886 register MEM_SIZE siz, needed;
22f7c9c9 1887 static int were_called = 0;
8d063cd8
LW
1888
1889 if (nextf[bucket])
1890 return;
22f7c9c9
JH
1891#ifndef NO_PERL_MALLOC_ENV
1892 if (!were_called) {
1893 /* It's the our first time. Initialize ourselves */
1894 were_called = 1; /* Avoid a loop */
1895 if (!MallocCfg[MallocCfg_skip_cfg_env]) {
1896 char *s = getenv("PERL_MALLOC_OPT"), *t = s, *off;
1897 const char *opts = PERL_MALLOC_OPT_CHARS;
1898 int changed = 0;
1899
1900 while ( t && t[0] && t[1] == '='
1901 && ((off = strchr(opts, *t))) ) {
1902 IV val = 0;
1903
1904 t += 2;
1905 while (*t <= '9' && *t >= '0')
1906 val = 10*val + *t++ - '0';
1907 if (!*t || *t == ';') {
1908 if (MallocCfg[off - opts] != val)
1909 changed = 1;
1910 MallocCfg[off - opts] = val;
1911 if (*t)
1912 t++;
1913 }
1914 }
1915 if (t && *t) {
a0288114 1916 write2("Unrecognized part of PERL_MALLOC_OPT: \"");
22f7c9c9 1917 write2(t);
a0288114 1918 write2("\"\n");
22f7c9c9
JH
1919 }
1920 if (changed)
1921 MallocCfg[MallocCfg_cfg_env_read] = 1;
1922 }
1923 }
1924#endif
e8bc2b5c 1925 if (bucket == sizeof(MEM_SIZE)*8*BUCKETS_PER_POW2) {
741df71a 1926 MALLOC_UNLOCK;
d720c441 1927 croak("%s", "Out of memory during ridiculously large request");
55497cff 1928 }
d720c441 1929 if (bucket > max_bucket)
e8bc2b5c 1930 max_bucket = bucket;
d720c441 1931
e8bc2b5c
GS
1932 rnu = ( (bucket <= (LOG_OF_MIN_ARENA << BUCKET_POW2_SHIFT))
1933 ? LOG_OF_MIN_ARENA
1934 : (bucket >> BUCKET_POW2_SHIFT) );
1935 /* This may be overwritten later: */
1936 nblks = 1 << (rnu - (bucket >> BUCKET_POW2_SHIFT)); /* how many blocks to get */
1937 needed = ((MEM_SIZE)1 << rnu) + POW2_OPTIMIZE_SURPLUS(bucket);
1938 if (nextf[rnu << BUCKET_POW2_SHIFT]) { /* 2048b bucket. */
1939 ovp = nextf[rnu << BUCKET_POW2_SHIFT] - 1 + CHUNK_SHIFT;
1940 nextf[rnu << BUCKET_POW2_SHIFT]
1941 = nextf[rnu << BUCKET_POW2_SHIFT]->ov_next;
1942#ifdef DEBUGGING_MSTATS
1943 nmalloc[rnu << BUCKET_POW2_SHIFT]--;
1944 start_slack -= M_OVERHEAD;
1945#endif
1946 DEBUG_m(PerlIO_printf(Perl_debug_log,
1947 "stealing %ld bytes from %ld arena\n",
1948 (long) needed, (long) rnu << BUCKET_POW2_SHIFT));
1949 } else if (chunk_chain
1950 && (ovp = (union overhead*) get_from_chain(needed))) {
1951 DEBUG_m(PerlIO_printf(Perl_debug_log,
1952 "stealing %ld bytes from chain\n",
1953 (long) needed));
d720c441
IZ
1954 } else if ( (ovp = (union overhead*)
1955 get_from_bigger_buckets((rnu << BUCKET_POW2_SHIFT) + 1,
1956 needed)) ) {
e8bc2b5c
GS
1957 DEBUG_m(PerlIO_printf(Perl_debug_log,
1958 "stealing %ld bytes from bigger buckets\n",
1959 (long) needed));
1960 } else if (needed <= sbrked_remains) {
1961 ovp = (union overhead *)(last_sbrk_top - sbrked_remains);
1962 sbrked_remains -= needed;
1963 last_op = (char*)ovp;
fa423c5b
IZ
1964 } else
1965 ovp = getpages(needed, &nblks, bucket);
e8bc2b5c 1966
fa423c5b
IZ
1967 if (!ovp)
1968 return;
22f7c9c9 1969 FILL_DEADBEEF((unsigned char*)ovp, needed);
e8bc2b5c 1970
8d063cd8
LW
1971 /*
1972 * Add new memory allocated to that on
1973 * free list for this hash bucket.
1974 */
d0bbed78 1975 siz = BUCKET_SIZE_NO_SURPLUS(bucket); /* No surplus if nblks > 1 */
cf5c4ad8 1976#ifdef PACK_MALLOC
72aaf631 1977 *(u_char*)ovp = bucket; /* Fill index. */
e8bc2b5c
GS
1978 if (bucket <= MAX_PACKED) {
1979 ovp = (union overhead *) ((char*)ovp + BLK_SHIFT(bucket));
1980 nblks = N_BLKS(bucket);
cf5c4ad8 1981# ifdef DEBUGGING_MSTATS
e8bc2b5c 1982 start_slack += BLK_SHIFT(bucket);
cf5c4ad8 1983# endif
e8bc2b5c
GS
1984 } else if (bucket < LOG_OF_MIN_ARENA * BUCKETS_PER_POW2) {
1985 ovp = (union overhead *) ((char*)ovp + BLK_SHIFT(bucket));
cf5c4ad8 1986 siz -= sizeof(union overhead);
72aaf631 1987 } else ovp++; /* One chunk per block. */
e8bc2b5c 1988#endif /* PACK_MALLOC */
72aaf631 1989 nextf[bucket] = ovp;
5f05dabc 1990#ifdef DEBUGGING_MSTATS
1991 nmalloc[bucket] += nblks;
e8bc2b5c
GS
1992 if (bucket > MAX_PACKED) {
1993 start_slack += M_OVERHEAD * nblks;
1994 }
5f05dabc 1995#endif
22f7c9c9 1996
8d063cd8 1997 while (--nblks > 0) {
72aaf631
MB
1998 ovp->ov_next = (union overhead *)((caddr_t)ovp + siz);
1999 ovp = (union overhead *)((caddr_t)ovp + siz);
8d063cd8 2000 }
8595d6f1 2001 /* Not all sbrks return zeroed memory.*/
72aaf631 2002 ovp->ov_next = (union overhead *)NULL;
cf5c4ad8 2003#ifdef PACK_MALLOC
e8bc2b5c
GS
2004 if (bucket == 7*BUCKETS_PER_POW2) { /* Special case, explanation is above. */
2005 union overhead *n_op = nextf[7*BUCKETS_PER_POW2]->ov_next;
2006 nextf[7*BUCKETS_PER_POW2] =
2007 (union overhead *)((caddr_t)nextf[7*BUCKETS_PER_POW2]
2008 - sizeof(union overhead));
2009 nextf[7*BUCKETS_PER_POW2]->ov_next = n_op;
cf5c4ad8 2010 }
2011#endif /* !PACK_MALLOC */
8d063cd8
LW
2012}
2013
94b6baf5 2014Free_t
667e2948 2015Perl_mfree(Malloc_t where)
cea2e8a9 2016{
899be101 2017 dVAR;
ee0007ab 2018 register MEM_SIZE size;
72aaf631 2019 register union overhead *ovp;
667e2948 2020 char *cp = (char*)where;
cf5c4ad8 2021#ifdef PACK_MALLOC
2022 u_char bucket;
2023#endif
8d063cd8 2024
e8bc2b5c 2025 DEBUG_m(PerlIO_printf(Perl_debug_log,
b900a521
JH
2026 "0x%"UVxf": (%05lu) free\n",
2027 PTR2UV(cp), (unsigned long)(PL_an++)));
45d8adaa 2028
cf5c4ad8 2029 if (cp == NULL)
2030 return;
22f7c9c9
JH
2031#ifdef DEBUGGING
2032 if (PTR2UV(cp) & (MEM_ALIGNBYTES - 1))
2033 croak("%s", "wrong alignment in free()");
2034#endif
72aaf631 2035 ovp = (union overhead *)((caddr_t)cp
e8bc2b5c 2036 - sizeof (union overhead) * CHUNK_SHIFT);
cf5c4ad8 2037#ifdef PACK_MALLOC
72aaf631 2038 bucket = OV_INDEX(ovp);
cf5c4ad8 2039#endif
e8bc2b5c
GS
2040#ifdef IGNORE_SMALL_BAD_FREE
2041 if ((bucket >= FIRST_BUCKET_WITH_CHECK)
2042 && (OV_MAGIC(ovp, bucket) != MAGIC))
2043#else
2044 if (OV_MAGIC(ovp, bucket) != MAGIC)
2045#endif
2046 {
68dc0745 2047 static int bad_free_warn = -1;
cf5c4ad8 2048 if (bad_free_warn == -1) {
e8cd8248 2049 dTHX;
5fd9e9a4 2050 char *pbf = PerlEnv_getenv("PERL_BADFREE");
cf5c4ad8 2051 bad_free_warn = (pbf) ? atoi(pbf) : 1;
2052 }
2053 if (!bad_free_warn)
2054 return;
8990e307 2055#ifdef RCHECK
2ba999ec 2056#ifdef PERL_CORE
e8cd8248
GS
2057 {
2058 dTHX;
9b387841
NC
2059 if (!PERL_IS_ALIVE || !PL_curcop)
2060 Perl_ck_warner_d(aTHX_ packWARN(WARN_MALLOC), "%s free() ignored (RMAGIC, PERL_CORE)",
2061 ovp->ov_rmagic == RMAGIC - 1 ?
2062 "Duplicate" : "Bad");
2ba999ec 2063 }
e476b1b5 2064#else
52c6645e 2065 warn("%s free() ignored (RMAGIC)",
2ba999ec 2066 ovp->ov_rmagic == RMAGIC - 1 ? "Duplicate" : "Bad");
e476b1b5
GS
2067#endif
2068#else
2069#ifdef PERL_CORE
2ba999ec
GS
2070 {
2071 dTHX;
9b387841
NC
2072 if (!PERL_IS_ALIVE || !PL_curcop)
2073 Perl_ck_warner_d(aTHX_ packWARN(WARN_MALLOC), "%s", "Bad free() ignored (PERL_CORE)");
2ba999ec 2074 }
8990e307 2075#else
2ba999ec 2076 warn("%s", "Bad free() ignored");
8990e307 2077#endif
e476b1b5 2078#endif
8d063cd8 2079 return; /* sanity */
e8bc2b5c 2080 }
8d063cd8 2081#ifdef RCHECK
3541dd58 2082 ASSERT(ovp->ov_rmagic == RMAGIC, "chunk's head overwrite");
e8bc2b5c
GS
2083 if (OV_INDEX(ovp) <= MAX_SHORT_BUCKET) {
2084 int i;
2085 MEM_SIZE nbytes = ovp->ov_size + 1;
2086
d0bbed78
IZ
2087 if ((i = nbytes & (RMAGIC_SZ-1))) {
2088 i = RMAGIC_SZ - i;
2089 while (i--) { /* nbytes - RMAGIC_SZ is end of alloced area */
2090 ASSERT(((caddr_t)ovp + nbytes - RMAGIC_SZ)[i] == RMAGIC_C,
2091 "chunk's tail overwrite");
e8bc2b5c
GS
2092 }
2093 }
d0bbed78
IZ
2094 /* Same at RMAGIC_SZ-aligned RMAGIC */
2095 nbytes = (nbytes + (RMAGIC_SZ-1)) & ~(RMAGIC_SZ-1);
2096 ASSERT(((u_int *)((caddr_t)ovp + nbytes))[-1] == RMAGIC,
2097 "chunk's tail overwrite");
2098 FILLCHECK_DEADBEEF((unsigned char*)((caddr_t)ovp + nbytes),
2099 BUCKET_SIZE(OV_INDEX(ovp)) - nbytes);
e8bc2b5c 2100 }
d0bbed78
IZ
2101 FILL_DEADBEEF((unsigned char*)(ovp+CHUNK_SHIFT),
2102 BUCKET_SIZE_REAL(OV_INDEX(ovp)) + RMAGIC_SZ);
72aaf631 2103 ovp->ov_rmagic = RMAGIC - 1;
8d063cd8 2104#endif
3541dd58 2105 ASSERT(OV_INDEX(ovp) < NBUCKETS, "chunk's head overwrite");
72aaf631 2106 size = OV_INDEX(ovp);
4ad56ec9
IZ
2107
2108 MALLOC_LOCK;
72aaf631
MB
2109 ovp->ov_next = nextf[size];
2110 nextf[size] = ovp;
741df71a 2111 MALLOC_UNLOCK;
8d063cd8
LW
2112}
2113
4ad56ec9
IZ
2114/* There is no need to do any locking in realloc (with an exception of
2115 trying to grow in place if we are at the end of the chain).
2116 If somebody calls us from a different thread with the same address,
2117 we are sole anyway. */
8d063cd8 2118
2304df62 2119Malloc_t
86058a2d 2120Perl_realloc(void *mp, size_t nbytes)
cea2e8a9 2121{
899be101 2122 dVAR;
ee0007ab 2123 register MEM_SIZE onb;
72aaf631 2124 union overhead *ovp;
d720c441
IZ
2125 char *res;
2126 int prev_bucket;
e8bc2b5c 2127 register int bucket;
4ad56ec9
IZ
2128 int incr; /* 1 if does not fit, -1 if "easily" fits in a
2129 smaller bucket, otherwise 0. */
352d5a3a 2130 char *cp = (char*)mp;
8d063cd8 2131
e8bc2b5c 2132#if defined(DEBUGGING) || !defined(PERL_CORE)
ee0007ab 2133 MEM_SIZE size = nbytes;
45d8adaa 2134
45d8adaa 2135 if ((long)nbytes < 0)
cea2e8a9 2136 croak("%s", "panic: realloc");
45d8adaa 2137#endif
e8bc2b5c
GS
2138
2139 BARK_64K_LIMIT("Reallocation",nbytes,size);
2140 if (!cp)
86058a2d 2141 return Perl_malloc(nbytes);
45d8adaa 2142
72aaf631 2143 ovp = (union overhead *)((caddr_t)cp
e8bc2b5c
GS
2144 - sizeof (union overhead) * CHUNK_SHIFT);
2145 bucket = OV_INDEX(ovp);
4ad56ec9 2146
e8bc2b5c 2147#ifdef IGNORE_SMALL_BAD_FREE
4ad56ec9
IZ
2148 if ((bucket >= FIRST_BUCKET_WITH_CHECK)
2149 && (OV_MAGIC(ovp, bucket) != MAGIC))
e8bc2b5c 2150#else
4ad56ec9 2151 if (OV_MAGIC(ovp, bucket) != MAGIC)
e8bc2b5c 2152#endif
4ad56ec9
IZ
2153 {
2154 static int bad_free_warn = -1;
2155 if (bad_free_warn == -1) {
e8cd8248 2156 dTHX;
4ad56ec9
IZ
2157 char *pbf = PerlEnv_getenv("PERL_BADFREE");
2158 bad_free_warn = (pbf) ? atoi(pbf) : 1;
2159 }
2160 if (!bad_free_warn)
bd61b366 2161 return NULL;
4ad56ec9 2162#ifdef RCHECK
2ba999ec 2163#ifdef PERL_CORE
e8cd8248
GS
2164 {
2165 dTHX;
9b387841
NC
2166 if (!PERL_IS_ALIVE || !PL_curcop)
2167 Perl_ck_warner_d(aTHX_ packWARN(WARN_MALLOC), "%srealloc() %signored",
2168 (ovp->ov_rmagic == RMAGIC - 1 ? "" : "Bad "),
2169 ovp->ov_rmagic == RMAGIC - 1
2170 ? "of freed memory " : "");
2ba999ec 2171 }
e476b1b5 2172#else
22f7c9c9
JH
2173 warn2("%srealloc() %signored",
2174 (ovp->ov_rmagic == RMAGIC - 1 ? "" : "Bad "),
2175 ovp->ov_rmagic == RMAGIC - 1 ? "of freed memory " : "");
e476b1b5
GS
2176#endif
2177#else
2178#ifdef PERL_CORE
2ba999ec
GS
2179 {
2180 dTHX;
9b387841
NC
2181 if (!PERL_IS_ALIVE || !PL_curcop)
2182 Perl_ck_warner_d(aTHX_ packWARN(WARN_MALLOC), "%s",
2183 "Bad realloc() ignored");
2ba999ec 2184 }
4ad56ec9 2185#else
2ba999ec 2186 warn("%s", "Bad realloc() ignored");
4ad56ec9 2187#endif
e476b1b5 2188#endif
bd61b366 2189 return NULL; /* sanity */
4ad56ec9
IZ
2190 }
2191
e8bc2b5c 2192 onb = BUCKET_SIZE_REAL(bucket);
55497cff 2193 /*
2194 * avoid the copy if same size block.
e8bc2b5c
GS
2195 * We are not agressive with boundary cases. Note that it might
2196 * (for a small number of cases) give false negative if
55497cff 2197 * both new size and old one are in the bucket for
e8bc2b5c
GS
2198 * FIRST_BIG_POW2, but the new one is near the lower end.
2199 *
2200 * We do not try to go to 1.5 times smaller bucket so far.
55497cff 2201 */
e8bc2b5c
GS
2202 if (nbytes > onb) incr = 1;
2203 else {
2204#ifdef DO_NOT_TRY_HARDER_WHEN_SHRINKING
2205 if ( /* This is a little bit pessimal if PACK_MALLOC: */
2206 nbytes > ( (onb >> 1) - M_OVERHEAD )
2207# ifdef TWO_POT_OPTIMIZE
2208 || (bucket == FIRST_BIG_POW2 && nbytes >= LAST_SMALL_BOUND )
2209# endif
2210 )
2211#else /* !DO_NOT_TRY_HARDER_WHEN_SHRINKING */
2212 prev_bucket = ( (bucket > MAX_PACKED + 1)
2213 ? bucket - BUCKETS_PER_POW2
2214 : bucket - 1);
2215 if (nbytes > BUCKET_SIZE_REAL(prev_bucket))
2216#endif /* !DO_NOT_TRY_HARDER_WHEN_SHRINKING */
2217 incr = 0;
2218 else incr = -1;
2219 }
2ce36478 2220#ifdef STRESS_REALLOC
4ad56ec9 2221 goto hard_way;
2ce36478 2222#endif
4ad56ec9 2223 if (incr == 0) {
852c2e52 2224 inplace_label:
a687059c
LW
2225#ifdef RCHECK
2226 /*
2227 * Record new allocated size of block and
2228 * bound space with magic numbers.
2229 */
72aaf631 2230 if (OV_INDEX(ovp) <= MAX_SHORT_BUCKET) {
e8bc2b5c
GS
2231 int i, nb = ovp->ov_size + 1;
2232
d0bbed78
IZ
2233 if ((i = nb & (RMAGIC_SZ-1))) {
2234 i = RMAGIC_SZ - i;
2235 while (i--) { /* nb - RMAGIC_SZ is end of alloced area */
2236 ASSERT(((caddr_t)ovp + nb - RMAGIC_SZ)[i] == RMAGIC_C, "chunk's tail overwrite");
e8bc2b5c
GS
2237 }
2238 }
d0bbed78
IZ
2239 /* Same at RMAGIC_SZ-aligned RMAGIC */
2240 nb = (nb + (RMAGIC_SZ-1)) & ~(RMAGIC_SZ-1);
2241 ASSERT(((u_int *)((caddr_t)ovp + nb))[-1] == RMAGIC,
2242 "chunk's tail overwrite");
2243 FILLCHECK_DEADBEEF((unsigned char*)((caddr_t)ovp + nb),
2244 BUCKET_SIZE(OV_INDEX(ovp)) - nb);
22f7c9c9
JH
2245 if (nbytes > ovp->ov_size + 1 - M_OVERHEAD)
2246 FILL_FEEDADAD((unsigned char*)cp + ovp->ov_size + 1 - M_OVERHEAD,
2247 nbytes - (ovp->ov_size + 1 - M_OVERHEAD));
2248 else
2249 FILL_DEADBEEF((unsigned char*)cp + nbytes,
d0bbed78 2250 nb - M_OVERHEAD + RMAGIC_SZ - nbytes);
a687059c
LW
2251 /*
2252 * Convert amount of memory requested into
2253 * closest block size stored in hash buckets
2254 * which satisfies request. Account for
2255 * space used per block for accounting.
2256 */
cf5c4ad8 2257 nbytes += M_OVERHEAD;
72aaf631 2258 ovp->ov_size = nbytes - 1;
d0bbed78
IZ
2259 if ((i = nbytes & (RMAGIC_SZ-1))) {
2260 i = RMAGIC_SZ - i;
2261 while (i--) /* nbytes - RMAGIC_SZ is end of alloced area */
2262 ((caddr_t)ovp + nbytes - RMAGIC_SZ)[i]
e8bc2b5c
GS
2263 = RMAGIC_C;
2264 }
d0bbed78
IZ
2265 /* Same at RMAGIC_SZ-aligned RMAGIC */
2266 nbytes = (nbytes + (RMAGIC_SZ-1)) & ~(RMAGIC_SZ - 1);
2267 ((u_int *)((caddr_t)ovp + nbytes))[-1] = RMAGIC;
a687059c
LW
2268 }
2269#endif
45d8adaa 2270 res = cp;
42ac124e 2271 DEBUG_m(PerlIO_printf(Perl_debug_log,
b900a521
JH
2272 "0x%"UVxf": (%05lu) realloc %ld bytes inplace\n",
2273 PTR2UV(res),(unsigned long)(PL_an++),
42ac124e 2274 (long)size));
e8bc2b5c
GS
2275 } else if (incr == 1 && (cp - M_OVERHEAD == last_op)
2276 && (onb > (1 << LOG_OF_MIN_ARENA))) {
2277 MEM_SIZE require, newarena = nbytes, pow;
2278 int shiftr;
2279
2280 POW2_OPTIMIZE_ADJUST(newarena);
2281 newarena = newarena + M_OVERHEAD;
2282 /* newarena = (newarena + 3) &~ 3; */
2283 shiftr = (newarena - 1) >> LOG_OF_MIN_ARENA;
2284 pow = LOG_OF_MIN_ARENA + 1;
2285 /* apart from this loop, this is O(1) */
2286 while (shiftr >>= 1)
2287 pow++;
2288 newarena = (1 << pow) + POW2_OPTIMIZE_SURPLUS(pow * BUCKETS_PER_POW2);
2289 require = newarena - onb - M_OVERHEAD;
2290
4ad56ec9
IZ
2291 MALLOC_LOCK;
2292 if (cp - M_OVERHEAD == last_op /* We *still* are the last chunk */
2293 && getpages_adjacent(require)) {
e8bc2b5c 2294#ifdef DEBUGGING_MSTATS
fa423c5b
IZ
2295 nmalloc[bucket]--;
2296 nmalloc[pow * BUCKETS_PER_POW2]++;
e8bc2b5c 2297#endif
532939df 2298 if (pow * BUCKETS_PER_POW2 > (MEM_SIZE)max_bucket)
a73918ec 2299 max_bucket = pow * BUCKETS_PER_POW2;
4d6cd4d8 2300 *(cp - M_OVERHEAD) = pow * BUCKETS_PER_POW2; /* Fill index. */
4ad56ec9 2301 MALLOC_UNLOCK;
fa423c5b 2302 goto inplace_label;
4ad56ec9
IZ
2303 } else {
2304 MALLOC_UNLOCK;
fa423c5b 2305 goto hard_way;
4ad56ec9 2306 }
e8bc2b5c
GS
2307 } else {
2308 hard_way:
42ac124e 2309 DEBUG_m(PerlIO_printf(Perl_debug_log,
b900a521
JH
2310 "0x%"UVxf": (%05lu) realloc %ld bytes the hard way\n",
2311 PTR2UV(cp),(unsigned long)(PL_an++),
42ac124e 2312 (long)size));
86058a2d 2313 if ((res = (char*)Perl_malloc(nbytes)) == NULL)
e8bc2b5c
GS
2314 return (NULL);
2315 if (cp != res) /* common optimization */
2316 Copy(cp, res, (MEM_SIZE)(nbytes<onb?nbytes:onb), char);
4ad56ec9 2317 Perl_mfree(cp);
45d8adaa 2318 }
2304df62 2319 return ((Malloc_t)res);
8d063cd8
LW
2320}
2321
cf5c4ad8 2322Malloc_t
86058a2d 2323Perl_calloc(register size_t elements, register size_t size)
cf5c4ad8 2324{
2325 long sz = elements * size;
86058a2d 2326 Malloc_t p = Perl_malloc(sz);
cf5c4ad8 2327
2328 if (p) {
2329 memset((void*)p, 0, sz);
2330 }
2331 return p;
2332}
2333
4ad56ec9
IZ
2334char *
2335Perl_strdup(const char *s)
2336{
2337 MEM_SIZE l = strlen(s);
b48f1ba5 2338 char *s1 = (char *)Perl_malloc(l+1);
4ad56ec9 2339
667e2948 2340 return (char *)CopyD(s, s1, (MEM_SIZE)(l+1), char);
4ad56ec9
IZ
2341}
2342
2343#ifdef PERL_CORE
2344int
2345Perl_putenv(char *a)
2346{
2347 /* Sometimes system's putenv conflicts with my_setenv() - this is system
2348 malloc vs Perl's free(). */
2349 dTHX;
2350 char *var;
2351 char *val = a;
2352 MEM_SIZE l;
2353 char buf[80];
2354
2355 while (*val && *val != '=')
2356 val++;
2357 if (!*val)
2358 return -1;
2359 l = val - a;
2360 if (l < sizeof(buf))
2361 var = buf;
2362 else
667e2948 2363 var = (char *)Perl_malloc(l + 1);
4ad56ec9 2364 Copy(a, var, l, char);
b48f1ba5
GS
2365 var[l + 1] = 0;
2366 my_setenv(var, val+1);
4ad56ec9
IZ
2367 if (var != buf)
2368 Perl_mfree(var);
2369 return 0;
2370}
2371# endif
2372
e8bc2b5c 2373MEM_SIZE
cea2e8a9 2374Perl_malloced_size(void *p)
e8bc2b5c 2375{
44f8325f 2376 union overhead * const ovp = (union overhead *)
8d6dde3e 2377 ((caddr_t)p - sizeof (union overhead) * CHUNK_SHIFT);
b464bac0 2378 const int bucket = OV_INDEX(ovp);
7918f24d
NC
2379
2380 PERL_ARGS_ASSERT_MALLOCED_SIZE;
2381
8d6dde3e
IZ
2382#ifdef RCHECK
2383 /* The caller wants to have a complete control over the chunk,
2384 disable the memory checking inside the chunk. */
2385 if (bucket <= MAX_SHORT_BUCKET) {
b464bac0 2386 const MEM_SIZE size = BUCKET_SIZE_REAL(bucket);
8d6dde3e 2387 ovp->ov_size = size + M_OVERHEAD - 1;
d0bbed78 2388 *((u_int *)((caddr_t)ovp + size + M_OVERHEAD - RMAGIC_SZ)) = RMAGIC;
8d6dde3e
IZ
2389 }
2390#endif
e8bc2b5c
GS
2391 return BUCKET_SIZE_REAL(bucket);
2392}
2393
64107180
NC
2394
2395MEM_SIZE
2396Perl_malloc_good_size(size_t wanted)
2397{
2398 return BUCKET_SIZE_REAL(S_ajust_size_and_find_bucket(&wanted));
2399}
2400
e8bc2b5c
GS
2401# ifdef BUCKETS_ROOT2
2402# define MIN_EVEN_REPORT 6
2403# else
2404# define MIN_EVEN_REPORT MIN_BUCKET
2405# endif
827e134a
GS
2406
2407int
2408Perl_get_mstats(pTHX_ perl_mstats_t *buf, int buflen, int level)
8d063cd8 2409{
df31f264 2410#ifdef DEBUGGING_MSTATS
8d063cd8
LW
2411 register int i, j;
2412 register union overhead *p;
4ad56ec9 2413 struct chunk_chain_s* nextchain;
8d063cd8 2414
7918f24d
NC
2415 PERL_ARGS_ASSERT_GET_MSTATS;
2416
827e134a
GS
2417 buf->topbucket = buf->topbucket_ev = buf->topbucket_odd
2418 = buf->totfree = buf->total = buf->total_chain = 0;
2419
2420 buf->minbucket = MIN_BUCKET;
4ad56ec9 2421 MALLOC_LOCK;
e8bc2b5c 2422 for (i = MIN_BUCKET ; i < NBUCKETS; i++) {
8d063cd8
LW
2423 for (j = 0, p = nextf[i]; p; p = p->ov_next, j++)
2424 ;
827e134a
GS
2425 if (i < buflen) {
2426 buf->nfree[i] = j;
2427 buf->ntotal[i] = nmalloc[i];
2428 }
2429 buf->totfree += j * BUCKET_SIZE_REAL(i);
2430 buf->total += nmalloc[i] * BUCKET_SIZE_REAL(i);
e8bc2b5c 2431 if (nmalloc[i]) {
827e134a
GS
2432 i % 2 ? (buf->topbucket_odd = i) : (buf->topbucket_ev = i);
2433 buf->topbucket = i;
e8bc2b5c 2434 }
c07a80fd 2435 }
4ad56ec9
IZ
2436 nextchain = chunk_chain;
2437 while (nextchain) {
827e134a 2438 buf->total_chain += nextchain->size;
4ad56ec9
IZ
2439 nextchain = nextchain->next;
2440 }
827e134a
GS
2441 buf->total_sbrk = goodsbrk + sbrk_slack;
2442 buf->sbrks = sbrks;
22f7c9c9 2443 buf->sbrk_good = sbrk_goodness;
827e134a
GS
2444 buf->sbrk_slack = sbrk_slack;
2445 buf->start_slack = start_slack;
2446 buf->sbrked_remains = sbrked_remains;
4ad56ec9 2447 MALLOC_UNLOCK;
880b20b6 2448 buf->nbuckets = NBUCKETS;
827e134a
GS
2449 if (level) {
2450 for (i = MIN_BUCKET ; i < NBUCKETS; i++) {
2451 if (i >= buflen)
2452 break;
d0bbed78 2453 buf->bucket_mem_size[i] = BUCKET_SIZE_NO_SURPLUS(i);
827e134a
GS
2454 buf->bucket_available_size[i] = BUCKET_SIZE_REAL(i);
2455 }
2456 }
3128eefe
SR
2457#else /* defined DEBUGGING_MSTATS */
2458 PerlIO_printf(Perl_error_log, "perl not compiled with DEBUGGING_MSTATS\n");
827e134a 2459#endif /* defined DEBUGGING_MSTATS */
fe52b3b7 2460 return 0; /* XXX unused */
827e134a
GS
2461}
2462/*
2463 * mstats - print out statistics about malloc
2464 *
2465 * Prints two lines of numbers, one showing the length of the free list
2466 * for each size category, the second showing the number of mallocs -
2467 * frees for each size category.
2468 */
2469void
6e9b0e18 2470Perl_dump_mstats(pTHX_ const char *s)
827e134a
GS
2471{
2472#ifdef DEBUGGING_MSTATS
880b20b6 2473 register int i;
827e134a 2474 perl_mstats_t buffer;
880b20b6
IZ
2475 UV nf[NBUCKETS];
2476 UV nt[NBUCKETS];
827e134a 2477
7918f24d
NC
2478 PERL_ARGS_ASSERT_DUMP_MSTATS;
2479
827e134a
GS
2480 buffer.nfree = nf;
2481 buffer.ntotal = nt;
2482 get_mstats(&buffer, NBUCKETS, 0);
2483
c07a80fd 2484 if (s)
bf49b057 2485 PerlIO_printf(Perl_error_log,
880b20b6 2486 "Memory allocation statistics %s (buckets %"IVdf"(%"IVdf")..%"IVdf"(%"IVdf")\n",
e8bc2b5c 2487 s,
880b20b6 2488 (IV)BUCKET_SIZE_REAL(MIN_BUCKET),
d0bbed78 2489 (IV)BUCKET_SIZE_NO_SURPLUS(MIN_BUCKET),
880b20b6 2490 (IV)BUCKET_SIZE_REAL(buffer.topbucket),
d0bbed78 2491 (IV)BUCKET_SIZE_NO_SURPLUS(buffer.topbucket));
880b20b6 2492 PerlIO_printf(Perl_error_log, "%8"IVdf" free:", buffer.totfree);
827e134a 2493 for (i = MIN_EVEN_REPORT; i <= buffer.topbucket; i += BUCKETS_PER_POW2) {
bf49b057 2494 PerlIO_printf(Perl_error_log,
e8bc2b5c 2495 ((i < 8*BUCKETS_PER_POW2 || i == 10*BUCKETS_PER_POW2)
880b20b6
IZ
2496 ? " %5"UVuf
2497 : ((i < 12*BUCKETS_PER_POW2) ? " %3"UVuf : " %"UVuf)),
827e134a 2498 buffer.nfree[i]);
e8bc2b5c
GS
2499 }
2500#ifdef BUCKETS_ROOT2
bf49b057 2501 PerlIO_printf(Perl_error_log, "\n\t ");
827e134a 2502 for (i = MIN_BUCKET + 1; i <= buffer.topbucket_odd; i += BUCKETS_PER_POW2) {
bf49b057 2503 PerlIO_printf(Perl_error_log,
e8bc2b5c 2504 ((i < 8*BUCKETS_PER_POW2 || i == 10*BUCKETS_PER_POW2)
880b20b6
IZ
2505 ? " %5"UVuf
2506 : ((i < 12*BUCKETS_PER_POW2) ? " %3"UVuf : " %"UVuf)),
827e134a 2507 buffer.nfree[i]);
8d063cd8 2508 }
e8bc2b5c 2509#endif
880b20b6 2510 PerlIO_printf(Perl_error_log, "\n%8"IVdf" used:", buffer.total - buffer.totfree);
827e134a 2511 for (i = MIN_EVEN_REPORT; i <= buffer.topbucket; i += BUCKETS_PER_POW2) {
bf49b057 2512 PerlIO_printf(Perl_error_log,
e8bc2b5c 2513 ((i < 8*BUCKETS_PER_POW2 || i == 10*BUCKETS_PER_POW2)
880b20b6
IZ
2514 ? " %5"IVdf
2515 : ((i < 12*BUCKETS_PER_POW2) ? " %3"IVdf : " %"IVdf)),
827e134a 2516 buffer.ntotal[i] - buffer.nfree[i]);
c07a80fd 2517 }
e8bc2b5c 2518#ifdef BUCKETS_ROOT2
bf49b057 2519 PerlIO_printf(Perl_error_log, "\n\t ");
827e134a 2520 for (i = MIN_BUCKET + 1; i <= buffer.topbucket_odd; i += BUCKETS_PER_POW2) {
bf49b057 2521 PerlIO_printf(Perl_error_log,
e8bc2b5c 2522 ((i < 8*BUCKETS_PER_POW2 || i == 10*BUCKETS_PER_POW2)
880b20b6
IZ
2523 ? " %5"IVdf
2524 : ((i < 12*BUCKETS_PER_POW2) ? " %3"IVdf : " %"IVdf)),
827e134a 2525 buffer.ntotal[i] - buffer.nfree[i]);
e8bc2b5c
GS
2526 }
2527#endif
880b20b6 2528 PerlIO_printf(Perl_error_log, "\nTotal sbrk(): %"IVdf"/%"IVdf":%"IVdf". Odd ends: pad+heads+chain+tail: %"IVdf"+%"IVdf"+%"IVdf"+%"IVdf".\n",
827e134a
GS
2529 buffer.total_sbrk, buffer.sbrks, buffer.sbrk_good,
2530 buffer.sbrk_slack, buffer.start_slack,
2531 buffer.total_chain, buffer.sbrked_remains);
3128eefe
SR
2532#else /* DEBUGGING_MSTATS */
2533 PerlIO_printf(Perl_error_log, "%s: perl not compiled with DEBUGGING_MSTATS\n",s);
df31f264 2534#endif /* DEBUGGING_MSTATS */
c07a80fd 2535}
cf5c4ad8 2536
cf5c4ad8 2537#ifdef USE_PERL_SBRK
2538
e94c1c05 2539# if defined(NeXT) || defined(__NeXT__) || defined(PURIFY)
38ac2dc8 2540# define PERL_SBRK_VIA_MALLOC
38ac2dc8
DD
2541# endif
2542
760ac839 2543# ifdef PERL_SBRK_VIA_MALLOC
cf5c4ad8 2544
2545/* it may seem schizophrenic to use perl's malloc and let it call system */
2546/* malloc, the reason for that is only the 3.2 version of the OS that had */
2547/* frequent core dumps within nxzonefreenolock. This sbrk routine put an */
2548/* end to the cores */
2549
38ac2dc8
DD
2550# ifndef SYSTEM_ALLOC
2551# define SYSTEM_ALLOC(a) malloc(a)
2552# endif
5bbd1ef5
IZ
2553# ifndef SYSTEM_ALLOC_ALIGNMENT
2554# define SYSTEM_ALLOC_ALIGNMENT MEM_ALIGNBYTES
2555# endif
cf5c4ad8 2556
760ac839 2557# endif /* PERL_SBRK_VIA_MALLOC */
cf5c4ad8 2558
2559static IV Perl_sbrk_oldchunk;
2560static long Perl_sbrk_oldsize;
2561
760ac839
LW
2562# define PERLSBRK_32_K (1<<15)
2563# define PERLSBRK_64_K (1<<16)
cf5c4ad8 2564
b63effbb 2565Malloc_t
df0003d4 2566Perl_sbrk(int size)
cf5c4ad8 2567{
2568 IV got;
2569 int small, reqsize;
2570
2571 if (!size) return 0;
55497cff 2572#ifdef PERL_CORE
cf5c4ad8 2573 reqsize = size; /* just for the DEBUG_m statement */
2574#endif
57569e04
HM
2575#ifdef PACK_MALLOC
2576 size = (size + 0x7ff) & ~0x7ff;
2577#endif
cf5c4ad8 2578 if (size <= Perl_sbrk_oldsize) {
2579 got = Perl_sbrk_oldchunk;
2580 Perl_sbrk_oldchunk += size;
2581 Perl_sbrk_oldsize -= size;
2582 } else {
2583 if (size >= PERLSBRK_32_K) {
2584 small = 0;
2585 } else {
cf5c4ad8 2586 size = PERLSBRK_64_K;
2587 small = 1;
2588 }
5bbd1ef5
IZ
2589# if NEEDED_ALIGNMENT > SYSTEM_ALLOC_ALIGNMENT
2590 size += NEEDED_ALIGNMENT - SYSTEM_ALLOC_ALIGNMENT;
2591# endif
cf5c4ad8 2592 got = (IV)SYSTEM_ALLOC(size);
5bbd1ef5 2593# if NEEDED_ALIGNMENT > SYSTEM_ALLOC_ALIGNMENT
5a7d6335 2594 got = (got + NEEDED_ALIGNMENT - 1) & ~(NEEDED_ALIGNMENT - 1);
5bbd1ef5 2595# endif
cf5c4ad8 2596 if (small) {
2597 /* Chunk is small, register the rest for future allocs. */
2598 Perl_sbrk_oldchunk = got + reqsize;
2599 Perl_sbrk_oldsize = size - reqsize;
2600 }
2601 }
2602
b900a521
JH
2603 DEBUG_m(PerlIO_printf(Perl_debug_log, "sbrk malloc size %ld (reqsize %ld), left size %ld, give addr 0x%"UVxf"\n",
2604 size, reqsize, Perl_sbrk_oldsize, PTR2UV(got)));
cf5c4ad8 2605
2606 return (void *)got;
2607}
2608
2609#endif /* ! defined USE_PERL_SBRK */
66610fdd
RGS
2610
2611/*
2612 * Local variables:
2613 * c-indentation-style: bsd
2614 * c-basic-offset: 4
2615 * indent-tabs-mode: t
2616 * End:
2617 *
37442d52
RGS
2618 * ex: set ts=8 sts=4 sw=4 noet:
2619 */