2011-05-26 19:58:35 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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/. */
|
2011-05-26 19:58:35 +00:00
|
|
|
|
|
|
|
#ifndef nsWrapperCacheInline_h___
|
|
|
|
#define nsWrapperCacheInline_h___
|
|
|
|
|
|
|
|
#include "nsWrapperCache.h"
|
2013-09-09 03:28:48 +00:00
|
|
|
#include "js/GCAPI.h"
|
2014-04-11 22:19:05 +00:00
|
|
|
#include "js/TracingAPI.h"
|
2011-05-26 19:58:35 +00:00
|
|
|
|
|
|
|
inline JSObject*
|
|
|
|
nsWrapperCache::GetWrapper() const
|
|
|
|
{
|
|
|
|
JSObject* obj = GetWrapperPreserveColor();
|
2013-09-09 03:28:48 +00:00
|
|
|
if (obj) {
|
|
|
|
JS::ExposeObjectToActiveJS(obj);
|
|
|
|
}
|
2011-05-26 19:58:35 +00:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2011-12-29 21:21:33 +00:00
|
|
|
inline bool
|
|
|
|
nsWrapperCache::IsBlack()
|
|
|
|
{
|
|
|
|
JSObject* o = GetWrapperPreserveColor();
|
2014-12-05 17:38:34 +00:00
|
|
|
return o && !JS::ObjectIsMarkedGray(o);
|
2011-12-29 21:21:33 +00:00
|
|
|
}
|
|
|
|
|
2012-09-28 22:29:37 +00:00
|
|
|
static void
|
2014-12-05 17:38:34 +00:00
|
|
|
SearchGray(JS::GCCellPtr aGCThing, const char* aName, void* aClosure)
|
2012-09-28 22:29:37 +00:00
|
|
|
{
|
|
|
|
bool* hasGrayObjects = static_cast<bool*>(aClosure);
|
2014-12-05 17:38:34 +00:00
|
|
|
if (!*hasGrayObjects && aGCThing && JS::GCThingIsMarkedGray(aGCThing)) {
|
2012-09-28 22:29:37 +00:00
|
|
|
*hasGrayObjects = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-24 19:35:34 +00:00
|
|
|
inline bool
|
|
|
|
nsWrapperCache::HasNothingToTrace(nsISupports* aThis)
|
|
|
|
{
|
|
|
|
nsXPCOMCycleCollectionParticipant* participant = nullptr;
|
|
|
|
CallQueryInterface(aThis, &participant);
|
|
|
|
bool hasGrayObjects = false;
|
|
|
|
participant->Trace(aThis, TraceCallbackFunc(SearchGray), &hasGrayObjects);
|
|
|
|
return !hasGrayObjects;
|
|
|
|
}
|
|
|
|
|
2012-09-28 22:29:37 +00:00
|
|
|
inline bool
|
|
|
|
nsWrapperCache::IsBlackAndDoesNotNeedTracing(nsISupports* aThis)
|
|
|
|
{
|
2013-11-24 19:35:34 +00:00
|
|
|
return IsBlack() && HasNothingToTrace(aThis);
|
2012-09-28 22:29:37 +00:00
|
|
|
}
|
|
|
|
|
2013-03-28 20:37:22 +00:00
|
|
|
inline void
|
2013-06-08 08:53:21 +00:00
|
|
|
nsWrapperCache::TraceWrapperJSObject(JSTracer* aTrc, const char* aName)
|
2013-03-28 20:37:22 +00:00
|
|
|
{
|
2014-08-13 09:05:22 +00:00
|
|
|
JS_CallObjectTracer(aTrc, &mWrapper, aName);
|
2013-03-28 20:37:22 +00:00
|
|
|
}
|
|
|
|
|
2011-05-26 19:58:35 +00:00
|
|
|
#endif /* nsWrapperCache_h___ */
|