[Webkit-unassigned] [Bug 132683] [Win] Crash when enabling DFG JIT.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 8 14:02:41 PDT 2014


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





--- Comment #4 from Geoffrey Garen <ggaren at apple.com>  2014-05-08 14:03:02 PST ---
Answering my own question, a RegisterID on x86 is an enumerated constant:

namespace X86Registers {
    typedef enum {
        eax,
        ecx,
        edx,
        ebx,
        esp,
        ebp,
        esi,
        edi,

#if CPU(X86_64)
        r8,
        r9,
        r10,
        r11,
        r12,
        r13,
        r14,
        r15,
#endif
    } RegisterID;

Can you test an enum? Do enumerated constants actually alias to void*?

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