2013-05-10 16:17:24 +00:00
|
|
|
@ RUN: llvm-mc %s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o - \
|
|
|
|
@ RUN: | llvm-readobj -s -sd -sr -t | FileCheck %s
|
|
|
|
|
|
|
|
@ Check the .group section for the function in comdat section.
|
|
|
|
|
|
|
|
@ In C++, the instantiation of the template will come with linkonce (or
|
|
|
|
@ linkonce_odr) linkage, so that the linker can remove the duplicated
|
|
|
|
@ instantiation. When the exception handling is enabled on those function,
|
|
|
|
@ we have to group the corresponding .ARM.extab and .ARM.exidx with the
|
|
|
|
@ text section together.
|
|
|
|
@
|
|
|
|
@ This test case will check the content of .group section. The section index
|
|
|
|
@ of the grouped sections should be recorded in .group section.
|
|
|
|
|
|
|
|
.syntax unified
|
|
|
|
.section .TEST1,"axG",%progbits,func1,comdat
|
|
|
|
.weak func1
|
|
|
|
.align 2
|
|
|
|
.type func1,%function
|
|
|
|
func1:
|
|
|
|
.fnstart
|
|
|
|
.save {r4, lr}
|
|
|
|
push {r4, lr}
|
|
|
|
.vsave {d8, d9, d10, d11, d12}
|
|
|
|
vpush {d8, d9, d10, d11, d12}
|
|
|
|
.pad #24
|
|
|
|
sub sp, sp, #24
|
|
|
|
|
|
|
|
add sp, sp, #24
|
|
|
|
vpop {d8, d9, d10, d11, d12}
|
|
|
|
pop {r4, pc}
|
|
|
|
|
|
|
|
.globl __gxx_personality_v0
|
|
|
|
.personality __gxx_personality_v0
|
|
|
|
.handlerdata
|
|
|
|
.fnend
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ Check the .group section
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ CHECK: Sections [
|
|
|
|
@ CHECK: Section {
|
|
|
|
@ CHECK: Index: 1
|
|
|
|
@ CHECK: Name: .group
|
|
|
|
@ CHECK: Type: SHT_GROUP (0x11)
|
|
|
|
@ CHECK: Flags [ (0x0)
|
|
|
|
@ CHECK: ]
|
2015-04-30 13:08:09 +00:00
|
|
|
@ CHECK: Size: 24
|
2013-05-10 16:17:24 +00:00
|
|
|
@ CHECK: SectionData (
|
|
|
|
@-------------------------------------------------------------------------------
|
2015-04-30 13:08:09 +00:00
|
|
|
@ These are the section indexes of .TEST1, .ARM.extab.TEST1, .ARM.exidx.TEST1,
|
|
|
|
@ .rel.ARM.extab.TEST1, and .rel.ARM.exidx.TEST1.
|
2013-05-10 16:17:24 +00:00
|
|
|
@-------------------------------------------------------------------------------
|
2015-04-30 13:08:09 +00:00
|
|
|
@ CHECK-NEXT: 0000: 01000000 06000000 07000000 08000000
|
|
|
|
@ CHECK-NEXT: 0010: 09000000 0A000000
|
|
|
|
@ CHECK-NEXT: )
|
2013-05-10 16:17:24 +00:00
|
|
|
@ CHECK: }
|
|
|
|
|
|
|
|
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ Check the .TEST1 section
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ CHECK: Section {
|
2015-04-29 20:25:24 +00:00
|
|
|
@ CHECK: Index: 6
|
|
|
|
@ CHECK-NEXT: Name: .TEST1
|
2013-05-10 16:17:24 +00:00
|
|
|
@ CHECK: Type: SHT_PROGBITS (0x1)
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ The flags should contain SHF_GROUP.
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ CHECK: Flags [ (0x206)
|
|
|
|
@ CHECK: SHF_ALLOC (0x2)
|
|
|
|
@ CHECK: SHF_EXECINSTR (0x4)
|
|
|
|
@ CHECK: SHF_GROUP (0x200)
|
|
|
|
@ CHECK: ]
|
|
|
|
@ CHECK: }
|
|
|
|
|
|
|
|
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ Check the .ARM.extab.TEST1 section
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ CHECK: Section {
|
2015-04-29 20:25:24 +00:00
|
|
|
@ CHECK: Index: 7
|
|
|
|
@ CHECK-NEXT: Name: .ARM.extab.TEST1
|
2013-05-10 16:17:24 +00:00
|
|
|
@ CHECK: Type: SHT_PROGBITS (0x1)
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ The flags should contain SHF_GROUP.
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ CHECK: Flags [ (0x202)
|
|
|
|
@ CHECK: SHF_ALLOC (0x2)
|
|
|
|
@ CHECK: SHF_GROUP (0x200)
|
|
|
|
@ CHECK: ]
|
|
|
|
@ CHECK: }
|
|
|
|
|
2015-04-30 14:21:49 +00:00
|
|
|
@ CHECK: Section {
|
|
|
|
@ CHECK: Index: 8
|
|
|
|
@ CHECK-NEXT: Name: .rel.ARM.extab.TEST1
|
|
|
|
@ CHECK: }
|
2013-05-10 16:17:24 +00:00
|
|
|
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ Check the .ARM.exidx.TEST1 section
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ CHECK: Section {
|
2015-04-30 14:21:49 +00:00
|
|
|
@ CHECK: Index: 9
|
2015-04-29 20:25:24 +00:00
|
|
|
@ CHECK-NEXT: Name: .ARM.exidx.TEST1
|
2013-05-10 16:17:24 +00:00
|
|
|
@ CHECK: Type: SHT_ARM_EXIDX (0x70000001)
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ The flags should contain SHF_GROUP.
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ CHECK: Flags [ (0x282)
|
|
|
|
@ CHECK: SHF_ALLOC (0x2)
|
|
|
|
@ CHECK: SHF_GROUP (0x200)
|
|
|
|
@ CHECK: SHF_LINK_ORDER (0x80)
|
|
|
|
@ CHECK: ]
|
2015-04-29 20:25:24 +00:00
|
|
|
@ CHECK: Link: 6
|
2013-05-10 16:17:24 +00:00
|
|
|
@ CHECK: }
|
|
|
|
|
|
|
|
|
2015-04-30 13:08:09 +00:00
|
|
|
@ CHECK: Section {
|
|
|
|
@ CHECK: Index: 10
|
|
|
|
@ CHECK-NEXT: Name: .rel.ARM.exidx.TEST1
|
|
|
|
@ CHECK: }
|
|
|
|
|
|
|
|
@ CHECK: ]
|
2013-05-10 16:17:24 +00:00
|
|
|
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ Check symbol func1. It should be weak binding, and belong to .TEST1 section.
|
|
|
|
@-------------------------------------------------------------------------------
|
|
|
|
@ CHECK: Symbols [
|
|
|
|
@ CHECK: Symbol {
|
|
|
|
@ CHECK: Name: func1
|
|
|
|
@ CHECK: Binding: Weak (0x2)
|
|
|
|
@ CHECK: Type: Function (0x2)
|
2015-04-29 20:25:24 +00:00
|
|
|
@ CHECK: Section: .TEST1
|
2013-05-10 16:17:24 +00:00
|
|
|
@ CHECK: }
|
|
|
|
@ CHECK: ]
|