Changeset 252021 in webkit for trunk/Source/JavaScriptCore/offlineasm/mips.rb
- Timestamp:
- Nov 4, 2019, 3:47:07 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/mips.rb
r252015 r252021 528 528 when /^(addi|subi)/ 529 529 newList << node.riscLowerMalformedImmediatesRecurse(newList, -0x7fff..0x7fff) 530 when "andi", "andp", "ori", "orp", " orh", "xori", "xorp"530 when "andi", "andp", "ori", "orp", "xori", "xorp" 531 531 newList << node.riscLowerMalformedImmediatesRecurse(newList, 0..0xffff) 532 532 else … … 861 861 when "andi", "andp" 862 862 emitMIPSCompact("and", "and", operands) 863 when "ori", "orp" , "orh"863 when "ori", "orp" 864 864 emitMIPSCompact("or", "orr", operands) 865 865 when "oris"
Note:
See TracChangeset
for help on using the changeset viewer.