Title: [195290] trunk/Source/_javascript_Core
- Revision
- 195290
- Author
- [email protected]
- Date
- 2016-01-19 09:03:13 -0800 (Tue, 19 Jan 2016)
Log Message
[mips] Logical instructions allow immediates in range 0..0xffff, not 0x7fff
https://bugs.webkit.org/show_bug.cgi?id=152693
Patch by Konstantin Tokarev <[email protected]> on 2016-01-19
Reviewed by Michael Saboff.
* offlineasm/mips.rb:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (195289 => 195290)
--- trunk/Source/_javascript_Core/ChangeLog 2016-01-19 17:00:47 UTC (rev 195289)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-01-19 17:03:13 UTC (rev 195290)
@@ -1,3 +1,12 @@
+2016-01-19 Konstantin Tokarev <[email protected]>
+
+ [mips] Logical instructions allow immediates in range 0..0xffff, not 0x7fff
+ https://bugs.webkit.org/show_bug.cgi?id=152693
+
+ Reviewed by Michael Saboff.
+
+ * offlineasm/mips.rb:
+
2016-01-18 Saam barati <[email protected]>
assertions in BytecodeUseDef.h about opcode length are off by one
Modified: trunk/Source/_javascript_Core/offlineasm/mips.rb (195289 => 195290)
--- trunk/Source/_javascript_Core/offlineasm/mips.rb 2016-01-19 17:00:47 UTC (rev 195289)
+++ trunk/Source/_javascript_Core/offlineasm/mips.rb 2016-01-19 17:03:13 UTC (rev 195290)
@@ -525,7 +525,7 @@
when /^(addi|subi)/
newList << node.riscLowerMalformedImmediatesRecurse(newList, -0x7fff..0x7fff)
when "andi", "andp", "ori", "orp", "xori", "xorp"
- newList << node.riscLowerMalformedImmediatesRecurse(newList, 0..0x7fff)
+ newList << node.riscLowerMalformedImmediatesRecurse(newList, 0..0xffff)
else
newList << node
end
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes