Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[C++20][Modules][Serialization] Delay marking pending incomplete decl chains until the end of finishPendingActions. #121245

Merged
merged 3 commits into from
Feb 3, 2025

Conversation

mpark
Copy link
Member

@mpark mpark commented Dec 28, 2024

Description

There is a defaulted constructor _Hashtable_alloc() = default; which ends up in CodeGenFunction::GenerateCode and eventually calls FunctionProtoType::canThrow with EST_Unevaluated.

In the "good" cases I observed, I see that the decl is also loaded with the noexcept-unevaluated state, but it gets fixed up later by a call to adjustExceptionSpec. The update gets added to PendingExceptionSpecUpdates here.

In the "bad" case, the update does not get added to PendingExceptionSpecUpdates and hence the call to adjustExceptionSpec also does not occur.

Observations

I made two observations in Clang Discord: [1] and [2].

  1. FinishedDeserializating can exit with stuff still in PendingIncompleteDeclChains.

FinishedDeserializing calls finishPendingActions only if NumCurrentElementsDeserializing == 1. In finishPendingActions, it tries to clear out PendingIncompleteDeclChains. This is done in a loop, which is fine. But, later in finishPendingActions, it calls things like hasBody here. These can call getMostRecentDecl / getNextRedeclaration that ultimately calls CompleteDeclChain. CompleteDeclChain is "called each time we need the most recent declaration of a declaration after the generation count is incremented." according to this comment. Anyway, since we're still in finishPendingActions with NumCurrentElementsDeserializing == 1, calls to CompleteDeclChain simply adds more stuff to PendingIncompleteDeclChains. I think the emptying out of PendingIncompleteDeclChains should actually happen in FinishedDeserializing, in this loop instead. (The proposed solution is to do this at the end of finishPendingActions instead.

  1. LazyGenerationalUpdatePtr::get seems a bit dubious. In the LazyData case, it does the following:
      if (LazyVal->LastGeneration != LazyVal->ExternalSource->getGeneration()) {
        LazyVal->LastGeneration = LazyVal->ExternalSource->getGeneration();
        (LazyVal->ExternalSource->*Update)(O);
      }
      return LazyVal->LastValue;

so for example, after markIncomplete, LastGeneration gets set to 0 to force the update. For example, LazyVal->LastGeneration == 0 and LazyVal->ExternalSource->getGeneration() == 6. The Update function pointer calls CompleteDeclChain, which, if we're in the middle of deserialization, do nothing and just add the decl to PendingIncompleteDeclChains. So the update was not completed, but the LastGeneration is updated to 6 now... that seems potentially problematic, since subsequent calls will simply return LazyVal->LastValue since the generation numbers match now. I would've maybe expected something like:

      if (LazyVal->LastGeneration != LazyVal->ExternalSource->getGeneration() &&
          (LazyVal->ExternalSource->*Update)(O)) {
        LazyVal->LastGeneration = LazyVal->ExternalSource->getGeneration();
      }
      return LazyVal->LastValue;

where the generation is updated once the intended update actually happens.

Solution

I verified that in my case, it is indeed the call to hasBody inside finishPendingActions that bumps the PendingIncompleteDeclChains size from 0 to 1, and also sets the LazyVal->LastGeneration to 6 which matches the LazyVal->ExternalSource->getGeneration() value of 6. Later, the iterations over redecls() (which calls getNextRedeclaration) is expected to trigger the reload, but it does not since the generation numbers match.

The proposed solution is to perform the marking of incomplete decl chains at the end of finishPendingActions. This way, all of the incomplete decls are marked incomplete as a post-condition of finishPendingActions. It's also safe to delay this operation since any operation being done within finishPendingActions has NumCurrentElementsDeserializing == 1, which means that any calls to CompleteDeclChain would simply add to the PendingIncompleteDeclChains without doing anything anyway.

@llvmbot llvmbot added clang Clang issues not falling into any other category clang:modules C++20 modules and Clang Header Modules labels Dec 28, 2024
@llvmbot
Copy link
Member

llvmbot commented Dec 28, 2024

@llvm/pr-subscribers-clang-modules

@llvm/pr-subscribers-clang

Author: Michael Park (mpark)

Changes

This is fix for an unreachable code path being reached, for an internal use case at Meta. I'm unfortunately still not able to reproduce a minimal example that I can share 😞

Description

There is a defaulted constructor _Hashtable_alloc() = default; which ends up in CodeGenFunction::GenerateCode and eventually calls FunctionProtoType::canThrow with EST_Unevaluated.

In the "good" cases I observed, I see that the decl is also loaded with the noexcept-unevaluated state, but it gets fixed up later by a call to adjustExceptionSpec. The update gets added to PendingExceptionSpecUpdates here.

In the "bad" case, the update does not get added to PendingExceptionSpecUpdates and hence the call to adjustExceptionSpec also does not occur.

Observations

I made two observations in Clang Discord: [1] and [2].

  1. FinishedDeserializating can exit with stuff still in PendingIncompleteDeclChains.

FinishedDeserializing calls finishPendingActions only if NumCurrentElementsDeserializing == 1. In finishPendingActions, it tries to clear out PendingIncompleteDeclChains. This is done in a loop, which is fine. But, later in finishPendingActions, it calls things like hasBody here. These can call getMostRecentDecl / getNextRedeclaration that ultimately calls CompleteDeclChain. CompleteDeclChain is "called each time we need the most recent declaration of a declaration after the generation count is incremented." according to this comment. Anyway, since we're still in finishPendingActions with NumCurrentElementsDeserializing == 1, calls to CompleteDeclChain simply adds more stuff to PendingIncompleteDeclChains. I think the emptying out of PendingIncompleteDeclChains should actually happen in FinishedDeserializing, in this loop instead.

  1. LazyGenerationalUpdatePtr::get seems a bit dubious. In the LazyData case, it does the following:
      if (LazyVal->LastGeneration != LazyVal->ExternalSource->getGeneration()) {
        LazyVal->LastGeneration = LazyVal->ExternalSource->getGeneration();
        (LazyVal->ExternalSource->*Update)(O);
      }
      return LazyVal->LastValue;

so for example, after markIncomplete, LastGeneration gets set to 0 to force the update. For example, LazyVal->LastGeneration == 0 and LazyVal->ExternalSource->getGeneration() == 6. The Update function pointer calls CompleteDeclChain, which, if we're in the middle of deserialization, do nothing and just add the decl to PendingIncompleteDeclChains. So the update was not completed, but the LastGeneration is updated to 6 now... that seems potentially problematic, since subsequent calls will simply return LazyVal->LastValue since the generation numbers match now. I would've maybe expected something like:

      if (LazyVal->LastGeneration != LazyVal->ExternalSource->getGeneration() &&
          (LazyVal->ExternalSource->*Update)(O)) {
        LazyVal->LastGeneration = LazyVal->ExternalSource->getGeneration();
      }
      return LazyVal->LastValue;

where the generation is updated once the intended update actually happens.

Solution

The proposed solution is to perform the marking of incomplete decl chains at the end of finishPendingActions. We know that calls such as hasBody can add entries to PendingIncompleteDeclChains and change the generation counter without actually performing the update. By clearing out the PendingIncompleteDeclChains at the end of finishPendingActions, we reset the generation counter to force reload post-finishPendingActions. It's also safe to delay this operation since any operation being done within finishPendingActions has NumCurrentElementsDeserializing == 1, which means that any calls to CompleteDeclChain would simply add to the PendingIncompleteDeclChains without doing anything anyway.


Full diff: https://github.com/llvm/llvm-project/pull/121245.diff

1 Files Affected:

  • (modified) clang/lib/Serialization/ASTReader.cpp (+13-13)
diff --git a/clang/lib/Serialization/ASTReader.cpp b/clang/lib/Serialization/ASTReader.cpp
index ec85fad3389a1c..842d00951a2675 100644
--- a/clang/lib/Serialization/ASTReader.cpp
+++ b/clang/lib/Serialization/ASTReader.cpp
@@ -9807,12 +9807,12 @@ void ASTReader::visitTopLevelModuleMaps(
 }
 
 void ASTReader::finishPendingActions() {
-  while (
-      !PendingIdentifierInfos.empty() || !PendingDeducedFunctionTypes.empty() ||
-      !PendingDeducedVarTypes.empty() || !PendingIncompleteDeclChains.empty() ||
-      !PendingDeclChains.empty() || !PendingMacroIDs.empty() ||
-      !PendingDeclContextInfos.empty() || !PendingUpdateRecords.empty() ||
-      !PendingObjCExtensionIvarRedeclarations.empty()) {
+  while (!PendingIdentifierInfos.empty() ||
+         !PendingDeducedFunctionTypes.empty() ||
+         !PendingDeducedVarTypes.empty() || !PendingDeclChains.empty() ||
+         !PendingMacroIDs.empty() || !PendingDeclContextInfos.empty() ||
+         !PendingUpdateRecords.empty() ||
+         !PendingObjCExtensionIvarRedeclarations.empty()) {
     // If any identifiers with corresponding top-level declarations have
     // been loaded, load those declarations now.
     using TopLevelDeclsMap =
@@ -9860,13 +9860,6 @@ void ASTReader::finishPendingActions() {
     }
     PendingDeducedVarTypes.clear();
 
-    // For each decl chain that we wanted to complete while deserializing, mark
-    // it as "still needs to be completed".
-    for (unsigned I = 0; I != PendingIncompleteDeclChains.size(); ++I) {
-      markIncompleteDeclChain(PendingIncompleteDeclChains[I]);
-    }
-    PendingIncompleteDeclChains.clear();
-
     // Load pending declaration chains.
     for (unsigned I = 0; I != PendingDeclChains.size(); ++I)
       loadPendingDeclChain(PendingDeclChains[I].first,
@@ -10117,6 +10110,13 @@ void ASTReader::finishPendingActions() {
   for (auto *ND : PendingMergedDefinitionsToDeduplicate)
     getContext().deduplicateMergedDefinitonsFor(ND);
   PendingMergedDefinitionsToDeduplicate.clear();
+
+  // For each decl chain that we wanted to complete while deserializing, mark
+  // it as "still needs to be completed".
+  for (unsigned I = 0; I != PendingIncompleteDeclChains.size(); ++I) {
+    markIncompleteDeclChain(PendingIncompleteDeclChains[I]);
+  }
+  PendingIncompleteDeclChains.clear();
 }
 
 void ASTReader::diagnoseOdrViolations() {

@mpark mpark requested review from mizvekov and ChuanqiXu9 December 28, 2024 03:43
@cor3ntin
Copy link
Contributor

Did you try creduce/cvise (although using that with modules might be a bit challenging)
It would be really nice to have a repro so that we have a test case

@mpark
Copy link
Member Author

mpark commented Dec 28, 2024

Did you try creduce/cvise (although using that with modules might be a bit challenging) It would be really nice to have a repro so that we have a test case

I did. It did help me reduce it significantly, but it still involves a few modules that are difficult to reduce. I may be able to make progress by running it on the modules themselves though? I'm not sure. I agree it'd be really nice to have a test case.

@ChuanqiXu9
Copy link
Member

+1. It is best to have more test case. Generally I reduce it by hand in this case.

@ChuanqiXu9 ChuanqiXu9 changed the title Delay marking pending incomplete decl chains until the end of finishPendingActions. [C++20] [Modules] [Serialization] Delay marking pending incomplete decl chains until the end of finishPendingActions. Dec 31, 2024
@mpark
Copy link
Member Author

mpark commented Dec 31, 2024

+1. It is best to have more test case. Generally I reduce it by hand in this case.

Yeah, I did already spent quite a bit of effort trying to reduce the creduce result by hand but have not been successful so far 😕. I'll try again and report back. Would you still review the logic / whether the suggested solution seems sensible?

@ChuanqiXu9
Copy link
Member

+1. It is best to have more test case. Generally I reduce it by hand in this case.

Yeah, I did already spent quite a bit of effort trying to reduce the creduce result by hand but have not been successful so far 😕. I'll try again and report back. Would you still review the logic / whether the suggested solution seems sensible?

The solution looks neat to me.

@mizvekov
Copy link
Contributor

mizvekov commented Jan 7, 2025

Can you reduce your modules test case into a self contained project with build system?

If so, you can use cvise for reducing a whole project directory recursively in one invocation.

@ChuanqiXu9
Copy link
Member

Can you reduce your modules test case into a self contained project with build system?

If so, you can use cvise for reducing a whole project directory recursively in one invocation.

I didn't know this before. It sounds great. If you'd like, would you like to write a simple example document to explain how users do in https://clang.llvm.org/docs/StandardCPlusPlusModules.html? I believe it will be pretty helpful.

@dmpolukhin dmpolukhin self-requested a review January 8, 2025 15:52
@mpark mpark force-pushed the delay-mark-incomplete-decl-chains branch from b892631 to 9879eb1 Compare January 29, 2025 05:54
mpark added a commit to mpark/llvm-project that referenced this pull request Jan 29, 2025
@mpark mpark force-pushed the delay-mark-incomplete-decl-chains branch from 9879eb1 to e6c5d9a Compare January 29, 2025 06:04
@mpark
Copy link
Member Author

mpark commented Jan 29, 2025

Okay folks, I've finally managed to get a reasonable repro as a unit test!

The new unit test built in Debug mode succeeds with this PR, and fails without like this:

FAIL: Clang :: Modules/pr121245.cpp (8522 of 22154)
******************** TEST 'Clang :: Modules/pr121245.cpp' FAILED ********************
Exit Code: 134

Command Output (stderr):
--
RUN: at line 1: rm -rf /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp
+ rm -rf /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp
RUN: at line 2: mkdir -p /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp
+ mkdir -p /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp
RUN: at line 3: split-file /home/mcypark/llvm-project/clang/test/Modules/pr121245.cpp /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp
+ split-file /home/mcypark/llvm-project/clang/test/Modules/pr121245.cpp /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp
RUN: at line 4: cd /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp
+ cd /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp
RUN: at line 6: /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.h   -fcxx-exceptions -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm
+ /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.h -fcxx-exceptions -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm
RUN: at line 9: /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-02.h   -Wno-experimental-header-units -fcxx-exceptions   -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-02.pcm
+ /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-02.h -Wno-experimental-header-units -fcxx-exceptions -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-02.pcm
RUN: at line 13: /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.h   -Wno-experimental-header-units -fcxx-exceptions   -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.pcm
+ /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.h -Wno-experimental-header-units -fcxx-exceptions -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.pcm
RUN: at line 17: /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.h   -Wno-experimental-header-units -fcxx-exceptions   -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.pcm
+ /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.h -Wno-experimental-header-units -fcxx-exceptions -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.pcm
RUN: at line 21: /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-05.h   -Wno-experimental-header-units -fcxx-exceptions   -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.pcm   -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-05.pcm
+ /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-header-unit -xc++-user-header /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-05.h -Wno-experimental-header-units -fcxx-exceptions -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm -o /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-05.pcm
RUN: at line 26: /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-obj /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/main.cpp   -Wno-experimental-header-units -fcxx-exceptions   -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-02.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-05.pcm   -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.pcm   -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm
+ /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-obj /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/main.cpp -Wno-experimental-header-units -fcxx-exceptions -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-02.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-05.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm
should not call this with unresolved exception specs
UNREACHABLE executed at /home/mcypark/llvm-project/clang/lib/AST/Type.cpp:3760!
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace, preprocessed source, and associated run script.
Stack dump:
0.      Program arguments: /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-obj /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/main.cpp -Wno-experimental-header-units -fcxx-exceptions -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-02.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-05.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm
1.      <eof> parser at end of file
2.      Per-file LLVM IR generation
3.      /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.h:9:3: Generating code for declaration 'EBO<A<long>>::EBO'
 #0 0x0000000005682a18 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) /home/mcypark/llvm-project/llvm/lib/Support/Unix/Signals.inc:798:22
 #1 0x0000000005682e60 PrintStackTraceSignalHandler(void*) /home/mcypark/llvm-project/llvm/lib/Support/Unix/Signals.inc:874:1
 #2 0x0000000005680646 llvm::sys::RunSignalHandlers() /home/mcypark/llvm-project/llvm/lib/Support/Signals.cpp:105:20
 #3 0x00000000056823e1 SignalHandler(int) /home/mcypark/llvm-project/llvm/lib/Support/Unix/Signals.inc:415:1
 #4 0x00007f0f2363e730 __restore_rt (/lib64/libc.so.6+0x3e730)
 #5 0x00007f0f2368bbdc __pthread_kill_implementation (/lib64/libc.so.6+0x8bbdc)
 #6 0x00007f0f2363e686 gsignal (/lib64/libc.so.6+0x3e686)
 #7 0x00007f0f23628833 abort (/lib64/libc.so.6+0x28833)
 #8 0x00000000055bf183 bindingsErrorHandler(void*, char const*, bool) /home/mcypark/llvm-project/llvm/lib/Support/ErrorHandling.cpp:223:55
 #9 0x000000000af32485 clang::FunctionProtoType::canThrow() const /home/mcypark/llvm-project/clang/lib/AST/Type.cpp:3766:12
#10 0x0000000006466ec3 clang::CodeGen::CodeGenFunction::EmitStartEHSpec(clang::Decl const*) /home/mcypark/llvm-project/clang/lib/CodeGen/CGException.cpp:534:32
#11 0x0000000005e53edf clang::CodeGen::CodeGenFunction::StartFunction(clang::GlobalDecl, clang::QualType, llvm::Function*, clang::CodeGen::CGFunctionInfo const&, clang::CodeGen::FunctionArgList const&, clang::SourceLocation, clang::SourceLocation) /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenFunction.cpp:1247:46
#12 0x0000000005e55537 clang::CodeGen::CodeGenFunction::GenerateCode(clang::GlobalDecl, llvm::Function*, clang::CodeGen::CGFunctionInfo const&) /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenFunction.cpp:1540:16
#13 0x00000000063dd3aa clang::CodeGen::CodeGenModule::codegenCXXStructor(clang::GlobalDecl) /home/mcypark/llvm-project/clang/lib/CodeGen/CGCXX.cpp:212:3
#14 0x000000000601dd57 (anonymous namespace)::ItaniumCXXABI::emitCXXStructor(clang::GlobalDecl) /home/mcypark/llvm-project/clang/lib/CodeGen/ItaniumCXXABI.cpp:4748:46
#15 0x0000000005e820a9 clang::CodeGen::CodeGenModule::EmitGlobalDefinition(clang::GlobalDecl, llvm::GlobalValue*) /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp:4231:29
#16 0x0000000005e7dd6a clang::CodeGen::CodeGenModule::EmitDeferred() /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp:3331:31
#17 0x0000000005e7ddb8 clang::CodeGen::CodeGenModule::EmitDeferred() /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp:3333:7
#18 0x0000000005e7ddb8 clang::CodeGen::CodeGenModule::EmitDeferred() /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp:3333:7
#19 0x0000000005e7ddb8 clang::CodeGen::CodeGenModule::EmitDeferred() /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp:3333:7
#20 0x0000000005e7ddb8 clang::CodeGen::CodeGenModule::EmitDeferred() /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp:3333:7
#21 0x0000000005e7ddb8 clang::CodeGen::CodeGenModule::EmitDeferred() /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp:3333:7
#22 0x0000000005e70ce7 clang::CodeGen::CodeGenModule::Release() /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp:853:23
#23 0x0000000006511145 (anonymous namespace)::CodeGeneratorImpl::HandleTranslationUnit(clang::ASTContext&) /home/mcypark/llvm-project/clang/lib/CodeGen/ModuleBuilder.cpp:291:11
#24 0x00000000064fe949 clang::BackendConsumer::HandleTranslationUnit(clang::ASTContext&) /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenAction.cpp:242:9
#25 0x00000000093210db clang::ParseAST(clang::Sema&, bool, bool) /home/mcypark/llvm-project/clang/lib/Parse/ParseAST.cpp:191:14
#26 0x000000000681a5e0 clang::ASTFrontendAction::ExecuteAction() /home/mcypark/llvm-project/clang/lib/Frontend/FrontendAction.cpp:1186:11
#27 0x000000000650311d clang::CodeGenAction::ExecuteAction() /home/mcypark/llvm-project/clang/lib/CodeGen/CodeGenAction.cpp:1102:5
#28 0x0000000006819efa clang::FrontendAction::Execute() /home/mcypark/llvm-project/clang/lib/Frontend/FrontendAction.cpp:1076:38
#29 0x000000000673ac6b clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) /home/mcypark/llvm-project/clang/lib/Frontend/CompilerInstance.cpp:1056:42
#30 0x00000000069cc73e clang::ExecuteCompilerInvocation(clang::CompilerInstance*) /home/mcypark/llvm-project/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp:296:38
#31 0x0000000000e3d926 cc1_main(llvm::ArrayRef<char const*>, char const*, void*) /home/mcypark/llvm-project/clang/tools/driver/cc1_main.cpp:290:40
#32 0x0000000000e2fa70 ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&, llvm::ToolContext const&) /home/mcypark/llvm-project/clang/tools/driver/driver.cpp:218:20
#33 0x0000000000e2ff67 clang_main(int, char**, llvm::ToolContext const&) /home/mcypark/llvm-project/clang/tools/driver/driver.cpp:259:26
#34 0x0000000000e67029 main /home/mcypark/llvm-project/build-debug/tools/clang/tools/driver/clang-driver.cpp:17:20
#35 0x00007f0f236295d0 __libc_start_call_main (/lib64/libc.so.6+0x295d0)
#36 0x00007f0f23629680 __libc_start_main@GLIBC_2.2.5 (/lib64/libc.so.6+0x29680)
#37 0x0000000000e2eea5 _start (/home/mcypark/llvm-project/build-debug/bin/clang+0xe2eea5)
/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.script: line 10: 3521235 Aborted                 (core dumped) /home/mcypark/llvm-project/build-debug/bin/clang -cc1 -internal-isystem /home/mcypark/llvm-project/build-debug/lib/clang/21/include -nostdsysteminc -std=c++20 -emit-obj /home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/main.cpp -Wno-experimental-header-units -fcxx-exceptions -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-02.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-05.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-04.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-03.pcm -fmodule-file=/home/mcypark/llvm-project/build-debug/tools/clang/test/Modules/Output/pr121245.cpp.tmp/hu-01.pcm

--

********************
********************
Failed Tests (1):
  Clang :: Modules/pr121245.cpp


Testing Time: 5323.62s

Total Discovered Tests: 46289
  Skipped          :     4 (0.01%)
  Unsupported      :    95 (0.21%)
  Passed           : 46157 (99.71%)
  Expectedly Failed:    32 (0.07%)
  Failed           :     1 (0.00%)
FAILED: tools/clang/test/CMakeFiles/check-clang /home/mcypark/llvm-project/build-debug/tools/clang/test/CMakeFiles/check-clang 

@mpark mpark force-pushed the delay-mark-incomplete-decl-chains branch from e6c5d9a to 2a5a87e Compare January 29, 2025 07:58
@mpark mpark changed the title [C++20] [Modules] [Serialization] Delay marking pending incomplete decl chains until the end of finishPendingActions. [C++20][Modules][Serialization] Delay marking pending incomplete decl chains until the end of finishPendingActions. Jan 29, 2025
Copy link
Contributor

@cor3ntin cor3ntin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the test!

I'll let @ChuanqiXu9 approve.
Presumably, we want to cherry pick that in clang 20?

@mpark
Copy link
Member Author

mpark commented Jan 29, 2025

Presumably, we want to cherry pick that in clang 20?

Yeah, I'd think so if it's not too late.

Copy link

github-actions bot commented Jan 29, 2025

✅ With the latest revision this PR passed the C/C++ code formatter.

Copy link
Contributor

@dmpolukhin dmpolukhin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM but let @ChuanqiXu9 approve.

@@ -0,0 +1,90 @@
// RUN: rm -rf %t
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a comment that the test results in llvm_unreachable in debug builds so debug build should be used to investigate problems with the test.

@mpark mpark force-pushed the delay-mark-incomplete-decl-chains branch from d48f483 to 3e13c63 Compare January 29, 2025 10:17
Copy link
Contributor

@mizvekov mizvekov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, Thanks!

@mpark mpark merged commit a9e249f into llvm:main Feb 3, 2025
8 checks passed
@mpark mpark deleted the delay-mark-incomplete-decl-chains branch February 3, 2025 19:22
@llvm-ci
Copy link
Collaborator

llvm-ci commented Feb 3, 2025

LLVM Buildbot has detected a new failure on builder openmp-offload-amdgpu-runtime running on omp-vega20-0 while building clang at step 7 "Add check check-offload".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/30/builds/15158

Here is the relevant piece of the build log for the reference
Step 7 (Add check check-offload) failure: test (failure)
******************** TEST 'libomptarget :: amdgcn-amd-amdhsa :: api/omp_host_call.c' FAILED ********************
Exit Code: 2

Command Output (stdout):
--
# RUN: at line 1
/home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./bin/clang -fopenmp    -I /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.src/offload/test -I /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/openmp/runtime/src -L /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/offload -L /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./lib -L /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/openmp/runtime/src  -nogpulib -Wl,-rpath,/home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/offload -Wl,-rpath,/home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/openmp/runtime/src -Wl,-rpath,/home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./lib  -fopenmp-targets=amdgcn-amd-amdhsa /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.src/offload/test/api/omp_host_call.c -o /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/offload/test/amdgcn-amd-amdhsa/api/Output/omp_host_call.c.tmp /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./lib/libomptarget.devicertl.a && /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/offload/test/amdgcn-amd-amdhsa/api/Output/omp_host_call.c.tmp | /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./bin/FileCheck /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.src/offload/test/api/omp_host_call.c
# executed command: /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./bin/clang -fopenmp -I /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.src/offload/test -I /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/openmp/runtime/src -L /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/offload -L /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./lib -L /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/openmp/runtime/src -nogpulib -Wl,-rpath,/home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/offload -Wl,-rpath,/home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/openmp/runtime/src -Wl,-rpath,/home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./lib -fopenmp-targets=amdgcn-amd-amdhsa /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.src/offload/test/api/omp_host_call.c -o /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/offload/test/amdgcn-amd-amdhsa/api/Output/omp_host_call.c.tmp /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./lib/libomptarget.devicertl.a
# note: command had no output on stdout or stderr
# executed command: /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/runtimes/runtimes-bins/offload/test/amdgcn-amd-amdhsa/api/Output/omp_host_call.c.tmp
# note: command had no output on stdout or stderr
# error: command failed with exit status: -11
# executed command: /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./bin/FileCheck /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.src/offload/test/api/omp_host_call.c
# .---command stderr------------
# | FileCheck error: '<stdin>' is empty.
# | FileCheck command line:  /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.build/./bin/FileCheck /home/ompworker/bbot/openmp-offload-amdgpu-runtime/llvm.src/offload/test/api/omp_host_call.c
# `-----------------------------
# error: command failed with exit status: 2

--

********************


@mpark mpark added this to the LLVM 20.X Release milestone Feb 7, 2025
@mpark
Copy link
Member Author

mpark commented Feb 7, 2025

/cherry-pick a9e249f

@llvmbot
Copy link
Member

llvmbot commented Feb 7, 2025

@mpark
Copy link
Member Author

mpark commented Feb 7, 2025

/cherry-pick a9e249f

@llvmbot
Copy link
Member

llvmbot commented Feb 7, 2025

/pull-request #126289

swift-ci pushed a commit to swiftlang/llvm-project that referenced this pull request Feb 8, 2025
… chains until the end of `finishPendingActions`. (llvm#121245)

The call to `hasBody` inside `finishPendingActions` that bumps the `PendingIncompleteDeclChains`
size from `0` to `1`, and also sets the `LazyVal->LastGeneration` to `6` which matches
the `LazyVal->ExternalSource->getGeneration()` value of `6`. Later, the iterations over `redecls()`
(which calls `getNextRedeclaration`) is expected to trigger the reload, but it **does not** since
the generation numbers match.

The proposed solution is to perform the marking of incomplete decl chains at the end of `finishPendingActions`.
This way, **all** of the incomplete decls are marked incomplete as a post-condition of `finishPendingActions`.
It's also safe to delay this operation since any operation being done within `finishPendingActions` has
`NumCurrentElementsDeserializing == 1`, which means that any calls to `CompleteDeclChain` would simply
add to the `PendingIncompleteDeclChains` without doing anything anyway.

(cherry picked from commit a9e249f)
Icohedron pushed a commit to Icohedron/llvm-project that referenced this pull request Feb 11, 2025
… chains until the end of `finishPendingActions`. (llvm#121245)

The call to `hasBody` inside `finishPendingActions` that bumps the `PendingIncompleteDeclChains`
size from `0` to `1`, and also sets the `LazyVal->LastGeneration` to `6` which matches
the `LazyVal->ExternalSource->getGeneration()` value of `6`. Later, the iterations over `redecls()`
(which calls `getNextRedeclaration`) is expected to trigger the reload, but it **does not** since
the generation numbers match.

The proposed solution is to perform the marking of incomplete decl chains at the end of `finishPendingActions`.
This way, **all** of the incomplete decls are marked incomplete as a post-condition of `finishPendingActions`.
It's also safe to delay this operation since any operation being done within `finishPendingActions` has
`NumCurrentElementsDeserializing == 1`, which means that any calls to `CompleteDeclChain` would simply
add to the `PendingIncompleteDeclChains` without doing anything anyway.
@zixu-w
Copy link
Member

zixu-w commented Feb 12, 2025

Hi @mpark ! Unfortunately with this change we hit a crash in our bootstrap build with modules on macOS:

Assertion failed: (D && "missing definition for pattern of instantiated definition"), function hasAcceptableDefinition, file SemaType.cpp, line 9203.

Do you mind taking a look? Or temporarily revert this change.
(Compilation command and stack trace in Issue #126973)

@mpark
Copy link
Member Author

mpark commented Feb 12, 2025

Hi @zixu-w, thanks for the ping. I can't take a look this week, but can on Monday. It would be great if I can look at a small repro though. I'll follow on the issue.

@zixu-w
Copy link
Member

zixu-w commented Feb 13, 2025

Hi @zixu-w, thanks for the ping. I can't take a look this week, but can on Monday. It would be great if I can look at a small repro though. I'll follow on the issue.

Thanks! Yes, I'll try to construct a smaller and isolated reproducer.

Is it okay if we revert this change for now in upstream to unblock us?

zixu-w added a commit to zixu-w/llvm-project that referenced this pull request Feb 13, 2025
…ete decl chains until the end of `finishPendingActions`. (llvm#121245)"

This reverts commit a9e249f.

Reverting this change because of issue llvm#126973.
zixu-w added a commit that referenced this pull request Feb 14, 2025
#127136)

…ete decl chains until the end of `finishPendingActions`. (#121245)"

This reverts commit a9e249f.

Reverting this change because of issue #126973.
@ChuanqiXu9
Copy link
Member

@zixu-w @mpark given the original patch get backported to the release branch and the patch get reverted, I think we should revert the patch in the release branch too.

@dmpolukhin
Copy link
Contributor

dmpolukhin commented Feb 14, 2025

@zixu-w and @ChuanqiXu9 Just want to clarify policies about changes reversion. As far as I understand it was one example in some private codebase with no reproducer publicly available. I can understand and completely agree if it breaks any existing test or llvm-build bot. But in this case I think it would be good to at least wait for the review. Such reversion without providing a reproducer does not allow to fix the issues or even verify that it is related to this PR. This PR fixes another crash with clear reproducers.

Sorry, didn't notice that it is LLVM bootstrap build but still, no still I don't see steps to reproduce in #126973.

@ChuanqiXu9
Copy link
Member

ChuanqiXu9 commented Feb 14, 2025

@zixu-w and @ChuanqiXu9 Just want to clarify policies about changes reversion. As far as I understand it was one example in some private codebase with no reproducer publicly available. I can understand and completely agree if it breaks any existing test or llvm-build bot. But in this case I think it would be good to at least wait for the review. Such reversion without providing a reproducer does not allow to fix the issues or even verify that it is related to this PR. This PR fixes another crash with clear reproducers.

Sorry, didn't notice that it is LLVM bootstrap build but still, no still I don't see steps to reproduce in #126973.

CC @AaronBallman for the policy related things.

Personally I do agree it is frustrating if the patch gets reverted without being able to reproduce it.

And my point in the above post is, if we revert it in the trunk and it was backported to the release branch, we should revert it in the release branch too. My point is majorly the if.

@AaronBallman
Copy link
Collaborator

@zixu-w and @ChuanqiXu9 Just want to clarify policies about changes reversion. As far as I understand it was one example in some private codebase with no reproducer publicly available. I can understand and completely agree if it breaks any existing test or llvm-build bot. But in this case I think it would be good to at least wait for the review. Such reversion without providing a reproducer does not allow to fix the issues or even verify that it is related to this PR. This PR fixes another crash with clear reproducers.
Sorry, didn't notice that it is LLVM bootstrap build but still, no still I don't see steps to reproduce in #126973.

CC @AaronBallman for the policy related things.

Our documented policy is at https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy

The promise for a public reproducer is in line with our policy, but reverting a change after it's been in the tree for two weeks is not particularly timely (but not unreasonable either, sometimes it takes a while to churn through downstream team suites). However, it's not clear to me why the revert couldn't have been handled in the downstream given the lack of details on the problem and the fact that upstream does not seem to be obviously broken. For example, the issue could ultimately boil down to interactions with changes carried in the downstream.

That said, I don't think anyone's doing anything wrong (certainly nobody is acting in bad faith), and there was more than a day for reviewers or the patch author to have questioned the revert before the revert was committed.

Personally I do agree it is frustrating if the patch gets reverted without being able to reproduce it.

And my point in the above post is, if we revert it in the trunk and it was backported to the release branch, we should revert it in the release branch too. My point is majorly the if.

I think the rule of thumb should be to revert in the release branch if the revert happens in trunk. CC @tstellar @tru in case they have a different opinion.

@zixu-w
Copy link
Member

zixu-w commented Feb 14, 2025

Hi @dmpolukhin @ChuanqiXu9 @AaronBallman !

My apologies for the late reversion and not providing more context more promptly. To clarify, the issue does also reproduce in upstream and I've provided reproducing steps in #126973 (comment). It was only caught in our downstream builds because we don't have the exact configuration to reproduce the problem in upstream builds and CIs.

And our downstream CI had been running into other issues in the past two weeks, which masked the problem and slowed us down in triaging. It also took me a while to understand the assertion and find which commit caused it.

Sorry again for the confusion. I can pick the reversion in the release branch. I'll help follow up with investigating and fixing #126973, and let me know if there's anything else I should do.

joaosaffran pushed a commit to joaosaffran/llvm-project that referenced this pull request Feb 14, 2025
llvm#127136)

…ete decl chains until the end of `finishPendingActions`. (llvm#121245)"

This reverts commit a9e249f.

Reverting this change because of issue llvm#126973.
tstellar pushed a commit that referenced this pull request Feb 20, 2025
#127136)

…ete decl chains until the end of `finishPendingActions`. (#121245)"

This reverts commit a9e249f.

Reverting this change because of issue #126973.

(cherry picked from commit 912b154)
sivan-shani pushed a commit to sivan-shani/llvm-project that referenced this pull request Feb 24, 2025
llvm#127136)

…ete decl chains until the end of `finishPendingActions`. (llvm#121245)"

This reverts commit a9e249f.

Reverting this change because of issue llvm#126973.
mpark added a commit to mpark/llvm-project that referenced this pull request Mar 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
clang:modules C++20 modules and Clang Header Modules clang Clang issues not falling into any other category
Projects
Development

Successfully merging this pull request may close these issues.

9 participants