2007-01-04 22:31:26 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2007-01-04 22:31:26 +00:00
|
|
|
|
|
|
|
#ifndef nsCycleCollector_h__
|
|
|
|
#define nsCycleCollector_h__
|
|
|
|
|
2010-08-12 00:03:23 +00:00
|
|
|
class nsICycleCollectorListener;
|
2013-04-30 17:41:22 +00:00
|
|
|
class nsISupports;
|
2013-06-18 19:01:26 +00:00
|
|
|
class nsScriptObjectTracer;
|
2007-01-04 22:31:26 +00:00
|
|
|
|
2013-07-09 14:28:15 +00:00
|
|
|
#include "nsError.h"
|
|
|
|
#include "nsID.h"
|
|
|
|
|
2013-06-18 19:02:16 +00:00
|
|
|
namespace mozilla {
|
2013-07-09 14:28:15 +00:00
|
|
|
|
2013-06-18 19:02:16 +00:00
|
|
|
class CycleCollectedJSRuntime;
|
2013-07-09 14:28:15 +00:00
|
|
|
|
|
|
|
// See the comments in nsContentUtils.h for explanations of these functions.
|
|
|
|
typedef void* (*DeferredFinalizeAppendFunction)(void* pointers, void* thing);
|
|
|
|
typedef bool (*DeferredFinalizeFunction)(uint32_t slice, void* data);
|
|
|
|
|
2013-06-18 19:02:16 +00:00
|
|
|
}
|
|
|
|
|
2012-02-24 04:16:37 +00:00
|
|
|
// Contains various stats about the cycle collection.
|
|
|
|
class nsCycleCollectorResults
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsCycleCollectorResults() :
|
2013-04-29 23:41:41 +00:00
|
|
|
mForcedGC(false), mMergedZones(false),
|
|
|
|
mVisitedRefCounted(0), mVisitedGCed(0),
|
2012-02-24 04:16:37 +00:00
|
|
|
mFreedRefCounted(0), mFreedGCed(0) {}
|
|
|
|
bool mForcedGC;
|
2013-04-29 23:41:41 +00:00
|
|
|
bool mMergedZones;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mVisitedRefCounted;
|
|
|
|
uint32_t mVisitedGCed;
|
|
|
|
uint32_t mFreedRefCounted;
|
|
|
|
uint32_t mFreedGCed;
|
2012-02-24 04:16:37 +00:00
|
|
|
};
|
|
|
|
|
2013-03-25 21:26:00 +00:00
|
|
|
bool nsCycleCollector_init();
|
|
|
|
|
2013-08-13 17:45:32 +00:00
|
|
|
void nsCycleCollector_startup();
|
2012-01-14 16:58:05 +00:00
|
|
|
|
|
|
|
typedef void (*CC_BeforeUnlinkCallback)(void);
|
|
|
|
void nsCycleCollector_setBeforeUnlinkCallback(CC_BeforeUnlinkCallback aCB);
|
|
|
|
|
|
|
|
typedef void (*CC_ForgetSkippableCallback)(void);
|
|
|
|
void nsCycleCollector_setForgetSkippableCallback(CC_ForgetSkippableCallback aCB);
|
|
|
|
|
2013-07-27 10:48:45 +00:00
|
|
|
void nsCycleCollector_forgetSkippable(bool aRemoveChildlessNodes = false,
|
|
|
|
bool aAsyncSnowWhiteFreeing = false);
|
2012-01-14 16:58:05 +00:00
|
|
|
|
2013-08-03 23:55:39 +00:00
|
|
|
void nsCycleCollector_dispatchDeferredDeletion(bool aContinuation = false);
|
|
|
|
bool nsCycleCollector_doDeferredDeletion();
|
2013-07-09 17:30:58 +00:00
|
|
|
|
2013-04-29 23:41:41 +00:00
|
|
|
void nsCycleCollector_collect(bool aManuallyTriggered,
|
2012-06-27 15:09:56 +00:00
|
|
|
nsCycleCollectorResults *aResults,
|
2012-02-24 04:16:37 +00:00
|
|
|
nsICycleCollectorListener *aListener);
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t nsCycleCollector_suspectedCount();
|
2007-03-27 09:49:06 +00:00
|
|
|
void nsCycleCollector_shutdown();
|
2007-01-04 22:31:26 +00:00
|
|
|
|
2012-05-03 19:28:11 +00:00
|
|
|
// Helpers for interacting with JS
|
2013-06-18 19:02:16 +00:00
|
|
|
void nsCycleCollector_registerJSRuntime(mozilla::CycleCollectedJSRuntime *aRt);
|
2012-05-03 19:28:11 +00:00
|
|
|
void nsCycleCollector_forgetJSRuntime();
|
|
|
|
|
2010-08-12 00:03:23 +00:00
|
|
|
#define NS_CYCLE_COLLECTOR_LOGGER_CID \
|
|
|
|
{ 0x58be81b4, 0x39d2, 0x437c, \
|
|
|
|
{ 0x94, 0xea, 0xae, 0xde, 0x2c, 0x62, 0x08, 0xd3 } }
|
|
|
|
|
|
|
|
extern nsresult
|
|
|
|
nsCycleCollectorLoggerConstructor(nsISupports* outer,
|
|
|
|
const nsIID& aIID,
|
|
|
|
void* *aInstancePtr);
|
|
|
|
|
2013-06-18 19:01:26 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace cyclecollector {
|
|
|
|
|
|
|
|
void AddJSHolder(void* aHolder, nsScriptObjectTracer* aTracer);
|
|
|
|
void RemoveJSHolder(void* aHolder);
|
|
|
|
#ifdef DEBUG
|
|
|
|
bool TestJSHolder(void* aHolder);
|
|
|
|
#endif
|
|
|
|
|
2013-07-09 14:28:15 +00:00
|
|
|
void DeferredFinalize(DeferredFinalizeAppendFunction aAppendFunc,
|
|
|
|
DeferredFinalizeFunction aFunc,
|
|
|
|
void* aThing);
|
|
|
|
void DeferredFinalize(nsISupports* aSupports);
|
|
|
|
|
|
|
|
|
2013-06-18 19:01:26 +00:00
|
|
|
} // namespace cyclecollector
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2007-01-04 22:31:26 +00:00
|
|
|
#endif // nsCycleCollector_h__
|