Reviewers: Michael Achenbach,
Description:
Version 3.27.8.1 (merged r21392)
Disable ArrayShift hydrogen support
BUG=chromium:374838
LOG=N
[email protected]
Please review this at https://codereview.chromium.org/293013004/
SVN Base: https://v8.googlecode.com/svn/trunk
Affected files (+5, -1 lines):
M src/hydrogen.cc
M src/version.cc
Index: src/hydrogen.cc
diff --git a/src/hydrogen.cc b/src/hydrogen.cc
index
afd9416567bac14fc23b4a47f165cc78021b6433..d997af27e9d67d00780b8289a2b4973e89c14cb4
100644
--- a/src/hydrogen.cc
+++ b/src/hydrogen.cc
@@ -7934,6 +7934,10 @@ bool
HOptimizedGraphBuilder::TryInlineBuiltinMethodCall(
return true;
}
case kArrayShift: {
+ // Something in here seems to be causing crbug.com/374838.
+ // TODO(bmeurer): Investigate the problem and re-enable this code.
+ return false;
+
if (receiver_map.is_null()) return false;
if (receiver_map->instance_type() != JS_ARRAY_TYPE) return false;
ElementsKind kind = receiver_map->elements_kind();
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index
6a4223a638c0105f4c55a9e87523286f87c87ba2..835f6b62b6647869b4cb0178cde060f12ade0565
100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 27
#define BUILD_NUMBER 8
-#define PATCH_LEVEL 0
+#define PATCH_LEVEL 1
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
--
--
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.