[llvm] [NVPTX] Lower invalid `ISD::ADDRSPACECAST` (PR #125607)

Alex MacLean via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 8 13:11:11 PST 2025


https://github.com/AlexMaclean approved this pull request.

LGTM

> Here's an idea, instead of laundering the pointer, what if we return an obviously broken pointer with the value that would provide a strong hint that things went wrong. E.g. 0xebadca51 ("Error BAD CAST") for 32-bit pointers and (0xebadca51 | dst_as<<16 | src_as). This will most likely crash and the distinct constant value would be reasonably easy to search for in the sources.

I personally prefer using undef in this case as opposed to a value with a message in the hex representation. undef (or implicit def in ptx) seems like it will allow for more optimization both during SDAG and ptxas. If we want to be more user friendly maybe using DiagnosticInfo to report the invalid cast similar to AMDGPU would be the way to go. 

I think a good follow up would be using `InstCombiner::isValidAddrSpaceCast` in InstCombine to convert invalid casts to poison, though there may be something I'm missing about the semantics here. 

https://github.com/llvm/llvm-project/pull/125607


More information about the llvm-commits mailing list