Revision: 11452
Author:   [email protected]
Date:     Thu Apr 26 05:07:59 2012
Log:      Merged r11447 into 3.8 branch.

Add missing literal pool guards.

BUG=V8:2095

[email protected]

Review URL: https://chromiumcodereview.appspot.com/10239004
http://code.google.com/p/v8/source/detail?r=11452

Modified:
 /branches/3.8/src/arm/full-codegen-arm.cc
 /branches/3.8/src/version.cc

=======================================
--- /branches/3.8/src/arm/full-codegen-arm.cc   Thu Jan 19 07:36:35 2012
+++ /branches/3.8/src/arm/full-codegen-arm.cc   Thu Apr 26 05:07:59 2012
@@ -69,6 +69,7 @@
   // the inlined smi code.
   void EmitJumpIfNotSmi(Register reg, Label* target) {
     ASSERT(!patch_site_.is_bound() && !info_emitted_);
+    Assembler::BlockConstPoolScope block_const_pool(masm_);
     __ bind(&patch_site_);
     __ cmp(reg, Operand(reg));
// Don't use b(al, ...) as that might emit the constant pool right after the
@@ -81,6 +82,7 @@
   // the inlined smi code.
   void EmitJumpIfSmi(Register reg, Label* target) {
     ASSERT(!patch_site_.is_bound() && !info_emitted_);
+    Assembler::BlockConstPoolScope block_const_pool(masm_);
     __ bind(&patch_site_);
     __ cmp(reg, Operand(reg));
     __ b(ne, target);  // Never taken before patched.
=======================================
--- /branches/3.8/src/version.cc        Thu Apr 12 05:49:58 2012
+++ /branches/3.8/src/version.cc        Thu Apr 26 05:07:59 2012
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     8
 #define BUILD_NUMBER      9
-#define PATCH_LEVEL       19
+#define PATCH_LEVEL       20
 // 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