[llvm] [NVPTX] Improve modeling of inline PTX (PR #130675)

Justin Fargnoli via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 13:08:47 PDT 2025


================
@@ -36,6 +36,12 @@ class NVPTXAAResult : public AAResultBase {
 
   ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, AAQueryInfo &AAQI,
                                bool IgnoreLocals);
+
+  MemoryEffects getMemoryEffects(const CallBase *Call, AAQueryInfo &AAQI);
+
+  MemoryEffects getMemoryEffects(const Function *F) {
+    return MemoryEffects::unknown();
+  }
----------------
justinfargnoli wrote:

I'm not super familiar with AA. What's the default here? Is it not [this](https://github.com/llvm/llvm-project/blob/8c7f0eaa6ee3f84e3d8260535cced234bed4fa28/llvm/include/llvm/Analysis/AliasAnalysis.h#L850-L852)?

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


More information about the llvm-commits mailing list