2015-04-22 19:43:02 +03: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 "mozilla/DebuggerOnGCRunnable.h"
|
|
|
|
|
|
|
|
#include "mozilla/dom/ScriptSettings.h"
|
2016-09-14 16:47:32 +03:00
|
|
|
#include "mozilla/CycleCollectedJSContext.h"
|
2015-04-22 19:43:02 +03:00
|
|
|
#include "mozilla/Move.h"
|
2017-06-15 00:25:23 +03:00
|
|
|
#include "mozilla/SystemGroup.h"
|
2015-04-22 19:43:02 +03:00
|
|
|
#include "js/Debug.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2019-02-26 01:14:01 +03:00
|
|
|
/* static */
|
|
|
|
nsresult DebuggerOnGCRunnable::Enqueue(JSContext* aCx,
|
|
|
|
const JS::GCDescription& aDesc) {
|
2016-07-23 20:52:47 +03:00
|
|
|
auto gcEvent = aDesc.toGCEvent(aCx);
|
2015-04-22 19:43:02 +03:00
|
|
|
if (!gcEvent) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DebuggerOnGCRunnable> runOnGC =
|
2018-05-30 22:15:35 +03:00
|
|
|
new DebuggerOnGCRunnable(std::move(gcEvent));
|
2017-06-15 00:25:23 +03:00
|
|
|
if (NS_IsMainThread()) {
|
2017-07-26 11:13:35 +03:00
|
|
|
return SystemGroup::Dispatch(TaskCategory::GarbageCollection,
|
|
|
|
runOnGC.forget());
|
2017-06-15 00:25:23 +03:00
|
|
|
} else {
|
|
|
|
return NS_DispatchToCurrentThread(runOnGC);
|
|
|
|
}
|
2015-04-22 19:43:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DebuggerOnGCRunnable::Run() {
|
|
|
|
AutoJSAPI jsapi;
|
|
|
|
jsapi.Init();
|
2018-05-30 22:15:35 +03:00
|
|
|
if (!JS::dbg::FireOnGarbageCollectionHook(jsapi.cx(), std::move(mGCData))) {
|
2015-04-22 19:43:02 +03:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult DebuggerOnGCRunnable::Cancel() {
|
|
|
|
mGCData = nullptr;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|