Changeset 195473 in webkit


Ignore:
Timestamp:
Jan 22, 2016 2:12:59 PM (8 years ago)
Author:
sbarati@apple.com
Message:

op_profile_type 32-bit LLInt implementation has a bug
https://bugs.webkit.org/show_bug.cgi?id=153368

Reviewed by Michael Saboff.

r189293 changed which registers were used, specifically
using t5 instead of t4. That change forgot to replace
t4 with t5 in one specific instance.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r195466 r195473  
     12016-01-22  Saam barati  <sbarati@apple.com>
     2
     3        op_profile_type 32-bit LLInt implementation has a bug
     4        https://bugs.webkit.org/show_bug.cgi?id=153368
     5
     6        Reviewed by Michael Saboff.
     7
     8        r189293 changed which registers were used, specifically
     9        using t5 instead of t4. That change forgot to replace
     10        t4 with t5 in one specific instance.
     11
     12        * llint/LowLevelInterpreter32_64.asm:
     13
    1142016-01-22  Filip Pizlo  <fpizlo@apple.com>
    215
  • trunk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm

    r194863 r195473  
    24022402    loadConstantOrVariable(t2, t5, t0)
    24032403
    2404     bieq t4, EmptyValueTag, .opProfileTypeDone
     2404    bieq t5, EmptyValueTag, .opProfileTypeDone
    24052405
    24062406    # t2 is holding the pointer to the current log entry.
Note: See TracChangeset for help on using the changeset viewer.