[Webkit-unassigned] [Bug 136287] New: Take advantage of 3 parameters or32() calls

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Aug 27 06:24:27 PDT 2014


https://bugs.webkit.org/show_bug.cgi?id=136287

           Summary: Take advantage of 3 parameters or32() calls
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: jbriance at cisco.com


For architectures like arm and mips, it's better to use the following sequence:

    or32(op1, op2, dest);

instead of:

    move(op1, dest);
    or32(op2, dest);

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list