[Webkit-unassigned] [Bug 203854] [Win] 64-bit builds unusable on current Visual Studio 2019 (16.3.7)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Nov 5 14:18:19 PST 2019


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

--- Comment #4 from Brent Fulgham <bfulgham at webkit.org> ---
Using this test case in jsc.exe:

function fib(n) { if (n===1) { return [0, 1]; } else { var s = fib(n - 1); s.push(s[s.length - 1] + s[s.length - 2]); return s; } }

fib(1024)


Generates this stack:

>	JavaScriptCore.dll!abort() Line 77	C++
        JavaScriptCore.dll!WTFCrashWithInfo(int __formal, const char * __formal, const char * __formal, int __formal) Line 617  C++
        JavaScriptCore.dll!WTF::BasicRawSentinelNode<JSC::LLIntCallLinkInfo,WTF::PackedPtrTraits<JSC::LLIntCallLinkInfo>>::isOnList() Line 65   C++
        JavaScriptCore.dll!JSC::LLIntCallLinkInfo::link(JSC::VM & vm, JSC::JSCell * owner, JSC::JSObject * callee, JSC::MacroAssemblerCodePtr<357> codePtr) Line 56     C++
        JavaScriptCore.dll!JSC::LLInt::setUpCall(JSC::CallFrame * calleeFrame, JSC::CodeSpecializationKind kind, JSC::JSValue calleeAsValue, JSC::LLIntCallLinkInfo * callLinkInfo) Line 1532   C++
        JavaScriptCore.dll!JSC::LLInt::genericCall<JSC::OpCall>(JSC::CodeBlock * codeBlock, JSC::CallFrame * callFrame, JSC::OpCall && bytecode, JSC::CodeSpecializationKind kind) Line 1558    C++
        JavaScriptCore.dll!llint_slow_path_call(JSC::CallFrame * callFrame, const JSC::Instruction * pc) Line 1565      C++
        [External Code]

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20191105/abfab466/attachment.htm>


More information about the webkit-unassigned mailing list