[llvm] Extend MemoryEffects to Support Target-Specific Memory Locations (PR #148650)

Paul Walker via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 23 03:18:36 PDT 2025


================
@@ -203,6 +203,8 @@ enum Kind {
   kw_readwrite,
   kw_argmem,
   kw_inaccessiblemem,
+  kw_aarch64_fpmr,
+  kw_aarch64_za,
----------------
paulwalker-arm wrote:

Based on the conversation about not wanting to thread backend information throughout the MemoryEffect code I think option 3 (with all AArch64 specific code in a separate PR) is the only via option, because otherwise we run the risk of LLVM not being able to parse it's own output.

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


More information about the llvm-commits mailing list