Clang already removes parsed enumerators when merging typedefs to
anonymous enums. This is why the following example decl used to be
handled correctly while merging, and ASTWriter behaves as expected:
```c
typedef enum { Val } AnonEnum;
```
However, the mentioned mechanism didn't handle named enums. This leads
to stale declarations in `IdResolver`, causing an assertion violation in
ASTWriter ``Assertion `DeclIDs.contains(D) && "Declaration not
emitted!"' failed`` when a module is being serialized with the following
example merged enums:
```c
typedef enum Enum1 { Val_A } Enum1;
enum Enum2 { Val_B };
```
The PR applies the same mechanism in the named enums case.
Additionally, I dropped the call to
`getLexicalDeclContext()->removeDecl` as it was causing a wrong
odr-violation diagnostic with anonymous enums.
Might be easier to to review commit by commit. Any feedback is
appreciated.
### Context
This fixes frontend crashes that were encountered when certain
Objective-C modules are included on Xcode 16. For example, by running
`CC=/path/to/clang-19 xcodebuild clean build` on a project that contains
the following Objective-C file:
```c
#include <os/atomic.h>
int main() {
return memory_order_relaxed;
}
```
This crashes the parser in release, when ASTReader tries to load the
enumerator declaration.
112 lines
4.6 KiB
Objective-C
112 lines
4.6 KiB
Objective-C
// RUN: rm -rf %t
|
|
// RUN: split-file %s %t
|
|
|
|
|
|
// Expect no crash
|
|
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t/modcache -fmodule-map-file=%t/module.modulemap %t/source.m
|
|
|
|
// Add -ast-dump-all to check that the AST nodes are merged correctly.
|
|
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t/modcache -fmodule-map-file=%t/module.modulemap %t/source.m -ast-dump-all 2>&1 | FileCheck %s
|
|
|
|
|
|
//--- shared.h
|
|
// This header is shared between two modules, but it's not a module itself.
|
|
// The enums defined here are parsed in both modules, and merged while building ModB.
|
|
|
|
typedef enum MyEnum1 { MyVal_A } MyEnum1;
|
|
// CHECK: |-EnumDecl 0x{{.*}} imported in ModA.ModAFile1 <undeserialized declarations> MyEnum1
|
|
// CHECK-NEXT: | |-also in ModB
|
|
// CHECK-NEXT: | `-EnumConstantDecl 0x{{.*}} imported in ModA.ModAFile1 referenced MyVal_A 'int'
|
|
// CHECK-NEXT: |-TypedefDecl 0x{{.*}} imported in ModA.ModAFile1 hidden MyEnum1 'enum MyEnum1'
|
|
// CHECK-NEXT: | `-ElaboratedType 0x{{.*}} 'enum MyEnum1' sugar imported
|
|
// CHECK-NEXT: | `-EnumType 0x{{.*}} 'enum MyEnum1' imported
|
|
// CHECK-NEXT: | `-Enum 0x{{.*}} 'MyEnum1'
|
|
|
|
|
|
enum MyEnum2 { MyVal_B };
|
|
// CHECK: |-EnumDecl 0x{{.*}} imported in ModA.ModAFile1 <undeserialized declarations> MyEnum2
|
|
// CHECK-NEXT: | |-also in ModB
|
|
// CHECK-NEXT: | `-EnumConstantDecl 0x{{.*}} imported in ModA.ModAFile1 referenced MyVal_B 'int'
|
|
|
|
|
|
typedef enum { MyVal_C } MyEnum3;
|
|
// CHECK: |-EnumDecl 0x{{.*}} imported in ModA.ModAFile1 <undeserialized declarations>
|
|
// CHECK-NEXT: | |-also in ModB
|
|
// CHECK-NEXT: | `-EnumConstantDecl 0x{{.*}} imported in ModA.ModAFile1 referenced MyVal_C 'int'
|
|
// CHECK-NEXT: |-TypedefDecl 0x{{.*}} imported in ModA.ModAFile1 hidden MyEnum3 'enum MyEnum3':'MyEnum3'
|
|
// CHECK-NEXT: | `-ElaboratedType 0x{{.*}} 'enum MyEnum3' sugar imported
|
|
// CHECK-NEXT: | `-EnumType 0x{{.*}} 'MyEnum3' imported
|
|
// CHECK-NEXT: | `-Enum 0x{{.*}}
|
|
|
|
struct MyStruct {
|
|
enum MyEnum5 { MyVal_D } Field;
|
|
};
|
|
|
|
// CHECK: |-RecordDecl 0x{{.*}} imported in ModA.ModAFile1 <undeserialized declarations> struct MyStruct definition
|
|
// CHECK-NEXT: | |-also in ModB
|
|
// CHECK-NEXT: | |-EnumDecl 0x{{.*}} imported in ModA.ModAFile1 <undeserialized declarations> MyEnum5
|
|
// CHECK-NEXT: | | |-also in ModB
|
|
// CHECK-NEXT: | | `-EnumConstantDecl 0x{{.*}} imported in ModA.ModAFile1 referenced MyVal_D 'int'
|
|
// CHECK-NEXT: | `-FieldDecl 0x{{.*}} imported in ModA.ModAFile1 hidden Field 'enum MyEnum5'
|
|
|
|
// In this case, no merging happens on the EnumDecl in Objective-C, and ASTWriter writes both EnumConstantDecls when building ModB.
|
|
enum { MyVal_E };
|
|
// CHECK: |-EnumDecl 0x{{.*}} imported in ModA.ModAFile1 hidden <undeserialized declarations>
|
|
// CHECK-NEXT: | `-EnumConstantDecl 0x{{.*}} imported in ModA.ModAFile1 hidden MyVal_E 'int'
|
|
|
|
|
|
// Redeclarations coming from ModB.
|
|
// CHECK: |-TypedefDecl 0x{{.*}} prev 0x{{.*}} imported in ModB MyEnum1 'enum MyEnum1'
|
|
// CHECK-NEXT: | `-ElaboratedType 0x{{.*}} 'enum MyEnum1' sugar imported
|
|
// CHECK-NEXT: | `-EnumType 0x{{.*}} 'enum MyEnum1' imported
|
|
// CHECK-NEXT: | `-Enum 0x{{.*}} 'MyEnum1'
|
|
|
|
// CHECK: |-EnumDecl 0x{{.*}} prev 0x{{.*}} imported in ModB <undeserialized declarations>
|
|
// CHECK-NEXT: | |-also in ModB
|
|
// CHECK-NEXT: | `-EnumConstantDecl 0x{{.*}} imported in ModB MyVal_C 'int'
|
|
// CHECK-NEXT: |-TypedefDecl 0x{{.*}} prev 0x{{.*}} imported in ModB MyEnum3 'enum MyEnum3':'MyEnum3'
|
|
// CHECK-NEXT: | `-ElaboratedType 0x{{.*}} 'enum MyEnum3' sugar imported
|
|
// CHECK-NEXT: | `-EnumType 0x{{.*}} 'MyEnum3' imported
|
|
// CHECK-NEXT: | `-Enum 0x{{.*}}
|
|
|
|
// CHECK: |-EnumDecl 0x{{.*}} imported in ModB <undeserialized declarations>
|
|
// CHECK-NEXT: | `-EnumConstantDecl 0x{{.*}} first 0x{{.*}} imported in ModB referenced MyVal_E 'int'
|
|
|
|
|
|
|
|
//--- module.modulemap
|
|
module ModA {
|
|
module ModAFile1 {
|
|
header "ModAFile1.h"
|
|
export *
|
|
}
|
|
module ModAFile2 {
|
|
header "ModAFile2.h"
|
|
export *
|
|
}
|
|
}
|
|
// The goal of writing ModB is to test that ASTWriter can handle the merged AST nodes correctly.
|
|
// For example, a stale declaration in IdResolver can cause an assertion failure while writing the identifier table.
|
|
module ModB {
|
|
header "ModBFile.h"
|
|
export *
|
|
}
|
|
|
|
//--- ModAFile1.h
|
|
#include "shared.h"
|
|
|
|
//--- ModAFile2.h
|
|
// Including this file, triggers loading of the module ModA with nodes coming ModAFile1.h being hidden.
|
|
|
|
//--- ModBFile.h
|
|
// ModBFile depends on ModAFile2.h only.
|
|
#include "ModAFile2.h"
|
|
// Including shared.h here causes Sema to merge the AST nodes from shared.h with the hidden ones from ModA.
|
|
#include "shared.h"
|
|
|
|
|
|
//--- source.m
|
|
#include "ModBFile.h"
|
|
|
|
int main() { return MyVal_A + MyVal_B + MyVal_C + MyVal_D + MyVal_E; }
|