[Webkit-unassigned] [Bug 91052] JSC: LLInt should auto-generate our cross-platform C++ interpreter

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Aug 16 14:27:47 PDT 2012


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





--- Comment #18 from Geoffrey Garen <ggaren at apple.com>  2012-08-16 14:28:19 PST ---
Here's a specific suggestion for making this more readable. Instead of:

    r4.i = *CAST<intptr_t*>(r0.i8p);                           //   next<a5> = result<a3>.ptr;
    *CAST<intptr_t*>(r1.i8p + 1680) = r4.i;                    //   globalData<a4>.MySizeClass.FirstFreeCell = next<a5>;

How about:

    loadp(r4, address(r0));
    storei(address(r1, 1680), r4);

-- 
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