-/* Cycript - Optimizing JavaScript Compiler/Runtime
- * Copyright (C) 2009-2015 Jay Freeman (saurik)
+/* Cycript - The Truly Universal Scripting Language
+ * Copyright (C) 2009-2016 Jay Freeman (saurik)
*/
/* GNU Affero General Public License, Version 3 {{{ */
#include "Local.hpp"
#include "Standard.hpp"
+// XXX: std::aligned_storage and alignof
+static const size_t CYAlignment(sizeof(void *));
+
+template <typename Type_>
+static void CYAlign(Type_ &data, size_t size) {
+ data = reinterpret_cast<Type_>((reinterpret_cast<uintptr_t>(data) + (size - 1)) & ~static_cast<uintptr_t>(size - 1));
+}
+
class CYPool;
_finline void *operator new(size_t size, CYPool &pool);
_finline void *operator new [](size_t size, CYPool &pool);
}
} *cleaner_;
- static _finline size_t align(size_t size) {
- // XXX: alignment is more complex than this
- return (size + 7) & ~0x3;
- }
-
template <typename Type_>
static void delete_(void *data) {
reinterpret_cast<Type_ *>(data)->~Type_();
}
template <typename Type_>
- Type_ *malloc(size_t size) {
- size = align(size);
-
- if (size > size_) {
- size_ = std::max<size_t>(next_, size + align(sizeof(Cleaner)));
+ Type_ *malloc(size_t size, size_t alignment = CYAlignment) {
+ uint8_t *end(data_);
+ CYAlign(end, alignment);
+ end += size;
+
+ if (size_t(end - data_) > size_) {
+ size_t need(sizeof(Cleaner));
+ CYAlign(need, alignment);
+ need += size;
+ size_ = std::max<size_t>(next_, need);
next_ *= 2;
data_ = reinterpret_cast<uint8_t *>(::malloc(size_));
atexit(free, data_);
_assert(size <= size_);
}
- void *data(data_);
- data_ += size;
- size_ -= size;
+ uint8_t *data(data_);
+ CYAlign(data, alignment);
+ end = data + size;
+ size_ -= end - data_;
+ data_ = end;
return reinterpret_cast<Type_ *>(data);
}
+ template <typename Type_>
+ Type_ *calloc(size_t count, size_t size, size_t alignment = CYAlignment) {
+ Type_ *data(malloc<Type_>(count * size, alignment));
+ memset(data, 0, count * size);
+ return data;
+ }
+
char *strdup(const char *data) {
if (data == NULL)
return NULL;
- return reinterpret_cast<char *>(memdup(data, strlen(data) + 1));
+ return memdup(data, strlen(data) + 1, 1);
}
template <typename Type_>
- Type_ *memdup(const Type_ *data, size_t size) {
- Type_ *copy(malloc<Type_>(size));
+ Type_ *memdup(const Type_ *data, size_t size, size_t alignment = CYAlignment) {
+ Type_ *copy(malloc<Type_>(size, alignment));
memcpy(copy, data, size);
return copy;
}
}
char *strmemdup(const char *data, size_t size) {
- char *copy(malloc<char>(size + 1));
+ char *copy(malloc<char>(size + 1, 1));
memcpy(copy, data, size);
copy[size] = '\0';
return copy;
va_end(args);
}
- char *copy(malloc<char>(size + 1)); {
+ char *copy(malloc<char>(size + 1, 1)); {
va_list args;
va_start(args, data);