Title: [227929] trunk/Source/_javascript_Core
- Revision
- 227929
- Author
- [email protected]
- Date
- 2018-01-31 14:15:55 -0800 (Wed, 31 Jan 2018)
Log Message
Build fix for CLoop after r227874.
https://bugs.webkit.org/show_bug.cgi?id=182155
<rdar://problem/36286266>
Not reviewed.
Just needed support for lea of a LabelReference in cloop.rb (just like those
added for arm64.rb and x86.rb).
* offlineasm/cloop.rb:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (227928 => 227929)
--- trunk/Source/_javascript_Core/ChangeLog 2018-01-31 22:00:16 UTC (rev 227928)
+++ trunk/Source/_javascript_Core/ChangeLog 2018-01-31 22:15:55 UTC (rev 227929)
@@ -1,3 +1,16 @@
+2018-01-31 Mark Lam <[email protected]>
+
+ Build fix for CLoop after r227874.
+ https://bugs.webkit.org/show_bug.cgi?id=182155
+ <rdar://problem/36286266>
+
+ Not reviewed.
+
+ Just needed support for lea of a LabelReference in cloop.rb (just like those
+ added for arm64.rb and x86.rb).
+
+ * offlineasm/cloop.rb:
+
2018-01-31 Keith Miller <[email protected]>
Canonicalize aquiring the JSCell lock.
Modified: trunk/Source/_javascript_Core/offlineasm/cloop.rb (227928 => 227929)
--- trunk/Source/_javascript_Core/offlineasm/cloop.rb 2018-01-31 22:00:16 UTC (rev 227928)
+++ trunk/Source/_javascript_Core/offlineasm/cloop.rb 2018-01-31 22:15:55 UTC (rev 227929)
@@ -306,6 +306,9 @@
def intMemRef
"*CAST<intptr_t*>(&#{cLabel})"
end
+ def cloopEmitLea(destination, type)
+ $asm.putc "#{destination.clValue(:voidPtr)} = CAST<void*>(&#{cLabel});"
+ end
end
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes