[llvm] [MergeFunc] Keep comdat on new function, not thunk. (PR #130583)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 04:18:14 PDT 2025


https://github.com/fhahn created https://github.com/llvm/llvm-project/pull/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.

>From 877b06be68251d637a98eb3313f8ff2c1ae4c6db Mon Sep 17 00:00:00 2001
From: Florian Hahn <flo at fhahn.com>
Date: Mon, 10 Mar 2025 11:13:33 +0000
Subject: [PATCH] [MergeFunc] Keep comdat on new function, not thunk.

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.
---
 llvm/lib/Transforms/IPO/MergeFunctions.cpp |  2 ++
 llvm/test/Transforms/MergeFunc/comdat.ll   | 10 ++++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

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