let counta = 0, countb = 0 function foo(arg2) { try { Number.prototype.toString.call(arg2) counta++ } catch (e) { countb++ } } for (let i = 0; i < 1000; i++) { foo({}); foo(i); } print(counta, countb) With the above script as input to JSC, run JSC with the following parameters: ./jsc test.js --useConcurrentJIT=0 The correct value for counta should be 500, but actually it is not. In DFGBytecodeParser, NumberProtoFuncToString is converted to ToString. Thus, it does not throw an exception for Number.prototype.toString when the parameter is Object.
*** Bug 245462 has been marked as a duplicate of this bug. ***
<rdar://problem/100494175>
Pull request: https://github.com/WebKit/WebKit/pull/5165
Committed 256086@main (c828d44d6aa2): <https://commits.webkit.org/256086@main> Reviewed commits have been landed. Closing PR #5165 and removing active labels.