Reviewers: Michael Starzinger,

Message:
Quick review for this?

Description:
Disable array index dehoisting because of performance regressions on Kraken
imaging-desaturate.

BUG=
TEST=


Please review this at https://chromiumcodereview.appspot.com/10383269/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/flag-definitions.h


Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index bd1f3e242ae8c62160b10e8fecbe60ad3242f776..ccba5118a334a3f727f39e6b348c9081a849557f 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -197,7 +197,7 @@ DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
 DEFINE_bool(use_osr, true, "use on-stack replacement")
 DEFINE_bool(array_bounds_checks_elimination, true,
             "perform array bounds checks elimination")
-DEFINE_bool(array_index_dehoisting, true,
+DEFINE_bool(array_index_dehoisting, false,
             "perform array index dehoisting")

 DEFINE_bool(trace_osr, false, "trace on-stack replacement")


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to