diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2015-03-06 13:49:05 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2015-03-06 13:49:05 +0000 |
commit | dfc6383227eddbce311f428ddf591baf90d728d4 (patch) | |
tree | d40f6860232932b5088c0d41a2bbcfb52763e934 /test/MC | |
parent | 66aa390799a7988c77317032567ecf7935c72834 (diff) |
[AsmPrinter][TLOF] 32-bit MachO support for replacing GOT equivalents
Add MachO 32-bit (i.e. arm and x86) support for replacing global GOT equivalent
symbol accesses. Unlike 64-bit targets, there's no GOTPCREL relocation, and
access through a non_lazy_symbol_pointers section is used instead.
-- before
_extgotequiv:
.long _extfoo
_delta:
.long _extgotequiv-_delta
-- after
_delta:
.long L_extfoo$non_lazy_ptr-_delta
.section __IMPORT,__pointers,non_lazy_symbol_pointers
L_extfoo$non_lazy_ptr:
.indirect_symbol _extfoo
.long 0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231475 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r-- | test/MC/MachO/cstexpr-gotpcrel-32.ll | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/test/MC/MachO/cstexpr-gotpcrel-32.ll b/test/MC/MachO/cstexpr-gotpcrel-32.ll new file mode 100644 index 00000000000..a28c0293c97 --- /dev/null +++ b/test/MC/MachO/cstexpr-gotpcrel-32.ll @@ -0,0 +1,77 @@ +; RUN: llc -mtriple=i386-apple-darwin %s -o %t +; RUN: FileCheck %s < %t +; RUN: FileCheck %s -check-prefix=GOT-EQUIV < %t +; RUN: llc -mtriple=arm-apple-darwin %s -o %t +; RUN: FileCheck %s < %t +; RUN: FileCheck %s -check-prefix=GOT-EQUIV < %t + +; GOT equivalent globals references can be replaced by the GOT entry of the +; final symbol instead. + +%struct.data = type { i32, %struct.anon } +%struct.anon = type { i32, i32 } + +; Check that these got equivalent symbols are never emitted or used +; GOT-EQUIV-NOT: _localgotequiv +; GOT-EQUIV-NOT: _extgotequiv +@localfoo = global i32 42 +@localgotequiv = private unnamed_addr constant i32* @localfoo + +@extfoo = external global i32 +@extgotequiv = private unnamed_addr constant i32* @extfoo + +; Don't replace GOT equivalent usage within instructions and emit the GOT +; equivalent since it can't be replaced by the GOT entry. @bargotequiv is +; used by an instruction inside @t0. +; +; CHECK: l_bargotequiv: +; CHECK-NEXT: .long _extbar +@extbar = external global i32 +@bargotequiv = private unnamed_addr constant i32* @extbar + +@table = global [4 x %struct.data] [ +; CHECK-LABEL: _table + %struct.data { i32 1, %struct.anon { i32 2, i32 3 } }, +; Test GOT equivalent usage inside nested constant arrays. +; CHECK: .long 5 +; CHECK-NOT: l_localgotequiv-(_table+20) +; CHECK-NEXT: L_localfoo$non_lazy_ptr-(_table+20) + %struct.data { i32 4, %struct.anon { i32 5, + i32 sub (i32 ptrtoint (i32** @localgotequiv to i32), + i32 ptrtoint (i32* getelementptr inbounds ([4 x %struct.data]* @table, i32 0, i32 1, i32 1, i32 1) to i32))} + }, +; CHECK: .long 5 +; CHECK-NOT: l_extgotequiv-(_table+32) +; CHECK-NEXT: L_extfoo$non_lazy_ptr-(_table+32) + %struct.data { i32 4, %struct.anon { i32 5, + i32 sub (i32 ptrtoint (i32** @extgotequiv to i32), + i32 ptrtoint (i32* getelementptr inbounds ([4 x %struct.data]* @table, i32 0, i32 2, i32 1, i32 1) to i32))} + }, +; Test support for arbitrary constants into the GOTPCREL offset +; CHECK: .long 5 +; CHECK-NOT: (l_extgotequiv-(_table+44))+24 +; CHECK-NEXT: L_extfoo$non_lazy_ptr-(_table+20) + %struct.data { i32 4, %struct.anon { i32 5, + i32 add (i32 sub (i32 ptrtoint (i32** @extgotequiv to i32), + i32 ptrtoint (i32* getelementptr inbounds ([4 x %struct.data]* @table, i32 0, i32 3, i32 1, i32 1) to i32)), + i32 24)} + } +], align 16 + +; Test multiple uses of GOT equivalents. +; CHECK-LABEL: _delta +; CHECK: .long L_extfoo$non_lazy_ptr-_delta +@delta = global i32 sub (i32 ptrtoint (i32** @extgotequiv to i32), + i32 ptrtoint (i32* @delta to i32)) + +; CHECK-LABEL: _deltaplus: +; CHECK: .long L_localfoo$non_lazy_ptr-(_deltaplus-55) +@deltaplus = global i32 add (i32 sub (i32 ptrtoint (i32** @localgotequiv to i32), + i32 ptrtoint (i32* @deltaplus to i32)), + i32 55) + +define i32 @t0(i32 %a) { + %x = add i32 sub (i32 ptrtoint (i32** @bargotequiv to i32), + i32 ptrtoint (i32 (i32)* @t0 to i32)), %a + ret i32 %x +} |