[llvm] [TargetVerifier][AMDGPU] Add TargetVerifier. (PR #123609)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 07:24:07 PST 2025
jofrn wrote:
Thanks for the feedback.
> The alloca-must-be-const looks slightly optimistic to me - is that an invariant clang sema enforces for c++ input? I can see how we'd struggle to lower it, just not sure whether it's illegal in all IR or only in some of it. Target verifier should probably be invariants that hold between every pass.
Removing the check. I see that it is supported somewhat yet we try to replace it during DAG Selection.
> Main thing is it would be really nice for this to be a hook that the usual verifier calls into as opposed to a separate pass, as verify is already in the debugging flow for lots of people. Means these checks can be easily inserted between every IR pass etc without altering infrastructure elsewhere.
Adding the hook... Please let me know what you think.
https://github.com/llvm/llvm-project/pull/123609
More information about the llvm-commits
mailing list