1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef CYCRIPT_POOLING_HPP
23 #define CYCRIPT_POOLING_HPP
34 #include "Exception.hpp"
36 #include "Standard.hpp"
39 _finline void *operator new(size_t size, CYPool &pool);
40 _finline void *operator new [](size_t size, CYPool &pool);
49 void (*code_)(void *);
52 Cleaner(Cleaner *next, void (*code)(void *), void *data) :
60 static _finline size_t align(size_t size) {
61 // XXX: alignment is more complex than this
62 return (size + 7) & ~0x3;
65 CYPool(const CYPool &);
76 for (Cleaner *cleaner(cleaner_); cleaner != NULL; ) {
77 Cleaner *next(cleaner->next_);
78 (*cleaner->code_)(cleaner->data_);
83 template <typename Type_>
84 Type_ *malloc(size_t size) {
88 // XXX: is this an optimal malloc size?
89 size_ = std::max<size_t>(size, size + align(sizeof(Cleaner)));
90 data_ = reinterpret_cast<uint8_t *>(::malloc(size_));
92 _assert(size <= size_);
98 return reinterpret_cast<Type_ *>(data);
101 char *strdup(const char *data) {
104 return reinterpret_cast<char *>(memdup(data, strlen(data) + 1));
107 void *memdup(const void *data, size_t size) {
108 void *copy(malloc<void>(size));
109 memcpy(copy, data, size);
113 char *strndup(const char *data, size_t size) const {
114 return strmemdup(data, strnlen(data, size));
117 char *strmemdup(const char *data, size_t size) const {
118 char *copy(new char[size + 1]);
119 memcpy(copy, data, size);
124 // XXX: this could be made much more efficient
125 __attribute__((__sentinel__))
126 char *strcat(const char *data, ...) {
127 size_t size(strlen(data)); {
129 va_start(args, data);
131 while (const char *arg = va_arg(args, const char *))
137 char *copy(malloc<char>(size + 1)); {
139 va_start(args, data);
141 size_t offset(strlen(data));
142 memcpy(copy, data, offset);
144 while (const char *arg = va_arg(args, const char *)) {
145 size_t size(strlen(arg));
146 memcpy(copy + offset, arg, size);
157 // XXX: most people using this might should use sprintf
158 char *itoa(long value) {
159 return sprintf(16, "%ld", value);
162 __attribute__((__format__(__printf__, 3, 4)))
163 char *sprintf(size_t size, const char *format, ...) {
165 va_start(args, format);
166 char *copy(vsprintf(size, format, args));
171 char *vsprintf(size_t size, const char *format, va_list args) {
175 int writ(vsnprintf(buffer, size, format, copy));
179 if (size_t(writ) >= size)
180 return vsprintf(writ + 1, format, args);
181 return strmemdup(buffer, writ);
184 void atexit(void (*code)(void *), void *data = NULL);
187 _finline void *operator new(size_t size, CYPool &pool) {
188 return pool.malloc<void>(size);
191 _finline void *operator new [](size_t size, CYPool &pool) {
192 return pool.malloc<void>(size);
195 _finline void CYPool::atexit(void (*code)(void *), void *data) {
196 cleaner_ = new(*this) Cleaner(cleaner_, code, data);
208 CYData(CYPool &pool) :
210 count_(_not(unsigned))
217 static void *operator new(size_t size, CYPool &pool) {
218 void *data(pool.malloc<void>(size));
219 reinterpret_cast<CYData *>(data)->pool_ = &pool;
223 static void *operator new(size_t size) {
224 return operator new(size, *new CYPool());
227 static void operator delete(void *data) {
228 delete reinterpret_cast<CYData *>(data)->pool_;
232 template <typename Type_>
233 struct CYPoolAllocator {
236 typedef Type_ value_type;
237 typedef value_type *pointer;
238 typedef const value_type *const_pointer;
239 typedef value_type &reference;
240 typedef const value_type &const_reference;
241 typedef std::size_t size_type;
242 typedef std::ptrdiff_t difference_type;
249 template <typename Right_>
250 CYPoolAllocator(const CYPoolAllocator<Right_> &rhs) :
255 pointer allocate(size_type size, const void *hint = 0) {
256 return pool_->malloc<value_type>(size);
259 void deallocate(pointer data, size_type size) {
262 void construct(pointer address, const Type_ &rhs) {
263 new(address) Type_(rhs);
266 void destroy(pointer address) {
270 template <typename Right_>
271 inline bool operator==(const CYPoolAllocator<Right_> &rhs) {
272 return pool_ == rhs.pool_;
275 template <typename Right_>
276 inline bool operator!=(const CYPoolAllocator<Right_> &rhs) {
277 return !operator==(rhs);
280 template <typename Right_>
282 typedef CYPoolAllocator<Right_> other;
290 CYLocal<CYPool> local_;
301 (*CYLocal<CYPool>::Get())
303 #endif/*CYCRIPT_POOLING_HPP*/