2010-01-17 01:53:50 +08:00
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_TYPES
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Size and alignment of memory chunks that are allocated by the OS's virtual
|
|
|
|
* memory system.
|
|
|
|
*/
|
|
|
|
#define LG_CHUNK_DEFAULT 22
|
|
|
|
|
|
|
|
/* Return the chunk address for allocation address a. */
|
|
|
|
#define CHUNK_ADDR2BASE(a) \
|
|
|
|
((void *)((uintptr_t)(a) & ~chunksize_mask))
|
|
|
|
|
|
|
|
/* Return the chunk offset of address a. */
|
|
|
|
#define CHUNK_ADDR2OFFSET(a) \
|
|
|
|
((size_t)((uintptr_t)(a) & chunksize_mask))
|
|
|
|
|
|
|
|
/* Return the smallest chunk multiple that is >= s. */
|
|
|
|
#define CHUNK_CEILING(s) \
|
|
|
|
(((s) + chunksize_mask) & ~chunksize_mask)
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_TYPES */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_STRUCTS
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_STRUCTS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_EXTERNS
|
|
|
|
|
2010-01-24 18:53:40 +08:00
|
|
|
extern size_t opt_lg_chunk;
|
|
|
|
|
2010-01-28 05:10:55 +08:00
|
|
|
/* Protects stats_chunks; currently not used for any other purpose. */
|
|
|
|
extern malloc_mutex_t chunks_mtx;
|
2010-01-17 01:53:50 +08:00
|
|
|
/* Chunk statistics. */
|
|
|
|
extern chunk_stats_t stats_chunks;
|
|
|
|
|
2010-09-06 01:35:13 +08:00
|
|
|
extern rtree_t *chunks_rtree;
|
|
|
|
|
2010-01-17 01:53:50 +08:00
|
|
|
extern size_t chunksize;
|
|
|
|
extern size_t chunksize_mask; /* (chunksize - 1). */
|
|
|
|
extern size_t chunk_npages;
|
2010-10-02 08:35:43 +08:00
|
|
|
extern size_t map_bias; /* Number of arena chunk header pages. */
|
2010-01-17 01:53:50 +08:00
|
|
|
extern size_t arena_maxclass; /* Max size class for arenas. */
|
|
|
|
|
2010-09-06 01:35:13 +08:00
|
|
|
void *chunk_alloc(size_t size, bool base, bool *zero);
|
2011-11-12 06:41:59 +08:00
|
|
|
void chunk_dealloc(void *chunk, size_t size, bool unmap);
|
2010-01-17 01:53:50 +08:00
|
|
|
bool chunk_boot(void);
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_EXTERNS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_INLINES
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_INLINES */
|
|
|
|
/******************************************************************************/
|
2010-01-24 18:53:40 +08:00
|
|
|
|
2010-02-12 06:45:59 +08:00
|
|
|
#include "jemalloc/internal/chunk_dss.h"
|
|
|
|
#include "jemalloc/internal/chunk_mmap.h"
|