[llvm] [NVPTX] Improve modeling of inline PTX (PR #130675)
Justin Fargnoli via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 14:08:48 PDT 2025
================
@@ -115,3 +116,30 @@ ModRefInfo NVPTXAAResult::getModRefInfoMask(const MemoryLocation &Loc,
return ModRefInfo::ModRef;
}
+
+MemoryEffects NVPTXAAResult::getMemoryEffects(const CallBase *Call,
+ AAQueryInfo &AAQI) {
+ // Inline assembly with no side-effect or memory clobbers should not
+ // indirectly access memory in the PTX specification.
+ if (const auto *IA = dyn_cast<InlineAsm>(Call->getCalledOperand())) {
+ // Volatile is translated as side-effects.
+ if (IA->hasSideEffects())
+ return MemoryEffects::unknown();
+
+ for (const InlineAsm::ConstraintInfo &Constraint : IA->ParseConstraints()) {
+ // Indirect constraints (e.g. =*m) are unsupported in inline PTX.
+ if (Constraint.isIndirect)
+ return MemoryEffects::unknown();
----------------
justinfargnoli wrote:
Do we need to add support for indirect constraints? Or do we not know of a PTX instruction allowing indirect constraints?
If the latter, what're your thoughts on adding an `assert(false)` instead? I'm unsure that makes sense, but I'm curious to hear your thoughts.
https://github.com/llvm/llvm-project/pull/130675
More information about the llvm-commits
mailing list