2015-12-18 22:22:01 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2020-04-08 10:12:33 +00:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsWrapperCache.h"
|
2015-12-18 22:22:01 +00:00
|
|
|
#include "jsapi.h"
|
|
|
|
#include "jsfriendapi.h"
|
|
|
|
|
|
|
|
void CycleCollectionNoteEdgeNameImpl(
|
|
|
|
nsCycleCollectionTraversalCallback& aCallback, const char* aName,
|
|
|
|
uint32_t aFlags) {
|
|
|
|
nsAutoCString arrayEdgeName(aName);
|
|
|
|
if (aFlags & CycleCollectionEdgeNameArrayFlag) {
|
|
|
|
arrayEdgeName.AppendLiteral("[i]");
|
|
|
|
}
|
|
|
|
aCallback.NoteNextEdgeName(arrayEdgeName.get());
|
|
|
|
}
|
|
|
|
|
2017-01-03 19:46:49 +00:00
|
|
|
void nsCycleCollectionParticipant::NoteJSChild(JS::GCCellPtr aGCThing,
|
|
|
|
const char* aName,
|
|
|
|
void* aClosure) {
|
2015-12-18 22:22:01 +00:00
|
|
|
nsCycleCollectionTraversalCallback* cb =
|
|
|
|
static_cast<nsCycleCollectionTraversalCallback*>(aClosure);
|
|
|
|
NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(*cb, aName);
|
2018-11-15 09:11:10 +00:00
|
|
|
if (JS::IsCCTraceKind(aGCThing.kind())) {
|
2016-09-23 22:42:13 +00:00
|
|
|
cb->NoteJSChild(aGCThing);
|
2015-12-18 22:22:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JS::Value>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-12-26 15:40:21 +00:00
|
|
|
if (aPtr->unbarrieredGet().isGCThing()) {
|
2016-02-07 17:08:55 +00:00
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2015-12-18 22:22:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<jsid>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2020-04-26 17:03:01 +00:00
|
|
|
if (aPtr->unbarrieredGet().isGCThing()) {
|
2020-04-26 17:02:30 +00:00
|
|
|
mCallback(aPtr->unbarrieredGet().toGCCellPtr(), aName, aClosure);
|
2015-12-18 22:22:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JSObject*>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-02-07 17:08:55 +00:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2016-02-22 18:11:02 +00:00
|
|
|
}
|
2015-12-18 22:22:01 +00:00
|
|
|
}
|
|
|
|
|
2019-10-09 14:34:16 +00:00
|
|
|
void TraceCallbackFunc::Trace(nsWrapperCache* aPtr, const char* aName,
|
2015-12-31 13:21:49 +00:00
|
|
|
void* aClosure) const {
|
2019-10-09 14:34:16 +00:00
|
|
|
JSObject* obj = aPtr->GetWrapperPreserveColor();
|
|
|
|
if (obj) {
|
|
|
|
mCallback(JS::GCCellPtr(obj), aName, aClosure);
|
2016-02-22 18:11:02 +00:00
|
|
|
}
|
2015-12-31 13:21:49 +00:00
|
|
|
}
|
|
|
|
|
2015-12-18 22:22:01 +00:00
|
|
|
void TraceCallbackFunc::Trace(JS::TenuredHeap<JSObject*>* aPtr,
|
|
|
|
const char* aName, void* aClosure) const {
|
2016-10-07 11:58:37 +00:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGetPtr()), aName, aClosure);
|
2016-02-22 18:11:02 +00:00
|
|
|
}
|
2015-12-18 22:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JSFunction*>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-02-07 17:08:55 +00:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2016-02-22 18:11:02 +00:00
|
|
|
}
|
2015-12-18 22:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JSString*>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-02-07 17:08:55 +00:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2016-02-22 18:11:02 +00:00
|
|
|
}
|
2015-12-18 22:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JSScript*>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-02-07 17:08:55 +00:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2016-02-22 18:11:02 +00:00
|
|
|
}
|
2015-12-18 22:22:01 +00:00
|
|
|
}
|