FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
mem.h File Reference
+ Include dependency graph for mem.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  clib_mem_usage_t
 
struct  clib_mem_vm_alloc_t
 
struct  clib_mem_vm_map_t
 

Macros

#define CLIB_MAX_MHEAPS   256
 
#define clib_mem_alloc_aligned_no_fail(size, align)
 
#define clib_mem_alloc_no_fail(size)   clib_mem_alloc_aligned_no_fail(size,1)
 
#define clib_mem_alloc_stack(bytes)   __builtin_alloca(bytes)
 
#define CLIB_MEM_VM_F_SHARED   (1 << 0)
 
#define CLIB_MEM_VM_F_HUGETLB   (1 << 1)
 
#define CLIB_MEM_VM_F_NUMA_PREFER   (1 << 2)
 
#define CLIB_MEM_VM_F_NUMA_FORCE   (1 << 3)
 
#define CLIB_MEM_VM_F_HUGETLB_PREALLOC   (1 << 4)
 
#define CLIB_MEM_VM_F_LOCKED   (1 << 5)
 

Functions

static void * clib_mem_get_per_cpu_heap (void)
 
static void * clib_mem_set_per_cpu_heap (u8 *new_heap)
 
static void * clib_mem_alloc_aligned_at_offset (uword size, uword align, uword align_offset, int os_out_of_memory_on_failure)
 
static void * clib_mem_alloc (uword size)
 
static void * clib_mem_alloc_aligned (uword size, uword align)
 
static void * clib_mem_alloc_or_null (uword size)
 
static void * clib_mem_alloc_aligned_or_null (uword size, uword align)
 
static uword clib_mem_is_heap_object (void *p)
 
static void clib_mem_free (void *p)
 
static void * clib_mem_realloc (void *p, uword new_size, uword old_size)
 
static uword clib_mem_size (void *p)
 
static void * clib_mem_get_heap (void)
 
static void * clib_mem_set_heap (void *heap)
 
void * clib_mem_init (void *heap, uword size)
 
void * clib_mem_init_thread_safe (void *memory, uword memory_size)
 
void clib_mem_exit (void)
 
uword clib_mem_get_page_size (void)
 
void clib_mem_validate (void)
 
void clib_mem_trace (int enable)
 
int clib_mem_is_traced (void)
 
void clib_mem_usage (clib_mem_usage_t *usage)
 
u8format_clib_mem_usage (u8 *s, va_list *args)
 
static void * clib_mem_vm_alloc (uword size)
 
static void clib_mem_vm_free (void *addr, uword size)
 
static void * clib_mem_vm_unmap (void *addr, uword size)
 
static void * clib_mem_vm_map (void *addr, uword size)
 
clib_error_tclib_mem_create_fd (char *name, int *fdp)
 
clib_error_tclib_mem_create_hugetlb_fd (char *name, int *fdp)
 
clib_error_tclib_mem_vm_ext_alloc (clib_mem_vm_alloc_t *a)
 
void clib_mem_vm_ext_free (clib_mem_vm_alloc_t *a)
 
u64 clib_mem_get_fd_page_size (int fd)
 
uword clib_mem_get_default_hugepage_size (void)
 
int clib_mem_get_fd_log2_page_size (int fd)
 
u64clib_mem_vm_get_paddr (void *mem, int log2_page_size, int n_pages)
 
clib_error_tclib_mem_vm_ext_map (clib_mem_vm_map_t *a)
 
void clib_mem_vm_randomize_va (uword *requested_va, u32 log2_page_size)
 
void mheap_trace (void *v, int enable)
 

Variables

void * clib_per_cpu_mheaps [CLIB_MAX_MHEAPS]
 

Macro Definition Documentation

◆ CLIB_MAX_MHEAPS

#define CLIB_MAX_MHEAPS   256

Definition at line 58 of file mem.h.

◆ clib_mem_alloc_aligned_no_fail

#define clib_mem_alloc_aligned_no_fail (   size,
  align 
)
Value:
({ \
uword _clib_mem_alloc_size = (size); \
void * _clib_mem_alloc_p; \
_clib_mem_alloc_p = clib_mem_alloc_aligned (_clib_mem_alloc_size, (align)); \
if (! _clib_mem_alloc_p) \
clib_panic ("failed to allocate %d bytes", _clib_mem_alloc_size); \
_clib_mem_alloc_p; \
})
uword size
static void * clib_mem_alloc_aligned(uword size, uword align)
Definition: mem.h:140

Definition at line 166 of file mem.h.

◆ clib_mem_alloc_no_fail

#define clib_mem_alloc_no_fail (   size)    clib_mem_alloc_aligned_no_fail(size,1)

Definition at line 176 of file mem.h.

◆ clib_mem_alloc_stack

#define clib_mem_alloc_stack (   bytes)    __builtin_alloca(bytes)

Definition at line 179 of file mem.h.

◆ CLIB_MEM_VM_F_HUGETLB

#define CLIB_MEM_VM_F_HUGETLB   (1 << 1)

Definition at line 365 of file mem.h.

◆ CLIB_MEM_VM_F_HUGETLB_PREALLOC

#define CLIB_MEM_VM_F_HUGETLB_PREALLOC   (1 << 4)

Definition at line 368 of file mem.h.

◆ CLIB_MEM_VM_F_LOCKED

#define CLIB_MEM_VM_F_LOCKED   (1 << 5)

Definition at line 369 of file mem.h.

◆ CLIB_MEM_VM_F_NUMA_FORCE

#define CLIB_MEM_VM_F_NUMA_FORCE   (1 << 3)

Definition at line 367 of file mem.h.

◆ CLIB_MEM_VM_F_NUMA_PREFER

#define CLIB_MEM_VM_F_NUMA_PREFER   (1 << 2)

Definition at line 366 of file mem.h.

◆ CLIB_MEM_VM_F_SHARED

#define CLIB_MEM_VM_F_SHARED   (1 << 0)

Definition at line 364 of file mem.h.

Function Documentation

◆ clib_mem_alloc()

static void* clib_mem_alloc ( uword  size)
inlinestatic

Definition at line 132 of file mem.h.

+ Here is the call graph for this function:

◆ clib_mem_alloc_aligned()

static void* clib_mem_alloc_aligned ( uword  size,
uword  align 
)
inlinestatic

Definition at line 140 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_alloc_aligned_at_offset()

static void* clib_mem_alloc_aligned_at_offset ( uword  size,
uword  align,
uword  align_offset,
int  os_out_of_memory_on_failure 
)
inlinestatic

Definition at line 81 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_alloc_aligned_or_null()

static void* clib_mem_alloc_aligned_or_null ( uword  size,
uword  align 
)
inlinestatic

Definition at line 156 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_alloc_or_null()

static void* clib_mem_alloc_or_null ( uword  size)
inlinestatic

Definition at line 148 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_create_fd()

clib_error_t* clib_mem_create_fd ( char *  name,
int *  fdp 
)

Definition at line 126 of file mem.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_create_hugetlb_fd()

clib_error_t* clib_mem_create_hugetlb_fd ( char *  name,
int *  fdp 
)

Definition at line 146 of file mem.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_exit()

void clib_mem_exit ( void  )

Definition at line 49 of file mem_mheap.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_free()

static void clib_mem_free ( void *  p)
inlinestatic

Definition at line 205 of file mem.h.

+ Here is the call graph for this function:

◆ clib_mem_get_default_hugepage_size()

uword clib_mem_get_default_hugepage_size ( void  )

Definition at line 57 of file mem.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_get_fd_log2_page_size()

int clib_mem_get_fd_log2_page_size ( int  fd)

Definition at line 100 of file mem.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_get_fd_page_size()

u64 clib_mem_get_fd_page_size ( int  fd)

Definition at line 91 of file mem.c.

+ Here is the caller graph for this function:

◆ clib_mem_get_heap()

static void* clib_mem_get_heap ( void  )
inlinestatic

Definition at line 255 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_get_page_size()

uword clib_mem_get_page_size ( void  )

Definition at line 51 of file mem.c.

+ Here is the caller graph for this function:

◆ clib_mem_get_per_cpu_heap()

static void* clib_mem_get_per_cpu_heap ( void  )
inlinestatic

Definition at line 64 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_init()

void* clib_mem_init ( void *  heap,
uword  size 
)

Definition at line 205 of file mem_dlmalloc.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_init_thread_safe()

void* clib_mem_init_thread_safe ( void *  memory,
uword  memory_size 
)

Definition at line 226 of file mem_dlmalloc.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_is_heap_object()

static uword clib_mem_is_heap_object ( void *  p)
inlinestatic

Definition at line 182 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_is_traced()

int clib_mem_is_traced ( void  )

Definition at line 420 of file mem_dlmalloc.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_realloc()

static void* clib_mem_realloc ( void *  p,
uword  new_size,
uword  old_size 
)
inlinestatic

Definition at line 224 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_set_heap()

static void* clib_mem_set_heap ( void *  heap)
inlinestatic

Definition at line 261 of file mem.h.

+ Here is the call graph for this function:

◆ clib_mem_set_per_cpu_heap()

static void* clib_mem_set_per_cpu_heap ( u8 new_heap)
inlinestatic

Definition at line 71 of file mem.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_size()

static uword clib_mem_size ( void *  p)
inlinestatic

Definition at line 242 of file mem.h.

+ Here is the call graph for this function:

◆ clib_mem_trace()

void clib_mem_trace ( int  enable)

Definition at line 405 of file mem_dlmalloc.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_usage()

void clib_mem_usage ( clib_mem_usage_t usage)

Definition at line 381 of file mem_dlmalloc.c.

+ Here is the call graph for this function:

◆ clib_mem_validate()

void clib_mem_validate ( void  )

Definition at line 390 of file mem_dlmalloc.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_vm_alloc()

static void* clib_mem_vm_alloc ( uword  size)
inlinestatic

Definition at line 310 of file mem.h.

+ Here is the caller graph for this function:

◆ clib_mem_vm_ext_alloc()

clib_error_t* clib_mem_vm_ext_alloc ( clib_mem_vm_alloc_t a)

Definition at line 193 of file mem.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_vm_ext_free()

void clib_mem_vm_ext_free ( clib_mem_vm_alloc_t a)

Definition at line 336 of file mem.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_vm_ext_map()

clib_error_t* clib_mem_vm_ext_map ( clib_mem_vm_map_t a)

Definition at line 386 of file mem.c.

+ Here is the caller graph for this function:

◆ clib_mem_vm_free()

static void clib_mem_vm_free ( void *  addr,
uword  size 
)
inlinestatic

Definition at line 327 of file mem.h.

+ Here is the caller graph for this function:

◆ clib_mem_vm_get_paddr()

u64* clib_mem_vm_get_paddr ( void *  mem,
int  log2_page_size,
int  n_pages 
)

Definition at line 347 of file mem.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_vm_map()

static void* clib_mem_vm_map ( void *  addr,
uword  size 
)
inlinestatic

Definition at line 350 of file mem.h.

+ Here is the caller graph for this function:

◆ clib_mem_vm_randomize_va()

void clib_mem_vm_randomize_va ( uword requested_va,
u32  log2_page_size 
)

Definition at line 106 of file mem.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ clib_mem_vm_unmap()

static void* clib_mem_vm_unmap ( void *  addr,
uword  size 
)
inlinestatic

Definition at line 333 of file mem.h.

+ Here is the caller graph for this function:

◆ format_clib_mem_usage()

u8* format_clib_mem_usage ( u8 s,
va_list *  args 
)

Definition at line 232 of file mem_dlmalloc.c.

+ Here is the call graph for this function:

◆ mheap_trace()

void mheap_trace ( void *  v,
int  enable 
)

Definition at line 396 of file mem_dlmalloc.c.

+ Here is the caller graph for this function:

Variable Documentation

◆ clib_per_cpu_mheaps

void* clib_per_cpu_mheaps[CLIB_MAX_MHEAPS]

Definition at line 23 of file mem_dlmalloc.c.