File: compressed-sections.yaml

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (45 lines) | stat: -rw-r--r-- 1,290 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# REQUIRES: zlib
# RUN: yaml2obj %s -o %t
# RUN: lldb-test object-file --contents %t | FileCheck %s
--- !ELF
FileHeader:
  Class:           ELFCLASS32
  Data:            ELFDATA2LSB
  Type:            ET_REL
  Machine:         EM_386
Sections:
  - Name:            .hello_elf
    Type:            SHT_PROGBITS
    Flags:           [ SHF_COMPRESSED ]
    Content:         010000000800000001000000789c5330700848286898000009c802c1
  - Name:            .bogus
    Type:            SHT_PROGBITS
    Flags:           [ SHF_COMPRESSED ]
    Content:         deadbeefbaadf00d
## The legacy .zdebug format is not supported.
  - Name:            .zdebug_info
    Type:            SHT_PROGBITS
    Content:         5A4C49420000000000000008789c5330700848286898000009c802c1

# CHECK: Name: .hello_elf
# CHECK-NEXT: Type: regular
# CHECK: VM address: 0
# CHECK-NEXT: VM size: 0
# CHECK-NEXT: File size: 28
# CHECK-NEXT: Data: (
# CHECK-NEXT: 20304050 60708090
# CHECK-NEXT: )

# CHECK: Name: .bogus
# CHECK-NEXT: Type: regular
# CHECK: VM address: 0
# CHECK-NEXT: VM size: 0
# CHECK-NEXT: File size: 8
# CHECK-NEXT: Data: ()

# CHECK: Name: .zdebug_info
# CHECK: regular
# CHECK: File size: 28
# CHECK: Data: (
# CHECK-NEXT: 5A4C4942 00000000 00000008 789C5330 70084828 68980000 09C802C1
# CHECK-NEXT: )