[Webkit-unassigned] [Bug 104270] disabling JIT should disable also the YARR JIT

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Dec 17 09:02:49 PST 2012


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





--- Comment #1 from Dan Horák <dan at danny.cz>  2012-12-17 09:05:06 PST ---
I think the problem is in the snippet from WTF/wtf/Platform.h (below), LLINT_C_LOOP is enabled on eg. s390x (where JIT is explicitly disabled) which leads to YARR also being enabled. I can YARR only x86/x86_64, MIPS, SH4 and ARM support in the YARR code.

...
/* Yet Another Regex Runtime - turned on by default for JIT enabled ports. */
#if !defined(ENABLE_YARR_JIT) && (ENABLE(JIT) || ENABLE(LLINT_C_LOOP)) && !PLATFORM(CHROMIUM) && !(OS(QNX) && PLATFORM(QT))
#define ENABLE_YARR_JIT 1

/* Setting this flag compares JIT results with interpreter results. */
#define ENABLE_YARR_JIT_DEBUG 0
#endif
...

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