Changeset 251893 in webkit


Ignore:
Timestamp:
Oct 31, 2019 4:28:27 PM (4 years ago)
Author:
Tadeu Zagallo
Message:

Unreviewed, fix cloop builds after r251886
https://bugs.webkit.org/show_bug.cgi?id=194257

ci2d was renamed to ci2ds, but I missed cloop.rb, arm.rb and mips.rb

  • offlineasm/arm.rb:
  • offlineasm/cloop.rb:
  • offlineasm/mips.rb:
Location:
trunk/Source/JavaScriptCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r251886 r251893  
     12019-10-31  Tadeu Zagallo  <tzagallo@apple.com>
     2
     3        Unreviewed, fix cloop builds after r251886
     4        https://bugs.webkit.org/show_bug.cgi?id=194257
     5
     6        ci2d was renamed to ci2ds, but I missed cloop.rb, arm.rb and mips.rb
     7
     8        * offlineasm/arm.rb:
     9        * offlineasm/cloop.rb:
     10        * offlineasm/mips.rb:
     11
    1122019-10-31  Tadeu Zagallo  <tzagallo@apple.com>
    213
  • trunk/Source/JavaScriptCore/offlineasm/arm.rb

    r245906 r251893  
    469469        when "sqrtd"
    470470            $asm.puts "vsqrt.f64 #{armFlippedOperands(operands)}"
    471         when "ci2d"
     471        when "ci2ds"
    472472            $asm.puts "vmov #{operands[1].armSingle}, #{operands[0].armOperand}"
    473473            $asm.puts "vcvt.f64.s32 #{operands[1].armOperand}, #{operands[1].armSingle}"
  • trunk/Source/JavaScriptCore/offlineasm/cloop.rb

    r250803 r251893  
    686686
    687687        # Convert an int value to its double equivalent, and store it in a double register.
    688         when "ci2d"
    689             $asm.putc "#{operands[1].clLValue(:double)} = (double)#{operands[0].clValue(:int32)}; // ci2d"
     688        when "ci2ds"
     689            $asm.putc "#{operands[1].clLValue(:double)} = (double)#{operands[0].clValue(:int32)}; // ci2ds"
    690690
    691691        when "bdeq"
  • trunk/Source/JavaScriptCore/offlineasm/mips.rb

    r251533 r251893  
    913913        when "sqrtd"
    914914            $asm.puts "sqrt.d #{mipsFlippedOperands(operands)}"
    915         when "ci2d"
     915        when "ci2ds"
    916916            raise "invalid ops of #{self.inspect} at #{codeOriginString}" unless operands[1].is_a? FPRegisterID and operands[0].register?
    917917            $asm.puts "mtc1 #{operands[0].mipsOperand}, #{operands[1].mipsOperand}"
Note: See TracChangeset for help on using the changeset viewer.