Skip to content

Commit 0359acf

Browse files
committed
[ELF,test] Add eh-frame-nonzero-offset-riscv.s for #65966
I plan to define RISCV::relocateAllocate in a subsequent change. Add a test to verify `else if (auto *ehIn = dyn_cast<EhInputSection>(&sec)) secAddr += ehIn->getParent()->outSecOff;`
1 parent f8c5541 commit 0359acf

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// REQUIRES: riscv
2+
// RUN: rm -rf %t && split-file %s %t && cd %t
3+
4+
// RUN: llvm-mc -filetype=obj -triple=riscv64 a.s -o a.o
5+
// RUN: ld.lld a.o -T eh-frame-non-zero-offset.t -o non-zero
6+
// RUN: llvm-readelf --program-headers --unwind --symbols -x .eh_frame non-zero | FileCheck --check-prefix=NONZERO %s
7+
// RUN: ld.lld a.o -T eh-frame-zero-offset.t -o zero
8+
// RUN: llvm-readelf --program-headers --unwind --symbols -x .eh_frame zero | FileCheck --check-prefix=ZERO %s
9+
10+
// NONZERO: {{[0-9]+}}: 0000000000000088 {{.*}} __eh_frame_start
11+
// NONZERO-NEXT: {{[0-9]+}}: 00000000000000b4 {{.*}} __eh_frame_end
12+
13+
// NONZERO: 0x00000088 10000000 00000000 017a5200 01780101 .
14+
// NONZERO-NEXT: 0x00000098 1b0c0200 10000000 18000000 5cffffff .
15+
// NONZERO-NEXT: 0x000000a8 04000000 00000000 00000000 .
16+
17+
// ZERO: {{[0-9]+}}: 0000000000000008 {{.*}} __eh_frame_start
18+
// ZERO-NEXT: {{[0-9]+}}: 0000000000000034 {{.*}} __eh_frame_end
19+
20+
// ZERO: 0x00000008 10000000 00000000 017a5200 01780101 .
21+
// ZERO-NEXT: 0x00000018 1b0c0200 10000000 18000000 dcffffff .
22+
// ZERO-NEXT: 0x00000028 04000000 00000000 00000000 .
23+
24+
//--- eh-frame-non-zero-offset.t
25+
SECTIONS {
26+
.text : { *(.text .text.*) }
27+
.eh_frame : {
28+
/* Padding within .eh_frame */
29+
. += 128;
30+
__eh_frame_start = .;
31+
*(.eh_frame) ;
32+
__eh_frame_end = .;
33+
}
34+
}
35+
36+
//--- eh-frame-zero-offset.t
37+
SECTIONS {
38+
.text : { *(.text .text.*) }
39+
.eh_frame : {
40+
__eh_frame_start = .;
41+
*(.eh_frame) ;
42+
__eh_frame_end = .;
43+
}
44+
}
45+
46+
//--- a.s
47+
.section .text.01, "ax",%progbits
48+
.global f1
49+
.type f1, %function
50+
f1:
51+
.cfi_startproc
52+
.space 4
53+
.cfi_endproc

0 commit comments

Comments
 (0)