Baseline JIT should use JITSlowPathCall.
Created attachment 396932 [details] Patch
Comment on attachment 396932 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=396932&action=review > Source/JavaScriptCore/jit/SlowPathCall.h:68 > + static_assert(JIT::regT0 == GPRInfo::returnValueGPR); > + static_assert(JIT::regT1 == GPRInfo::returnValueGPR2); Should we update this instead? https://github.com/WebKit/webkit/blob/master/Source/JavaScriptCore/jit/GPRInfo.h#L796-L799
Comment on attachment 396932 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=396932&action=review >> Source/JavaScriptCore/jit/SlowPathCall.h:68 >> + static_assert(JIT::regT1 == GPRInfo::returnValueGPR2); > > Should we update this instead? > https://github.com/WebKit/webkit/blob/master/Source/JavaScriptCore/jit/GPRInfo.h#L796-L799 For non-Windows x64, returnValueGPR2 is not regT1. We are using this static_assert only inside `OS(WINDOWS)`.
Committed r260346: <https://trac.webkit.org/changeset/260346>
<rdar://problem/62037858>