10 # compiled as clang++ source.cpp
11 # and clang++ -m32 source.cpp
13 RUN: llvm-readelf -l %p/Inputs/phdrs-elf.exe-i386 \
14 RUN: | FileCheck %s -check-prefix ELF32
15 RUN: llvm-readelf -l %p/Inputs/phdrs-elf.exe-x86_64 \
16 RUN: | FileCheck %s -check-prefixes ELF64-PHDRS,ELF64-MAPPING
17 RUN: llvm-readelf -program-headers %p/Inputs/phdrs-elf.exe-x86_64 \
18 RUN: | FileCheck %s -check-prefixes ELF64-PHDRS,ELF64-MAPPING
20 # Check that -section-mapping produces a mapping and not the program headers.
21 RUN: llvm-readelf -section-mapping %p/Inputs/phdrs-elf.exe-x86_64 \
22 RUN: | FileCheck %s -check-prefix ELF64-MAPPING -implicit-check-not="Program Headers:"
24 # Check that -section-mapping=false -program-headers produces just program headers.
25 RUN: llvm-readelf -section-mapping=false -program-headers %p/Inputs/phdrs-elf.exe-x86_64 \
26 RUN: | FileCheck %s -check-prefix ELF64-PHDRS -implicit-check-not="Section to Segment mapping:"
28 # Check that only one copy of the section/segment mapping table is produced.
29 RUN: llvm-readelf -section-mapping -program-headers %p/Inputs/phdrs-elf.exe-x86_64 \
30 RUN: | FileCheck %s -check-prefix ELF64-ONEMAPPING
32 ELF32: Elf file type is EXEC (Executable file)
33 ELF32-NEXT: Entry point 0x8048460
34 ELF32-NEXT: There are 10 program headers, starting at offset 52
36 ELF32: Program Headers:
37 ELF32-NEXT: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align
38 ELF32-NEXT: PHDR 0x000034 0x08048034 0x08048034 0x00140 0x00140 R E 0x4
39 ELF32-NEXT: INTERP 0x000174 0x08048174 0x08048174 0x00013 0x00013 R 0x1
40 ELF32-NEXT: [Requesting program interpreter: /lib/ld-linux.so.2]
41 ELF32-NEXT: LOAD 0x000000 0x08048000 0x08048000 0x006d0 0x006d0 R E 0x1000
42 ELF32-NEXT: LOAD 0x000ef0 0x08049ef0 0x08049ef0 0x00128 0x00140 RW 0x1000
43 ELF32-NEXT: DYNAMIC 0x000f08 0x08049f08 0x08049f08 0x000e8 0x000e8 RW 0x4
44 ELF32-NEXT: NOTE 0x000188 0x08048188 0x08048188 0x00044 0x00044 R 0x4
45 ELF32-NEXT: TLS 0x000ef0 0x08049ef0 0x08049ef0 0x00004 0x00008 R 0x4
46 ELF32-NEXT: GNU_EH_FRAME 0x000640 0x08048640 0x08048640 0x0001c 0x0001c R 0x4
47 ELF32-NEXT: GNU_STACK 0x000000 0x00000000 0x00000000 0x00000 0x00000 RW 0x4
48 ELF32-NEXT: GNU_RELRO 0x000ef0 0x08049ef0 0x08049ef0 0x00110 0x00110 R 0x1
50 ELF32: Section to Segment mapping:
51 ELF32-NEXT: Segment Sections...
53 ELF32-NEXT: 01 .interp
54 ELF32-NEXT: 02 .interp .note.ABI-tag .note.gnu.build-id .hash .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .plt .text .fini .rodata .eh_frame_hdr .eh_frame
55 ELF32-NEXT: 03 .tdata .ctors .dtors .jcr .dynamic .got .got.plt .data .bss
56 ELF32-NEXT: 04 .dynamic
57 ELF32-NEXT: 05 .note.ABI-tag .note.gnu.build-id
58 ELF32-NEXT: 06 .tdata .tbss
59 ELF32-NEXT: 07 .eh_frame_hdr
61 ELF32-NEXT: 09 .tdata .ctors .dtors .jcr .dynamic .got
62 ELF32-NEXT: None .comment .shstrtab .symtab .strtab
64 ELF64-PHDRS: Elf file type is EXEC (Executable file)
65 ELF64-PHDRS-NEXT: Entry point 0x400610
66 ELF64-PHDRS-NEXT: There are 10 program headers, starting at offset 64
68 ELF64-PHDRS: Program Headers:
69 ELF64-PHDRS-NEXT: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align
70 ELF64-PHDRS-NEXT: PHDR 0x000040 0x0000000000400040 0x0000000000400040 0x000230 0x000230 R E 0x8
71 ELF64-PHDRS-NEXT: INTERP 0x000270 0x0000000000400270 0x0000000000400270 0x00001c 0x00001c R 0x1
72 ELF64-PHDRS-NEXT: [Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]
73 ELF64-PHDRS-NEXT: LOAD 0x000000 0x0000000000400000 0x0000000000400000 0x000924 0x000924 R E 0x200000
74 ELF64-PHDRS-NEXT: LOAD 0x000db4 0x0000000000600db4 0x0000000000600db4 0x000274 0x0002a4 RW 0x200000
75 ELF64-PHDRS-NEXT: DYNAMIC 0x000dd0 0x0000000000600dd0 0x0000000000600dd0 0x000210 0x000210 RW 0x8
76 ELF64-PHDRS-NEXT: NOTE 0x00028c 0x000000000040028c 0x000000000040028c 0x000044 0x000044 R 0x4
77 ELF64-PHDRS-NEXT: TLS 0x000db4 0x0000000000600db4 0x0000000000600db4 0x000004 0x000008 R 0x4
78 ELF64-PHDRS-NEXT: GNU_EH_FRAME 0x00083c 0x000000000040083c 0x000000000040083c 0x00002c 0x00002c R 0x4
79 ELF64-PHDRS-NEXT: GNU_STACK 0x000000 0x0000000000000000 0x0000000000000000 0x000000 0x000000 RW 0x8
80 ELF64-PHDRS-NEXT: GNU_RELRO 0x000db4 0x0000000000600db4 0x0000000000600db4 0x00024c 0x00024c R 0x1
82 ELF64-MAPPING: Section to Segment mapping:
83 ELF64-MAPPING-NEXT: Segment Sections...
84 ELF64-MAPPING-NEXT: 00
85 ELF64-MAPPING-NEXT: 01 .interp
86 ELF64-MAPPING-NEXT: 02 .interp .note.ABI-tag .note.gnu.build-id .hash .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt .text .fini .rodata .eh_frame_hdr .eh_frame
87 ELF64-MAPPING-NEXT: 03 .tdata .init_array .fini_array .jcr .dynamic .got .got.plt .data .bss
88 ELF64-MAPPING-NEXT: 04 .dynamic
89 ELF64-MAPPING-NEXT: 05 .note.ABI-tag .note.gnu.build-id
90 ELF64-MAPPING-NEXT: 06 .tdata .tbss
91 ELF64-MAPPING-NEXT: 07 .eh_frame_hdr
92 ELF64-MAPPING-NEXT: 08
93 ELF64-MAPPING-NEXT: 09 .tdata .init_array .fini_array .jcr .dynamic .got
94 ELF64-MAPPING-NEXT: None .comment .shstrtab .symtab .strtab
96 ELF64-ONEMAPPING: Section to Segment mapping:
97 ELF64-ONEMAPPING-NOT: Section to Segment mapping: