Reviewers: Yang,

Description:
Merge r10514 from bleeding_edge to the 3.8 branch.

MIPS: Reverted the number of deopt entries to 4096.

Original code review: http://codereview.chromium.org/9169079/

Please review this at http://codereview.chromium.org/9169089/

SVN Base: http://v8.googlecode.com/svn/branches/3.8/

Affected files:
  M     src/deoptimizer.h
  M     src/version.cc


Index: src/deoptimizer.h
===================================================================
--- src/deoptimizer.h   (revision 10513)
+++ src/deoptimizer.h   (working copy)
@@ -267,7 +267,11 @@
   int ConvertJSFrameIndexToFrameIndex(int jsframe_index);

  private:
+#ifdef V8_TARGET_ARCH_MIPS
+  static const int kNumberOfEntries = 4096;
+#else
   static const int kNumberOfEntries = 8192;
+#endif

   Deoptimizer(Isolate* isolate,
               JSFunction* function,
Index: src/version.cc
===================================================================
--- src/version.cc      (revision 10513)
+++ src/version.cc      (working copy)
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     8
 #define BUILD_NUMBER      9
-#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

Reply via email to