Title: [134358] trunk/Source/_javascript_Core
Revision
134358
Author
[email protected]
Date
2012-11-12 21:51:48 -0800 (Mon, 12 Nov 2012)

Log Message

Unreviewed, fix ARMv7 build.

* assembler/MacroAssemblerARMv7.h:
(JSC::MacroAssemblerARMv7::startOfPatchableBranchPtrWithPatch):
(JSC::MacroAssemblerARMv7::revertJumpReplacementToPatchableBranchPtrWithPatch):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (134357 => 134358)


--- trunk/Source/_javascript_Core/ChangeLog	2012-11-13 05:32:59 UTC (rev 134357)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-11-13 05:51:48 UTC (rev 134358)
@@ -1,5 +1,13 @@
 2012-11-12  Filip Pizlo  <[email protected]>
 
+        Unreviewed, fix ARMv7 build.
+
+        * assembler/MacroAssemblerARMv7.h:
+        (JSC::MacroAssemblerARMv7::startOfPatchableBranchPtrWithPatch):
+        (JSC::MacroAssemblerARMv7::revertJumpReplacementToPatchableBranchPtrWithPatch):
+
+2012-11-12  Filip Pizlo  <[email protected]>
+
         Patching of jumps to stubs should use jump replacement rather than branch destination overwrite
         https://bugs.webkit.org/show_bug.cgi?id=101909
 

Modified: trunk/Source/_javascript_Core/assembler/MacroAssemblerARMv7.h (134357 => 134358)


--- trunk/Source/_javascript_Core/assembler/MacroAssemblerARMv7.h	2012-11-13 05:32:59 UTC (rev 134357)
+++ trunk/Source/_javascript_Core/assembler/MacroAssemblerARMv7.h	2012-11-13 05:51:48 UTC (rev 134358)
@@ -1761,12 +1761,13 @@
     
     static bool canJumpReplacePatchableBranchPtrWithPatch() { return false; }
     
-    static CodeLocationLabel startOfPatchableBranchPtrWithPatch(CodeLocationDataLabelPtr label)
+    static CodeLocationLabel startOfPatchableBranchPtrWithPatch(CodeLocationDataLabelPtr)
     {
         UNREACHABLE_FOR_PLATFORM();
+        return CodeLocationLabel();
     }
     
-    static void revertJumpReplacementToPatchableBranchPtrWithPatch(CodeLocationLabel instructionStart, Address, void* initialValue)
+    static void revertJumpReplacementToPatchableBranchPtrWithPatch(CodeLocationLabel, Address, void*)
     {
         UNREACHABLE_FOR_PLATFORM();
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to