]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/jemalloc/include/jemalloc/jemalloc_FreeBSD.h
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / contrib / jemalloc / include / jemalloc / jemalloc_FreeBSD.h
1 /*
2  * Override settings that were generated in jemalloc_defs.h as necessary.
3  */
4
5 #undef JEMALLOC_OVERRIDE_VALLOC
6
7 #ifndef MALLOC_PRODUCTION
8 #define JEMALLOC_DEBUG
9 #endif
10
11 /*
12  * The following are architecture-dependent, so conditionally define them for
13  * each supported architecture.
14  */
15 #undef CPU_SPINWAIT
16 #undef JEMALLOC_TLS_MODEL
17 #undef STATIC_PAGE_SHIFT
18 #undef LG_SIZEOF_PTR
19 #undef LG_SIZEOF_INT
20 #undef LG_SIZEOF_LONG
21 #undef LG_SIZEOF_INTMAX_T
22
23 #ifdef __i386__
24 #  define LG_SIZEOF_PTR         2
25 #  define CPU_SPINWAIT          __asm__ volatile("pause")
26 #  define JEMALLOC_TLS_MODEL    __attribute__((tls_model("initial-exec")))
27 #endif
28 #ifdef __ia64__
29 #  define LG_SIZEOF_PTR         3
30 #endif
31 #ifdef __sparc64__
32 #  define LG_SIZEOF_PTR         3
33 #  define JEMALLOC_TLS_MODEL    __attribute__((tls_model("initial-exec")))
34 #endif
35 #ifdef __amd64__
36 #  define LG_SIZEOF_PTR         3
37 #  define CPU_SPINWAIT          __asm__ volatile("pause")
38 #  define JEMALLOC_TLS_MODEL    __attribute__((tls_model("initial-exec")))
39 #endif
40 #ifdef __arm__
41 #  define LG_SIZEOF_PTR         2
42 #endif
43 #ifdef __mips__
44 #ifdef __mips_n64
45 #  define LG_SIZEOF_PTR         3
46 #else
47 #  define LG_SIZEOF_PTR         2
48 #endif
49 #endif
50 #ifdef __powerpc64__
51 #  define LG_SIZEOF_PTR         3
52 #elif defined(__powerpc__)
53 #  define LG_SIZEOF_PTR         2
54 #endif
55
56 #ifndef JEMALLOC_TLS_MODEL
57 #  define JEMALLOC_TLS_MODEL    /* Default. */
58 #endif
59
60 #define STATIC_PAGE_SHIFT       PAGE_SHIFT
61 #define LG_SIZEOF_INT           2
62 #define LG_SIZEOF_LONG          LG_SIZEOF_PTR
63 #define LG_SIZEOF_INTMAX_T      3
64
65 /* Disable lazy-lock machinery, mangle isthreaded, and adjust its type. */
66 #undef JEMALLOC_LAZY_LOCK
67 extern int __isthreaded;
68 #define isthreaded              ((bool)__isthreaded)
69
70 /* Mangle. */
71 #undef je_malloc
72 #undef je_calloc
73 #undef je_realloc
74 #undef je_free
75 #undef je_posix_memalign
76 #undef je_malloc_usable_size
77 #undef je_allocm
78 #undef je_rallocm
79 #undef je_sallocm
80 #undef je_dallocm
81 #undef je_nallocm
82 #define je_malloc               __malloc
83 #define je_calloc               __calloc
84 #define je_realloc              __realloc
85 #define je_free                 __free
86 #define je_posix_memalign       __posix_memalign
87 #define je_malloc_usable_size   __malloc_usable_size
88 #define je_allocm               __allocm
89 #define je_rallocm              __rallocm
90 #define je_sallocm              __sallocm
91 #define je_dallocm              __dallocm
92 #define je_nallocm              __nallocm
93 #define open                    _open
94 #define read                    _read
95 #define write                   _write
96 #define close                   _close
97 #define pthread_mutex_lock      _pthread_mutex_lock
98 #define pthread_mutex_unlock    _pthread_mutex_unlock
99
100 #ifdef JEMALLOC_C_
101 /*
102  * Define 'weak' symbols so that an application can have its own versions
103  * of malloc, calloc, realloc, free, et al.
104  */
105 __weak_reference(__malloc, malloc);
106 __weak_reference(__calloc, calloc);
107 __weak_reference(__realloc, realloc);
108 __weak_reference(__free, free);
109 __weak_reference(__posix_memalign, posix_memalign);
110 __weak_reference(__malloc_usable_size, malloc_usable_size);
111 __weak_reference(__allocm, allocm);
112 __weak_reference(__rallocm, rallocm);
113 __weak_reference(__sallocm, sallocm);
114 __weak_reference(__dallocm, dallocm);
115 __weak_reference(__nallocm, nallocm);
116 #endif
117