[ARM] PR target/78439: Update movdi constraints for Cortex-A8 tuning to handle LDRD...
[official-gcc.git] / libstdc++-v3 / libsupc++ / eh_alloc.cc
blobd362e406ccac572fc8a6628e5020b512692f7429
1 // -*- C++ -*- Allocate exception objects.
2 // Copyright (C) 2001-2016 Free Software Foundation, Inc.
3 //
4 // This file is part of GCC.
5 //
6 // GCC is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // GCC is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 // This is derived from the C++ ABI for IA-64. Where we diverge
26 // for cross-architecture compatibility are noted with "@@@".
28 #include <bits/c++config.h>
29 #include <cstdlib>
30 #if _GLIBCXX_HOSTED
31 #include <cstring>
32 #endif
33 #include <climits>
34 #include <exception>
35 #include "unwind-cxx.h"
36 #include <ext/concurrence.h>
37 #include <new>
39 #if _GLIBCXX_HOSTED
40 using std::free;
41 using std::malloc;
42 using std::memset;
43 #else
44 // In a freestanding environment, these functions may not be available
45 // -- but for now, we assume that they are.
46 extern "C" void *malloc (std::size_t);
47 extern "C" void free(void *);
48 extern "C" void *memset (void *, int, std::size_t);
49 #endif
51 using namespace __cxxabiv1;
53 // ??? How to control these parameters.
55 // Guess from the size of basic types how large a buffer is reasonable.
56 // Note that the basic c++ exception header has 13 pointers and 2 ints,
57 // so on a system with PSImode pointers we're talking about 56 bytes
58 // just for overhead.
60 #if INT_MAX == 32767
61 # define EMERGENCY_OBJ_SIZE 128
62 # define EMERGENCY_OBJ_COUNT 16
63 #elif !defined (_GLIBCXX_LLP64) && LONG_MAX == 2147483647
64 # define EMERGENCY_OBJ_SIZE 512
65 # define EMERGENCY_OBJ_COUNT 32
66 #else
67 # define EMERGENCY_OBJ_SIZE 1024
68 # define EMERGENCY_OBJ_COUNT 64
69 #endif
71 #ifndef __GTHREADS
72 # undef EMERGENCY_OBJ_COUNT
73 # define EMERGENCY_OBJ_COUNT 4
74 #endif
76 namespace __gnu_cxx
78 void __freeres();
81 namespace
83 // A fixed-size heap, variable size object allocator
84 class pool
86 public:
87 pool();
89 void *allocate (std::size_t);
90 void free (void *);
92 bool in_pool (void *);
94 private:
95 struct free_entry {
96 std::size_t size;
97 free_entry *next;
99 struct allocated_entry {
100 std::size_t size;
101 char data[] __attribute__((aligned));
104 // A single mutex controlling emergency allocations.
105 __gnu_cxx::__mutex emergency_mutex;
107 // The free-list
108 free_entry *first_free_entry;
109 // The arena itself - we need to keep track of these only
110 // to implement in_pool.
111 char *arena;
112 std::size_t arena_size;
114 friend void __gnu_cxx::__freeres();
117 pool::pool()
119 // Allocate the arena - we could add a GLIBCXX_EH_ARENA_SIZE environment
120 // to make this tunable.
121 arena_size = (EMERGENCY_OBJ_SIZE * EMERGENCY_OBJ_COUNT
122 + EMERGENCY_OBJ_COUNT * sizeof (__cxa_dependent_exception));
123 arena = (char *)malloc (arena_size);
124 if (!arena)
126 // If the allocation failed go without an emergency pool.
127 arena_size = 0;
128 first_free_entry = NULL;
129 return;
132 // Populate the free-list with a single entry covering the whole arena
133 first_free_entry = reinterpret_cast <free_entry *> (arena);
134 new (first_free_entry) free_entry;
135 first_free_entry->size = arena_size;
136 first_free_entry->next = NULL;
139 void *pool::allocate (std::size_t size)
141 __gnu_cxx::__scoped_lock sentry(emergency_mutex);
142 // We need an additional size_t member plus the padding to
143 // ensure proper alignment of data.
144 size += offsetof (allocated_entry, data);
145 // And we need to at least hand out objects of the size of
146 // a freelist entry.
147 if (size < sizeof (free_entry))
148 size = sizeof (free_entry);
149 // And we need to align objects we hand out to the maximum
150 // alignment required on the target (this really aligns the
151 // tail which will become a new freelist entry).
152 size = ((size + __alignof__ (allocated_entry::data) - 1)
153 & ~(__alignof__ (allocated_entry::data) - 1));
154 // Search for an entry of proper size on the freelist.
155 free_entry **e;
156 for (e = &first_free_entry;
157 *e && (*e)->size < size;
158 e = &(*e)->next)
160 if (!*e)
161 return NULL;
162 allocated_entry *x;
163 if ((*e)->size - size >= sizeof (free_entry))
165 // Slit block if it is too large.
166 free_entry *f = reinterpret_cast <free_entry *>
167 (reinterpret_cast <char *> (*e) + size);
168 std::size_t sz = (*e)->size;
169 free_entry *next = (*e)->next;
170 new (f) free_entry;
171 f->next = next;
172 f->size = sz - size;
173 x = reinterpret_cast <allocated_entry *> (*e);
174 new (x) allocated_entry;
175 x->size = size;
176 *e = f;
178 else
180 // Exact size match or too small overhead for a free entry.
181 std::size_t sz = (*e)->size;
182 free_entry *next = (*e)->next;
183 x = reinterpret_cast <allocated_entry *> (*e);
184 new (x) allocated_entry;
185 x->size = sz;
186 *e = next;
188 return &x->data;
191 void pool::free (void *data)
193 __gnu_cxx::__scoped_lock sentry(emergency_mutex);
194 allocated_entry *e = reinterpret_cast <allocated_entry *>
195 (reinterpret_cast <char *> (data) - offsetof (allocated_entry, data));
196 std::size_t sz = e->size;
197 if (!first_free_entry)
199 // If the free list is empty just put the entry there.
200 free_entry *f = reinterpret_cast <free_entry *> (e);
201 new (f) free_entry;
202 f->size = sz;
203 f->next = NULL;
204 first_free_entry = f;
206 else if (reinterpret_cast <char *> (e) + sz
207 == reinterpret_cast <char *> (first_free_entry))
209 // Check if we can merge with the first free entry being right
210 // after us.
211 free_entry *f = reinterpret_cast <free_entry *> (e);
212 new (f) free_entry;
213 f->size = sz + first_free_entry->size;
214 f->next = first_free_entry->next;
215 first_free_entry = f;
217 else
219 // Else search for a free item we can merge with at its end.
220 free_entry **fe;
221 for (fe = &first_free_entry;
222 (*fe)->next
223 && (reinterpret_cast <char *> ((*fe)->next)
224 > reinterpret_cast <char *> (e) + sz);
225 fe = &(*fe)->next)
227 if (reinterpret_cast <char *> (*fe) + (*fe)->size
228 == reinterpret_cast <char *> (e))
229 /* Merge with the freelist entry. */
230 (*fe)->size += sz;
231 else
233 // Else put it after it which keeps the freelist sorted.
234 free_entry *f = reinterpret_cast <free_entry *> (e);
235 new (f) free_entry;
236 f->size = sz;
237 f->next = (*fe)->next;
238 (*fe)->next = f;
243 bool pool::in_pool (void *ptr)
245 char *p = reinterpret_cast <char *> (ptr);
246 return (p > arena
247 && p < arena + arena_size);
250 pool emergency_pool;
253 namespace __gnu_cxx
255 void
256 __freeres()
258 if (emergency_pool.arena)
260 ::free(emergency_pool.arena);
261 emergency_pool.arena = 0;
266 extern "C" void *
267 __cxxabiv1::__cxa_allocate_exception(std::size_t thrown_size) _GLIBCXX_NOTHROW
269 void *ret;
271 thrown_size += sizeof (__cxa_refcounted_exception);
272 ret = malloc (thrown_size);
274 if (!ret)
275 ret = emergency_pool.allocate (thrown_size);
277 if (!ret)
278 std::terminate ();
280 memset (ret, 0, sizeof (__cxa_refcounted_exception));
282 return (void *)((char *)ret + sizeof (__cxa_refcounted_exception));
286 extern "C" void
287 __cxxabiv1::__cxa_free_exception(void *vptr) _GLIBCXX_NOTHROW
289 char *ptr = (char *) vptr - sizeof (__cxa_refcounted_exception);
290 if (emergency_pool.in_pool (ptr))
291 emergency_pool.free (ptr);
292 else
293 free (ptr);
297 extern "C" __cxa_dependent_exception*
298 __cxxabiv1::__cxa_allocate_dependent_exception() _GLIBCXX_NOTHROW
300 __cxa_dependent_exception *ret;
302 ret = static_cast<__cxa_dependent_exception*>
303 (malloc (sizeof (__cxa_dependent_exception)));
305 if (!ret)
306 ret = static_cast <__cxa_dependent_exception*>
307 (emergency_pool.allocate (sizeof (__cxa_dependent_exception)));
309 if (!ret)
310 std::terminate ();
312 memset (ret, 0, sizeof (__cxa_dependent_exception));
314 return ret;
318 extern "C" void
319 __cxxabiv1::__cxa_free_dependent_exception
320 (__cxa_dependent_exception *vptr) _GLIBCXX_NOTHROW
322 if (emergency_pool.in_pool (vptr))
323 emergency_pool.free (vptr);
324 else
325 free (vptr);