summaryrefslogtreecommitdiff
path: root/src/mixed_arena.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2019-04-26 16:59:41 -0700
committerGitHub <noreply@github.com>2019-04-26 16:59:41 -0700
commitdb9124f1de0478dcac525009b6f1589b44a7edd8 (patch)
treefa26395a0f6cca53cf5cb6e10189f989c5bfa847 /src/mixed_arena.h
parent87636dccd404a340d75acb1d96301581343f29ca (diff)
downloadbinaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.tar.gz
binaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.tar.bz2
binaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.zip
Apply format changes from #2048 (#2059)
Mass change to apply clang-format to everything. We are applying this in a PR by me so the (git) blame is all mine ;) but @aheejin did all the work to get clang-format set up and all the manual work to tidy up some things to make the output nicer in #2048
Diffstat (limited to 'src/mixed_arena.h')
-rw-r--r--src/mixed_arena.h99
1 files changed, 38 insertions, 61 deletions
diff --git a/src/mixed_arena.h b/src/mixed_arena.h
index 5f48f5220..36bf22a5e 100644
--- a/src/mixed_arena.h
+++ b/src/mixed_arena.h
@@ -84,7 +84,8 @@ struct MixedArena {
// Allocate an amount of space with a guaranteed alignment
void* allocSpace(size_t size, size_t align) {
- // the bump allocator data should not be modified by multiple threads at once.
+ // the bump allocator data should not be modified by multiple threads at
+ // once.
auto myId = std::this_thread::get_id();
if (myId != threadId) {
MixedArena* curr = this;
@@ -112,7 +113,8 @@ struct MixedArena {
// otherwise, the cmpxchg updated seen, and we continue to loop
curr = seen;
}
- if (allocated) delete allocated;
+ if (allocated)
+ delete allocated;
return curr->allocSpace(size, align);
}
// First, move the current index in the last chunk to an aligned position.
@@ -121,22 +123,26 @@ struct MixedArena {
// Allocate a new chunk.
auto numChunks = (size + CHUNK_SIZE - 1) / CHUNK_SIZE;
assert(size <= numChunks * CHUNK_SIZE);
- auto* allocation = wasm::aligned_malloc(MAX_ALIGN, numChunks * CHUNK_SIZE);
- if (!allocation) abort();
+ auto* allocation =
+ wasm::aligned_malloc(MAX_ALIGN, numChunks * CHUNK_SIZE);
+ if (!allocation)
+ abort();
chunks.push_back(allocation);
index = 0;
}
uint8_t* ret = static_cast<uint8_t*>(chunks.back());
ret += index;
- index += size; // TODO: if we allocated more than 1 chunk, reuse the remainder, right now we allocate another next time
+ index += size; // TODO: if we allocated more than 1 chunk, reuse the
+ // remainder, right now we allocate another next time
return static_cast<void*>(ret);
}
- template<class T>
- T* alloc() {
- static_assert(alignof(T) <= MAX_ALIGN, "maximum alignment not large enough");
+ template<class T> T* alloc() {
+ static_assert(alignof(T) <= MAX_ALIGN,
+ "maximum alignment not large enough");
auto* ret = static_cast<T*>(allocSpace(sizeof(T), alignof(T)));
- new (ret) T(*this); // allocated objects receive the allocator, so they can allocate more later if necessary
+ new (ret) T(*this); // allocated objects receive the allocator, so they can
+ // allocate more later if necessary
return ret;
}
@@ -149,22 +155,20 @@ struct MixedArena {
~MixedArena() {
clear();
- if (next.load()) delete next.load();
+ if (next.load())
+ delete next.load();
}
};
-
//
// A vector that allocates in an arena.
//
// TODO: specialize on the initial size of the array
-template<typename SubType, typename T>
-class ArenaVectorBase {
+template<typename SubType, typename T> class ArenaVectorBase {
protected:
T* data = nullptr;
- size_t usedElements = 0,
- allocatedElements = 0;
+ size_t usedElements = 0, allocatedElements = 0;
void reallocate(size_t size) {
T* old = data;
@@ -182,13 +186,9 @@ public:
return data[index];
}
- size_t size() const {
- return usedElements;
- }
+ size_t size() const { return usedElements; }
- bool empty() const {
- return size() == 0;
- }
+ bool empty() const { return size() == 0; }
void resize(size_t size) {
if (size > allocatedElements) {
@@ -235,13 +235,9 @@ public:
usedElements -= size;
}
- void erase(Iterator it) {
- erase(it, it + 1);
- }
+ void erase(Iterator it) { erase(it, it + 1); }
- void clear() {
- usedElements = 0;
- }
+ void clear() { usedElements = 0; }
void reserve(size_t size) {
if (size > allocatedElements) {
@@ -249,8 +245,7 @@ public:
}
}
- template<typename ListType>
- void set(const ListType& list) {
+ template<typename ListType> void set(const ListType& list) {
size_t size = list.size();
if (allocatedElements < size) {
static_cast<SubType*>(this)->allocate(size);
@@ -261,9 +256,7 @@ public:
usedElements = size;
}
- void operator=(SubType& other) {
- set(other);
- }
+ void operator=(SubType& other) { set(other); }
void swap(SubType& other) {
data = other.data;
@@ -287,32 +280,25 @@ public:
size_t index;
Iterator() : parent(nullptr), index(0) {}
- Iterator(const SubType* parent, size_t index) : parent(parent), index(index) {}
+ Iterator(const SubType* parent, size_t index)
+ : parent(parent), index(index) {}
bool operator==(const Iterator& other) const {
return index == other.index && parent == other.parent;
}
- bool operator!=(const Iterator& other) const {
- return !(*this == other);
- }
+ bool operator!=(const Iterator& other) const { return !(*this == other); }
bool operator<(const Iterator& other) const {
assert(parent == other.parent);
return index < other.index;
}
- bool operator>(const Iterator& other) const {
- return other < *this;
- }
+ bool operator>(const Iterator& other) const { return other < *this; }
- bool operator<=(const Iterator& other) const {
- return !(other < *this);
- }
+ bool operator<=(const Iterator& other) const { return !(other < *this); }
- bool operator>=(const Iterator& other) const {
- return !(*this < other);
- }
+ bool operator>=(const Iterator& other) const { return !(*this < other); }
Iterator& operator++() {
index++;
@@ -341,17 +327,13 @@ public:
return *this;
}
- Iterator& operator-=(std::ptrdiff_t off) {
- return *this += -off;
- }
+ Iterator& operator-=(std::ptrdiff_t off) { return *this += -off; }
Iterator operator+(std::ptrdiff_t off) const {
return Iterator(*this) += off;
}
- Iterator operator-(std::ptrdiff_t off) const {
- return *this + -off;
- }
+ Iterator operator-(std::ptrdiff_t off) const { return *this + -off; }
std::ptrdiff_t operator-(const Iterator& other) const {
assert(parent == other.parent);
@@ -362,17 +344,11 @@ public:
return it + off;
}
- T& operator*() const {
- return (*parent)[index];
- }
+ T& operator*() const { return (*parent)[index]; }
- T& operator[](std::ptrdiff_t off) const {
- return (*parent)[index + off];
- }
+ T& operator[](std::ptrdiff_t off) const { return (*parent)[index + off]; }
- T* operator->() const {
- return &(*parent)[index];
- }
+ T* operator->() const { return &(*parent)[index]; }
};
Iterator begin() const {
@@ -407,7 +383,8 @@ public:
void allocate(size_t size) {
this->allocatedElements = size;
- this->data = static_cast<T*>(allocator.allocSpace(sizeof(T) * this->allocatedElements, alignof(T)));
+ this->data = static_cast<T*>(
+ allocator.allocSpace(sizeof(T) * this->allocatedElements, alignof(T)));
}
};