Title: [161238] branches/jsCStack/Source/_javascript_Core
Revision
161238
Author
[email protected]
Date
2014-01-02 15:58:16 -0800 (Thu, 02 Jan 2014)

Log Message

Addressed review comments in https://bugs.webkit.org/show_bug.cgi?id=126393#c5.
Reviewed by Michael Saboff.

* offlineasm/cloop.rb:

Modified Paths

Diff

Modified: branches/jsCStack/Source/_javascript_Core/ChangeLog (161237 => 161238)


--- branches/jsCStack/Source/_javascript_Core/ChangeLog	2014-01-02 23:50:20 UTC (rev 161237)
+++ branches/jsCStack/Source/_javascript_Core/ChangeLog	2014-01-02 23:58:16 UTC (rev 161238)
@@ -1,3 +1,10 @@
+2014-01-02  Mark Lam  <[email protected]>
+
+        Addressed review comments in https://bugs.webkit.org/show_bug.cgi?id=126393#c5.
+        Reviewed by Michael Saboff.
+
+        * offlineasm/cloop.rb:
+
 2014-01-02  Filip Pizlo  <[email protected]>
 
         Address review comments in https://bugs.webkit.org/show_bug.cgi?id=126409#c3
@@ -48,7 +55,7 @@
         CStack: Get the C Loop LLINT to build again.
         https://bugs.webkit.org/show_bug.cgi?id=126393.
 
-        Not yet reviewed.
+        Reviewed by Michael Saboff.
 
         * jit/JITCode.cpp:
         (JSC::DirectJITCode::addressForCall):

Modified: branches/jsCStack/Source/_javascript_Core/offlineasm/cloop.rb (161237 => 161238)


--- branches/jsCStack/Source/_javascript_Core/offlineasm/cloop.rb	2014-01-02 23:50:20 UTC (rev 161237)
+++ branches/jsCStack/Source/_javascript_Core/offlineasm/cloop.rb	2014-01-02 23:58:16 UTC (rev 161238)
@@ -70,23 +70,14 @@
         case name
         # The cloop is modelled on the ARM implementation. Hence, the a0-a3
         # registers are aliases for r0-r3 i.e. t0-t3 in our case.
-        when "a0"
+        when "t0", "a0"
             "t0"
-        when "a1"
+        when "t1", "a1"
             "t1"
-        when "a2"
+        when "t2", "a2"
             "t2"
-        when "a3"
+        when "t3", "a3"
             "t3"
-
-        when "t0"
-            "t0"
-        when "t1"
-            "t1"
-        when "t2"
-            "t2"
-        when "t3"
-            "t3"
         when "t4"
             "rPC"
         when "t5"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to