forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add function merger to be run during LTO link with gold plugin (llvm#…
…121343) Patch adds 'merge-functions' plugin option for this purpose.
- Loading branch information
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128" | ||
target triple = "x86_64-pc-linux-gnu" | ||
|
||
@_g = dso_local global i32 0, align 4 | ||
@llvm.compiler.used = appending global [1 x ptr] [ptr @_g], section "llvm.metadata" | ||
|
||
define dso_local i32 @foo(i32 noundef %0) #0 { | ||
%2 = add nsw i32 %0, 42 | ||
store i32 %2, ptr @_g, align 4 | ||
ret i32 %2 | ||
} | ||
|
||
attributes #0 = { noinline } | ||
|
||
!llvm.module.flags = !{!0, !1} | ||
|
||
!0 = !{i32 1, !"ThinLTO", i32 0} | ||
!1 = !{i32 1, !"EnableSplitLTOUnit", i32 1} | ||
|
||
^0 = module: (path: "/tmp/func2.o", hash: (0, 0, 0, 0, 0)) | ||
^1 = gv: (name: "foo", summaries: (function: (module: ^0, flags: (linkage: external, visibility: default, notEligibleToImport: 1, live: 0, dsoLocal: 1, canAutoHide: 0), insts: 3, funcFlags: (readNone: 0, readOnly: 0, noRecurse: 1, returnDoesNotAlias: 0, noInline: 1, alwaysInline: 0, noUnwind: 1, mayThrow: 0, hasUnknownCall: 0, mustBeUnreachable: 0), refs: (^3)))) ; guid = 6699318081062747564 | ||
^2 = gv: (name: "llvm.compiler.used", summaries: (variable: (module: ^0, flags: (linkage: appending, visibility: default, notEligibleToImport: 1, live: 1, dsoLocal: 0, canAutoHide: 0), varFlags: (readonly: 0, writeonly: 0, constant: 0), refs: (^3)))) ; guid = 9610627770985738006 | ||
^3 = gv: (name: "_g", summaries: (variable: (module: ^0, flags: (linkage: external, visibility: default, notEligibleToImport: 1, live: 0, dsoLocal: 1, canAutoHide: 0), varFlags: (readonly: 1, writeonly: 1, constant: 0)))) ; guid = 9713702464056781075 | ||
^4 = flags: 8 | ||
^5 = blockcount: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
; RUN: llvm-as %s -o %t.bc | ||
; RUN: llvm-as %p/Inputs/merge-functions-foo.ll -o %t-foo.bc | ||
; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \ | ||
; RUN: -m elf_x86_64 \ | ||
; RUN: -plugin-opt=merge-functions \ | ||
; RUN: -plugin-opt=save-temps \ | ||
; RUN: -u main \ | ||
; RUN: %t.bc %t-foo.bc \ | ||
; RUN: -o %t-out | ||
; RUN: llvm-dis %t-out.0.5.precodegen.bc -o - | FileCheck %s | ||
|
||
; Check that we've merged foo and bar | ||
; CHECK: define dso_local noundef i32 @main() | ||
; CHECK-NEXT: tail call fastcc void @bar() | ||
; CHECK-NEXT: tail call fastcc void @bar() | ||
|
||
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128" | ||
target triple = "x86_64-pc-linux-gnu" | ||
|
||
@_g = external local_unnamed_addr global i32, align 4 | ||
|
||
define dso_local i32 @bar(i32 noundef %0) #0 { | ||
%2 = add nsw i32 %0, 42 | ||
store i32 %2, ptr @_g, align 4 | ||
ret i32 %2 | ||
} | ||
|
||
define dso_local noundef i32 @main() { | ||
%1 = tail call i32 @foo(i32 noundef 1) | ||
%2 = tail call i32 @bar(i32 noundef 1) | ||
ret i32 0 | ||
} | ||
|
||
declare i32 @foo(i32 noundef) local_unnamed_addr #2 | ||
|
||
attributes #0 = { noinline } | ||
|
||
!llvm.module.flags = !{!0, !1} | ||
|
||
!0 = !{i32 1, !"ThinLTO", i32 0} | ||
!1 = !{i32 1, !"EnableSplitLTOUnit", i32 1} | ||
|
||
^0 = module: (path: "merge-functions.o", hash: (0, 0, 0, 0, 0)) | ||
^1 = gv: (name: "foo") ; guid = 6699318081062747564 | ||
^2 = gv: (name: "_g") ; guid = 9713702464056781075 | ||
^3 = gv: (name: "main", summaries: (function: (module: ^0, flags: (linkage: external, visibility: default, notEligibleToImport: 1, live: 0, dsoLocal: 1, canAutoHide: 0), insts: 3, funcFlags: (readNone: 0, readOnly: 0, noRecurse: 0, returnDoesNotAlias: 0, noInline: 0, alwaysInline: 0, noUnwind: 1, mayThrow: 0, hasUnknownCall: 0, mustBeUnreachable: 0), calls: ((callee: ^1, tail: 1), (callee: ^4, tail: 1))))) ; guid = 15822663052811949562 | ||
^4 = gv: (name: "bar", summaries: (function: (module: ^0, flags: (linkage: external, visibility: default, notEligibleToImport: 1, live: 0, dsoLocal: 1, canAutoHide: 0), insts: 3, funcFlags: (readNone: 0, readOnly: 0, noRecurse: 1, returnDoesNotAlias: 0, noInline: 1, alwaysInline: 0, noUnwind: 1, mayThrow: 0, hasUnknownCall: 0, mustBeUnreachable: 0), refs: (^2)))) ; guid = 16434608426314478903 | ||
^5 = flags: 8 | ||
^6 = blockcount: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters