-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test failure JIT/Methodical/int64/superlong/superlong_d/superlong_d.dll #93710
Comments
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue DetailsFailed in: runtime-coreclr outerloop 20231018.3 Failed tests:
Error message:
Stack trace:
|
HI @jakobbotsch, PTAL this blocking outerloop issue. |
@AndyAyersMS This looks caused by #93371. The JIT fails to allocate outgoing arg space even though there is a call to a throw helper. Can you take a look? |
Yes, I'll take a look. |
`compUsesThrowHelper` indicates codegen will likely need to create a call to a helper, whether or not such calls are shared. In dotnet#93371 I didn't appreciate this, and so the JIT was failing to set `compUsesThrowHelper` in cases where a throw helper was going to be needed but throw helper calls were not going to be shared. Fixes dotnet#93710.
`compUsesThrowHelper` indicates codegen will likely need to create a call to a helper, whether or not such calls are shared. In #93371 I didn't appreciate this, and so the JIT was failing to set `compUsesThrowHelper` in cases where a throw helper was going to be needed but throw helper calls were not going to be shared. Fixes #93710.
…93897) `compUsesThrowHelper` indicates codegen will likely need to create a call to a helper, whether or not such calls are shared. In dotnet#93371 I didn't appreciate this, and so the JIT was failing to set `compUsesThrowHelper` in cases where a throw helper was going to be needed but throw helper calls were not going to be shared. Fixes dotnet#93710.
Failed in: runtime-coreclr outerloop 20231018.3
Failed tests:
Error message:
Stack trace:
The text was updated successfully, but these errors were encountered: