exe-offsets.yaml
1015 Bytes
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
# RUN: ld64.lld -arch x86_64 %s -o %t -e start %p/Inputs/x86_64/libSystem.yaml
# RUN: llvm-readobj --sections %t | FileCheck %s
# Make sure data gets put at offset
--- !native
defined-atoms:
- name: start
scope: global
content: [ 90 ]
- name: _s1
type: data
content: [ 31, 32, 33, 34 ]
- name: _s2
type: zero-fill
size: 8192
- name: _s3
type: zero-fill
size: 100
- name: _s4
type: data
content: [ 01 ]
# CHECK-LABEL: Section {
# CHECK: Name: __text
# CHECK: Segment: __TEXT
# CHECK: Size: 0x1
# CHECK: Offset: 0
# CHECK-LABEL: Section {
# CHECK: Name: __data
# CHECK: Segment: __DATA
# CHECK: Size: 0x5
# CHECK: Offset: 4096
# CHECK-LABEL: Section {
# CHECK: Name: __bss
# CHECK: Segment: __DATA
# CHECK: Size: 0x2064
# CHECK: Offset: 0