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

[GlobalMerge][PPC] Don't merge globals in llvm.metadata section #131801

Merged
merged 1 commit into from
Apr 2, 2025

Conversation

nikic
Copy link
Contributor

@nikic nikic commented Mar 18, 2025

The llvm.metadata section is not emitted and has special semantics. We should not merge globals in it, similarly to how we already skip merging of llvm.xyz globals.

Fixes #131394.

@llvmbot
Copy link
Member

llvmbot commented Mar 18, 2025

@llvm/pr-subscribers-backend-powerpc

Author: Nikita Popov (nikic)

Changes

The llvm.metadata section is not emitted and has special semantics. We should not merge globals in it, similarly to how we already skip merging of llvm.xyz globals.

Fixes #131394.


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

2 Files Affected:

  • (modified) llvm/lib/CodeGen/GlobalMerge.cpp (+3-1)
  • (added) llvm/test/CodeGen/PowerPC/global-merge-llvm-metadata.ll (+9)
diff --git a/llvm/lib/CodeGen/GlobalMerge.cpp b/llvm/lib/CodeGen/GlobalMerge.cpp
index 1aedc447935b7..872d8199d9488 100644
--- a/llvm/lib/CodeGen/GlobalMerge.cpp
+++ b/llvm/lib/CodeGen/GlobalMerge.cpp
@@ -711,7 +711,9 @@ bool GlobalMergeImpl::run(Module &M) {
       continue;
 
     // Ignore all 'special' globals.
-    if (GV.getName().starts_with("llvm.") || GV.getName().starts_with(".llvm."))
+    if (GV.getName().starts_with("llvm.") ||
+        GV.getName().starts_with(".llvm.") ||
+        Section == "llvm.metadata")
       continue;
 
     // Ignore all "required" globals:
diff --git a/llvm/test/CodeGen/PowerPC/global-merge-llvm-metadata.ll b/llvm/test/CodeGen/PowerPC/global-merge-llvm-metadata.ll
new file mode 100644
index 0000000000000..7db092e13afeb
--- /dev/null
+++ b/llvm/test/CodeGen/PowerPC/global-merge-llvm-metadata.ll
@@ -0,0 +1,9 @@
+; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
+
+@index = global i32 0, align 4
+@.str = private unnamed_addr constant [1 x i8] zeroinitializer, section "llvm.metadata"
+@.str.1 = private unnamed_addr constant [7 x i8] c"test.c\00", section "llvm.metadata" 
+@llvm.global.annotations = appending global [1 x { ptr, ptr, ptr, i32, ptr }] [{ ptr, ptr, ptr, i32, ptr } { ptr @index, ptr @.str, ptr @.str.1, i32 1, ptr null }], section "llvm.metadata"
+
+; CHECK-NOT: .set
+; CHECK-NOT: _MergedGlobals

Copy link

github-actions bot commented Mar 18, 2025

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

The llvm.metadata section is not emitted and has special semantics.
We should not merge globals in it, similarly to how we already
skip merging of `llvm.xyz` globals.

Fixes llvm#131394.
Copy link
Contributor

@amy-kwan amy-kwan left a comment

Choose a reason for hiding this comment

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

LGTM, thank you for the patch.

@tstellar tstellar added this to the LLVM 20.X Release milestone Mar 25, 2025
@amy-kwan
Copy link
Contributor

amy-kwan commented Apr 1, 2025

@nikic Just following up in case there are any issues, this patch can be merged, right?

@nikic nikic merged commit 9356091 into llvm:main Apr 2, 2025
11 checks passed
@nikic nikic deleted the merge-llvm-metadata branch April 2, 2025 08:40
@nikic
Copy link
Contributor Author

nikic commented Apr 2, 2025

Yeah, this is good to go. We confirmed that this does fix the original issue in chromium.

/cherry-pick 9356091

@llvmbot
Copy link
Member

llvmbot commented Apr 2, 2025

/pull-request #134052

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

Successfully merging this pull request may close these issues.

ppc64le: Undefined temporary symbol .L_MergedGlobals
4 participants