Changeset 257466 in webkit for trunk/Source/JavaScriptCore/offlineasm/mips.rb
- Timestamp:
- Feb 26, 2020, 6:06:30 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/mips.rb
r254674 r257466 686 686 myList << node 687 687 if node.is_a? Label 688 if node.name =~ /^.*_return_location(?:_(?:wide16|wide32))?$/ 688 # FIXME: [JSC] checkpoint_osr_exit_from_inlined_call_trampoline is a return location 689 # and we should name it properly. 690 # https://bugs.webkit.org/show_bug.cgi?id=208236 691 if node.name =~ /^.*_return_location(?:_(?:wide16|wide32))?$/ or node.name.start_with?("_checkpoint_osr_exit_from_inlined_call_trampoline") 689 692 # We need to have a special case for return location labels because they are always 690 693 # reached from a `ret` instruction. In this case, we need to proper reconfigure `$gp`
Note:
See TracChangeset
for help on using the changeset viewer.