-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #186 - jdm:smup67, r=asajeffrey
Upgrade to SpiderMonkey 67 <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/mozjs/186) <!-- Reviewable:end -->
- Loading branch information
Showing
13,898 changed files
with
184,643 additions
and
187,527 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9c35dcbaa8999f989f14f1e98a4a40a43f234131 | ||
455c1065dcbe14b73771df2db56aae43a44dfcf8 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/mozjs/build/moz.configure/bindgen.configure b/mozjs/build/moz.configure/bindgen.configure | ||
index 1658c8f93e..f7082ea6d4 100644 | ||
--- a/mozjs/build/moz.configure/bindgen.configure | ||
+++ b/mozjs/build/moz.configure/bindgen.configure | ||
@@ -246,6 +246,9 @@ set_config('MOZ_CLANG_PATH', bindgen_config_paths.clang_path) | ||
@depends(target, target_is_unix, cxx_compiler, bindgen_cflags_android, | ||
bindgen_config_paths.clang_path) | ||
def basic_bindgen_cflags(target, is_unix, compiler_info, android_cflags, clang_path): | ||
+ if not clang_path: | ||
+ return [] | ||
+ | ||
args = [ | ||
'-x', 'c++', '-fno-sized-deallocation', | ||
'-DTRACING=1', '-DIMPL_LIBXUL', '-DMOZILLA_INTERNAL_API', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
This directory contains SpiderMonkey 66. | ||
This directory contains SpiderMonkey 67. | ||
|
||
This release is based on a revision of Mozilla 66: | ||
This release is based on a revision of Mozilla 67: | ||
https://hg.mozilla.org/releases/ | ||
The changes in the patches/ directory were applied. | ||
|
||
MDN hosts the latest SpiderMonkey 66 release notes: | ||
https://developer.mozilla.org/en-US/docs/SpiderMonkey/66 | ||
MDN hosts the latest SpiderMonkey 67 release notes: | ||
https://developer.mozilla.org/en-US/docs/SpiderMonkey/67 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Workaround segfault in clang's mangling code that is tickled when | ||
attempting to mangle the declaration: | ||
std:__ndk1::__find_detail::__find_exactly_one_checked::__matches | ||
in the <tuple> header in the Android NDK. | ||
This codepath is exercised by MozsearchIndexer.cpp (the searchfox | ||
indexer) when indexing on Android. See also | ||
https://bugs.llvm.org/show_bug.cgi?id=40747 | ||
|
||
diff --git a/clang/lib/AST/ItaniumMangle.cpp b/clang/lib/AST/ItaniumMangle.cpp | ||
index 2dc04f2f3d8..054fc27003d 100644 | ||
--- a/clang/lib/AST/ItaniumMangle.cpp | ||
+++ b/clang/lib/AST/ItaniumMangle.cpp | ||
@@ -3495,16 +3495,21 @@ void CXXNameMangler::mangleExpression(const Expr *E, unsigned Arity) { | ||
// ::= <expr-primary> | ||
// <expr-primary> ::= L <type> <value number> E # integer literal | ||
// ::= L <type <value float> E # floating literal | ||
// ::= L <mangled-name> E # external name | ||
// ::= fpT # 'this' expression | ||
QualType ImplicitlyConvertedToType; | ||
|
||
recurse: | ||
+ if (!E) { | ||
+ Out << "MOZ_WE_HACKED_AROUND_BUG_1500941"; | ||
+ return; | ||
+ } | ||
+ | ||
switch (E->getStmtClass()) { | ||
case Expr::NoStmtClass: | ||
#define ABSTRACT_STMT(Type) | ||
#define EXPR(Type, Base) | ||
#define STMT(Type, Base) \ | ||
case Expr::Type##Class: | ||
#include "clang/AST/StmtNodes.inc" | ||
// fallthrough |
Oops, something went wrong.