1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/test/LTO/X86/linkonce_odr_func.ll
Peter Collingbourne 5dcb77e9fb IR: Introduce local_unnamed_addr attribute.
If a local_unnamed_addr attribute is attached to a global, the address
is known to be insignificant within the module. It is distinct from the
existing unnamed_addr attribute in that it only describes a local property
of the module rather than a global property of the symbol.

This attribute is intended to be used by the code generator and LTO to allow
the linker to decide whether the global needs to be in the symbol table. It is
possible to exclude a global from the symbol table if three things are true:
- This attribute is present on every instance of the global (which means that
  the normal rule that the global must have a unique address can be broken without
  being observable by the program by performing comparisons against the global's
  address)
- The global has linkonce_odr linkage (which means that each linkage unit must have
  its own copy of the global if it requires one, and the copy in each linkage unit
  must be the same)
- It is a constant or a function (which means that the program cannot observe that
  the unique-address rule has been broken by writing to the global)

Although this attribute could in principle be computed from the module
contents, LTO clients (i.e. linkers) will normally need to be able to compute
this property as part of symbol resolution, and it would be inefficient to
materialize every module just to compute it.

See:
http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20160509/356401.html
http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20160516/356738.html
for earlier discussion.

Part of the fix for PR27553.

Differential Revision: http://reviews.llvm.org/D20348

llvm-svn: 272709
2016-06-14 21:01:22 +00:00

55 lines
1.3 KiB
LLVM

; RUN: llvm-as < %s >%t1
; RUN: llvm-lto -o %t2 -dso-symbol=foo1 -dso-symbol=foo2 -dso-symbol=foo3 \
; RUN: -dso-symbol=v1 -dso-symbol=v2 -dso-symbol=v3 \
; RUN: -dso-symbol=v4 -dso-symbol=v5 -dso-symbol=v6 %t1 -O0
; RUN: llvm-nm %t2 | FileCheck %s
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
; CHECK: W foo1
define linkonce_odr void @foo1() noinline {
ret void
}
; CHECK: t foo2
define linkonce_odr void @foo2() local_unnamed_addr noinline {
ret void
}
; CHECK: t foo3
define linkonce_odr void @foo3() unnamed_addr noinline {
ret void
}
; CHECK: V v1
@v1 = linkonce_odr constant i32 32
; CHECK: r v2
@v2 = linkonce_odr local_unnamed_addr constant i32 32
; CHECK: r v3
@v3 = linkonce_odr unnamed_addr constant i32 32
; CHECK: V v4
@v4 = linkonce_odr global i32 32
; CHECK: V v5
@v5 = linkonce_odr local_unnamed_addr global i32 32
; CHECK: d v6
@v6 = linkonce_odr unnamed_addr global i32 32
define void @use() {
call void @foo1()
call void @foo2()
call void @foo3()
%x1 = load i32, i32* @v1
%x2 = load i32, i32* @v2
%x3 = load i32, i32* @v3
%x4 = load i32, i32* @v4
%x5 = load i32, i32* @v5
%x6 = load i32, i32* @v6
ret void
}