xref: /llvm-project/lldb/test/Shell/SymbolFile/Breakpad/Inputs/basic-elf.yaml (revision 62e3b2ec1d8e54d2b377623c485d5399bc94521f)
1# A very basic ELF file to serve as a recipient of breakpad info
2
3--- !ELF
4FileHeader:      
5  Class:           ELFCLASS64
6  Data:            ELFDATA2LSB
7  Type:            ET_EXEC
8  Machine:         EM_X86_64
9  Entry:           0x0000000000400000
10Sections:        
11  - Name:            .text1
12    Type:            SHT_PROGBITS
13    Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
14    Address:         0x0000000000400000
15    AddressAlign:    0x0000000000001000
16    Size:            0xb0
17  - Name:            .text2
18    Type:            SHT_PROGBITS
19    Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
20    Address:         0x00000000004000B0
21    AddressAlign:    0x0000000000000010
22    Size:            0x42
23ProgramHeaders:
24  - Type: PT_LOAD
25    Flags: [ PF_X, PF_R ]
26    VAddr: 0x400000
27    Align: 0x1000
28    FirstSec: .text1
29    LastSec:  .text2
30...
31