[llvm] [NVPTX] Custom lower ADDRSPACECAST (PR #125607)
Artem Belevich via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 17:57:09 PST 2025
================
@@ -99,6 +99,20 @@ define i32 @conv8(ptr %ptr) {
ret i32 %val
}
+; ALL-LABEL: conv9
+define i32 @conv9(ptr addrspace(1) %ptr) {
+; CLS32: cvta.global.u32
+; CLS32: cvta.to.shared.u32
+; CLS64: cvta.global.u64
+; CLS64: cvta.to.shared.u64
+; PTRCONV: cvt.u32.u64
+; NOPTRCONV-NOT: cvt.u32.u64
+; ALL: ld.shared.u32
+ %specptr = addrspacecast ptr addrspace(1) %ptr to ptr addrspace(3)
----------------
Artem-B wrote:
Are you saying that if such an invalid ASC would be placed in a conditional branch that would or would not be eliminated, it would result in back-end crash if that branch was not eliminated by the optimizations?
If that's the case, then it's exactly the problem we have now, with the back-end crashing when we have no way to lower the bad ASC, and I agree that crash in the back-end is not something we want. It's way too late.
I was thinking diagnosing the error early on, if possible. I.e. treat it as if it was a target-specific syntax error, triggered when the back-end knows up-front that such a combination is invalid.
Treating invalid ASC as poison is indeed fundamentally more sound, at the expense of practical usability. We do know that the input is wrong, but have no way to make user aware of that. LLVM's feedback mechanisms are not great.
If we do need compilation to succeed, then I'd rather generate a `trap` for the invalid ASC, possibly with inline asm comment, explaining what's going on. At least the failure will be obvious, and, maybe, even somewhat debuggable. It's less bad than having to chase mysteriously mangled invalid pointer created by nonsensical ASC laundered via conversion to generic AS and back.
https://github.com/llvm/llvm-project/pull/125607
More information about the llvm-commits
mailing list