59 lines · yaml
1# RUN: yaml2obj %s -o %t2# RUN: lldb-test object-file %t | FileCheck %s3 4# CHECK-LABEL: Name: .one5# CHECK: VM address: 0x06 7# CHECK-LABEL: Name: .nonalloc8# CHECK: VM address: 0x09 10# CHECK-LABEL: Name: .two11# CHECK: VM address: 0x812 13# CHECK-LABEL: Name: .three14# CHECK: VM address: 0xc15 16# CHECK-LABEL: Name: .four17# CHECK: VM address: 0xc18 19# CHECK-LABEL: Name: .five20# CHECK: VM address: 0x100021 22--- !ELF23FileHeader:24 Class: ELFCLASS6425 Data: ELFDATA2LSB26 Type: ET_REL27 Machine: EM_X86_6428 Entry: 0x00000000000007A029Sections:30 - Name: .one31 Type: SHT_PROGBITS32 Flags: [ SHF_ALLOC ]33 AddressAlign: 0x000000000000000434 Content: DEADBEEFBAADF00D35 - Name: .nonalloc36 Type: SHT_PROGBITS37 AddressAlign: 0x000000000000000438 Content: DEADBEEFBAADF00D39 - Name: .two40 Type: SHT_PROGBITS41 Flags: [ SHF_ALLOC ]42 AddressAlign: 0x000000000000000443 Content: DE44 - Name: .three45 Type: SHT_PROGBITS46 Flags: [ SHF_ALLOC ]47 AddressAlign: 0x000000000000000448 - Name: .four49 Type: SHT_PROGBITS50 Flags: [ SHF_ALLOC ]51 AddressAlign: 0x000000000000000452 Content: DEADBEEFBAADF00D53 - Name: .five54 Type: SHT_PROGBITS55 Flags: [ SHF_ALLOC ]56 AddressAlign: 0x000000000000100057 Content: DEADBEEFBAADF00D58...59