diff options
| author | Mehdi Amini <mehdi.amini@apple.com> | 2016-08-18 00:59:24 +0000 |
|---|---|---|
| committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-08-18 00:59:24 +0000 |
| commit | 8ac7b32207957d99ad903dc2d764ca1740c33755 (patch) | |
| tree | 55906abb6af704ffbfa00e543c3196c806fd1459 /llvm/test | |
| parent | d5ec14989d7cf87082779bf8a85750a176e1e0bd (diff) | |
| download | bcm5719-llvm-8ac7b32207957d99ad903dc2d764ca1740c33755.tar.gz bcm5719-llvm-8ac7b32207957d99ad903dc2d764ca1740c33755.zip | |
[LTO] Promote before performing weak resolution
Summary:
This was reversed compared to ThinLTOCodeGenerator for some reason,
and lead to an increased code-size on my tests. I figured that the
weak resolution may internalize a linkonce function, which will be
promoted immediately (and renamed), before being internalized again.
Reviewers: tejohnson
Subscribers: pcc, llvm-commits, mehdi_amini
Differential Revision: https://reviews.llvm.org/D23632
llvm-svn: 279021
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/ThinLTO/X86/internalize.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/test/ThinLTO/X86/internalize.ll b/llvm/test/ThinLTO/X86/internalize.ll index 4991df55820..dbd768d35c7 100644 --- a/llvm/test/ThinLTO/X86/internalize.ll +++ b/llvm/test/ThinLTO/X86/internalize.ll @@ -3,10 +3,19 @@ ; RUN: llvm-lto -thinlto-action=internalize -thinlto-index %t.index.bc %t1.bc -o - | llvm-dis -o - | FileCheck %s --check-prefix=REGULAR ; RUN: llvm-lto -thinlto-action=internalize -thinlto-index %t.index.bc %t1.bc -o - --exported-symbol=foo | llvm-dis -o - | FileCheck %s --check-prefix=INTERNALIZE +; RUN: llvm-lto2 %t1.bc -o %t.o -save-temps \ +; RUN: -r=%t1.bc,_foo,pxl \ +; RUN: -r=%t1.bc,_bar,pl \ +; RUN: -r=%t1.bc,_linkonce_func,pl +; RUN: llvm-dis < %t.o.1.2.internalize.bc | FileCheck %s --check-prefix=INTERNALIZE + + ; REGULAR: define void @foo ; REGULAR: define void @bar +; REGULAR: define linkonce void @linkonce_func() ; INTERNALIZE: define void @foo ; INTERNALIZE: define internal void @bar +; INTERNALIZE: define internal void @linkonce_func() target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.11.0" @@ -15,5 +24,9 @@ define void @foo() { ret void } define void @bar() { + call void @linkonce_func() + ret void +} +define linkonce void @linkonce_func() { ret void }
\ No newline at end of file |

