Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: fusl/src/malloc/memalign.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/malloc/malloc_usable_size.c ('k') | fusl/src/malloc/posix_memalign.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <stdlib.h>
2 #include <stdint.h>
3 #include <errno.h>
4 #include "libc.h"
5
6 /* This function should work with most dlmalloc-like chunk bookkeeping
7 * systems, but it's only guaranteed to work with the native implementation
8 * used in this library. */
9
10 void *__memalign(size_t align, size_t len)
11 {
12 unsigned char *mem, *new, *end;
13 size_t header, footer;
14
15 if ((align & -align) != align) {
16 errno = EINVAL;
17 return NULL;
18 }
19
20 if (len > SIZE_MAX - align) {
21 errno = ENOMEM;
22 return NULL;
23 }
24
25 if (align <= 4*sizeof(size_t)) {
26 if (!(mem = malloc(len)))
27 return NULL;
28 return mem;
29 }
30
31 if (!(mem = malloc(len + align-1)))
32 return NULL;
33
34 new = (void *)((uintptr_t)mem + align-1 & -align);
35 if (new == mem) return mem;
36
37 header = ((size_t *)mem)[-1];
38
39 if (!(header & 7)) {
40 ((size_t *)new)[-2] = ((size_t *)mem)[-2] + (new-mem);
41 ((size_t *)new)[-1] = ((size_t *)mem)[-1] - (new-mem);
42 return new;
43 }
44
45 end = mem + (header & -8);
46 footer = ((size_t *)end)[-2];
47
48 ((size_t *)mem)[-1] = header&7 | new-mem;
49 ((size_t *)new)[-2] = footer&7 | new-mem;
50 ((size_t *)new)[-1] = header&7 | end-new;
51 ((size_t *)end)[-2] = footer&7 | end-new;
52
53 free(mem);
54 return new;
55 }
56
57 weak_alias(__memalign, memalign);
OLDNEW
« no previous file with comments | « fusl/src/malloc/malloc_usable_size.c ('k') | fusl/src/malloc/posix_memalign.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698