dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
memory.h
Go to the documentation of this file.
1
2#ifndef MEMORY_H
3#define MEMORY_H
4
21#if 0
22 uint32_t sz;
23 uint32_t offset;
24#endif
25#ifdef MEMORY_HANDLE_SENTINAL
26 uint32_t sentinal;
27#endif /* MEMORY_HANDLE_SENTINAL */
28 MEMORY_PTR ptr;
29 uint32_t ptr_sz;
30 uint32_t locks;
31 struct FAKE_MEMORY_HANDLE* next;
32};
33
34int32_t memory_init();
35
44MEMORY_HANDLE memory_alloc( uint32_t sz, uint32_t count );
45
52uint32_t memory_sz( MEMORY_HANDLE );
53uint32_t memory_resize( MEMORY_HANDLE*, uint32_t );
54void memory_copy_ptr( MEMORY_PTR, CONST_MEMORY_PTR, uint32_t );
55
62void memory_zero_ptr( MEMORY_PTR ptr, uint32_t sz );
63
71char* memory_strncpy_ptr( char*, const char*, uint16_t );
72int16_t memory_strncmp_ptr( const char*, const char*, uint16_t );
73
81int16_t memory_strnlen_ptr( const char* s, uint16_t l );
82
83void memory_debug_dump();
84
85#if !defined( MEMORY_PLATFORM_C ) && defined( MEMORY_FAKE_TRACE_LOCKS )
86
87#define stringify_handle( handle ) #handle
88
89#define memory_lock( handle ) memory_lock_wrapper( handle, stringify_handle( handle ), __func__ )
90
91#define memory_unlock( handle ) memory_unlock_wrapper( handle, stringify_handle( handle ), __func__ )
92
93#define memory_free( handle ) memory_free_wrapper( handle, stringify_handle( handle ), __func__ )
94
95MEMORY_PTR memory_lock_wrapper(
96 MEMORY_HANDLE handle, const char* handle_name, const char* caller );
97
98MEMORY_PTR memory_unlock_wrapper(
99 MEMORY_HANDLE handle, const char* handle_name, const char* caller );
100
101void memory_free_wrapper(
102 MEMORY_HANDLE handle, const char* handle_name, const char* caller );
103
104#else
105
114
115#endif /* !MEMORY_PLATFORM_C && MEMORY_FAKE_TRACE_LOCKS */
116
119#endif /* !MEMORY_H */
120
const void * CONST_MEMORY_PTR
A read-only MEMORY_PTR.
Definition: fakem.h:45
int16_t memory_strnlen_ptr(const char *s, uint16_t l)
Get the size of a string, up to a specified maximum.
WARN_UNUSED MEMORY_PTR memory_unlock(MEMORY_HANDLE handle)
Unlock a dynamic memory handle so the system can relocate it on the heap to relieve congestion.
void * MEMORY_PTR
A C-style memory pointer that can be safely dereferenced.
Definition: fakem.h:42
WARN_UNUSED MEMORY_PTR memory_lock(MEMORY_HANDLE handle)
Lock a dynamic memory handle and return a MEMORY_PTR that can be dereferenced safely.
void memory_zero_ptr(MEMORY_PTR ptr, uint32_t sz)
Fill a block of memory with zeros.
void memory_free(MEMORY_HANDLE handle)
Free a block of dynamic memory previously allocated with memory_alloc().
MEMORY_HANDLE memory_alloc(uint32_t sz, uint32_t count)
Request dynamic memory from operating system while protecting from overflow conditions.
An emulated memory handle for modern systems. Overridden on most platforms.
Definition: memory.h:20