[Webkit-unassigned] [Bug 120007] [sh4] ASSERTION FAILED in JIT

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Aug 22 01:11:52 PDT 2013


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





--- Comment #5 from yannick.poirier at inverto.tv  2013-08-22 01:11:20 PST ---
revision 154379:
JSC_useDFGJIT=true I've got 2 asserts

ASSERTION FAILED: callee != callLinkInfo->callee.get()
ASSERTION FAILED: isUndefinedOrNull()

JSC_useDFGJIT=false I've got 1 assert
ASSERTION FAILED: isUndefinedOrNull()

revision 153781:
DFG_JIT was not enabled, Only 1 assert
ASSERTION FAILED: isUndefinedOrNull()

I cannot easily come back prior r153116, I don't have a merge around this revision. I cannot test QtTestBrowser on my sh4 platform as we don't support Qt environment. 

After the ASSERTION FAILED: isUndefinedOrNull(), it crashes.
For now to avoid the crash I added these 2 lines in ExeceptionHandler.cpp:87

JSString* errorDescriptionForValue(ExecState* exec, JSValue v)
{
    VM& vm = exec->vm();
    if(v.isEmpty())
        return vm.smallStrings.emptyString();
}

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