-
Notifications
You must be signed in to change notification settings - Fork 12.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64] Merge globals when optimising for size
Extern global merging is good for code-size. There's definitely potential for performance too, but there's one regression in a benchmark that needs investigating, so that's why we enable it only when we optimise for size for now. Patch by Ramakota Reddy and Sjoerd Meijer. Differential Revision: https://reviews.llvm.org/D61947 llvm-svn: 363130
- Loading branch information
Sjoerd Meijer
committed
Jun 12, 2019
1 parent
f763102
commit de73404
Showing
2 changed files
with
35 additions
and
1 deletion.
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
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,21 @@ | ||
| ; RUN: llc %s -o - -verify-machineinstrs | FileCheck %s | ||
|
|
||
| target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" | ||
| target triple = "aarch64-arm-none-eabi" | ||
|
|
||
| @global0 = dso_local local_unnamed_addr global i32 0, align 4 | ||
| @global1 = dso_local local_unnamed_addr global i32 0, align 4 | ||
|
|
||
| define dso_local i32 @func() minsize optsize { | ||
| ; CHECK-LABEL: @func | ||
| ; CHECK: adrp x8, .L_MergedGlobals | ||
| ; CHECK-NEXT: add x8, x8, :lo12:.L_MergedGlobals | ||
| ; CHECK-NEXT: ldp w9, w8, [x8] | ||
| ; CHECK-NEXT: add w0, w8, w9 | ||
| ; CHECK-NEXT: ret | ||
| entry: | ||
| %0 = load i32, i32* @global0, align 4 | ||
| %1 = load i32, i32* @global1, align 4 | ||
| %add = add nsw i32 %1, %0 | ||
| ret i32 %add | ||
| } |