2020-05-30 06:02:19 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_PAI_H
|
|
|
|
#define JEMALLOC_INTERNAL_PAI_H
|
|
|
|
|
|
|
|
/* An interface for page allocation. */
|
|
|
|
|
|
|
|
typedef struct pai_s pai_t;
|
|
|
|
struct pai_s {
|
|
|
|
/* Returns NULL on failure. */
|
|
|
|
edata_t *(*alloc)(tsdn_t *tsdn, pai_t *self, size_t size,
|
|
|
|
size_t alignment, bool zero);
|
|
|
|
bool (*expand)(tsdn_t *tsdn, pai_t *self, edata_t *edata,
|
|
|
|
size_t old_size, size_t new_size, bool zero);
|
|
|
|
bool (*shrink)(tsdn_t *tsdn, pai_t *self, edata_t *edata,
|
|
|
|
size_t old_size, size_t new_size);
|
|
|
|
void (*dalloc)(tsdn_t *tsdn, pai_t *self, edata_t *edata);
|
2021-01-05 11:43:08 +08:00
|
|
|
/* This function empties out list as a side-effect of being called. */
|
2021-01-05 10:40:27 +08:00
|
|
|
void (*dalloc_batch)(tsdn_t *tsdn, pai_t *self,
|
|
|
|
edata_list_active_t *list);
|
2020-05-30 06:02:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These are just simple convenience functions to avoid having to reference the
|
|
|
|
* same pai_t twice on every invocation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline edata_t *
|
|
|
|
pai_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment, bool zero) {
|
|
|
|
return self->alloc(tsdn, self, size, alignment, zero);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
pai_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size,
|
|
|
|
size_t new_size, bool zero) {
|
|
|
|
return self->expand(tsdn, self, edata, old_size, new_size, zero);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
pai_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size,
|
|
|
|
size_t new_size) {
|
|
|
|
return self->shrink(tsdn, self, edata, old_size, new_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
pai_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata) {
|
|
|
|
self->dalloc(tsdn, self, edata);
|
|
|
|
}
|
|
|
|
|
2021-01-05 10:40:27 +08:00
|
|
|
static inline void
|
|
|
|
pai_dalloc_batch(tsdn_t *tsdn, pai_t *self, edata_list_active_t *list) {
|
|
|
|
return self->dalloc_batch(tsdn, self, list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An implementation of batch deallocation that simply calls dalloc once for
|
|
|
|
* each item in the list.
|
|
|
|
*/
|
|
|
|
void pai_dalloc_batch_default(tsdn_t *tsdn, pai_t *self,
|
|
|
|
edata_list_active_t *list);
|
|
|
|
|
2020-05-30 06:02:19 +08:00
|
|
|
#endif /* JEMALLOC_INTERNAL_PAI_H */
|