mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
250f0cb393
I overzealously landed this before I was sure that another change wouldn't break the build that this change depends on. This change adds support for sections involved in dynamic loading such as SHT_DYNAMIC, SHT_DYNSYM, and allocated string tables. The two added binaries used for tests can be downloaded here and here Differential Revision: https://reviews.llvm.org/D36560 llvm-svn: 313767
28 lines
923 B
Plaintext
28 lines
923 B
Plaintext
# RUN: llvm-objcopy %p/Inputs/dynamic.so %t
|
|
# RUN: llvm-readobj -dynamic-table %t | FileCheck %s
|
|
# RUN: llvm-readobj -sections %t | FileCheck -check-prefix=LINK %s
|
|
|
|
#CHECK: DynamicSection [
|
|
#CHECK-NEXT: Tag Type Name/Value
|
|
#CHECK-NEXT: 0x0000000000000006 SYMTAB 0x1C8
|
|
#CHECK-NEXT: 0x000000000000000B SYMENT 24
|
|
#CHECK-NEXT: 0x0000000000000005 STRTAB 0x210
|
|
#CHECK-NEXT: 0x000000000000000A STRSZ 5
|
|
#CHECK-NEXT: 0x0000000000000004 HASH 0x1F8
|
|
#CHECK-NEXT: 0x0000000000000000 NULL 0x0
|
|
#CHECK-NEXT:]
|
|
|
|
#LINK: Index: 3
|
|
#LINK-NEXT: Name: .dynstr
|
|
|
|
#LINK: Name: .dynamic
|
|
#LINK-NEXT: Type: SHT_DYNAMIC
|
|
#LINK-NEXT: Flags [
|
|
#LINK-NEXT: SHF_ALLOC
|
|
#LINK-NEXT: SHF_WRITE
|
|
#LINK-NEXT: ]
|
|
#LINK-NEXT: Address:
|
|
#LINK-NEXT: Offset:
|
|
#LINK-NEXT: Size:
|
|
#LINK-NEXT: Link: 3
|