mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 05:58:57 +00:00
Build an allocator for the aligned memory on top of the rtld-private
malloc. Reviewed by: kan Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
a7afea4382
commit
dfe296c43a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=259043
@ -352,6 +352,8 @@ Obj_Entry *map_object(int, const char *, const struct stat *);
|
||||
void *xcalloc(size_t, size_t);
|
||||
void *xmalloc(size_t);
|
||||
char *xstrdup(const char *);
|
||||
void *malloc_aligned(size_t size, size_t align);
|
||||
void free_aligned(void *ptr);
|
||||
extern Elf_Addr _GLOBAL_OFFSET_TABLE_[];
|
||||
extern Elf_Sym sym_zero; /* For resolving undefined weak refs. */
|
||||
|
||||
|
@ -67,3 +67,33 @@ xstrdup(const char *str)
|
||||
memcpy(copy, str, len);
|
||||
return (copy);
|
||||
}
|
||||
|
||||
void *
|
||||
malloc_aligned(size_t size, size_t align)
|
||||
{
|
||||
void *mem, *res;
|
||||
uintptr_t x;
|
||||
size_t asize, r;
|
||||
|
||||
r = round(sizeof(void *), align);
|
||||
asize = round(size, align) + r;
|
||||
mem = xmalloc(asize);
|
||||
x = (uintptr_t)mem;
|
||||
res = (void *)round(x, align);
|
||||
*(void **)((uintptr_t)res - sizeof(void *)) = mem;
|
||||
return (res);
|
||||
}
|
||||
|
||||
void
|
||||
free_aligned(void *ptr)
|
||||
{
|
||||
void *mem;
|
||||
uintptr_t x;
|
||||
|
||||
if (ptr == NULL)
|
||||
return;
|
||||
x = (uintptr_t)ptr;
|
||||
x -= sizeof(void *);
|
||||
mem = *(void **)x;
|
||||
free(mem);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user