Skip to content
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

Some hwintrinsic related antigen failures #105255

Closed
tannergooding opened this issue Jul 22, 2024 · 2 comments · Fixed by #105260
Closed

Some hwintrinsic related antigen failures #105255

tannergooding opened this issue Jul 22, 2024 · 2 comments · Fixed by #105260
Assignees
Labels
area-CodeGen-coreclr CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
Milestone

Comments

@tannergooding
Copy link
Member

A few antigen failures have shown up in https://dev.azure.com/dnceng-public/public/_build/results?buildId=749361&view=ms.vss-build-web.run-extensions-tab and should be resolved

using System.Runtime.Intrinsics;

#nullable disable
public class TestClass
{
    private static Vector512<uint> s_v512_uint_62 = Vector512<uint>.Zero;

    public void Method0()
    {
        s_v512_uint_62 = Vector512.LessThan<uint>(s_v512_uint_62, Vector512<uint>.Zero);
        try
        {
        }
        finally
        {
            while (true) ;
        }
    }

    public static void Main(string[] args) => new TestClass().Method0();
}

/*
Assert failure(PID 5828 [0x000016c4], Thread: 6044 [0x179c]): Assertion failed '((tree->gtDebugFlags & GTF_DEBUG_NODE_MORPHED) == 0) && "ERROR: Already morphed this node!"' in 'TestClass:Method0():this' during 'Morph - Global' (IL size 22846; hash 0x46e9aa75; Tier0-FullOpts)
    File: D:\a\_work\1\s\src\coreclr\jit\morph.cpp:12227
    Image: C:\h\w\A715090A\p\CoreRoot\corerun.exe

Assertion failed '((tree->gtDebugFlags & GTF_DEBUG_NODE_MORPHED) == 0) && "ERROR: Already morphed this node!"' during 'Morph - Global'
*/
@tannergooding tannergooding self-assigned this Jul 22, 2024
@dotnet-issue-labeler dotnet-issue-labeler bot added the area-CodeGen-coreclr CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI label Jul 22, 2024
@dotnet-policy-service dotnet-policy-service bot added the untriaged New issue has not been triaged by the area owner label Jul 22, 2024
Copy link
Contributor

Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch
See info in area-owners.md if you want to be subscribed.

@tannergooding
Copy link
Member Author

I'm working on these, they look to be generally simple issues.

@JulieLeeMSFT JulieLeeMSFT added this to the 9.0.0 milestone Jul 22, 2024
@JulieLeeMSFT JulieLeeMSFT removed the untriaged New issue has not been triaged by the area owner label Jul 22, 2024
@github-actions github-actions bot locked and limited conversation to collaborators Aug 25, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-CodeGen-coreclr CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants