From fba2cabd21069207dae91634dff21db8b38af85c Mon Sep 17 00:00:00 2001 From: Jon Coppeard Date: Fri, 1 Nov 2013 10:20:50 +0000 Subject: [PATCH] Bug 931446 - Improve documentation comment on JS::Heap r=terrence --- js/public/RootingAPI.h | 24 ++++++++++++++---------- js/src/gc/Barrier.h | 15 +++++++++++++++ 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/js/public/RootingAPI.h b/js/public/RootingAPI.h index 82863f020a0d..fa4dd87bd542 100644 --- a/js/public/RootingAPI.h +++ b/js/public/RootingAPI.h @@ -167,19 +167,23 @@ struct JS_PUBLIC_API(NullPtr) }; /* - * The Heap class is a C/C++ heap-stored reference to a JS GC thing. All - * members of heap classes that refer to GC thing should use Heap (or - * possibly TenuredHeap, described below). + * The Heap class is a heap-stored reference to a JS GC thing. All members of + * heap classes that refer to GC things should use Heap (or possibly + * TenuredHeap, described below). * - * Heap wraps the complex mechanisms required to ensure GC safety for the - * contained reference into a C++ class that behaves similarly to a normal - * pointer. + * Heap is an abstraction that hides some of the complexity required to + * maintain GC invariants for the contained reference. It uses operator + * overloading to provide a normal pointer interface, but notifies the GC every + * time the value it contains is updated. This is necessary for generational GC, + * which keeps track of all pointers into the nursery. * - * GC references stored on the C/C++ stack must use Rooted/Handle/MutableHandle - * instead. + * Heap instances must be traced when their containing object is traced to + * keep the pointed-to GC thing alive. * - * Requirements for type T: - * - Must be one of: Value, jsid, JSObject*, JSString*, JSScript* + * Heap objects should only be used on the heap. GC references stored on the + * C/C++ stack must use Rooted/Handle/MutableHandle instead. + * + * Type T must be one of: JS::Value, jsid, JSObject*, JSString*, JSScript* */ template class Heap : public js::HeapBase diff --git a/js/src/gc/Barrier.h b/js/src/gc/Barrier.h index 29da2bcdd1b9..565d3140474e 100644 --- a/js/src/gc/Barrier.h +++ b/js/src/gc/Barrier.h @@ -332,6 +332,11 @@ class EncapsulatedPtr void pre() { T::writeBarrierPre(value); } }; +/* + * A pre- and post-barriered heap pointer, for use inside the JS engine. + * + * Not to be confused with JS::Heap. + */ template class HeapPtr : public EncapsulatedPtr { @@ -635,6 +640,11 @@ class EncapsulatedValue : public ValueOperations const Value * extract() const { return &value; } }; +/* + * A pre- and post-barriered heap JS::Value, for use inside the JS engine. + * + * Not to be confused with JS::Heap. + */ class HeapValue : public EncapsulatedValue { public: @@ -1019,6 +1029,11 @@ class RelocatableId : public EncapsulatedId } }; +/* + * A pre- and post-barriered heap jsid, for use inside the JS engine. + * + * Not to be confused with JS::Heap. + */ class HeapId : public EncapsulatedId { public: