335c0bc610
Spidermonkey is Mozilla's JavaScript engine written in C and C++. It is used in various Mozilla products, including Firefox, and is available under the MPL2. There are 10 patches currently required to properly cross-compile spidermonkey: 1) allow-newer-autoconf-versions - Spidermonkey is hardcoded to use Autoconf 2.13, which is from 1999! The reasoning behind using 2.13 is because newer versions of Autoconf do not work correctly with the custom m4 macros in the source code. However: Because we are building just the Spidermonkey engine instead of the entire Firefox package, newer versions of Autoconf work without issue. See: See: https://bugzilla.mozilla.org/show_bug.cgi?id=104642 for further explanation. 2) allow-building-in-tree - By default, spidermonkey must be configured and built out-of-tree, otherwise the following error occurs: FATAL ERROR PROCESSING MOZBUILD FILE ============================== The error occurred while processing the following file or one of the files it includes: js/src/shell/moz.build The error occurred when validating the result of the execution. The reported error is: The path specified in LOCAL_INCLUDES is not allowed: .. (resolved to js/src) Remove this check, as spidermonkey builds without issue in-tree. 3) allow-unknown-configuration-options - By default, if an unknown parameter is passed to configure, an error is raised. Replace the raise with a pass and continue. Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1379540 4) fix-building-with-musl - The MIPS specific header <sgidefs.h> is not provided by musl. The Linux kernel headers <asm/sgidefs.h> provide the same definitions. 5) add-riscv-support - Submitted upstream: See: https://bugzilla.mozilla.org/show_bug.cgi?id=1318905 6) copy-headers-on-install-instead-of-symlinking - When installing, instead of linking the headers to the source directory, copy them. 7) ensure-proper-running-on-64-bit-and-32-bit-be-platforms - Taken from the Fedora RPM Applied upstream. Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1488552 8) 0008-save-and-restore-non-volatile-x28-on-ARM64-for-generated-unboxed-obje - Taken from the Fedora RPM: Applied upstream. Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1375074 9) save-x28-before-clobbering-it-in-the-regex-compiler - Taken from the Fedora RPM: Applied upstream. Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1445907 10) always-use-the-equivalent-year-to-determine-the-time-zone - Taken from the Fedora RPM: Applied upstream. Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1415202 Typically, The Firefox source tarball is used to build spidermonkey; however, this has two disadvantages: - It's large. The Firefox source tarball is over 250M. - It requires Autoconf 2.13 Instead, use a tarball with only the Spidermonkey source code in it with a pre-setup configure file. This tarball reduces the size to 31M and prevents the Autoconf 2.13 requirement. Signed-off-by: Adam Duskett <aduskett@greenlots.com> [Thomas: adjust how the libnspr arch dependency is handled] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
101 lines
3.7 KiB
Diff
101 lines
3.7 KiB
Diff
From 903a79a1efff18fc7cc50db09a3fe5d768adc9a8 Mon 19 Mar 2018 09:58:06 +0100
|
|
From: Lars T Hansen <lhansen@mozilla.com>
|
|
Date: Fri, 23 Mar 2018 22:01:33 +0000
|
|
Subject: [PATCH] save x28 before clobbering it in the regex compiler
|
|
|
|
Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1445907
|
|
|
|
Upsream-status: Applied
|
|
See: https://hg.mozilla.org/mozilla-central/rev/903a79a1efff
|
|
|
|
Signed-off-by: Lars T Hansen <lhansen@mozilla.com>
|
|
Signed-off-by: Adam Duskett <aduskett@gmail.com>
|
|
---
|
|
diff --git a/js/src/irregexp/NativeRegExpMacroAssembler.cpp b/js/src/irregexp/NativeRegExpMacroAssembler.cpp
|
|
--- a/js/src/irregexp/NativeRegExpMacroAssembler.cpp
|
|
+++ b/js/src/irregexp/NativeRegExpMacroAssembler.cpp
|
|
@@ -118,17 +118,25 @@ NativeRegExpMacroAssembler::GenerateCode
|
|
|
|
Label return_temp0;
|
|
|
|
// Finalize code - write the entry point code now we know how many
|
|
// registers we need.
|
|
masm.bind(&entry_label_);
|
|
|
|
#ifdef JS_CODEGEN_ARM64
|
|
- // ARM64 communicates stack address via sp, but uses a pseudo-sp for addressing.
|
|
+ // ARM64 communicates stack address via SP, but uses a pseudo-sp (PSP) for
|
|
+ // addressing. The register we use for PSP may however also be used by
|
|
+ // calling code, and it is nonvolatile, so save it. Do this as a special
|
|
+ // case first because the generic save/restore code needs the PSP to be
|
|
+ // initialized already.
|
|
+ MOZ_ASSERT(PseudoStackPointer64.Is(masm.GetStackPointer64()));
|
|
+ masm.Str(PseudoStackPointer64, vixl::MemOperand(sp, -16, vixl::PreIndex));
|
|
+
|
|
+ // Initialize the PSP from the SP.
|
|
masm.initStackPtr();
|
|
#endif
|
|
|
|
// Push non-volatile registers which might be modified by jitcode.
|
|
size_t pushedNonVolatileRegisters = 0;
|
|
for (GeneralRegisterForwardIterator iter(savedNonVolatileRegisters); iter.more(); ++iter) {
|
|
masm.Push(*iter);
|
|
pushedNonVolatileRegisters++;
|
|
@@ -416,17 +424,32 @@ NativeRegExpMacroAssembler::GenerateCode
|
|
masm.pop(temp0);
|
|
masm.movePtr(temp0, StackPointer);
|
|
#endif
|
|
|
|
// Restore non-volatile registers which were saved on entry.
|
|
for (GeneralRegisterBackwardIterator iter(savedNonVolatileRegisters); iter.more(); ++iter)
|
|
masm.Pop(*iter);
|
|
|
|
+#ifdef JS_CODEGEN_ARM64
|
|
+ // Now restore the value that was in the PSP register on entry, and return.
|
|
+
|
|
+ // Obtain the correct SP from the PSP.
|
|
+ masm.Mov(sp, PseudoStackPointer64);
|
|
+
|
|
+ // Restore the saved value of the PSP register, this value is whatever the
|
|
+ // caller had saved in it, not any actual SP value, and it must not be
|
|
+ // overwritten subsequently.
|
|
+ masm.Ldr(PseudoStackPointer64, vixl::MemOperand(sp, 16, vixl::PostIndex));
|
|
+
|
|
+ // Perform a plain Ret(), as abiret() will move SP <- PSP and that is wrong.
|
|
+ masm.Ret(vixl::lr);
|
|
+#else
|
|
masm.abiret();
|
|
+#endif
|
|
|
|
// Backtrack code (branch target for conditional backtracks).
|
|
if (backtrack_label_.used()) {
|
|
masm.bind(&backtrack_label_);
|
|
Backtrack();
|
|
}
|
|
|
|
// Backtrack stack overflow code.
|
|
diff --git a/js/src/jit-test/tests/regexp/bug1445907.js b/js/src/jit-test/tests/regexp/bug1445907.js
|
|
new file mode 100644
|
|
--- /dev/null
|
|
+++ b/js/src/jit-test/tests/regexp/bug1445907.js
|
|
@@ -0,0 +1,15 @@
|
|
+// On ARM64, we failed to save x28 properly when generating code for the regexp
|
|
+// matcher.
|
|
+//
|
|
+// There's wasm and Debugger code here because the combination forces the use of
|
|
+// x28 and exposes the bug when running on the simulator.
|
|
+
|
|
+if (!wasmIsSupported())
|
|
+ quit();
|
|
+
|
|
+var g = newGlobal('');
|
|
+var dbg = new Debugger(g);
|
|
+g.eval(`var m = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary('(module (func (export "test")))')))`);
|
|
+var re = /./;
|
|
+dbg.onEnterFrame = function(frame) { re.exec("x") };
|
|
+result = g.eval("m.exports.test()");
|
|
|
|
--
|
|
2.23.0
|
|
|