File: arm-exidx-sentinel-and-assignment.s

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,388 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (41 lines) | stat: -rw-r--r-- 1,373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# REQUIRES: arm
# RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi %s -o %t.o
# RUN: echo "SECTIONS {                                        \
# RUN:         .ARM.exidx 0x1000 : { *(.ARM.exidx*) foo = .; } \
# RUN:         .text      0x2000 : { *(.text*) }               \
# RUN:       }" > %t.script
## We used to crash if the last output section command for .ARM.exidx
## was anything but an input section description.
# RUN: ld.lld --no-merge-exidx-entries -T %t.script %t.o -shared -o %t.so
# RUN: llvm-objdump -s -triple=armv7a-none-linux-gnueabi %t.so | FileCheck %s
# RUN: llvm-readobj -S --symbols %t.so | FileCheck %s --check-prefix=SYMBOL

 .syntax unified
 .text
 .global _start
_start:
 .fnstart
 .cantunwind
 bx lr
 .fnend

# CHECK: Contents of section .ARM.exidx:
# 1000 + 1000 = 0x2000 = _start
# 1008 + 0ffc = 0x2004 = _start + sizeof(_start)
# CHECK-NEXT: 1000 00100000 01000000 fc0f0000 01000000

# SYMBOL:       Section {
# SYMBOL:         Name: .ARM.exidx
# SYMBOL-NEXT:    Type: SHT_ARM_EXIDX
# SYMBOL-NEXT:    Flags [
# SYMBOL-NEXT:      SHF_ALLOC
# SYMBOL-NEXT:      SHF_LINK_ORDER
# SYMBOL-NEXT:    ]
# SYMBOL-NEXT:    Address: 0x1000
# SYMBOL-NEXT:    Offset:
# SYMBOL-NEXT:    Size: 16

# Symbol 'foo' is expected to point at the end of the section.
# SYMBOL:       Symbol {
# SYMBOL:         Name: foo
# SYMBOL-NEXT:    Value: 0x1010