Changeset 251894 in webkit


Ignore:
Timestamp:
Oct 31, 2019 4:37:14 PM (5 years ago)
Author:
Tadeu Zagallo
Message:

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

ci2d was renamed to ci2ds and I also missed LowLevelInterpreter32_64.asm

  • llint/LowLevelInterpreter32_64.asm:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r251893 r251894  
     12019-10-31  Tadeu Zagallo  <tzagallo@apple.com>
     2
     3        Unreviewed, fix LowLevelInterpreter32_64.asm after r251886
     4        https://bugs.webkit.org/show_bug.cgi?id=194257
     5
     6        ci2d was renamed to ci2ds and I also missed LowLevelInterpreter32_64.asm
     7
     8        * llint/LowLevelInterpreter32_64.asm:
     9
    1102019-10-31  Tadeu Zagallo  <tzagallo@apple.com>
    211
  • trunk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm

    r251886 r251894  
    10411041        bineq t3, Int32Tag, .slow
    10421042        arithProfile(ArithProfileNumberInt)
    1043         ci2d t1, ft1
     1043        ci2ds t1, ft1
    10441044        jmp .op1NotIntReady
    10451045    .op1NotIntOp2Double:
     
    10581058        bia t3, LowestTag, .slow
    10591059        arithProfile(ArithProfileIntNumber)
    1060         ci2d t0, ft0
     1060        ci2ds t0, ft0
    10611061        fii2d t1, t3, ft1
    10621062        doubleOperation(ft1, ft0)
     
    11071107binaryOpCustomStore(div, OpDiv,
    11081108    macro (int32Tag, left, right, slow, index)
    1109         ci2d left, ft0
    1110         ci2d right, ft1
     1109        ci2ds left, ft0
     1110        ci2ds right, ft1
    11111111        divd ft0, ft1
    11121112        bcd2i ft1, right, .notInt
     
    15721572                loadConstantOrVariable2Reg(size, operand, tag, payload)
    15731573                bineq tag, Int32Tag, .notInt
    1574                 ci2d payload, ft0
     1574                ci2ds payload, ft0
    15751575                jmp .ready
    15761576            .notInt:
     
    17691769        bib t2, LowestTag, .op1NotIntOp2Double
    17701770        bineq t2, Int32Tag, .slow
    1771         ci2d t3, ft1
     1771        ci2ds t3, ft1
    17721772        jmp .op1NotIntReady
    17731773    .op1NotIntOp2Double:
     
    17791779
    17801780    .op2NotInt:
    1781         ci2d t1, ft0
     1781        ci2ds t1, ft0
    17821782        bia t2, LowestTag, .slow
    17831783        fii2d t3, t2, ft1
Note: See TracChangeset for help on using the changeset viewer.