mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset aca2ec2457ec (bug 1016738) for re-introducing frequent WebRTC crashes.
This commit is contained in:
parent
d42d16462c
commit
75b29a3306
@ -43,7 +43,7 @@ namespace JS {
|
||||
D(TOO_MUCH_MALLOC) \
|
||||
D(ALLOC_TRIGGER) \
|
||||
D(DEBUG_GC) \
|
||||
D(COMPARTMENT_REVIVED) \
|
||||
D(TRANSPLANT) \
|
||||
D(RESET) \
|
||||
D(OUT_OF_NURSERY) \
|
||||
D(EVICT_NURSERY) \
|
||||
|
@ -198,6 +198,9 @@ CheckMarkedThing(JSTracer *trc, T **thingp)
|
||||
|
||||
DebugOnly<JSRuntime *> rt = trc->runtime();
|
||||
|
||||
JS_ASSERT_IF(IS_GC_MARKING_TRACER(trc) && rt->gc.isManipulatingDeadZones(),
|
||||
!thing->zone()->scheduledForDestruction);
|
||||
|
||||
JS_ASSERT(CurrentThreadCanAccessRuntime(rt));
|
||||
|
||||
JS_ASSERT_IF(thing->zone()->requireGCTracer(),
|
||||
@ -228,33 +231,6 @@ CheckMarkedThing(JSTracer *trc, T **thingp)
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* We only set the maybeAlive flag for objects and scripts. It's assumed that,
|
||||
* if a compartment is alive, then it will have at least some live object or
|
||||
* script it in. Even if we get this wrong, the worst that will happen is that
|
||||
* scheduledForDestruction will be set on the compartment, which will cause some
|
||||
* extra GC activity to try to free the compartment.
|
||||
*/
|
||||
template<typename T>
|
||||
static inline void
|
||||
SetMaybeAliveFlag(T *thing)
|
||||
{
|
||||
}
|
||||
|
||||
template<>
|
||||
void
|
||||
SetMaybeAliveFlag(JSObject *thing)
|
||||
{
|
||||
thing->compartment()->maybeAlive = true;
|
||||
}
|
||||
|
||||
template<>
|
||||
void
|
||||
SetMaybeAliveFlag(JSScript *thing)
|
||||
{
|
||||
thing->compartment()->maybeAlive = true;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
static void
|
||||
MarkInternal(JSTracer *trc, T **thingp)
|
||||
@ -298,7 +274,7 @@ MarkInternal(JSTracer *trc, T **thingp)
|
||||
return;
|
||||
|
||||
PushMarkStack(AsGCMarker(trc), thing);
|
||||
SetMaybeAliveFlag(thing);
|
||||
thing->zone()->maybeAlive = true;
|
||||
} else {
|
||||
trc->callback(trc, (void **)thingp, MapTypeToTraceKind<T>::kind);
|
||||
trc->unsetTracingLocation();
|
||||
|
@ -638,20 +638,7 @@ GCMarker::appendGrayRoot(void *thing, JSGCTraceKind kind)
|
||||
|
||||
Zone *zone = static_cast<Cell *>(thing)->tenuredZone();
|
||||
if (zone->isCollecting()) {
|
||||
// See the comment on SetMaybeAliveFlag to see why we only do this for
|
||||
// objects and scripts. We rely on gray root buffering for this to work,
|
||||
// but we only need to worry about uncollected dead compartments during
|
||||
// incremental GCs (when we do gray root buffering).
|
||||
switch (kind) {
|
||||
case JSTRACE_OBJECT:
|
||||
static_cast<JSObject *>(thing)->compartment()->maybeAlive = true;
|
||||
break;
|
||||
case JSTRACE_SCRIPT:
|
||||
static_cast<JSScript *>(thing)->compartment()->maybeAlive = true;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
zone->maybeAlive = true;
|
||||
if (!zone->gcGrayRoots.append(root)) {
|
||||
resetBufferedGrayRoots();
|
||||
grayBufferState = GRAY_BUFFER_FAILED;
|
||||
|
@ -35,6 +35,8 @@ JS::Zone::Zone(JSRuntime *rt)
|
||||
data(nullptr),
|
||||
isSystem(false),
|
||||
usedByExclusiveThread(false),
|
||||
scheduledForDestruction(false),
|
||||
maybeAlive(true),
|
||||
active(false),
|
||||
jitZone_(nullptr),
|
||||
gcState_(NoGC),
|
||||
|
@ -258,6 +258,11 @@ struct Zone : public JS::shadow::Zone,
|
||||
|
||||
bool usedByExclusiveThread;
|
||||
|
||||
// These flags help us to discover if a compartment that shouldn't be alive
|
||||
// manages to outlive a GC.
|
||||
bool scheduledForDestruction;
|
||||
bool maybeAlive;
|
||||
|
||||
// True when there are active frames.
|
||||
bool active;
|
||||
|
||||
|
@ -1090,6 +1090,7 @@ JS_TransplantObject(JSContext *cx, HandleObject origobj, HandleObject target)
|
||||
JS_ASSERT(!origobj->is<CrossCompartmentWrapperObject>());
|
||||
JS_ASSERT(!target->is<CrossCompartmentWrapperObject>());
|
||||
|
||||
AutoMaybeTouchDeadZones agc(cx);
|
||||
AutoDisableProxyCheck adpc(cx->runtime());
|
||||
|
||||
JSCompartment *destination = target->compartment();
|
||||
|
@ -65,9 +65,7 @@ JSCompartment::JSCompartment(Zone *zone, const JS::CompartmentOptions &options =
|
||||
debugScriptMap(nullptr),
|
||||
debugScopes(nullptr),
|
||||
enumerators(nullptr),
|
||||
compartmentStats(nullptr),
|
||||
scheduledForDestruction(false),
|
||||
maybeAlive(true)
|
||||
compartmentStats(nullptr)
|
||||
#ifdef JS_ION
|
||||
, jitCompartment_(nullptr)
|
||||
#endif
|
||||
|
@ -448,11 +448,6 @@ struct JSCompartment
|
||||
/* Used by memory reporters and invalid otherwise. */
|
||||
void *compartmentStats;
|
||||
|
||||
// These flags help us to discover if a compartment that shouldn't be alive
|
||||
// manages to outlive a GC.
|
||||
bool scheduledForDestruction;
|
||||
bool maybeAlive;
|
||||
|
||||
#ifdef JS_ION
|
||||
private:
|
||||
js::jit::JitCompartment *jitCompartment_;
|
||||
|
@ -957,6 +957,8 @@ JS::IncrementalObjectBarrier(JSObject *obj)
|
||||
|
||||
JS_ASSERT(!obj->zone()->runtimeFromMainThread()->isHeapMajorCollecting());
|
||||
|
||||
AutoMarkInDeadZone amn(obj->zone());
|
||||
|
||||
JSObject::writeBarrierPre(obj);
|
||||
}
|
||||
|
||||
@ -967,13 +969,13 @@ JS::IncrementalReferenceBarrier(void *ptr, JSGCTraceKind kind)
|
||||
return;
|
||||
|
||||
gc::Cell *cell = static_cast<gc::Cell *>(ptr);
|
||||
|
||||
#ifdef DEBUG
|
||||
Zone *zone = kind == JSTRACE_OBJECT
|
||||
? static_cast<JSObject *>(cell)->zone()
|
||||
: cell->tenuredZone();
|
||||
|
||||
JS_ASSERT(!zone->runtimeFromMainThread()->isHeapMajorCollecting());
|
||||
#endif
|
||||
|
||||
AutoMarkInDeadZone amn(zone);
|
||||
|
||||
if (kind == JSTRACE_OBJECT)
|
||||
JSObject::writeBarrierPre(static_cast<JSObject*>(cell));
|
||||
|
119
js/src/jsgc.cpp
119
js/src/jsgc.cpp
@ -3100,14 +3100,14 @@ GCRuntime::beginMarkPhase()
|
||||
isFull = false;
|
||||
}
|
||||
|
||||
zone->scheduledForDestruction = false;
|
||||
zone->maybeAlive = false;
|
||||
zone->setPreservingCode(false);
|
||||
}
|
||||
|
||||
for (CompartmentsIter c(rt, WithAtoms); !c.done(); c.next()) {
|
||||
JS_ASSERT(c->gcLiveArrayBuffers.empty());
|
||||
c->marked = false;
|
||||
c->scheduledForDestruction = false;
|
||||
c->maybeAlive = false;
|
||||
if (shouldPreserveJITCode(c, currentTime))
|
||||
c->zone()->setPreservingCode(true);
|
||||
}
|
||||
@ -3208,50 +3208,40 @@ GCRuntime::beginMarkPhase()
|
||||
bufferGrayRoots();
|
||||
|
||||
/*
|
||||
* This code ensures that if a compartment is "dead", then it will be
|
||||
* collected in this GC. A compartment is considered dead if its maybeAlive
|
||||
* This code ensures that if a zone is "dead", then it will be
|
||||
* collected in this GC. A zone is considered dead if its maybeAlive
|
||||
* flag is false. The maybeAlive flag is set if:
|
||||
* (1) the compartment has incoming cross-compartment edges, or
|
||||
* (2) an object in the compartment was marked during root marking, either
|
||||
* (1) the zone has incoming cross-compartment edges, or
|
||||
* (2) an object in the zone was marked during root marking, either
|
||||
* as a black root or a gray root.
|
||||
* If the maybeAlive is false, then we set the scheduledForDestruction flag.
|
||||
* At the end of the GC, we look for compartments where
|
||||
* scheduledForDestruction is true. These are compartments that were somehow
|
||||
* "revived" during the incremental GC. If any are found, we do a special,
|
||||
* non-incremental GC of those compartments to try to collect them.
|
||||
* At any time later in the GC, if we try to mark an object whose
|
||||
* zone is scheduled for destruction, we will assert.
|
||||
* NOTE: Due to bug 811587, we only assert if gcManipulatingDeadCompartments
|
||||
* is true (e.g., if we're doing a brain transplant).
|
||||
*
|
||||
* Compartments can be revived for a variety of reasons. On reason is bug
|
||||
* 811587, where a reflector that was dead can be revived by DOM code that
|
||||
* still refers to the underlying DOM node.
|
||||
* The purpose of this check is to ensure that a zone that we would
|
||||
* normally destroy is not resurrected by a read barrier or an
|
||||
* allocation. This might happen during a function like JS_TransplantObject,
|
||||
* which iterates over all compartments, live or dead, and operates on their
|
||||
* objects. See bug 803376 for details on this problem. To avoid the
|
||||
* problem, we are very careful to avoid allocation and read barriers during
|
||||
* JS_TransplantObject and the like. The code here ensures that we don't
|
||||
* regress.
|
||||
*
|
||||
* Read barriers and allocations can also cause revival. This might happen
|
||||
* during a function like JS_TransplantObject, which iterates over all
|
||||
* compartments, live or dead, and operates on their objects. See bug 803376
|
||||
* for details on this problem. To avoid the problem, we try to avoid
|
||||
* allocation and read barriers during JS_TransplantObject and the like.
|
||||
* Note that there are certain cases where allocations or read barriers in
|
||||
* dead zone are difficult to avoid. We detect such cases (via the
|
||||
* gcObjectsMarkedInDeadCompartment counter) and redo any ongoing GCs after
|
||||
* the JS_TransplantObject function has finished. This ensures that the dead
|
||||
* zones will be cleaned up. See AutoMarkInDeadZone and
|
||||
* AutoMaybeTouchDeadZones for details.
|
||||
*/
|
||||
|
||||
/* Set the maybeAlive flag based on cross-compartment edges. */
|
||||
for (CompartmentsIter c(rt, SkipAtoms); !c.done(); c.next()) {
|
||||
for (JSCompartment::WrapperEnum e(c); !e.empty(); e.popFront()) {
|
||||
const CrossCompartmentKey &key = e.front().key();
|
||||
JSCompartment *dest;
|
||||
switch (key.kind) {
|
||||
case CrossCompartmentKey::ObjectWrapper:
|
||||
case CrossCompartmentKey::DebuggerObject:
|
||||
case CrossCompartmentKey::DebuggerSource:
|
||||
case CrossCompartmentKey::DebuggerEnvironment:
|
||||
dest = static_cast<JSObject *>(key.wrapped)->compartment();
|
||||
break;
|
||||
case CrossCompartmentKey::DebuggerScript:
|
||||
dest = static_cast<JSScript *>(key.wrapped)->compartment();
|
||||
break;
|
||||
default:
|
||||
dest = nullptr;
|
||||
break;
|
||||
}
|
||||
if (dest)
|
||||
dest->maybeAlive = true;
|
||||
Cell *dst = e.front().key().wrapped;
|
||||
dst->tenuredZone()->maybeAlive = true;
|
||||
}
|
||||
}
|
||||
|
||||
@ -3260,9 +3250,9 @@ GCRuntime::beginMarkPhase()
|
||||
* during MarkRuntime.
|
||||
*/
|
||||
|
||||
for (GCCompartmentsIter c(rt); !c.done(); c.next()) {
|
||||
if (!c->maybeAlive && !rt->isAtomsCompartment(c))
|
||||
c->scheduledForDestruction = true;
|
||||
for (GCZonesIter zone(rt); !zone.done(); zone.next()) {
|
||||
if (!zone->maybeAlive && !rt->isAtomsZone(zone))
|
||||
zone->scheduledForDestruction = true;
|
||||
}
|
||||
foundBlackGrayEdges = false;
|
||||
|
||||
@ -4577,8 +4567,8 @@ GCRuntime::resetIncrementalGC(const char *reason)
|
||||
case SWEEP:
|
||||
marker.reset();
|
||||
|
||||
for (CompartmentsIter c(rt, SkipAtoms); !c.done(); c.next())
|
||||
c->scheduledForDestruction = false;
|
||||
for (ZonesIter zone(rt, WithAtoms); !zone.done(); zone.next())
|
||||
zone->scheduledForDestruction = false;
|
||||
|
||||
/* Finish sweeping the current zone group, then abort. */
|
||||
abortSweepAfterCurrentGroup = true;
|
||||
@ -5086,30 +5076,13 @@ GCRuntime::collect(bool incremental, int64_t budget, JSGCInvocationKind gckind,
|
||||
if (poked && shouldCleanUpEverything)
|
||||
JS::PrepareForFullGC(rt);
|
||||
|
||||
/*
|
||||
* This code makes an extra effort to collect compartments that we
|
||||
* thought were dead at the start of the GC. See the large comment in
|
||||
* beginMarkPhase.
|
||||
*/
|
||||
bool repeatForDeadZone = false;
|
||||
if (incremental && incrementalState == NO_INCREMENTAL) {
|
||||
for (CompartmentsIter c(rt, SkipAtoms); !c.done(); c.next()) {
|
||||
if (c->scheduledForDestruction) {
|
||||
incremental = false;
|
||||
repeatForDeadZone = true;
|
||||
reason = JS::gcreason::COMPARTMENT_REVIVED;
|
||||
c->zone()->scheduleGC();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* If we reset an existing GC, we need to start a new one. Also, we
|
||||
* repeat GCs that happen during shutdown (the gcShouldCleanUpEverything
|
||||
* case) until we can be sure that no additional garbage is created
|
||||
* (which typically happens if roots are dropped during finalizers).
|
||||
*/
|
||||
repeat = (poked && shouldCleanUpEverything) || wasReset || repeatForDeadZone;
|
||||
repeat = (poked && shouldCleanUpEverything) || wasReset;
|
||||
} while (repeat);
|
||||
|
||||
if (incrementalState == NO_INCREMENTAL) {
|
||||
@ -5681,6 +5654,34 @@ ArenaLists::containsArena(JSRuntime *rt, ArenaHeader *needle)
|
||||
}
|
||||
|
||||
|
||||
AutoMaybeTouchDeadZones::AutoMaybeTouchDeadZones(JSContext *cx)
|
||||
: runtime(cx->runtime()),
|
||||
markCount(runtime->gc.objectsMarkedInDeadZonesCount()),
|
||||
inIncremental(JS::IsIncrementalGCInProgress(runtime)),
|
||||
manipulatingDeadZones(runtime->gc.isManipulatingDeadZones())
|
||||
{
|
||||
runtime->gc.setManipulatingDeadZones(true);
|
||||
}
|
||||
|
||||
AutoMaybeTouchDeadZones::AutoMaybeTouchDeadZones(JSObject *obj)
|
||||
: runtime(obj->compartment()->runtimeFromMainThread()),
|
||||
markCount(runtime->gc.objectsMarkedInDeadZonesCount()),
|
||||
inIncremental(JS::IsIncrementalGCInProgress(runtime)),
|
||||
manipulatingDeadZones(runtime->gc.isManipulatingDeadZones())
|
||||
{
|
||||
runtime->gc.setManipulatingDeadZones(true);
|
||||
}
|
||||
|
||||
AutoMaybeTouchDeadZones::~AutoMaybeTouchDeadZones()
|
||||
{
|
||||
runtime->gc.setManipulatingDeadZones(manipulatingDeadZones);
|
||||
|
||||
if (inIncremental && runtime->gc.objectsMarkedInDeadZonesCount() != markCount) {
|
||||
JS::PrepareForFullGC(runtime);
|
||||
js::GC(runtime, GC_NORMAL, JS::gcreason::TRANSPLANT);
|
||||
}
|
||||
}
|
||||
|
||||
AutoSuppressGC::AutoSuppressGC(ExclusiveContext *cx)
|
||||
: suppressGC_(cx->perThreadData->suppressGC)
|
||||
{
|
||||
|
@ -16,6 +16,33 @@ namespace js {
|
||||
|
||||
class Shape;
|
||||
|
||||
/*
|
||||
* This auto class should be used around any code that might cause a mark bit to
|
||||
* be set on an object in a dead zone. See AutoMaybeTouchDeadZones
|
||||
* for more details.
|
||||
*/
|
||||
struct AutoMarkInDeadZone
|
||||
{
|
||||
explicit AutoMarkInDeadZone(JS::Zone *zone)
|
||||
: zone(zone),
|
||||
scheduled(zone->scheduledForDestruction)
|
||||
{
|
||||
gc::GCRuntime &gc = zone->runtimeFromMainThread()->gc;
|
||||
if (gc.isManipulatingDeadZones() && zone->scheduledForDestruction) {
|
||||
gc.incObjectsMarkedInDeadZone();
|
||||
zone->scheduledForDestruction = false;
|
||||
}
|
||||
}
|
||||
|
||||
~AutoMarkInDeadZone() {
|
||||
zone->scheduledForDestruction = scheduled;
|
||||
}
|
||||
|
||||
private:
|
||||
JS::Zone *zone;
|
||||
bool scheduled;
|
||||
};
|
||||
|
||||
inline Allocator *
|
||||
ThreadSafeContext::allocator() const
|
||||
{
|
||||
|
@ -2505,6 +2505,9 @@ JSObject::TradeGuts(JSContext *cx, JSObject *a, JSObject *b, TradeGutsReserved &
|
||||
bool
|
||||
JSObject::swap(JSContext *cx, HandleObject a, HandleObject b)
|
||||
{
|
||||
AutoMarkInDeadZone adc1(a->zone());
|
||||
AutoMarkInDeadZone adc2(b->zone());
|
||||
|
||||
// Ensure swap doesn't cause a finalizer to not be run.
|
||||
JS_ASSERT(IsBackgroundFinalized(a->tenuredGetAllocKind()) ==
|
||||
IsBackgroundFinalized(b->tenuredGetAllocKind()));
|
||||
|
@ -44,6 +44,8 @@ Wrapper::New(JSContext *cx, JSObject *obj, JSObject *parent, Wrapper *handler,
|
||||
{
|
||||
JS_ASSERT(parent);
|
||||
|
||||
AutoMarkInDeadZone amd(cx->zone());
|
||||
|
||||
RootedValue priv(cx, ObjectValue(*obj));
|
||||
mozilla::Maybe<WrapperOptions> opts;
|
||||
if (!options) {
|
||||
@ -1041,6 +1043,8 @@ JS_FRIEND_API(bool)
|
||||
js::RecomputeWrappers(JSContext *cx, const CompartmentFilter &sourceFilter,
|
||||
const CompartmentFilter &targetFilter)
|
||||
{
|
||||
AutoMaybeTouchDeadZones agc(cx);
|
||||
|
||||
AutoWrapperVector toRecompute(cx);
|
||||
|
||||
for (CompartmentsIter c(cx->runtime(), SkipAtoms); !c.done(); c.next()) {
|
||||
|
@ -303,6 +303,34 @@ JS_FRIEND_API(bool)
|
||||
RecomputeWrappers(JSContext *cx, const CompartmentFilter &sourceFilter,
|
||||
const CompartmentFilter &targetFilter);
|
||||
|
||||
/*
|
||||
* This auto class should be used around any code, such as brain transplants,
|
||||
* that may touch dead zones. Brain transplants can cause problems
|
||||
* because they operate on all compartments, whether live or dead. A brain
|
||||
* transplant can cause a formerly dead object to be "reanimated" by causing a
|
||||
* read or write barrier to be invoked on it during the transplant. In this way,
|
||||
* a zone becomes a zombie, kept alive by repeatedly consuming
|
||||
* (transplanted) brains.
|
||||
*
|
||||
* To work around this issue, we observe when mark bits are set on objects in
|
||||
* dead zones. If this happens during a brain transplant, we do a full,
|
||||
* non-incremental GC at the end of the brain transplant. This will clean up any
|
||||
* objects that were improperly marked.
|
||||
*/
|
||||
struct JS_FRIEND_API(AutoMaybeTouchDeadZones)
|
||||
{
|
||||
// The version that takes an object just uses it for its runtime.
|
||||
explicit AutoMaybeTouchDeadZones(JSContext *cx);
|
||||
explicit AutoMaybeTouchDeadZones(JSObject *obj);
|
||||
~AutoMaybeTouchDeadZones();
|
||||
|
||||
private:
|
||||
JSRuntime *runtime;
|
||||
unsigned markCount;
|
||||
bool inIncremental;
|
||||
bool manipulatingDeadZones;
|
||||
};
|
||||
|
||||
} /* namespace js */
|
||||
|
||||
#endif /* jswrapper_h */
|
||||
|
@ -2093,7 +2093,7 @@ Debugger::addAllGlobalsAsDebuggees(JSContext *cx, unsigned argc, Value *vp)
|
||||
for (CompartmentsInZoneIter c(zone); !c.done(); c.next()) {
|
||||
if (c == dbg->object->compartment() || c->options().invisibleToDebugger())
|
||||
continue;
|
||||
c->scheduledForDestruction = false;
|
||||
c->zone()->scheduledForDestruction = false;
|
||||
GlobalObject *global = c->maybeGlobal();
|
||||
if (global) {
|
||||
Rooted<GlobalObject*> rg(cx, global);
|
||||
@ -2890,7 +2890,7 @@ Debugger::findAllGlobals(JSContext *cx, unsigned argc, Value *vp)
|
||||
if (c->options().invisibleToDebugger())
|
||||
continue;
|
||||
|
||||
c->scheduledForDestruction = false;
|
||||
c->zone()->scheduledForDestruction = false;
|
||||
|
||||
GlobalObject *global = c->maybeGlobal();
|
||||
|
||||
|
@ -77,7 +77,14 @@ ProxyObject::initHandler(BaseProxyHandler *handler)
|
||||
static void
|
||||
NukeSlot(ProxyObject *proxy, uint32_t slot)
|
||||
{
|
||||
proxy->setReservedSlot(slot, NullValue());
|
||||
Value old = proxy->getSlot(slot);
|
||||
if (old.isMarkable()) {
|
||||
Zone *zone = ZoneOfValue(old);
|
||||
AutoMarkInDeadZone amd(zone);
|
||||
proxy->setReservedSlot(slot, NullValue());
|
||||
} else {
|
||||
proxy->setReservedSlot(slot, NullValue());
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -356,6 +356,9 @@ XPCWrappedNative::GetNewOrUsed(xpcObjectHelper& helper,
|
||||
mozilla::Maybe<JSAutoCompartment> ac;
|
||||
|
||||
if (sciWrapper.GetFlags().WantPreCreate()) {
|
||||
// PreCreate may touch dead compartments.
|
||||
js::AutoMaybeTouchDeadZones agc(parent);
|
||||
|
||||
RootedObject plannedParent(cx, parent);
|
||||
nsresult rv = sciWrapper.GetCallback()->PreCreate(identity, cx,
|
||||
parent, parent.address());
|
||||
@ -1282,6 +1285,9 @@ RescueOrphans(HandleObject obj)
|
||||
return NS_OK; // Global object. We're done.
|
||||
parentObj = js::UncheckedUnwrap(parentObj, /* stopAtOuter = */ false);
|
||||
|
||||
// PreCreate may touch dead compartments.
|
||||
js::AutoMaybeTouchDeadZones agc(parentObj);
|
||||
|
||||
// Recursively fix up orphans on the parent chain.
|
||||
rv = RescueOrphans(parentObj);
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
|
Loading…
Reference in New Issue
Block a user