[llvm] [DSE] Defer alloca store elimination for CoroSplit (PR #133918)

via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 19:39:48 PDT 2025


================
@@ -1194,14 +1194,13 @@ struct DSEState {
 
   bool isInvisibleToCallerAfterRet(const Value *V) {
     if (isa<AllocaInst>(V))
-      return true;
+      // Defer alloca store elimination, wait for CoroSplit
+      return !F.hasFnAttribute(Attribute::PresplitCoroutine);
+
     auto I = InvisibleToCallerAfterRet.insert({V, false});
     if (I.second) {
-      if (!isInvisibleToCallerOnUnwind(V)) {
-        I.first->second = false;
-      } else if (isNoAliasCall(V)) {
+      if (isInvisibleToCallerOnUnwind(V) && isNoAliasCall(V))
----------------
NewSigma wrote:

OK, I will land it separately.

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


More information about the llvm-commits mailing list