Title: [165213] trunk/Source/_javascript_Core
Revision
165213
Author
[email protected]
Date
2014-03-06 13:56:15 -0800 (Thu, 06 Mar 2014)

Log Message

REGRESSION(r165205): broke the CLOOP build (Requested by smfr on #webkit).
<https://webkit.org/b/129813>

Reviewed by Michael Saboff.

Fixed broken C loop LLINT build.

* llint/LowLevelInterpreter.cpp:
(JSC::CLoop::execute):
* offlineasm/cloop.rb:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (165212 => 165213)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-06 21:55:27 UTC (rev 165212)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-06 21:56:15 UTC (rev 165213)
@@ -1,3 +1,16 @@
+2014-03-06  Mark Lam  <[email protected]>
+
+        REGRESSION(r165205): broke the CLOOP build (Requested by smfr on #webkit).
+        <https://webkit.org/b/129813>
+
+        Reviewed by Michael Saboff.
+
+        Fixed broken C loop LLINT build.
+
+        * llint/LowLevelInterpreter.cpp:
+        (JSC::CLoop::execute):
+        * offlineasm/cloop.rb:
+
 2014-03-03  Oliver Hunt  <[email protected]>
 
         Support caching of custom setters

Modified: trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp (165212 => 165213)


--- trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp	2014-03-06 21:55:27 UTC (rev 165212)
+++ trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp	2014-03-06 21:56:15 UTC (rev 165213)
@@ -325,7 +325,7 @@
     // 2. 32 bit result values will be in the low 32-bit of t0.
     // 3. 64 bit result values will be in t0.
 
-    CLoopRegister t0, t1, t2, t3, t5, sp, cfr, lr, pc;
+    CLoopRegister t0, t1, t2, t3, t5, t7, sp, cfr, lr, pc;
 #if USE(JSVALUE64)
     CLoopRegister pcBase, tagTypeNumber, tagMask;
 #endif

Modified: trunk/Source/_javascript_Core/offlineasm/cloop.rb (165212 => 165213)


--- trunk/Source/_javascript_Core/offlineasm/cloop.rb	2014-03-06 21:55:27 UTC (rev 165212)
+++ trunk/Source/_javascript_Core/offlineasm/cloop.rb	2014-03-06 21:56:15 UTC (rev 165213)
@@ -84,6 +84,8 @@
             "t5"
         when "t6"
             "pcBase"
+        when "t7"
+            "t7"
         when "csr1"
             "tagTypeNumber"
         when "csr2"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to