Serene Runtime 1.0.0-dev
C runtime for the Serene programming language
Loading...
Searching...
No Matches
interface.h File Reference

Notes: More...

#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include "serene/rt/configuration.h"
#include "serene/rt/trace.h"
#include "serene/utils.h"
Include dependency graph for interface.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  srn_memory_provider_t
 This interface is here to abstract over the allocator. More...
struct  srn_block_t
struct  srn_mm_t
 Main memory manager structure that will own all the allocated blocks and data. More...

Macros

#define MM_TRACEPOINT(...)
#define FALLBACK_PAGE_SIZE   4096U
#define MAX_NUMBER_OF_BLOCKS   256U
 array of blocks is enough for us, we can tweak the size as we see fit.
#define DEFAULT_BLOCK_ALIGNMENT   16U
 We strictly use 16 bytes alignment for blocks.
#define SRN_BLOCK_NO_ID   SIZE_MAX
#define srn_mm_allocate_in_block(mm, id, T)
#define srn_mm_immortal_allocate(mm, T)

Typedefs

typedef struct srn_memory_provider_t srn_memory_provider_t
 This interface is here to abstract over the allocator.
typedef struct srn_block_t srn_block_t
typedef struct srn_mm_t srn_mm_t
 Main memory manager structure that will own all the allocated blocks and data.

Functions

size_t srn_mm_get_os_page_size (void)
 Retutrns the OS page size.
srn_block_id_t srn_mm_allocate_block (srn_mm_t *mm)
 Allocate a new block in the memory manager and return its ID.
void srn_mm_release_block (srn_mm_t *mm, srn_block_id_t id)
 Release the given block id and free the memory for later allocations.
srn_block_tsrn_mm_get_block (srn_mm_t *mm, srn_block_id_t block_id)
 Return the block object associated by the given block_id.
void * srn_mm_allocate_in_block_aligned (srn_mm_t *mm, srn_block_id_t block_id, size_t size, size_t alignment)
 Allocate memory on a block with the given block_id.
void * srn_mm_immortal_allocate_aligned (srn_mm_t *mm, size_t size, size_t alignment)
 Allocate memory on the importal block which will never gets freed.
srn_mm_tsrn_mm_init (const srn_configuration_t *config)
 Initialize the memory manager, this function will panic on error.
void srn_mm_shutdown (srn_mm_t *mm)
 Shut down the memory manager and release the resources.
void srn_unlock_memory_manager (srn_mm_t *mm)
 Unocks the memory manager.
void srn_lock_memory_manager (srn_mm_t *mm)
 Locks the memory manager.
void * srn_mm_malloc (srn_mm_t *mm, size_t size)
 Generic allocations that do not participate in the block based pools.
void * srn_mm_reallocate (srn_mm_t *mm, void *ptr, size_t new_size)
void srn_mm_free (srn_mm_t *mm, void *ptr)
 Release a pointer previously returned by srn_mm_malloc or srn_mm_reallocate.

Detailed Description

Notes:

  • Never give out any pointer to intermediate blocks in a block chain to user.
  • Always lock the memory manager when operating only on srn_mm_t.
  • Chain locks live in the manager, keyed by block id. An allocation holds the chain's lock for the whole walk; a release holds the manager lock and then the chain lock before freeing, so an allocation racing a release either completes first or resolves the id to nothing.
  • To the user a chain of blocks are just one block, so deallocation happens on the chain level not per block
  • It's users responsibility to copy the data between different chains.

Definition in file interface.h.

Macro Definition Documentation

◆ DEFAULT_BLOCK_ALIGNMENT

#define DEFAULT_BLOCK_ALIGNMENT   16U

We strictly use 16 bytes alignment for blocks.

Definition at line 56 of file interface.h.

◆ FALLBACK_PAGE_SIZE

#define FALLBACK_PAGE_SIZE   4096U

Definition at line 45 of file interface.h.

◆ MAX_NUMBER_OF_BLOCKS

#define MAX_NUMBER_OF_BLOCKS   256U

array of blocks is enough for us, we can tweak the size as we see fit.

But we need to change this for the final stage. We should be able to dynamically expand the array of blocks. Notes. Due to my laziness, if you ever change this value, you need to change the popcount functions for the block bitmap as well.

Definition at line 53 of file interface.h.

◆ MM_TRACEPOINT

#define MM_TRACEPOINT ( ...)
Value:
SRN_TRACEPOINT_WITH_GROUP(mm __VA_OPT__(, ) __VA_ARGS__)
#define SRN_TRACEPOINT_WITH_GROUP(group, name,...)
Definition trace.h:80

Definition at line 43 of file interface.h.

◆ SRN_BLOCK_NO_ID

#define SRN_BLOCK_NO_ID   SIZE_MAX

Definition at line 66 of file interface.h.

◆ srn_mm_allocate_in_block

#define srn_mm_allocate_in_block ( mm,
id,
T )
Value:
(T *)srn_mm_allocate_in_block_aligned(mm, id, sizeof(T), alignof(T))
void * srn_mm_allocate_in_block_aligned(srn_mm_t *mm, srn_block_id_t block_id, size_t size, size_t alignment)
Allocate memory on a block with the given block_id.
Definition default.c:405

Definition at line 183 of file interface.h.

183#define srn_mm_allocate_in_block(mm, id, T) \
184 (T *)srn_mm_allocate_in_block_aligned(mm, id, sizeof(T), alignof(T))

◆ srn_mm_immortal_allocate

#define srn_mm_immortal_allocate ( mm,
T )
Value:
(T *)srn_mm_immortal_allocate_aligned(mm, sizeof(T), alignof(T))
void * srn_mm_immortal_allocate_aligned(srn_mm_t *mm, size_t size, size_t alignment)
Allocate memory on the importal block which will never gets freed.
Definition default.c:425

Definition at line 186 of file interface.h.

186#define srn_mm_immortal_allocate(mm, T) \
187 (T *)srn_mm_immortal_allocate_aligned(mm, sizeof(T), alignof(T))

Typedef Documentation

◆ srn_block_t

typedef struct srn_block_t srn_block_t

◆ srn_memory_provider_t

typedef struct srn_memory_provider_t srn_memory_provider_t

This interface is here to abstract over the allocator.

For instance, malloc/free can be a page provider. This will let us switch to other implementation later on. Eventually we might end up coming up with our own version of malloc/free.

◆ srn_mm_t

typedef struct srn_mm_t srn_mm_t

Main memory manager structure that will own all the allocated blocks and data.

In every instance of the compiler there should be only one instance of this. It should be created via srn_mm_init and destroyed via srn_shutdown_memory_manager.

Function Documentation

◆ srn_lock_memory_manager()

void srn_lock_memory_manager ( srn_mm_t * mm)

Locks the memory manager.

We have to lock the memory manager when allocating blocks. TODO(lxsameer): Do we need to support thread local blocks?

Definition at line 435 of file default.c.

435{ srn_spinlock_lock(&mm->lock); }
srn_spinlock_t lock
This spinlock is here to protect the srn_mm_t when allocating/deallocating new blocks.
Definition interface.h:117
static void srn_spinlock_lock(srn_spinlock_t *lock)
Definition utils.h:285
Here is the call graph for this function:
Here is the caller graph for this function:

◆ srn_mm_allocate_block()

srn_block_id_t srn_mm_allocate_block ( srn_mm_t * mm)
nodiscard

Allocate a new block in the memory manager and return its ID.

The client code can use the ID to allocate memory on the block and when it's done, just use the same ID to release the block

Definition at line 437 of file default.c.

437 {
439 // Ids are reused after release, so exhaustion means every id is live
440 // right now, not that this many allocations ever happened.
441 int index = find_a_free_block_id(mm);
442 PANIC_IF(index == -1, "Out of memory: all block ids are in use");
444
445 mm->block_count++;
446 PANIC_IF(
447 !is_block_id_free(mm, (uint16_t)index),
448 "Miscalculated the block id. It is not free. This is a bug!"
449 );
450 allocated_block_id(mm, (uint16_t)index);
451 mm->blocks[(srn_block_id_t)index] = block;
452
454
455#if SERENE_DEBUG
456 mm->stats.total_blocks++;
457 mm->stats.total_os_allocations++;
458#endif
459 return (srn_block_id_t)index;
460}
size_t srn_block_id_t
The block id is effectively just an index in the blocks array in srn_mm_t.
Definition context.h:38
static void * alloc_block_internal(srn_mm_t *mm)
Allocate a block worth of memory using the memory provider.
Definition default.c:201
void srn_lock_memory_manager(srn_mm_t *mm)
Locks the memory manager.
Definition default.c:435
static int find_a_free_block_id(const srn_mm_t *mm)
Definition default.c:76
static void allocated_block_id(srn_mm_t *mm, uint16_t bit)
Definition default.c:56
void srn_unlock_memory_manager(srn_mm_t *mm)
Unocks the memory manager.
Definition default.c:433
static bool is_block_id_free(const srn_mm_t *mm, uint16_t bit)
Definition default.c:45
srn_block_t * blocks[MAX_NUMBER_OF_BLOCKS]
Definition interface.h:129
size_t block_count
Number of live chains.
Definition interface.h:128
#define PANIC_IF(cond, msg)
Definition utils.h:59
Here is the call graph for this function:
Here is the caller graph for this function:

◆ srn_mm_allocate_in_block_aligned()

void * srn_mm_allocate_in_block_aligned ( srn_mm_t * mm,
srn_block_id_t block_id,
size_t size,
size_t alignment )
nodiscard

Allocate memory on a block with the given block_id.

Definition at line 405 of file default.c.

407 {
408 MM_LOG("Allocating %zu bytes with %zu bytes alignment in block: %zu", size, alignment, block_id);
409 PANIC_IF(block_id >= MAX_NUMBER_OF_BLOCKS, "Block id out of range");
410
411 // The id resolves to a block only under the chain lock, so a release
412 // cannot free the chain out from under this walk.
413 srn_spinlock_t *chain_lock = &mm->chain_locks[block_id];
414 srn_spinlock_lock(chain_lock);
415
416 srn_block_t *block = get_block(mm, block_id);
417 PANIC_IF_NULL(block);
418
419 void *ptr = alloc_in_block(mm, block, size, alignment);
420 srn_spinlock_unlock(chain_lock);
421 MM_TRACEPOINT(mm_alloc, (uint64_t)block_id, (uint64_t)size, ptr);
422 return ptr;
423}
#define MM_LOG(FMT,...)
Definition default.c:38
static srn_block_t * get_block(const srn_mm_t *mm, srn_block_id_t block_id)
An abstraction over ID->Block operation.
Definition default.c:109
static void * alloc_in_block(srn_mm_t *mm, srn_block_t *root_block, size_t size, size_t alignment)
This is the main allocation logic that allocates the space in the given block.
Definition default.c:251
#define MM_TRACEPOINT(...)
Definition interface.h:43
#define MAX_NUMBER_OF_BLOCKS
array of blocks is enough for us, we can tweak the size as we see fit.
Definition interface.h:53
srn_spinlock_t chain_locks[MAX_NUMBER_OF_BLOCKS]
One lock per chain, keyed by block id.
Definition interface.h:134
#define PANIC_IF_NULL(ptr)
Definition utils.h:66
static void srn_spinlock_unlock(srn_spinlock_t *lock)
Definition utils.h:276
Here is the call graph for this function:
Here is the caller graph for this function:

◆ srn_mm_free()

void srn_mm_free ( srn_mm_t * mm,
void * ptr )

Release a pointer previously returned by srn_mm_malloc or srn_mm_reallocate.

ptr may be nullptr, in which case the call is a no-op.

Definition at line 168 of file default.c.

168 {
169 UNUSED(mm);
170 MM_TRACEPOINT(mm_free, ptr);
171 free(ptr);
172}
#define UNUSED(x)
Definition utils.h:45
Here is the caller graph for this function:

◆ srn_mm_get_block()

srn_block_t * srn_mm_get_block ( srn_mm_t * mm,
srn_block_id_t block_id )

Return the block object associated by the given block_id.

Definition at line 327 of file default.c.

327 {
328 return get_block(mm, block_id);
329}
Here is the call graph for this function:
Here is the caller graph for this function:

◆ srn_mm_get_os_page_size()

size_t srn_mm_get_os_page_size ( void )

Retutrns the OS page size.

Definition at line 312 of file default.c.

312 {
313#if defined(_WIN32)
314 SYSTEM_INFO si;
315 GetSystemInfo(&si);
316 return (size_t)si.dwPageSize;
317#elif defined(__unix__) || defined(__APPLE__)
318 long sz = sysconf(_SC_PAGESIZE);
319 return (sz > 0) ? (size_t)sz : FALLBACK_PAGE_SIZE;
320#elif defined(__wasm__)
321 return WASM_PAGE_SIZE;
322#else
323 return FALLBACK_PAGE_SIZE;
324#endif
325}
#define FALLBACK_PAGE_SIZE
Definition interface.h:45
Here is the caller graph for this function:

◆ srn_mm_immortal_allocate_aligned()

void * srn_mm_immortal_allocate_aligned ( srn_mm_t * mm,
size_t size,
size_t alignment )
nodiscard

Allocate memory on the importal block which will never gets freed.

Definition at line 425 of file default.c.

425 {
427 void *ptr = alloc_in_block(mm, mm->immortal_block, size, alignment);
429 MM_TRACEPOINT(mm_immortal_alloc, (uint64_t)size, ptr);
430 return ptr;
431}
srn_block_t * immortal_block
Immortal block is a chain of blocks which will never die.
Definition interface.h:142
srn_spinlock_t immortal_lock
The immortal chain has no block id, so it gets its own chain lock.
Definition interface.h:137
Here is the call graph for this function:
Here is the caller graph for this function:

◆ srn_mm_init()

srn_mm_t * srn_mm_init ( const srn_configuration_t * config)

Initialize the memory manager, this function will panic on error.

config provides the knobs the manager reads at init (mm.block_size_magnitude, the block size is 1 << magnitude); a null config means "use the defaults". The config is read only during the call, so the caller may pass a stack value and reuse it for srn_engine_make.

Definition at line 331 of file default.c.

331 {
332 if (config != nullptr) {
333 srn_config_validate(config);
334 }
335
336 srn_mm_t *mm = malloc(sizeof(srn_mm_t));
337 PANIC_IF_NULL(mm);
338
340 memset(mm->block_bitmap, 0, sizeof(mm->block_bitmap));
341
342 // The block size is the one knob the manager reads at init. It comes as a
343 // magnitude, so the size is a power of two and a whole number of pages by
344 // construction, with nothing to round.
345 const size_t magnitude =
347
348 mm->block_count = 0;
349 mm->block_size = (size_t)1 << magnitude;
350 memset((void *)mm->blocks, 0, sizeof(mm->blocks));
351
352 PANIC_IF(
353 mm->block_size <= sizeof(srn_block_t),
354 "Wrong block size. Configure mm.block_size_magnitude to a larger number"
355 );
356 // srn_config_validate only sees a caller provided config, so the default
357 // path is checked here too. The page size is only known at run time.
358 PANIC_IF(
359 mm->block_size % srn_mm_get_os_page_size() != 0, "Block size must be a whole number of OS pages"
360 );
361
363 for (size_t i = 0; i < MAX_NUMBER_OF_BLOCKS; i++) {
365 }
367
368 srn_block_t *immortal =
370 PANIC_IF_NULL(immortal);
371 init_block(mm, immortal);
372 mm->immortal_block = immortal;
373
374#if SERENE_DEBUG
375 mm->stats.allocated_pages = 0;
376 mm->stats.total_allocations = 0;
377 mm->stats.total_os_allocations = 0;
378 mm->stats.total_blocks = 0;
379#endif
380 return mm;
381}
void srn_config_validate(const srn_configuration_t *config)
A configuration with every field set to its default.
#define SRN_CONFIG_DEFAULT_BLOCK_SIZE_MAGNITUDE
Magnitude of one memory-manager block.
static void init_block(srn_mm_t *mm, srn_block_t *block)
Definition default.c:189
static srn_memory_provider_t stdlib_provider
Definition default.c:144
size_t srn_mm_get_os_page_size(void)
Retutrns the OS page size.
Definition default.c:312
#define DEFAULT_BLOCK_ALIGNMENT
We strictly use 16 bytes alignment for blocks.
Definition interface.h:56
srn_mm_config_t mm
void *(* allocate)(size_t size, size_t alignment)
Definition interface.h:73
size_t block_size_magnitude
Magnitude of one block the arena hands out from.
Main memory manager structure that will own all the allocated blocks and data.
Definition interface.h:110
size_t block_size
Definition interface.h:125
uint64_t block_bitmap[4]
This is a 256bit bitmap we treat it as a whole.
Definition interface.h:124
srn_memory_provider_t * provider
An abstraction over a memory provider like the malloc/free pair.
Definition interface.h:120
static void srn_spinlock_init(srn_spinlock_t *lock)
Definition utils.h:280
Here is the call graph for this function:
Here is the caller graph for this function:

◆ srn_mm_malloc()

void * srn_mm_malloc ( srn_mm_t * mm,
size_t size )
nodiscard

Generic allocations that do not participate in the block based pools.

Equivalent to malloc/realloc/free. Routed through the memory manager so the backend can later be swapped without touching callers. mm is reserved for future per manager routing and is currently unused inside the implementation.

Definition at line 155 of file default.c.

155 {
156 UNUSED(mm);
157 void *ptr = malloc(size);
158 MM_TRACEPOINT(mm_malloc, (uint64_t)size, ptr);
159 return ptr;
160}
Here is the caller graph for this function:

◆ srn_mm_reallocate()

void * srn_mm_reallocate ( srn_mm_t * mm,
void * ptr,
size_t new_size )
nodiscard

Definition at line 162 of file default.c.

162 {
163 UNUSED(mm);
164 void *out = realloc(ptr, new_size);
165 return out;
166}
Here is the caller graph for this function:

◆ srn_mm_release_block()

void srn_mm_release_block ( srn_mm_t * mm,
srn_block_id_t id )

Release the given block id and free the memory for later allocations.

Definition at line 462 of file default.c.

462 {
463 PANIC_IF_NULL(mm);
464 destroy_chain(mm, id);
465}
static void destroy_chain(srn_mm_t *mm, srn_block_id_t root_id)
Definition default.c:211
Here is the call graph for this function:
Here is the caller graph for this function:

◆ srn_mm_shutdown()

void srn_mm_shutdown ( srn_mm_t * mm)

Shut down the memory manager and release the resources.

Will panic on error. Technically it should be the final piece of clean up that we call. Note: Shutdown is not thread safe at has to execute on the main thread.

Definition at line 383 of file default.c.

383 {
384 PANIC_IF_NULL(mm);
385 assert(mm->provider != nullptr);
386
387 for (size_t i = 0; i < MAX_NUMBER_OF_BLOCKS; i++) {
388 if (mm->blocks[i] != nullptr) {
389 destroy_chain(mm, i);
390 }
391 }
392
393 srn_block_t *block = mm->immortal_block;
394
395 while (block != nullptr) {
396 srn_block_t *tmp = block;
397 block = tmp->next;
398
399 mm->provider->release(tmp);
400 }
401
402 mm->provider->release(mm);
403}
struct srn_block_t * next
when the block does not have space to allocate a request, we will allocate a new block and point to i...
Definition interface.h:80
void(* release)(void *p)
Definition interface.h:74
Here is the call graph for this function:
Here is the caller graph for this function:

◆ srn_unlock_memory_manager()

void srn_unlock_memory_manager ( srn_mm_t * mm)

Unocks the memory manager.

Definition at line 433 of file default.c.

433{ srn_spinlock_unlock(&mm->lock); }
Here is the call graph for this function:
Here is the caller graph for this function: