2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsCycleCollector_h__
|
|
|
|
#define nsCycleCollector_h__
|
|
|
|
|
2013-04-30 10:41:22 -07:00
|
|
|
class nsCycleCollectionJSRuntime;
|
2010-08-11 17:03:23 -07:00
|
|
|
class nsICycleCollectorListener;
|
2013-04-30 10:41:22 -07:00
|
|
|
class nsISupports;
|
2013-06-18 12:01:26 -07:00
|
|
|
class nsScriptObjectTracer;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-02-23 20:16:37 -08:00
|
|
|
// Contains various stats about the cycle collection.
|
|
|
|
class nsCycleCollectorResults
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsCycleCollectorResults() :
|
2013-04-29 16:41:41 -07:00
|
|
|
mForcedGC(false), mMergedZones(false),
|
|
|
|
mVisitedRefCounted(0), mVisitedGCed(0),
|
2012-02-23 20:16:37 -08:00
|
|
|
mFreedRefCounted(0), mFreedGCed(0) {}
|
|
|
|
bool mForcedGC;
|
2013-04-29 16:41:41 -07:00
|
|
|
bool mMergedZones;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mVisitedRefCounted;
|
|
|
|
uint32_t mVisitedGCed;
|
|
|
|
uint32_t mFreedRefCounted;
|
|
|
|
uint32_t mFreedGCed;
|
2012-02-23 20:16:37 -08:00
|
|
|
};
|
|
|
|
|
2013-03-25 14:26:00 -07:00
|
|
|
bool nsCycleCollector_init();
|
|
|
|
|
|
|
|
enum CCThreadingModel {
|
|
|
|
CCSingleThread,
|
2013-04-05 10:03:56 -07:00
|
|
|
CCWithTraverseThread
|
2013-03-25 14:26:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nsresult nsCycleCollector_startup(CCThreadingModel aThreadingModel);
|
2012-01-14 08:58:05 -08:00
|
|
|
|
|
|
|
typedef void (*CC_BeforeUnlinkCallback)(void);
|
|
|
|
void nsCycleCollector_setBeforeUnlinkCallback(CC_BeforeUnlinkCallback aCB);
|
|
|
|
|
|
|
|
typedef void (*CC_ForgetSkippableCallback)(void);
|
|
|
|
void nsCycleCollector_setForgetSkippableCallback(CC_ForgetSkippableCallback aCB);
|
|
|
|
|
2012-03-05 13:48:04 -08:00
|
|
|
void nsCycleCollector_forgetSkippable(bool aRemoveChildlessNodes = false);
|
2012-01-14 08:58:05 -08:00
|
|
|
|
2013-04-29 16:41:41 -07:00
|
|
|
void nsCycleCollector_collect(bool aManuallyTriggered,
|
2012-06-27 08:09:56 -07:00
|
|
|
nsCycleCollectorResults *aResults,
|
2012-02-23 20:16:37 -08:00
|
|
|
nsICycleCollectorListener *aListener);
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t nsCycleCollector_suspectedCount();
|
2010-11-11 14:52:30 -08:00
|
|
|
void nsCycleCollector_shutdownThreads();
|
2007-03-27 02:49:06 -07:00
|
|
|
void nsCycleCollector_shutdown();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-05-03 12:28:11 -07:00
|
|
|
// Helpers for interacting with JS
|
2013-04-30 10:41:22 -07:00
|
|
|
void nsCycleCollector_registerJSRuntime(nsCycleCollectionJSRuntime *aRt);
|
2012-05-03 12:28:11 -07:00
|
|
|
void nsCycleCollector_forgetJSRuntime();
|
|
|
|
|
2010-08-11 17:03:23 -07: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 12:01:26 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace cyclecollector {
|
|
|
|
|
|
|
|
void AddJSHolder(void* aHolder, nsScriptObjectTracer* aTracer);
|
|
|
|
void RemoveJSHolder(void* aHolder);
|
|
|
|
#ifdef DEBUG
|
|
|
|
bool TestJSHolder(void* aHolder);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace cyclecollector
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif // nsCycleCollector_h__
|