Reviewers: titzer,
Description:
Paint the tree green for TF some more.
[email protected]
Please review this at https://codereview.chromium.org/434023003/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+17, -1 lines):
M src/compiler/pipeline.h
M test/mozilla/mozilla.status
M test/test262/test262.status
Index: src/compiler/pipeline.h
diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
index
65ce056083399a077e1ebf818319a3a28bbc9d03..6d69dd055d468038998c234f00420b4227d3ea47
100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -50,7 +50,14 @@ class Pipeline {
Zone* zone() { return info_->zone(); }
Isolate* isolate() { return info_->isolate(); }
- static inline bool SupportedTarget() { return V8_TURBOFAN_TARGET != 0; }
+ static inline bool SupportedTarget() {
+#if V8_TARGET_ARCH_ARM64
+ // TODO(turbofan): The ARM64 port is temporarily disabled.
+ return false;
+#else
+ return V8_TURBOFAN_TARGET != 0;
+#endif
+ }
static inline bool VerifyGraphs() {
#ifdef DEBUG
Index: test/mozilla/mozilla.status
diff --git a/test/mozilla/mozilla.status b/test/mozilla/mozilla.status
index
0c3a32d031d210e02f11058d25bf356bfa2a5416..a90c9f192418d26bd01d7ee7e01b580afb9f2fd2
100644
--- a/test/mozilla/mozilla.status
+++ b/test/mozilla/mozilla.status
@@ -59,6 +59,11 @@
'js1_5/Regress/regress-104077': [PASS, NO_VARIANTS],
'js1_5/Regress/regress-396684': [PASS, NO_VARIANTS],
'js1_5/Regress/regress-80981': [PASS, NO_VARIANTS],
+ 'js1_5/Array/regress-99120-01': [PASS, NO_VARIANTS],
+
+ # TODO(turbofan): Large switch statements crash.
+ 'js1_5/Regress/regress-366601': [PASS, NO_VARIANTS],
+ 'js1_5/Regress/regress-398085-01': [PASS, NO_VARIANTS],
##################### SKIPPED TESTS #####################
Index: test/test262/test262.status
diff --git a/test/test262/test262.status b/test/test262/test262.status
index
0a2dd07f2da9fe99609962e34e9c0fdfe546533d..5f02a66a5d77a4e899882262cd5bdd4b1b010088
100644
--- a/test/test262/test262.status
+++ b/test/test262/test262.status
@@ -31,6 +31,10 @@
'15.5.4.9_CE': [['no_i18n', SKIP]],
+ # TODO(turbofan): Timeouts on TurboFan need investigation.
+ '10.1.1_13': [PASS, NO_VARIANTS],
+ '10.1.1_19_c': [PASS, NO_VARIANTS],
+
# BUG(v8:3455)
'11.2.3_b': [FAIL],
'12.2.3_b': [FAIL],
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.