Changeset 229447 in webkit for trunk/Source/JavaScriptCore/offlineasm/risc.rb
- Timestamp:
- Mar 8, 2018, 6:16:27 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/risc.rb
r229354 r229447 449 449 def riscLowerMisplacedAddresses(list) 450 450 newList = [] 451 hasBackendSpecificLowering = Instruction.respond_to? "lowerMisplacedAddresses#{$activeBackend}" 452 list.each { 453 | node | 454 if node.is_a? Instruction 455 if hasBackendSpecificLowering 456 wasHandled, newList = Instruction.send("lowerMisplacedAddresses#{$activeBackend}", node, newList) 457 next if wasHandled 458 end 459 451 list.each { 452 | node | 453 if node.is_a? Instruction 460 454 postInstructions = [] 461 455 annotation = node.annotation
Note:
See TracChangeset
for help on using the changeset viewer.