[clang] [llvm] [mlir] [LLVM] Improve IR parsing and printing for target memory locations (PR #176968)

Nikita Popov via cfe-commits cfe-commits at lists.llvm.org
Mon Feb 9 05:03:16 PST 2026


================
@@ -653,15 +653,26 @@ std::string Attribute::getAsString(bool InAttrGrp) const {
       OS << getModRefStr(OtherMR);
     }
 
+    bool TargetPrintedForAll = false;
     for (auto Loc : MemoryEffects::locations()) {
       ModRefInfo MR = ME.getModRef(Loc);
       if (MR == OtherMR)
         continue;
 
-      if (!First)
+      if (!First && !TargetPrintedForAll)
         OS << ", ";
       First = false;
 
+      if (ME.isTargetMemLoc(Loc) && ME.isTargetMemLocSameForAll()) {
----------------
nikic wrote:

Yes, exactly. In practice, the common case would probably be something like `memory(..., target_mem: none, target_memN: readwrite)`, where only one target memory location is set.

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


More information about the cfe-commits mailing list