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"
|
|
|
|
#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());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-03 19:46:49 +00:00
|
|
|
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);
|
2016-09-23 22:42:13 +00:00
|
|
|
if (mozilla::AddToCCKind(aGCThing.kind())) {
|
|
|
|
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
|
|
|
|
{
|
2016-02-07 17:08:55 +00:00
|
|
|
if (JSID_IS_GCTHING(aPtr->unbarrieredGet())) {
|
|
|
|
mCallback(JSID_TO_GCTHING(aPtr->unbarrieredGet()), 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
|
|
|
}
|
|
|
|
|
2015-12-31 13:21:49 +00:00
|
|
|
void
|
|
|
|
TraceCallbackFunc::Trace(JSObject** aPtr, const char* aName,
|
|
|
|
void* aClosure) const
|
|
|
|
{
|
2016-02-22 18:11:02 +00:00
|
|
|
if (*aPtr) {
|
|
|
|
mCallback(JS::GCCellPtr(*aPtr), aName, aClosure);
|
|
|
|
}
|
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
|
|
|
}
|