Title: [153375] trunk/Source/_javascript_Core
- Revision
- 153375
- Author
- [email protected]
- Date
- 2013-07-26 11:17:53 -0700 (Fri, 26 Jul 2013)
Log Message
[mips] Fix LLINT build for mips backend
https://bugs.webkit.org/show_bug.cgi?id=119152
Patch by Balazs Kilvady <[email protected]> on 2013-07-26
Reviewed by Oliver Hunt.
* offlineasm/mips.rb:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (153374 => 153375)
--- trunk/Source/_javascript_Core/ChangeLog 2013-07-26 18:07:34 UTC (rev 153374)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-07-26 18:17:53 UTC (rev 153375)
@@ -1,3 +1,12 @@
+2013-07-26 Balazs Kilvady <[email protected]>
+
+ [mips] Fix LLINT build for mips backend
+ https://bugs.webkit.org/show_bug.cgi?id=119152
+
+ Reviewed by Oliver Hunt.
+
+ * offlineasm/mips.rb:
+
2013-07-19 Mark Hahnenberg <[email protected]>
Setting a large numeric property on an object causes it to allocate a huge backing store
Modified: trunk/Source/_javascript_Core/offlineasm/mips.rb (153374 => 153375)
--- trunk/Source/_javascript_Core/offlineasm/mips.rb 2013-07-26 18:07:34 UTC (rev 153374)
+++ trunk/Source/_javascript_Core/offlineasm/mips.rb 2013-07-26 18:17:53 UTC (rev 153375)
@@ -139,7 +139,7 @@
class Immediate
def mipsOperand
- raise "Invalid immediate #{value} at #{codeOriginString}" if value < -0x7fff or value > 0x7fff
+ raise "Invalid immediate #{value} at #{codeOriginString}" if value < -0x7fff or value > 0xffff
"#{value}"
end
end
@@ -378,6 +378,8 @@
else
newList << node
end
+ when /^(addi|subi)/
+ newList << node.riscLowerMalformedImmediatesRecurse(newList, -0x7fff..0x7fff)
else
newList << node
end
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes