Ignore:
Timestamp:
Mar 8, 2018, 6:16:27 PM (7 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r229354 and r229364.
https://bugs.webkit.org/show_bug.cgi?id=183492

Breaks internal builds (Requested by ryanhaddad on #webkit).

Reverted changesets:

"Prepare LLInt code to support pointer profiling."
https://bugs.webkit.org/show_bug.cgi?id=183387
https://trac.webkit.org/changeset/229354

"Add support for ARM64E."
https://bugs.webkit.org/show_bug.cgi?id=183398
https://trac.webkit.org/changeset/229364

Patch by Commit Queue <[email protected]> on 2018-03-08

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/offlineasm/risc.rb

    r229354 r229447  
    449449def riscLowerMisplacedAddresses(list)
    450450    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
    460454            postInstructions = []
    461455            annotation = node.annotation
Note: See TracChangeset for help on using the changeset viewer.