summaryrefslogtreecommitdiff
path: root/source/luametatex/source/utilities/auxmemory.h
blob: 4f040eafdd3176381a49cc641c395474baeac772 (plain)
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
/*
    See license.txt in the root of this project.
*/

/*
    Some operating systems come with |allocarray| so we use more verbose names. We cannot define
    them because on some bsd/apple platforms |CLANG| cannot resolve them.

*/

# ifndef LMT_UTILITIES_MEMORY_H
# define LMT_UTILITIES_MEMORY_H

/*tex
    This is an experiment. The impact of using an alternative allocator on native Windows makes a
    native version some 5% faster than a cross compiled one. Otherwise the cross compiled version
    outperforms the native one a bit. In \TEX\ and \METAPOST\ we already do something like this
    but there we don't reclaim memory.

*/

# include <stdlib.h>
# include <string.h>

# if defined(LUAMETATEX_USE_MIMALLOC)
    # include "libraries/mimalloc/include/mimalloc.h"
    # define lmt_memory_malloc  mi_malloc
    # define lmt_memory_calloc  mi_calloc
    # define lmt_memory_realloc mi_realloc
    # define lmt_memory_free    mi_free
    # define lmt_memory_strdup  mi_strdup

 // # include "libraries/mimalloc/include/mimalloc-override.h"

# else
    # define lmt_memory_malloc  malloc
    # define lmt_memory_calloc  calloc
    # define lmt_memory_realloc realloc
    # define lmt_memory_free    free
    # define lmt_memory_strdup  strdup
# endif

# define lmt_generic_malloc  malloc
# define lmt_generic_calloc  calloc
# define lmt_generic_realloc realloc
# define lmt_generic_free    free
# define lmt_generic_strdup  strdup

extern void *aux_allocate_array       (int recordsize, int size, int reserved);
extern void *aux_reallocate_array     (void *p, int recordsize, int size, int reserved);
extern void *aux_allocate_clear_array (int recordsize, int size, int reserved);
extern void  aux_deallocate_array     (void *p);

# endif