1RUN: yaml2obj %p/Inputs/x86_64-exe.yaml -o %t.in123.exe 2 3# Using a debuglink filename with a length that is a multiple of 4, to 4# showcase padding in CONTENTS below. 5 6RUN: llvm-objcopy --add-gnu-debuglink=%t.in123.exe %t.in123.exe %t.out.exe 7RUN: llvm-readobj --sections %t.out.exe | FileCheck %s --check-prefix=SECTIONS 8RUN: llvm-objdump -s %t.out.exe | FileCheck %s --check-prefix=CONTENTS 9 10# Show the last of the preexisting sections, which is used for choosing 11# a virtual address for the generated one. 12 13SECTIONS: Section { 14SECTIONS: Number: 4 15SECTIONS-NEXT: Name: .pdata 16SECTIONS-NEXT: VirtualSize: 0x18 17SECTIONS-NEXT: VirtualAddress: 0x4000 18SECTIONS-NEXT: RawDataSize: 512 19SECTIONS: Section { 20SECTIONS-NEXT: Number: 5 21SECTIONS-NEXT: Name: .gnu_debuglink 22SECTIONS-NEXT: VirtualSize: 0x2C 23SECTIONS-NEXT: VirtualAddress: 0x5000 24SECTIONS-NEXT: RawDataSize: 512 25SECTIONS-NEXT: PointerToRawData: 26SECTIONS-NEXT: PointerToRelocations: 27SECTIONS-NEXT: PointerToLineNumbers: 28SECTIONS-NEXT: RelocationCount: 29SECTIONS-NEXT: LineNumberCount: 30SECTIONS-NEXT: Characteristics [ (0x42000040) 31SECTIONS-NEXT: IMAGE_SCN_CNT_INITIALIZED_DATA (0x40) 32SECTIONS-NEXT: IMAGE_SCN_MEM_DISCARDABLE (0x2000000) 33SECTIONS-NEXT: IMAGE_SCN_MEM_READ (0x40000000) 34SECTIONS-NEXT: ] 35 36# Note: The last 4 bytes here are the crc of the referenced file - if the 37# yaml2obj generated file changes, this crc changes. 38 39CONTENTS: Contents of section .gnu_debuglink: 40CONTENTS: 40005000 6164642d 676e752d 64656275 676c696e add-gnu-debuglin 41CONTENTS: 40005010 6b2e7465 73742e74 6d702e69 6e313233 k.test.tmp.in123 42CONTENTS: 40005020 2e657865 00000000 7929adc3 .exe 43