diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2008-12-05 01:06:39 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2008-12-05 01:06:39 +0000 |
| commit | 2a03c7e977b7a7bd923c8f8c41c0e81e3b96f63e (patch) | |
| tree | b04c06f8152f3ad50cf9a947732418d8097e3477 /llvm/test | |
| parent | d368de794af01b50d269306649f02128e4fbbbea (diff) | |
| download | bcm5719-llvm-2a03c7e977b7a7bd923c8f8c41c0e81e3b96f63e.tar.gz bcm5719-llvm-2a03c7e977b7a7bd923c8f8c41c0e81e3b96f63e.zip | |
Re-did 60519. It turns out Darwin's handling of hidden visibility symbols are a bit more complicate than I expected. Both declarations and weak definitions still need a stub indirection. However, the stubs are in data section and they contain the addresses of the actual symbols.
llvm-svn: 60571
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/hidden-vis-2.ll | 12 | ||||
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/hidden-vis.ll | 9 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/hidden-vis-2.ll | 1 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/hidden-vis-3.ll | 15 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/hidden-vis-4.ll | 11 |
5 files changed, 47 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/hidden-vis-2.ll b/llvm/test/CodeGen/PowerPC/hidden-vis-2.ll new file mode 100644 index 00000000000..4c9ae552f7c --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/hidden-vis-2.ll @@ -0,0 +1,12 @@ +; RUN: llvm-as < %s | llc -mtriple=powerpc-apple-darwin9 | grep non_lazy_ptr | count 6 + +@x = external hidden global i32 ; <i32*> [#uses=1] +@y = extern_weak hidden global i32 ; <i32*> [#uses=1] + +define i32 @t() nounwind readonly { +entry: + %0 = load i32* @x, align 4 ; <i32> [#uses=1] + %1 = load i32* @y, align 4 ; <i32> [#uses=1] + %2 = add i32 %1, %0 ; <i32> [#uses=1] + ret i32 %2 +} diff --git a/llvm/test/CodeGen/PowerPC/hidden-vis.ll b/llvm/test/CodeGen/PowerPC/hidden-vis.ll new file mode 100644 index 00000000000..e04c89aebcc --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/hidden-vis.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | llc -mtriple=powerpc-apple-darwin9 | not grep non_lazy_ptr + +@x = weak hidden global i32 0 ; <i32*> [#uses=1] + +define i32 @t() nounwind readonly { +entry: + %0 = load i32* @x, align 4 ; <i32> [#uses=1] + ret i32 %0 +} diff --git a/llvm/test/CodeGen/X86/hidden-vis-2.ll b/llvm/test/CodeGen/X86/hidden-vis-2.ll index 4df1c1c5b21..e000547f44f 100644 --- a/llvm/test/CodeGen/X86/hidden-vis-2.ll +++ b/llvm/test/CodeGen/X86/hidden-vis-2.ll @@ -1,6 +1,5 @@ ; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep mov | count 1 ; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin9 | not grep GOT -; XFAIL: * @x = weak hidden global i32 0 ; <i32*> [#uses=1] diff --git a/llvm/test/CodeGen/X86/hidden-vis-3.ll b/llvm/test/CodeGen/X86/hidden-vis-3.ll new file mode 100644 index 00000000000..81dc76e1488 --- /dev/null +++ b/llvm/test/CodeGen/X86/hidden-vis-3.ll @@ -0,0 +1,15 @@ +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep mov | count 3 +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep non_lazy_ptr +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep long | count 2 +; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin9 | not grep GOT + +@x = external hidden global i32 ; <i32*> [#uses=1] +@y = extern_weak hidden global i32 ; <i32*> [#uses=1] + +define i32 @t() nounwind readonly { +entry: + %0 = load i32* @x, align 4 ; <i32> [#uses=1] + %1 = load i32* @y, align 4 ; <i32> [#uses=1] + %2 = add i32 %1, %0 ; <i32> [#uses=1] + ret i32 %2 +} diff --git a/llvm/test/CodeGen/X86/hidden-vis-4.ll b/llvm/test/CodeGen/X86/hidden-vis-4.ll new file mode 100644 index 00000000000..e6936de1036 --- /dev/null +++ b/llvm/test/CodeGen/X86/hidden-vis-4.ll @@ -0,0 +1,11 @@ +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep non_lazy_ptr +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep long +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep comm + +@x = common hidden global i32 0 ; <i32*> [#uses=1] + +define i32 @t() nounwind readonly { +entry: + %0 = load i32* @x, align 4 ; <i32> [#uses=1] + ret i32 %0 +} |

