File: yaml2obj-elf-bpf-rel.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 (86 lines) | stat: -rw-r--r-- 2,460 bytes parent folder | download | duplicates (21)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# RUN: yaml2obj %s -o %t
# RUN: llvm-readobj -r --stack-sizes %t | FileCheck %s

# CHECK:      Relocations [
# CHECK-NEXT:   Section (3) .rel.text {
# CHECK-NEXT:     0x0 R_BPF_64_64 g
# CHECK-NEXT:   }
# CHECK-NEXT:   Section (5) .rel.stack_sizes {
# CHECK-NEXT:     0x0 R_BPF_64_ABS64 .text
# CHECK-NEXT:   }
# CHECK-NEXT: ]
# CHECK:      StackSizes [
# CHECK-NEXT:   Entry {
# CHECK-NEXT:     Functions: [test]
# CHECK-NEXT:     Size: 0x0
# CHECK-NEXT:   }
# CHECK-NEXT: ]

--- !ELF
FileHeader:
  Class:           ELFCLASS64
  Data:            ELFDATA2LSB
  Type:            ET_REL
  Machine:         EM_BPF
Sections:
  - Name:            .text
    Type:            SHT_PROGBITS
    Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
    AddressAlign:    0x8
    Content:         '1801000000000000000000000000000061100000000000009500000000000000'
  - Name:            .stack_sizes
    Type:            SHT_PROGBITS
    Flags:           [ SHF_LINK_ORDER ]
    Link:            .text
    AddressAlign:    0x1
    Entries:
      - Size:            0x0
  - Name:            .bss
    Type:            SHT_NOBITS
    Flags:           [ SHF_WRITE, SHF_ALLOC ]
    AddressAlign:    0x4
    Size:            0x4
  - Name:            .rel.text
    Type:            SHT_REL
    Link:            .symtab
    AddressAlign:    0x8
    Info:            .text
    Relocations:
      - Symbol:          g
        Type:            R_BPF_64_64
  - Name:            .rel.stack_sizes
    Type:            SHT_REL
    Link:            .symtab
    AddressAlign:    0x8
    Info:            .stack_sizes
    Relocations:
      - Symbol:          .text
        Type:            R_BPF_64_ABS64
  - Type:            SectionHeaderTable
    Sections:
      - Name:            .strtab
      - Name:            .text
      - Name:            .rel.text
      - Name:            .stack_sizes
      - Name:            .rel.stack_sizes
      - Name:            .bss
      - Name:            .symtab
      - Name:            .shstrtab
Symbols:
  - Name:            t.c
    Type:            STT_FILE
    Index:           SHN_ABS
  - Name:            .text
    Type:            STT_SECTION
    Section:         .text
  - Name:            test
    Type:            STT_FUNC
    Section:         .text
    Binding:         STB_GLOBAL
    Size:            0x20
  - Name:            g
    Type:            STT_OBJECT
    Section:         .bss
    Binding:         STB_GLOBAL
    Size:            0x4
...