Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / bolt / test / AArch64 / runtime-relocs.test
bloba8347b531c1447ecef144e19f012e9ebe7d1ff56
1 // This test checks dynamic relocations support for aarch64.
3 RUN: yaml2obj %p/Inputs/rels-so.yaml &> %t.so
4 RUN: yaml2obj %p/Inputs/rels-exe.yaml &> %t.exe
5 RUN: llvm-bolt %t.so -o %t.bolt.so --use-old-text=0 --lite=0
6 RUN: llvm-bolt %t.exe -o %t.bolt.exe --use-old-text=0 --lite=0
8 // Check relocations in library:
10 RUN: llvm-readelf -rW %t.bolt.so | FileCheck %s -check-prefix=CHECKLIB
12 CHECKLIB: {{.*}} R_AARCH64_GLOB_DAT     {{.*}} a + 0
13 CHECKLIB: {{.*}} R_AARCH64_TLSDESC      {{.*}} t1 + 0
14 CHECKLIB: {{.*}} R_AARCH64_ABS64        {{.*}} a + 0
16 // Check relocations in executable:
18 RUN: llvm-readelf -rW %t.bolt.exe | FileCheck %s -check-prefix=CHECKEXE
20 CHECKEXE: {{.*}} R_AARCH64_TLS_TPREL64  {{.*}} t1 + 0
21 CHECKEXE: {{.*}} R_AARCH64_COPY         {{.*}} a + 0
22 CHECKEXE: {{.*}} R_AARCH64_JUMP_SLOT    {{.*}} inc + 0
24 // Check traditional TLS relocations R_AARCH64_TLS_DTPMOD64 and
25 // R_AARCH64_TLS_DTPREL64 emitted correctly after bolt. Since these
26 // relocations are obsolete and clang and lld does not support them,
27 // the initial binary was built with gcc and ld with -mtls-dialect=trad flag.
29 RUN: yaml2obj %p/Inputs/tls-trad.yaml &> %t.trad.so
30 RUN: llvm-bolt %t.trad.so -o %t.trad.bolt.so --use-old-text=0 --lite=0
31 RUN: llvm-readelf -rW %t.trad.so | FileCheck %s -check-prefix=CHECKTRAD
33 CHECKTRAD: {{.*}} R_AARCH64_TLS_DTPMOD64 {{.*}} t1 + 0
34 CHECKTRAD: {{.*}} R_AARCH64_TLS_DTPREL64 {{.*}} t1 + 0
36 // The ld linker emits R_AARCH64_TLSDESC to .rela.plt section, check that
37 // it is emitted correctly.
39 RUN: yaml2obj %p/Inputs/tls-ld.yaml &> %t.ld.so
40 RUN: llvm-bolt %t.ld.so -o %t.ld.bolt.so --use-old-text=0 --lite=0
41 RUN: llvm-readelf -rW %t.ld.bolt.so | FileCheck %s -check-prefix=CHECKLD
43 CHECKLD: {{.*}} R_AARCH64_TLSDESC        {{.*}} t1 + 0