diff options
author | Moonchild <moonchild@palemoon.org> | 2020-12-03 13:56:36 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-12-03 13:56:36 +0000 |
commit | 1a21b526928b0c5815aa3910499ac980714fa25b (patch) | |
tree | 4af73d6b72211a61873abfdb63564c7f26f73257 /js/src/jsapi.h | |
parent | 7f619fa9bfe5ff80b2244352c1f830fa3cef8cbc (diff) | |
download | uxp-1a21b526928b0c5815aa3910499ac980714fa25b.tar.gz |
Issue #1624 - Make ion inlining optimizations a pref.
This also adds it to JS_SetGlobalJitCompilerOption()
Diffstat (limited to 'js/src/jsapi.h')
-rw-r--r-- | js/src/jsapi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/src/jsapi.h b/js/src/jsapi.h index f8203ee1fd..1eecdbf749 100644 --- a/js/src/jsapi.h +++ b/js/src/jsapi.h @@ -5905,6 +5905,7 @@ JS_SetOffthreadIonCompilationEnabled(JSContext* cx, bool enabled); Register(ION_GVN_ENABLE, "ion.gvn.enable") \ Register(ION_FORCE_IC, "ion.forceinlineCaches") \ Register(ION_ENABLE, "ion.enable") \ + Register(ION_INLINING, "ion.inlining") \ Register(ION_INTERRUPT_WITHOUT_SIGNAL, "ion.interrupt-without-signals") \ Register(ION_CHECK_RANGE_ANALYSIS, "ion.check-range-analysis") \ Register(BASELINE_ENABLE, "baseline.enable") \ |