mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 07:39:31 +00:00
75b594b1e8
Summary: This adds a unique ID to the COFF section uniquing map, similar to the one we have for ELF. The unique id is not currently exposed via the assembler because we don't have a use case for it yet. Users generally create .pdata with the .seh_* family of directives, and the assembler internally needs to produce .pdata and .xdata sections corresponding to the code section. The association between .text sections and the assembler-created .xdata and .pdata sections is maintained as an ID field of MCSectionCOFF. The CFI-related sections are created with the given unique ID, so if more code is added to the same text section, we can find and reuse the CFI sections that were already created. Reviewers: majnemer, rafael Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D19376 llvm-svn: 268331
106 lines
2.6 KiB
ArmAsm
106 lines
2.6 KiB
ArmAsm
// This test ensures functions in custom sections get unwind info emitted in a
|
|
// distinct .xdata section.
|
|
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-win32 %s | llvm-readobj -s -sd | FileCheck %s
|
|
|
|
// CHECK: Name: .xdata
|
|
// CHECK-NEXT: VirtualSize
|
|
// CHECK-NEXT: VirtualAddress
|
|
// CHECK-NEXT: RawDataSize: 8
|
|
// CHECK-NEXT: PointerToRawData
|
|
// CHECK-NEXT: PointerToRelocations
|
|
// CHECK-NEXT: PointerToLineNumbers
|
|
// CHECK-NEXT: RelocationCount: 0
|
|
// CHECK-NEXT: LineNumberCount: 0
|
|
// CHECK-NEXT: Characteristics [
|
|
// CHECK-NEXT: IMAGE_SCN_ALIGN_4BYTES
|
|
// CHECK-NEXT: IMAGE_SCN_CNT_INITIALIZED_DATA
|
|
// CHECK-NEXT: IMAGE_SCN_MEM_READ
|
|
// CHECK-NEXT: ]
|
|
// CHECK-NEXT: SectionData (
|
|
// CHECK-NEXT: 0000: 01050200 05500402
|
|
// CHECK-NEXT: )
|
|
|
|
// CHECK: Name: .xdata
|
|
// CHECK-NEXT: VirtualSize
|
|
// CHECK-NEXT: VirtualAddress
|
|
// CHECK-NEXT: RawDataSize: 8
|
|
// CHECK-NEXT: PointerToRawData
|
|
// CHECK-NEXT: PointerToRelocations
|
|
// CHECK-NEXT: PointerToLineNumbers
|
|
// CHECK-NEXT: RelocationCount: 0
|
|
// CHECK-NEXT: LineNumberCount: 0
|
|
// CHECK-NEXT: Characteristics [
|
|
// CHECK-NEXT: IMAGE_SCN_ALIGN_4BYTES
|
|
// CHECK-NEXT: IMAGE_SCN_CNT_INITIALIZED_DATA
|
|
// CHECK-NEXT: IMAGE_SCN_MEM_READ
|
|
// CHECK-NEXT: ]
|
|
// CHECK-NEXT: SectionData (
|
|
// CHECK-NEXT: 0000: 01050200 05500402
|
|
// CHECK-NEXT: )
|
|
|
|
// CHECK: Name: .xdata
|
|
// CHECK-NEXT: VirtualSize
|
|
// CHECK-NEXT: VirtualAddress
|
|
// CHECK-NEXT: RawDataSize: 8
|
|
// CHECK-NEXT: PointerToRawData
|
|
// CHECK-NEXT: PointerToRelocations
|
|
// CHECK-NEXT: PointerToLineNumbers
|
|
// CHECK-NEXT: RelocationCount: 0
|
|
// CHECK-NEXT: LineNumberCount: 0
|
|
// CHECK-NEXT: Characteristics [
|
|
// CHECK-NEXT: IMAGE_SCN_ALIGN_4BYTES
|
|
// CHECK-NEXT: IMAGE_SCN_CNT_INITIALIZED_DATA
|
|
// CHECK-NEXT: IMAGE_SCN_MEM_READ
|
|
// CHECK-NEXT: ]
|
|
// CHECK-NEXT: SectionData (
|
|
// CHECK-NEXT: 0000: 01050200 05500402
|
|
// CHECK-NEXT: )
|
|
|
|
|
|
|
|
.section .text$foo,"x"
|
|
.globl foo
|
|
.def foo; .scl 2; .type 32; .endef
|
|
.seh_proc foo
|
|
foo:
|
|
subq $8, %rsp
|
|
.seh_stackalloc 8
|
|
pushq %rbp
|
|
.seh_pushreg %rbp
|
|
.seh_endprologue
|
|
popq %rbp
|
|
addq $8, %rsp
|
|
ret
|
|
.seh_endproc
|
|
|
|
.section .mytext,"x"
|
|
.globl bar
|
|
.def bar; .scl 2; .type 32; .endef
|
|
.seh_proc bar
|
|
bar:
|
|
subq $8, %rsp
|
|
.seh_stackalloc 8
|
|
pushq %rbp
|
|
.seh_pushreg %rbp
|
|
.seh_endprologue
|
|
popq %rbp
|
|
addq $8, %rsp
|
|
ret
|
|
.seh_endproc
|
|
|
|
.section .text
|
|
.globl baz
|
|
.def baz; .scl 2; .type 32; .endef
|
|
.seh_proc baz
|
|
baz:
|
|
subq $8, %rsp
|
|
.seh_stackalloc 8
|
|
pushq %rbp
|
|
.seh_pushreg %rbp
|
|
.seh_endprologue
|
|
popq %rbp
|
|
addq $8, %rsp
|
|
ret
|
|
.seh_endproc
|
|
|