Title: [159653] trunk/Source/_javascript_Core
Revision
159653
Author
msab...@apple.com
Date
2013-11-21 16:31:55 -0800 (Thu, 21 Nov 2013)

Log Message

REGRESSION(159395) Fix branch8(…, AbsoluteAddress, …) in ARM64 MacroAssembler
https://bugs.webkit.org/show_bug.cgi?id=124688

Reviewed by Geoffrey Garen.

Changed handling of the address for the load8() in the branch8(AbsoluteAddress) to be like
the rest of the branchXX(AbsoluteAddress) fucntions.

* assembler/MacroAssemblerARM64.h:
(JSC::MacroAssemblerARM64::branch8):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (159652 => 159653)


--- trunk/Source/_javascript_Core/ChangeLog	2013-11-21 23:55:58 UTC (rev 159652)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-11-22 00:31:55 UTC (rev 159653)
@@ -1,3 +1,16 @@
+2013-11-21  Michael Saboff  <msab...@apple.com>
+
+        REGRESSION(159395) Fix branch8(…, AbsoluteAddress, …) in ARM64 MacroAssembler
+        https://bugs.webkit.org/show_bug.cgi?id=124688
+
+        Reviewed by Geoffrey Garen.
+
+        Changed handling of the address for the load8() in the branch8(AbsoluteAddress) to be like
+        the rest of the branchXX(AbsoluteAddress) fucntions.
+
+        * assembler/MacroAssemblerARM64.h:
+        (JSC::MacroAssemblerARM64::branch8):
+
 2013-11-21  Filip Pizlo  <fpi...@apple.com>
 
         BytecodeGenerator should align the stack according to native conventions

Modified: trunk/Source/_javascript_Core/assembler/MacroAssemblerARM64.h (159652 => 159653)


--- trunk/Source/_javascript_Core/assembler/MacroAssemblerARM64.h	2013-11-21 23:55:58 UTC (rev 159652)
+++ trunk/Source/_javascript_Core/assembler/MacroAssemblerARM64.h	2013-11-22 00:31:55 UTC (rev 159653)
@@ -1641,7 +1641,7 @@
     Jump branch8(RelationalCondition cond, AbsoluteAddress left, TrustedImm32 right)
     {
         ASSERT(!(0xffffff00 & right.m_value));
-        load8(left, getCachedMemoryTempRegisterIDAndInvalidate());
+        load8(left.m_ptr, getCachedDataTempRegisterIDAndInvalidate());
         return branch32(cond, memoryTempRegister, right);
     }
     
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to