2015-12-19 01:22:01 +03: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 13:12:33 +03:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsWrapperCache.h"
|
2015-12-19 01:22:01 +03: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 22:46:49 +03:00
|
|
|
void nsCycleCollectionParticipant::NoteJSChild(JS::GCCellPtr aGCThing,
|
|
|
|
const char* aName,
|
|
|
|
void* aClosure) {
|
2015-12-19 01:22:01 +03:00
|
|
|
nsCycleCollectionTraversalCallback* cb =
|
|
|
|
static_cast<nsCycleCollectionTraversalCallback*>(aClosure);
|
|
|
|
NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(*cb, aName);
|
2018-11-15 12:11:10 +03:00
|
|
|
if (JS::IsCCTraceKind(aGCThing.kind())) {
|
2016-09-24 01:42:13 +03:00
|
|
|
cb->NoteJSChild(aGCThing);
|
2015-12-19 01:22:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JS::Value>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-12-26 18:40:21 +03:00
|
|
|
if (aPtr->unbarrieredGet().isGCThing()) {
|
2016-02-07 20:08:55 +03:00
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2015-12-19 01:22:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<jsid>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2020-04-26 20:03:01 +03:00
|
|
|
if (aPtr->unbarrieredGet().isGCThing()) {
|
2020-04-26 20:02:30 +03:00
|
|
|
mCallback(aPtr->unbarrieredGet().toGCCellPtr(), aName, aClosure);
|
2015-12-19 01:22:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JSObject*>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-02-07 20:08:55 +03:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2016-02-22 21:11:02 +03:00
|
|
|
}
|
2015-12-19 01:22:01 +03:00
|
|
|
}
|
|
|
|
|
2019-10-09 17:34:16 +03:00
|
|
|
void TraceCallbackFunc::Trace(nsWrapperCache* aPtr, const char* aName,
|
2015-12-31 16:21:49 +03:00
|
|
|
void* aClosure) const {
|
2019-10-09 17:34:16 +03:00
|
|
|
JSObject* obj = aPtr->GetWrapperPreserveColor();
|
|
|
|
if (obj) {
|
|
|
|
mCallback(JS::GCCellPtr(obj), aName, aClosure);
|
2016-02-22 21:11:02 +03:00
|
|
|
}
|
2015-12-31 16:21:49 +03:00
|
|
|
}
|
|
|
|
|
2015-12-19 01:22:01 +03:00
|
|
|
void TraceCallbackFunc::Trace(JS::TenuredHeap<JSObject*>* aPtr,
|
|
|
|
const char* aName, void* aClosure) const {
|
2016-10-07 14:58:37 +03:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGetPtr()), aName, aClosure);
|
2016-02-22 21:11:02 +03:00
|
|
|
}
|
2015-12-19 01:22:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JSFunction*>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-02-07 20:08:55 +03:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2016-02-22 21:11:02 +03:00
|
|
|
}
|
2015-12-19 01:22:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JSString*>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-02-07 20:08:55 +03:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2016-02-22 21:11:02 +03:00
|
|
|
}
|
2015-12-19 01:22:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void TraceCallbackFunc::Trace(JS::Heap<JSScript*>* aPtr, const char* aName,
|
|
|
|
void* aClosure) const {
|
2016-02-07 20:08:55 +03:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(aPtr->unbarrieredGet()), aName, aClosure);
|
2016-02-22 21:11:02 +03:00
|
|
|
}
|
2015-12-19 01:22:01 +03:00
|
|
|
}
|