Title: [134383] trunk/Source/_javascript_Core
Revision
134383
Author
[email protected]
Date
2012-11-13 00:53:09 -0800 (Tue, 13 Nov 2012)

Log Message

Fix the ARM traditional build after r134332
https://bugs.webkit.org/show_bug.cgi?id=102044

Patch by Peter Gal <[email protected]> on 2012-11-13
Reviewed by Zoltan Herczeg.

Added missing methods for the MacroAssemblerARM, based on the MacroAssemblerARMv7.

* assembler/MacroAssemblerARM.h:
(JSC::MacroAssemblerARM::canJumpReplacePatchableBranchPtrWithPatch):
(MacroAssemblerARM):
(JSC::MacroAssemblerARM::startOfPatchableBranchPtrWithPatch):
(JSC::MacroAssemblerARM::revertJumpReplacementToPatchableBranchPtrWithPatch):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (134382 => 134383)


--- trunk/Source/_javascript_Core/ChangeLog	2012-11-13 08:48:42 UTC (rev 134382)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-11-13 08:53:09 UTC (rev 134383)
@@ -1,3 +1,18 @@
+2012-11-13  Peter Gal  <[email protected]>
+
+        Fix the ARM traditional build after r134332
+        https://bugs.webkit.org/show_bug.cgi?id=102044
+
+        Reviewed by Zoltan Herczeg.
+
+        Added missing methods for the MacroAssemblerARM, based on the MacroAssemblerARMv7.
+
+        * assembler/MacroAssemblerARM.h:
+        (JSC::MacroAssemblerARM::canJumpReplacePatchableBranchPtrWithPatch):
+        (MacroAssemblerARM):
+        (JSC::MacroAssemblerARM::startOfPatchableBranchPtrWithPatch):
+        (JSC::MacroAssemblerARM::revertJumpReplacementToPatchableBranchPtrWithPatch):
+
 2012-11-12  Filip Pizlo  <[email protected]>
 
         op_get_callee should have value profiling

Modified: trunk/Source/_javascript_Core/assembler/MacroAssemblerARM.h (134382 => 134383)


--- trunk/Source/_javascript_Core/assembler/MacroAssemblerARM.h	2012-11-13 08:48:42 UTC (rev 134382)
+++ trunk/Source/_javascript_Core/assembler/MacroAssemblerARM.h	2012-11-13 08:53:09 UTC (rev 134383)
@@ -1266,6 +1266,18 @@
         return 0;
     }
 
+    static bool canJumpReplacePatchableBranchPtrWithPatch() { return false; }
+
+    static CodeLocationLabel startOfPatchableBranchPtrWithPatch(CodeLocationDataLabelPtr label)
+    {
+        UNREACHABLE_FOR_PLATFORM();
+    }
+
+    static void revertJumpReplacementToPatchableBranchPtrWithPatch(CodeLocationLabel instructionStart, Address, void* initialValue)
+    {
+        UNREACHABLE_FOR_PLATFORM();
+    }
+
 protected:
     ARMAssembler::Condition ARMCondition(RelationalCondition cond)
     {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to