1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_RTL_ALLOC_IMPL_HXX
21 #define INCLUDED_RTL_ALLOC_IMPL_HXX
23 #include "sal/types.h"
27 #if SAL_TYPES_ALIGNMENT4 > 1
28 #define RTL_MEMORY_ALIGNMENT_4 SAL_TYPES_ALIGNMENT4
30 #define RTL_MEMORY_ALIGNMENT_4 sizeof(int)
31 #endif /* SAL_TYPES_ALIGNMENT4 */
33 #if SAL_TYPES_ALIGNMENT8 > 1
34 #define RTL_MEMORY_ALIGNMENT_8 SAL_TYPES_ALIGNMENT8
36 #define RTL_MEMORY_ALIGNMENT_8 sizeof(void*)
37 #endif /* SAL_TYPES_ALIGNMENT8 */
40 #define RTL_MEMORY_ALIGNMENT_1 8
41 #define RTL_MEMORY_ALIGNMENT_2 (sizeof(void*) * 2)
44 #define RTL_MEMORY_ALIGN(value, align) (((value) + ((align) - 1)) & ~((align) - 1))
46 #define RTL_MEMORY_ISP2(value) (((value) & ((value) - 1)) == 0)
47 #define RTL_MEMORY_P2ALIGN(value, align) ((value) & -(sal_IntPtr)(align))
49 #define RTL_MEMORY_P2ROUNDUP(value, align) \
50 (-(-(sal_IntPtr)(value) & -(sal_IntPtr)(align)))
51 #define RTL_MEMORY_P2END(value, align) \
52 (-(~(sal_IntPtr)(value) & -(sal_IntPtr)(align)))
54 /** printf() format specifier(s)
55 * (from C90 <sys/int_fmtio.h>)
62 #endif /* !_MSC_VER */
65 /** highbit(): log2() + 1
75 #if SAL_TYPES_SIZEOFLONG == 8
76 if (n
& 0xffffffff00000000ul
)
93 /** lowbit(): find first bit set
103 #if SAL_TYPES_SIZEOFLONG == 8
104 if (!(n
& 0xffffffff))
120 /** Queue manipulation macros
121 * (doubly linked circular list)
124 #define QUEUE_STARTED_NAMED(entry, name) \
125 (((entry)->m_##name##next == (entry)) && ((entry)->m_##name##prev == (entry)))
127 #define QUEUE_START_NAMED(entry, name) \
129 (entry)->m_##name##next = (entry); \
130 (entry)->m_##name##prev = (entry); \
133 #define QUEUE_REMOVE_NAMED(entry, name) \
135 (entry)->m_##name##prev->m_##name##next = (entry)->m_##name##next; \
136 (entry)->m_##name##next->m_##name##prev = (entry)->m_##name##prev; \
137 QUEUE_START_NAMED(entry, name); \
140 #define QUEUE_INSERT_HEAD_NAMED(head, entry, name) \
142 (entry)->m_##name##prev = (head); \
143 (entry)->m_##name##next = (head)->m_##name##next; \
144 (head)->m_##name##next = (entry); \
145 (entry)->m_##name##next->m_##name##prev = (entry); \
148 #define QUEUE_INSERT_TAIL_NAMED(head, entry, name) \
150 (entry)->m_##name##next = (head); \
151 (entry)->m_##name##prev = (head)->m_##name##prev; \
152 (head)->m_##name##prev = (entry); \
153 (entry)->m_##name##prev->m_##name##next = (entry); \
157 /** rtl_memory_lock_type
158 * (platform dependent)
165 typedef pthread_mutex_t rtl_memory_lock_type
;
167 #define RTL_MEMORY_LOCK_INIT(lock) pthread_mutex_init((lock), NULL)
168 #define RTL_MEMORY_LOCK_DESTROY(lock) pthread_mutex_destroy((lock))
170 #define RTL_MEMORY_LOCK_ACQUIRE(lock) pthread_mutex_lock((lock))
171 #define RTL_MEMORY_LOCK_RELEASE(lock) pthread_mutex_unlock((lock))
173 #elif defined(SAL_W32)
175 #define WIN32_LEAN_AND_MEAN
177 #pragma warning(push,1) /* disable warnings within system headers */
184 typedef CRITICAL_SECTION rtl_memory_lock_type
;
186 #define RTL_MEMORY_LOCK_INIT(lock) InitializeCriticalSection((lock))
187 #define RTL_MEMORY_LOCK_DESTROY(lock) DeleteCriticalSection((lock))
189 #define RTL_MEMORY_LOCK_ACQUIRE(lock) EnterCriticalSection((lock))
190 #define RTL_MEMORY_LOCK_RELEASE(lock) LeaveCriticalSection((lock))
193 #error Unknown platform
194 #endif /* SAL_UNX | SAL_W32 */
197 /** Cache creation flags.
200 #define RTL_CACHE_FLAG_NOMAGAZINE (1 << 13) /* w/o magazine layer */
201 #define RTL_CACHE_FLAG_QUANTUMCACHE (2 << 13) /* used as arena quantum cache */
203 typedef enum { AMode_CUSTOM
, AMode_SYSTEM
, AMode_UNSET
} AllocMode
;
205 extern AllocMode alloc_mode
;
207 #endif /* INCLUDED_RTL_ALLOC_IMPL_HXX */
209 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */