[llvm] c7f7ac7 - [MergeFunc] Keep comdat on new function, not thunk. (#130583)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 11:14:36 PDT 2025
Author: Florian Hahn
Date: 2025-03-10T18:14:32Z
New Revision: c7f7ac759110cdcf0d9180515a414c494154d213
URL: https://github.com/llvm/llvm-project/commit/c7f7ac759110cdcf0d9180515a414c494154d213
DIFF: https://github.com/llvm/llvm-project/commit/c7f7ac759110cdcf0d9180515a414c494154d213.diff
LOG: [MergeFunc] Keep comdat on new function, not thunk. (#130583)
MergeFunc uses the original function F as Thunk and creates a new function NewF for the original function F. Preserve F's comdat info on NewF instead of the thunk.
This fixes a crash when trying to lower comdat on the thunk during codegen.
Added:
Modified:
llvm/lib/Transforms/IPO/MergeFunctions.cpp
llvm/test/Transforms/MergeFunc/comdat.ll
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/MergeFunctions.cpp b/llvm/lib/Transforms/IPO/MergeFunctions.cpp
index d2443a83535e4..c463cda68d4b5 100644
--- a/llvm/lib/Transforms/IPO/MergeFunctions.cpp
+++ b/llvm/lib/Transforms/IPO/MergeFunctions.cpp
@@ -923,6 +923,8 @@ void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
F->getAddressSpace(), "", F->getParent());
NewF->copyAttributesFrom(F);
NewF->takeName(F);
+ NewF->setComdat(F->getComdat());
+ F->setComdat(nullptr);
NewF->IsNewDbgInfoFormat = F->IsNewDbgInfoFormat;
// Ensure CFI type metadata is propagated to the new function.
copyMetadataIfPresent(F, NewF, "type");
diff --git a/llvm/test/Transforms/MergeFunc/comdat.ll b/llvm/test/Transforms/MergeFunc/comdat.ll
index 007edaf7b36d2..ba887f86f7412 100644
--- a/llvm/test/Transforms/MergeFunc/comdat.ll
+++ b/llvm/test/Transforms/MergeFunc/comdat.ll
@@ -1,9 +1,11 @@
; RUN: opt -S -passes=mergefunc %s | FileCheck %s
+target triple = "x86_64-unknown-windows-msvc19.42.34436"
+
@symbols = linkonce_odr global <{ ptr, ptr }> <{ ptr @f, ptr @g }>
-$f = comdat any
$g = comdat any
+$f = comdat any
define linkonce_odr hidden i32 @f(i32 %x, i32 %y) comdat {
%sum = add i32 %x, %y
@@ -19,14 +21,14 @@ define linkonce_odr hidden i32 @g(i32 %x, i32 %y) comdat {
ret i32 %sum3
}
-; CHECK: $f = comdat any
; CHECK: $g = comdat any
+; CHECK: $f = comdat any
;.
; CHECK: @symbols = linkonce_odr global <{ ptr, ptr }> <{ ptr @f, ptr @g }>
;.
; CHECK-LABEL: define private i32 @0(
-; CHECK-SAME: i32 [[X:%.*]], i32 [[Y:%.*]]) comdat($f) {
+; CHECK-SAME: i32 [[X:%.*]], i32 [[Y:%.*]]) {
; CHECK-NEXT: [[SUM:%.*]] = add i32 [[X]], [[Y]]
; CHECK-NEXT: [[SUM2:%.*]] = add i32 [[X]], [[SUM]]
; CHECK-NEXT: [[SUM3:%.*]] = add i32 [[X]], [[SUM]]
@@ -40,7 +42,7 @@ define linkonce_odr hidden i32 @g(i32 %x, i32 %y) comdat {
;
;
; CHECK-LABEL: define linkonce_odr hidden i32 @f(
-; CHECK-SAME: i32 [[TMP0:%.*]], i32 [[TMP1:%.*]]) {
+; CHECK-SAME: i32 [[TMP0:%.*]], i32 [[TMP1:%.*]]) comdat {
; CHECK-NEXT: [[TMP3:%.*]] = tail call i32 @[[GLOB0]](i32 [[TMP0]], i32 [[TMP1]])
; CHECK-NEXT: ret i32 [[TMP3]]
;
More information about the llvm-commits
mailing list