diff options
author | Moonchild <moonchild@palemoon.org> | 2020-08-06 18:31:36 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-08-06 18:31:36 +0000 |
commit | 9b6252893876995ae4c1f278fc8d1cbdfb72e94d (patch) | |
tree | cf42ccabb78f3abb13e8df6a0512e3a43258f7c2 /js/src/vm/Runtime.cpp | |
parent | c349f04f9501c5035667f8064782d06e298cb52a (diff) | |
download | UXP-9b6252893876995ae4c1f278fc8d1cbdfb72e94d.tar UXP-9b6252893876995ae4c1f278fc8d1cbdfb72e94d.tar.gz UXP-9b6252893876995ae4c1f278fc8d1cbdfb72e94d.tar.lz UXP-9b6252893876995ae4c1f278fc8d1cbdfb72e94d.tar.xz UXP-9b6252893876995ae4c1f278fc8d1cbdfb72e94d.zip |
Issue #618 - Simplify module resolve hook to be a function pointer
This is an ahead-of time port to try and address #1624.
This is based on BZ 1461751 and Jon Coppeard's work in it.
Diffstat (limited to 'js/src/vm/Runtime.cpp')
-rw-r--r-- | js/src/vm/Runtime.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/js/src/vm/Runtime.cpp b/js/src/vm/Runtime.cpp index 284a4f3d7..5e0246b85 100644 --- a/js/src/vm/Runtime.cpp +++ b/js/src/vm/Runtime.cpp @@ -241,8 +241,10 @@ JSRuntime::JSRuntime(JSRuntime* parentRuntime) lastAnimationTime(0), performanceMonitoring(thisFromCtor()), ionLazyLinkListSize_(0), - stackFormat_(parentRuntime ? js::StackFormat::Default - : js::StackFormat::SpiderMonkey) + stackFormat_(parentRuntime ? + js::StackFormat::Default : + js::StackFormat::SpiderMonkey), + moduleResolveHook() { setGCStoreBufferPtr(&gc.storeBuffer); |