Revision: 10515 Author: [email protected] Date: Thu Jan 26 08:03:10 2012 Log: 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/ Review URL: http://codereview.chromium.org/9169089 http://code.google.com/p/v8/source/detail?r=10515 Modified: /branches/3.8/src/deoptimizer.h /branches/3.8/src/version.cc ======================================= --- /branches/3.8/src/deoptimizer.h Wed Jan 25 23:37:54 2012 +++ /branches/3.8/src/deoptimizer.h Thu Jan 26 08:03:10 2012 @@ -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, ======================================= --- /branches/3.8/src/version.cc Wed Jan 25 23:37:54 2012 +++ /branches/3.8/src/version.cc Thu Jan 26 08:03:10 2012 @@ -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
