1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_HoldDropJSObjects_h
8 #define mozilla_HoldDropJSObjects_h
10 #include <type_traits>
11 #include "nsCycleCollectionNoteChild.h"
14 class nsScriptObjectTracer
;
15 class nsCycleCollectionParticipant
;
21 // Only HoldJSObjects and DropJSObjects should be called directly.
24 namespace cyclecollector
{
26 void HoldJSObjectsImpl(void* aHolder
, nsScriptObjectTracer
* aTracer
,
27 JS::Zone
* aZone
= nullptr);
28 void HoldJSObjectsImpl(nsISupports
* aHolder
);
29 void DropJSObjectsImpl(void* aHolder
);
30 void DropJSObjectsImpl(nsISupports
* aHolder
);
32 } // namespace cyclecollector
34 template <class T
, bool isISupports
= std::is_base_of
<nsISupports
, T
>::value
,
35 typename P
= typename
T::NS_CYCLE_COLLECTION_INNERCLASS
>
36 struct HoldDropJSObjectsHelper
{
37 static void Hold(T
* aHolder
) {
38 cyclecollector::HoldJSObjectsImpl(aHolder
,
39 NS_CYCLE_COLLECTION_PARTICIPANT(T
));
41 static void Drop(T
* aHolder
) { cyclecollector::DropJSObjectsImpl(aHolder
); }
45 struct HoldDropJSObjectsHelper
<T
, true> {
46 static void Hold(T
* aHolder
) {
47 cyclecollector::HoldJSObjectsImpl(ToSupports(aHolder
));
49 static void Drop(T
* aHolder
) {
50 cyclecollector::DropJSObjectsImpl(ToSupports(aHolder
));
55 Classes that hold strong references to JS GC things such as `JSObjects` and
56 `JS::Values` (e.g. `JS::Heap<JSObject*> mFoo;`) must use these, generally by
57 calling `HoldJSObjects(this)` and `DropJSObjects(this)` in the ctor and dtor
60 For classes that are wrapper cached and hold no other strong references to JS
61 GC things, there's no need to call these; it will be taken care of
62 automatically by nsWrapperCache.
65 void HoldJSObjects(T
* aHolder
) {
66 static_assert(!std::is_base_of
<nsCycleCollectionParticipant
, T
>::value
,
67 "Don't call this on the CC participant but on the object that "
68 "it's for (in an Unlink implementation it's usually stored in "
69 "a variable named 'tmp').");
70 HoldDropJSObjectsHelper
<T
>::Hold(aHolder
);
74 void DropJSObjects(T
* aHolder
) {
75 static_assert(!std::is_base_of
<nsCycleCollectionParticipant
, T
>::value
,
76 "Don't call this on the CC participant but on the object that "
77 "it's for (in an Unlink implementation it's usually stored in "
78 "a variable named 'tmp').");
79 HoldDropJSObjectsHelper
<T
>::Drop(aHolder
);
82 } // namespace mozilla
84 #endif // mozilla_HoldDropJSObjects_h