summaryrefslogtreecommitdiffstats
path: root/js/src/gc
diff options
context:
space:
mode:
authortrav90 <travawine@palemoon.org>2018-08-12 07:57:10 -0500
committertrav90 <travawine@palemoon.org>2018-08-12 07:57:10 -0500
commit9ac48ef8319087fcb68d9021db0af9d5cb1080af (patch)
tree425d7acdb472e54cb530684654d6786a50876fdf /js/src/gc
parent9d1bfd4dc7338a39642f07eeea316f76bec43b8c (diff)
downloadUXP-9ac48ef8319087fcb68d9021db0af9d5cb1080af.tar
UXP-9ac48ef8319087fcb68d9021db0af9d5cb1080af.tar.gz
UXP-9ac48ef8319087fcb68d9021db0af9d5cb1080af.tar.lz
UXP-9ac48ef8319087fcb68d9021db0af9d5cb1080af.tar.xz
UXP-9ac48ef8319087fcb68d9021db0af9d5cb1080af.zip
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.h27
1 files changed, 4 insertions, 23 deletions
diff --git a/js/src/gc/Barrier.h b/js/src/gc/Barrier.h
index effc9233e..dce3b2a20 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));