One of the things that I've noticed in profiling startup overhead is that, even with the startup cache, we spend about 130ms just loading and decoding scripts from the startup cache on my machine. I think we should be able to do better than that by doing some of that work in the background for scripts that we know we'll need during startup. With this change, we seem to consistently save about 3-5% on non-e10s startup overhead on talos. But there's a lot of room for tuning, and I think we get some considerable improvement with a few ongoing tweeks. Some notes about the approach: - Setting up the off-thread compile is fairly expensive, since we need to create a global object, and a lot of its built-in prototype objects for each compile. So in order for there to be a performance improvement for OMT compiles, the script has to be pretty large. Right now, the tipping point seems to be about 20K. There's currently no easy way to improve the per-compile setup overhead, but we should be able to combine the off-thread compiles for multiple smaller scripts into a single operation without any additional per-script overhead. - The time we spend setting up scripts for OMT compile is almost entirely CPU-bound. That means that we have a chunk of about 20-50ms where we can safely schedule thread-safe IO work during early startup, so if we schedule some of our current synchronous IO operations on background threads during the script cache setup, we basically get them for free, and can probably increase the number of scripts we compile in the background. - I went with an uncompressed mmap of the raw XDR data for a storage format. That currently occupies about 5MB of disk space. Gzipped, it's ~1.2MB, so compressing it might save some startup disk IO, but keeping it uncompressed simplifies a lot of the OMT and even main thread decoding process, but, more importantly: - We currently don't use the startup cache in content processes, for a variety of reasons. However, with this approach, I think we can safely store the cached script data from a content process before we load any untrusted code into it, and then share mmapped startup cache data between all content processes. That should speed up content process startup *a lot*, and very likely save memory, too. And: - If we're especially concerned about saving per-process memory, and we keep the cache data mapped for the lifetime of the JS runtime, I think that with some effort we can probably share the static string data from scripts between content processes, without any copying. Right now, it looks like for the main process, there's about 1.5MB of string-ish data in the XDR dumps. It's probably less for content processes, but if we could save .5MB per process this way, it might make it easier to increase the number of content processes we allow. MozReview-Commit-ID: CVJahyNktKB
668 lines
18 KiB
C++
668 lines
18 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* vim: set ts=8 sts=4 et sw=4 tw=99: */
|
|
/* 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/ScriptPreloader.h"
|
|
#include "ScriptPreloader-inl.h"
|
|
|
|
#include "mozilla/ArrayUtils.h"
|
|
#include "mozilla/ClearOnShutdown.h"
|
|
#include "mozilla/FileUtils.h"
|
|
#include "mozilla/Logging.h"
|
|
#include "mozilla/Services.h"
|
|
#include "mozilla/Unused.h"
|
|
#include "mozilla/dom/ScriptSettings.h"
|
|
|
|
#include "MainThreadUtils.h"
|
|
#include "nsDebug.h"
|
|
#include "nsDirectoryServiceUtils.h"
|
|
#include "nsIFile.h"
|
|
#include "nsIObserverService.h"
|
|
#include "nsJSUtils.h"
|
|
#include "nsProxyRelease.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "nsXULAppAPI.h"
|
|
#include "xpcpublic.h"
|
|
|
|
#define DELAYED_STARTUP_TOPIC "browser-delayed-startup-finished"
|
|
#define CLEANUP_TOPIC "xpcom-shutdown"
|
|
#define SHUTDOWN_TOPIC "quit-application-granted"
|
|
|
|
namespace mozilla {
|
|
namespace {
|
|
static LazyLogModule gLog("ScriptPreloader");
|
|
|
|
#define LOG(level, ...) MOZ_LOG(gLog, LogLevel::level, (__VA_ARGS__))
|
|
}
|
|
|
|
using mozilla::dom::AutoJSAPI;
|
|
using namespace mozilla::loader;
|
|
|
|
nsresult
|
|
ScriptPreloader::CollectReports(nsIHandleReportCallback* aHandleReport,
|
|
nsISupports* aData, bool aAnonymize)
|
|
{
|
|
MOZ_COLLECT_REPORT(
|
|
"explicit/script-preloader/heap/saved-scripts", KIND_HEAP, UNITS_BYTES,
|
|
SizeOfLinkedList(mSavedScripts, MallocSizeOf),
|
|
"Memory used to hold the scripts which have been executed in this "
|
|
"session, and will be written to the startup script cache file.");
|
|
|
|
MOZ_COLLECT_REPORT(
|
|
"explicit/script-preloader/heap/restored-scripts", KIND_HEAP, UNITS_BYTES,
|
|
SizeOfLinkedList(mRestoredScripts, MallocSizeOf),
|
|
"Memory used to hold the scripts which have been restored from the "
|
|
"startup script cache file, but have not been executed in this session.");
|
|
|
|
MOZ_COLLECT_REPORT(
|
|
"explicit/script-preloader/heap/other", KIND_HEAP, UNITS_BYTES,
|
|
ShallowHeapSizeOfIncludingThis(MallocSizeOf),
|
|
"Memory used by the script cache service itself.");
|
|
|
|
MOZ_COLLECT_REPORT(
|
|
"explicit/script-preloader/non-heap/memmapped-cache", KIND_NONHEAP, UNITS_BYTES,
|
|
mCacheData.nonHeapSizeOfExcludingThis(),
|
|
"The memory-mapped startup script cache file.");
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
ScriptPreloader&
|
|
ScriptPreloader::GetSingleton()
|
|
{
|
|
static RefPtr<ScriptPreloader> singleton;
|
|
|
|
if (!singleton) {
|
|
singleton = new ScriptPreloader();
|
|
ClearOnShutdown(&singleton);
|
|
}
|
|
|
|
return *singleton;
|
|
}
|
|
|
|
|
|
namespace {
|
|
|
|
struct MOZ_RAII AutoSafeJSAPI : public AutoJSAPI
|
|
{
|
|
AutoSafeJSAPI() { Init(); }
|
|
};
|
|
|
|
|
|
static void
|
|
TraceOp(JSTracer* trc, void* data)
|
|
{
|
|
auto preloader = static_cast<ScriptPreloader*>(data);
|
|
|
|
preloader->Trace(trc);
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
void
|
|
ScriptPreloader::Trace(JSTracer* trc)
|
|
{
|
|
for (auto script : mSavedScripts) {
|
|
JS::TraceEdge(trc, &script->mScript, "ScriptPreloader::CachedScript.mScript");
|
|
}
|
|
|
|
for (auto script : mRestoredScripts) {
|
|
JS::TraceEdge(trc, &script->mScript, "ScriptPreloader::CachedScript.mScript");
|
|
}
|
|
}
|
|
|
|
|
|
ScriptPreloader::ScriptPreloader()
|
|
: mMonitor("[ScriptPreloader.mMonitor]")
|
|
, mSaveMonitor("[ScriptPreloader.mSaveMonitor]")
|
|
{
|
|
nsCOMPtr<nsIObserverService> obs = services::GetObserverService();
|
|
MOZ_RELEASE_ASSERT(obs);
|
|
obs->AddObserver(this, DELAYED_STARTUP_TOPIC, false);
|
|
obs->AddObserver(this, SHUTDOWN_TOPIC, false);
|
|
obs->AddObserver(this, CLEANUP_TOPIC, false);
|
|
|
|
AutoSafeJSAPI jsapi;
|
|
JS_AddExtraGCRootsTracer(jsapi.cx(), TraceOp, this);
|
|
}
|
|
|
|
void
|
|
ScriptPreloader::ForceWriteCacheFile()
|
|
{
|
|
if (mSaveThread) {
|
|
MonitorAutoLock mal(mSaveMonitor);
|
|
|
|
// Unblock the save thread, so it can start saving before we get to
|
|
// XPCOM shutdown.
|
|
mal.Notify();
|
|
}
|
|
}
|
|
|
|
void
|
|
ScriptPreloader::Cleanup()
|
|
{
|
|
if (mSaveThread) {
|
|
MonitorAutoLock mal(mSaveMonitor);
|
|
|
|
while (!mSaveComplete && mSaveThread) {
|
|
mal.Wait();
|
|
}
|
|
}
|
|
|
|
mSavedScripts.clear();
|
|
mRestoredScripts.clear();
|
|
|
|
AutoSafeJSAPI jsapi;
|
|
JS_RemoveExtraGCRootsTracer(jsapi.cx(), TraceOp, this);
|
|
|
|
UnregisterWeakMemoryReporter(this);
|
|
}
|
|
|
|
|
|
nsresult
|
|
ScriptPreloader::Observe(nsISupports* subject, const char* topic, const char16_t* data)
|
|
{
|
|
if (!strcmp(topic, DELAYED_STARTUP_TOPIC)) {
|
|
nsCOMPtr<nsIObserverService> obs = services::GetObserverService();
|
|
obs->RemoveObserver(this, DELAYED_STARTUP_TOPIC);
|
|
|
|
mStartupFinished = true;
|
|
|
|
if (XRE_IsParentProcess()) {
|
|
Unused << NS_NewNamedThread("SaveScripts",
|
|
getter_AddRefs(mSaveThread), this);
|
|
}
|
|
} else if (!strcmp(topic, SHUTDOWN_TOPIC)) {
|
|
ForceWriteCacheFile();
|
|
} else if (!strcmp(topic, CLEANUP_TOPIC)) {
|
|
Cleanup();
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
Result<nsCOMPtr<nsIFile>, nsresult>
|
|
ScriptPreloader::GetCacheFile(const char* leafName)
|
|
{
|
|
nsCOMPtr<nsIFile> cacheFile;
|
|
NS_TRY(mProfD->Clone(getter_AddRefs(cacheFile)));
|
|
|
|
NS_TRY(cacheFile->AppendNative(NS_LITERAL_CSTRING("startupCache")));
|
|
Unused << cacheFile->Create(nsIFile::DIRECTORY_TYPE, 0777);
|
|
|
|
NS_TRY(cacheFile->AppendNative(nsDependentCString(leafName)));
|
|
|
|
return Move(cacheFile);
|
|
}
|
|
|
|
static const uint8_t MAGIC[] = "mozXDRcache";
|
|
|
|
Result<Ok, nsresult>
|
|
ScriptPreloader::OpenCache()
|
|
{
|
|
NS_TRY(NS_GetSpecialDirectory("ProfLDS", getter_AddRefs(mProfD)));
|
|
|
|
nsCOMPtr<nsIFile> cacheFile;
|
|
MOZ_TRY_VAR(cacheFile, GetCacheFile("scriptCache.bin"));
|
|
|
|
bool exists;
|
|
NS_TRY(cacheFile->Exists(&exists));
|
|
if (exists) {
|
|
NS_TRY(cacheFile->MoveTo(nullptr, NS_LITERAL_STRING("scriptCache-current.bin")));
|
|
} else {
|
|
NS_TRY(cacheFile->SetLeafName(NS_LITERAL_STRING("scriptCache-current.bin")));
|
|
NS_TRY(cacheFile->Exists(&exists));
|
|
if (!exists) {
|
|
return Err(NS_ERROR_FILE_NOT_FOUND);
|
|
}
|
|
}
|
|
|
|
MOZ_TRY(mCacheData.init(cacheFile));
|
|
|
|
return Ok();
|
|
}
|
|
|
|
// Opens the script cache file for this session, and initializes the script
|
|
// cache based on its contents. See WriteCache for details of the cache file.
|
|
Result<Ok, nsresult>
|
|
ScriptPreloader::InitCache()
|
|
{
|
|
mCacheInitialized = true;
|
|
|
|
RegisterWeakMemoryReporter(this);
|
|
|
|
if (!XRE_IsParentProcess()) {
|
|
return Ok();
|
|
}
|
|
|
|
MOZ_TRY(OpenCache());
|
|
|
|
auto size = mCacheData.size();
|
|
|
|
uint32_t headerSize;
|
|
if (size < sizeof(MAGIC) + sizeof(headerSize)) {
|
|
return Err(NS_ERROR_UNEXPECTED);
|
|
}
|
|
|
|
auto data = mCacheData.get<uint8_t>();
|
|
auto end = data + size;
|
|
|
|
if (memcmp(MAGIC, data.get(), sizeof(MAGIC))) {
|
|
return Err(NS_ERROR_UNEXPECTED);
|
|
}
|
|
data += sizeof(MAGIC);
|
|
|
|
headerSize = LittleEndian::readUint32(data.get());
|
|
data += sizeof(headerSize);
|
|
|
|
if (data + headerSize > end) {
|
|
return Err(NS_ERROR_UNEXPECTED);
|
|
}
|
|
|
|
{
|
|
AutoCleanLinkedList<CachedScript> scripts;
|
|
|
|
Range<uint8_t> header(data, data + headerSize);
|
|
data += headerSize;
|
|
|
|
InputBuffer buf(header);
|
|
|
|
size_t offset = 0;
|
|
while (!buf.finished()) {
|
|
auto script = MakeUnique<CachedScript>(buf);
|
|
|
|
auto scriptData = data + script->mOffset;
|
|
if (scriptData + script->mSize > end) {
|
|
return Err(NS_ERROR_UNEXPECTED);
|
|
}
|
|
|
|
// Make sure offsets match what we'd expect based on script ordering and
|
|
// size, as a basic sanity check.
|
|
if (script->mOffset != offset) {
|
|
return Err(NS_ERROR_UNEXPECTED);
|
|
}
|
|
offset += script->mSize;
|
|
|
|
script->mXDRRange.emplace(scriptData, scriptData + script->mSize);
|
|
|
|
scripts.insertBack(script.release());
|
|
}
|
|
|
|
if (buf.error()) {
|
|
return Err(NS_ERROR_UNEXPECTED);
|
|
}
|
|
|
|
for (auto script : scripts) {
|
|
mScripts.Put(script->mCachePath, script);
|
|
}
|
|
mRestoredScripts = Move(scripts);
|
|
}
|
|
|
|
AutoJSAPI jsapi;
|
|
MOZ_RELEASE_ASSERT(jsapi.Init(xpc::CompilationScope()));
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
auto start = TimeStamp::Now();
|
|
LOG(Info, "Off-thread decoding scripts...\n");
|
|
|
|
JS::CompileOptions options(cx, JSVERSION_LATEST);
|
|
for (auto script : mRestoredScripts) {
|
|
if (script->mSize > MIN_OFFTHREAD_SIZE &&
|
|
JS::CanCompileOffThread(cx, options, script->mSize)) {
|
|
DecodeScriptOffThread(cx, script);
|
|
} else {
|
|
script->mReadyToExecute = true;
|
|
}
|
|
}
|
|
|
|
LOG(Info, "Initialized decoding in %fms\n",
|
|
(TimeStamp::Now() - start).ToMilliseconds());
|
|
|
|
return Ok();
|
|
}
|
|
|
|
static inline Result<Ok, nsresult>
|
|
Write(PRFileDesc* fd, const void* data, int32_t len)
|
|
{
|
|
if (PR_Write(fd, data, len) != len) {
|
|
return Err(NS_ERROR_FAILURE);
|
|
}
|
|
return Ok();
|
|
}
|
|
|
|
void
|
|
ScriptPreloader::PrepareCacheWrite()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
if (mDataPrepared) {
|
|
return;
|
|
}
|
|
|
|
if (mRestoredScripts.isEmpty()) {
|
|
// Check for any new scripts that we need to save. If there aren't
|
|
// any, and there aren't any saved scripts that we need to remove,
|
|
// don't bother writing out a new cache file.
|
|
bool found = false;
|
|
for (auto script : mSavedScripts) {
|
|
if (script->mXDRRange.isNothing()) {
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!found) {
|
|
mSaveComplete = true;
|
|
return;
|
|
}
|
|
}
|
|
|
|
AutoSafeJSAPI jsapi;
|
|
|
|
LinkedList<CachedScript> asyncScripts;
|
|
|
|
for (CachedScript* next = mSavedScripts.getFirst(); next; ) {
|
|
CachedScript* script = next;
|
|
next = script->getNext();
|
|
|
|
if (!script->mSize && !script->XDREncode(jsapi.cx())) {
|
|
script->remove();
|
|
delete script;
|
|
} else {
|
|
script->mSize = script->Range().length();
|
|
|
|
if (script->mSize > MIN_OFFTHREAD_SIZE) {
|
|
script->remove();
|
|
asyncScripts.insertBack(script);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Store async-decoded scripts contiguously, since they're loaded
|
|
// immediately at startup.
|
|
while (CachedScript* s = asyncScripts.popLast()) {
|
|
mSavedScripts.insertFront(s);
|
|
}
|
|
|
|
mDataPrepared = true;
|
|
}
|
|
|
|
// Writes out a script cache file for the scripts accessed during early
|
|
// startup in this session. The cache file is a little-endian binary file with
|
|
// the following format:
|
|
//
|
|
// - A uint32 containing the size of the header block.
|
|
//
|
|
// - A header entry for each file stored in the cache containing:
|
|
// - The URL that the script was originally read from.
|
|
// - Its cache key.
|
|
// - The offset of its XDR data within the XDR data block.
|
|
// - The size of its XDR data in the XDR data block.
|
|
//
|
|
// - A block of XDR data for the encoded scripts, with each script's data at
|
|
// an offset from the start of the block, as specified above.
|
|
Result<Ok, nsresult>
|
|
ScriptPreloader::WriteCache()
|
|
{
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
if (!mDataPrepared && !mSaveComplete) {
|
|
MonitorAutoUnlock mau(mSaveMonitor);
|
|
|
|
NS_DispatchToMainThread(
|
|
NewRunnableMethod(this, &ScriptPreloader::PrepareCacheWrite),
|
|
NS_DISPATCH_SYNC);
|
|
}
|
|
|
|
if (mSaveComplete) {
|
|
// If we don't have anything we need to save, we're done.
|
|
return Ok();
|
|
}
|
|
|
|
nsCOMPtr<nsIFile> cacheFile;
|
|
MOZ_TRY_VAR(cacheFile, GetCacheFile("scriptCache-new.bin"));
|
|
|
|
bool exists;
|
|
NS_TRY(cacheFile->Exists(&exists));
|
|
if (exists) {
|
|
NS_TRY(cacheFile->Remove(false));
|
|
}
|
|
|
|
AutoFDClose fd;
|
|
NS_TRY(cacheFile->OpenNSPRFileDesc(PR_WRONLY | PR_CREATE_FILE, 0644, &fd.rwget()));
|
|
|
|
OutputBuffer buf;
|
|
size_t offset = 0;
|
|
for (auto script : mSavedScripts) {
|
|
script->mOffset = offset;
|
|
script->Code(buf);
|
|
|
|
offset += script->mSize;
|
|
}
|
|
|
|
uint8_t headerSize[4];
|
|
LittleEndian::writeUint32(headerSize, buf.cursor());
|
|
|
|
MOZ_TRY(Write(fd, MAGIC, sizeof(MAGIC)));
|
|
MOZ_TRY(Write(fd, headerSize, sizeof(headerSize)));
|
|
MOZ_TRY(Write(fd, buf.Get(), buf.cursor()));
|
|
|
|
for (auto script : mSavedScripts) {
|
|
MOZ_TRY(Write(fd, script->Range().begin().get(), script->mSize));
|
|
script->mXDRData.reset();
|
|
}
|
|
|
|
NS_TRY(cacheFile->MoveTo(nullptr, NS_LITERAL_STRING("scriptCache.bin")));
|
|
|
|
return Ok();
|
|
}
|
|
|
|
// Runs in the mSaveThread thread, and writes out the cache file for the next
|
|
// session after a reasonable delay.
|
|
nsresult
|
|
ScriptPreloader::Run()
|
|
{
|
|
MonitorAutoLock mal(mSaveMonitor);
|
|
|
|
// Ideally wait about 10 seconds before saving, to avoid unnecessary IO
|
|
// during early startup.
|
|
mal.Wait(10000);
|
|
|
|
Unused << WriteCache();
|
|
|
|
mSaveComplete = true;
|
|
NS_ReleaseOnMainThread(mSaveThread.forget());
|
|
|
|
mal.NotifyAll();
|
|
return NS_OK;
|
|
}
|
|
|
|
/* static */ ScriptPreloader::CachedScript*
|
|
ScriptPreloader::FindScript(LinkedList<CachedScript>& scripts, const nsCString& cachePath)
|
|
{
|
|
for (auto script : scripts) {
|
|
if (script->mCachePath == cachePath) {
|
|
return script;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void
|
|
ScriptPreloader::NoteScript(const nsCString& url, const nsCString& cachePath,
|
|
JSScript* script)
|
|
{
|
|
if (mStartupFinished || !mCacheInitialized) {
|
|
return;
|
|
}
|
|
// Don't bother trying to cache any URLs with cache-busting query
|
|
// parameters.
|
|
if (cachePath.FindChar('?') >= 0) {
|
|
return;
|
|
}
|
|
|
|
bool exists = mScripts.Get(cachePath);
|
|
|
|
CachedScript* restored = nullptr;
|
|
if (exists) {
|
|
restored = FindScript(mRestoredScripts, cachePath);
|
|
}
|
|
|
|
if (restored) {
|
|
restored->remove();
|
|
mSavedScripts.insertBack(restored);
|
|
|
|
MOZ_ASSERT(script);
|
|
restored->mScript = script;
|
|
restored->mReadyToExecute = true;
|
|
} else if (!exists) {
|
|
auto cachedScript = new CachedScript(url, cachePath, script);
|
|
mSavedScripts.insertBack(cachedScript);
|
|
mScripts.Put(cachePath, cachedScript);
|
|
}
|
|
}
|
|
|
|
JSScript*
|
|
ScriptPreloader::GetCachedScript(JSContext* cx, const nsCString& path)
|
|
{
|
|
auto script = mScripts.Get(path);
|
|
if (script) {
|
|
return WaitForCachedScript(cx, script);
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
JSScript*
|
|
ScriptPreloader::WaitForCachedScript(JSContext* cx, CachedScript* script)
|
|
{
|
|
if (!script->mReadyToExecute) {
|
|
LOG(Info, "Must wait for async script load: %s\n", script->mURL.get());
|
|
auto start = TimeStamp::Now();
|
|
|
|
MonitorAutoLock mal(mMonitor);
|
|
|
|
if (!script->mReadyToExecute && script->mSize < MAX_MAINTHREAD_DECODE_SIZE) {
|
|
LOG(Info, "Script is small enough to recompile on main thread\n");
|
|
|
|
script->mReadyToExecute = true;
|
|
} else {
|
|
while (!script->mReadyToExecute) {
|
|
mal.Wait();
|
|
}
|
|
}
|
|
|
|
LOG(Info, "Waited %fms\n", (TimeStamp::Now() - start).ToMilliseconds());
|
|
}
|
|
|
|
return script->GetJSScript(cx);
|
|
}
|
|
|
|
|
|
void
|
|
ScriptPreloader::DecodeScriptOffThread(JSContext* cx, CachedScript* script)
|
|
{
|
|
JS::CompileOptions options(cx, JSVERSION_LATEST);
|
|
|
|
options.setNoScriptRval(true)
|
|
.setFileAndLine(script->mURL.get(), 1);
|
|
|
|
if (!JS::DecodeOffThreadScript(cx, options, script->Range(),
|
|
OffThreadDecodeCallback,
|
|
static_cast<void*>(script))) {
|
|
script->mReadyToExecute = true;
|
|
}
|
|
}
|
|
|
|
void
|
|
ScriptPreloader::CancelOffThreadParse(void* token)
|
|
{
|
|
AutoSafeJSAPI jsapi;
|
|
JS::CancelOffThreadScriptDecoder(jsapi.cx(), token);
|
|
}
|
|
|
|
/* static */ void
|
|
ScriptPreloader::OffThreadDecodeCallback(void* token, void* context)
|
|
{
|
|
auto script = static_cast<CachedScript*>(context);
|
|
|
|
MonitorAutoLock mal(GetSingleton().mMonitor);
|
|
|
|
if (script->mReadyToExecute) {
|
|
// We've already executed this script on the main thread, and opted to
|
|
// main thread decode it rather waiting for off-thread decoding to
|
|
// finish. So just cancel the off-thread parse rather than completing
|
|
// it.
|
|
NS_DispatchToMainThread(
|
|
NewRunnableMethod<void*>(&GetSingleton(),
|
|
&ScriptPreloader::CancelOffThreadParse,
|
|
token));
|
|
return;
|
|
}
|
|
|
|
script->mToken = token;
|
|
script->mReadyToExecute = true;
|
|
|
|
mal.NotifyAll();
|
|
}
|
|
|
|
ScriptPreloader::CachedScript::CachedScript(InputBuffer& buf)
|
|
{
|
|
Code(buf);
|
|
}
|
|
|
|
bool
|
|
ScriptPreloader::CachedScript::XDREncode(JSContext* cx)
|
|
{
|
|
JSAutoCompartment ac(cx, mScript);
|
|
JS::RootedScript jsscript(cx, mScript);
|
|
|
|
mXDRData.emplace();
|
|
|
|
JS::TranscodeResult code = JS::EncodeScript(cx, Data(), jsscript);
|
|
if (code == JS::TranscodeResult_Ok) {
|
|
mXDRRange.emplace(Data().begin(), Data().length());
|
|
return true;
|
|
}
|
|
JS_ClearPendingException(cx);
|
|
return false;
|
|
}
|
|
|
|
JSScript*
|
|
ScriptPreloader::CachedScript::GetJSScript(JSContext* cx)
|
|
{
|
|
MOZ_ASSERT(mReadyToExecute);
|
|
if (mScript) {
|
|
return mScript;
|
|
}
|
|
|
|
// If we have no token at this point, the script was too small to decode
|
|
// off-thread, or it was needed before the off-thread compilation was
|
|
// finished, and is small enough to decode on the main thread rather than
|
|
// wait for the off-thread decoding to finish. In either case, we decode
|
|
// it synchronously the first time it's needed.
|
|
if (!mToken) {
|
|
MOZ_ASSERT(mXDRRange.isSome());
|
|
|
|
JS::RootedScript script(cx);
|
|
if (JS::DecodeScript(cx, Range(), &script)) {
|
|
mScript = script;
|
|
}
|
|
|
|
return mScript;
|
|
}
|
|
|
|
mScript = JS::FinishOffThreadScriptDecoder(cx, mToken);
|
|
mToken = nullptr;
|
|
return mScript;
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS(ScriptPreloader, nsIObserver, nsIRunnable, nsIMemoryReporter)
|
|
|
|
#undef LOG
|
|
|
|
} // namespace mozilla
|