diff options
author | trav90 <travawine@palemoon.org> | 2018-08-12 07:57:10 -0500 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2018-08-12 07:57:10 -0500 |
commit | 9ac48ef8319087fcb68d9021db0af9d5cb1080af (patch) | |
tree | 425d7acdb472e54cb530684654d6786a50876fdf /js/src/gc | |
parent | 9d1bfd4dc7338a39642f07eeea316f76bec43b8c (diff) | |
download | uxp-9ac48ef8319087fcb68d9021db0af9d5cb1080af.tar.gz |
Simplify HeapSlot to make it trivially copyable
This removes the constructors, which were never called since we allocate arrays of HeapSlot with pod_malloc. The destructor is only ever called explicitly since we free this memory with js_free so it has been renamed to destroy(). Also removed is an unused manual barrier.
Diffstat (limited to 'js/src/gc')
-rw-r--r-- | js/src/gc/Barrier.h | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/js/src/gc/Barrier.h b/js/src/gc/Barrier.h index effc9233ea..dce3b2a203 100644 --- a/js/src/gc/Barrier.h +++ b/js/src/gc/Barrier.h @@ -667,29 +667,15 @@ class HeapSlot : public WriteBarrieredBase<Value> Element = 1 }; - explicit HeapSlot() = delete; - - explicit HeapSlot(NativeObject* obj, Kind kind, uint32_t slot, const Value& v) - : WriteBarrieredBase<Value>(v) - { - post(obj, kind, slot, v); - } - - explicit HeapSlot(NativeObject* obj, Kind kind, uint32_t slot, const HeapSlot& s) - : WriteBarrieredBase<Value>(s.value) - { - post(obj, kind, slot, s); - } - - ~HeapSlot() { - pre(); - } - void init(NativeObject* owner, Kind kind, uint32_t slot, const Value& v) { value = v; post(owner, kind, slot, v); } + void destroy() { + pre(); + } + #ifdef DEBUG bool preconditionForSet(NativeObject* owner, Kind kind, uint32_t slot) const; bool preconditionForWriteBarrierPost(NativeObject* obj, Kind kind, uint32_t slot, @@ -703,11 +689,6 @@ class HeapSlot : public WriteBarrieredBase<Value> post(owner, kind, slot, v); } - /* For users who need to manually barrier the raw types. */ - static void writeBarrierPost(NativeObject* owner, Kind kind, uint32_t slot, const Value& target) { - reinterpret_cast<HeapSlot*>(const_cast<Value*>(&target))->post(owner, kind, slot, target); - } - private: void post(NativeObject* owner, Kind kind, uint32_t slot, const Value& target) { MOZ_ASSERT(preconditionForWriteBarrierPost(owner, kind, slot, target)); |