-
Notifications
You must be signed in to change notification settings - Fork 0
/
mm_malloc.h
69 lines (58 loc) · 1.89 KB
/
mm_malloc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* @file mm_malloc.h
* @author Jens Munk Hansen <[email protected]>
* @date Fri May 29 17:27:06 2015
*
* @brief
*
*
*/
/*
* This file is part of SOFUS.
*
* SOFUS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SOFUS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with SOFUS. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#ifdef _MSC_VER
# include <malloc.h>
#else
# include <mm_malloc.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#define SPS_MM_MALLOC(theSize, theAlignment) \
sps_mm_malloc(__FILE__, __LINE__, theSize, theAlignment)
#define SPS_MM_FREE(ptr) _mm_free(ptr)
static inline
void *sps_mm_malloc(const char *file, int line, size_t size, int alignment) {
void *ptr = _mm_malloc(size, alignment);
if(!ptr) {
printf("Could not allocate: %zu bytes (%s:%d)\n", size, file, line);
exit(EXIT_FAILURE);
}
return ptr;
}
// Aligned stack-allocation
#define sps_mm_alloca(x, _theSize, _theAlignment) do { \
int _nBytes = _theSize + _theAlignment; \
void* _ptr = alloca(_nBytes); \
_ptr = (void*) ((intptr_t) (_ptr + _theAlignment - 1) & (intptr_t) ~(_theAlignment - 1)); \
(x) = _ptr; \
} while (0)
/* Local variables: */
/* indent-tab-mode: nil */
/* tab-width: 2 */
/* c-basic-offset: 2 */
/* indent-tabs-mode: nil */
/* End: */