⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 196409 in webkit


Ignore:
Timestamp:
Feb 10, 2016, 5:35:42 PM (11 years ago)
Author:
benjamin@webkit.org
Message:

[JSC] The destination of Sqrt should be Def, not UseDef
https://bugs.webkit.org/show_bug.cgi?id=154086

Reviewed by Geoffrey Garen.

An unfortunate copy-paste: the destination of SqrtDouble and SqrtFloat
was defined as UseDef. As a result, the argument would be interfering
with everything defined prior.

  • b3/air/AirOpcode.opcodes:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r196392 r196409  
     12016-02-10  Benjamin Poulain  <benjamin@webkit.org>
     2
     3        [JSC] The destination of Sqrt should be Def, not UseDef
     4        https://bugs.webkit.org/show_bug.cgi?id=154086
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        An unfortunate copy-paste: the destination of SqrtDouble and SqrtFloat
     9        was defined as UseDef. As a result, the argument would be interfering
     10        with everything defined prior.
     11
     12        * b3/air/AirOpcode.opcodes:
     13
    1142016-02-10  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/JavaScriptCore/b3/air/AirOpcode.opcodes

    r195549 r196409  
    387387    x86: Addr, Tmp
    388388
    389 SqrtDouble U:F:64, UD:F:64
    390     Tmp, Tmp
    391     x86: Addr, Tmp
    392 
    393 SqrtFloat U:F:32, UD:F:32
     389SqrtDouble U:F:64, D:F:64
     390    Tmp, Tmp
     391    x86: Addr, Tmp
     392
     393SqrtFloat U:F:32, D:F:32
    394394    Tmp, Tmp
    395395    x86: Addr, Tmp
Note: See TracChangeset for help on using the changeset viewer.