summaryrefslogtreecommitdiffstats
path: root/lld/test/section-position.objtxt
blob: 4a7c830e111e8db5216827b711db0852c0d07929 (plain)
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
# RUN: lld-core -layout-pass=true %s | FileCheck %s -check-prefix=CHKORDER
# RUN: lld-core -layout-pass=false %s | FileCheck %s -check-prefix=CHKUNORD

#
# Test that atoms with section position requirements are sorted properly.
#

---
defined-atoms:
    - name:              data_end
      type:              data
      section-position:  end

    - name:              some_data
      type:              data
      content:           [ 01, 02 ]

    - name:              early_data
      type:              data
      section-position:  early
      content:           [ 00, 00, 00, 00 ]

    - name:              data_start
      type:              data
      section-position:  start
      
---
defined-atoms:
    - name:              data_end_too
      type:              data
      section-position:  end

    - name:              some_more_data
      type:              data
      content:           [ 03, 04 ]
      
---
defined-atoms:
    - name:              early_data_too
      type:              data
      section-position:  early
      content:           [ 00, 00, 00, 01 ]

...


# CHKUNORD: defined-atoms:   
# CHKUNORD:   - name:             data_end
# CHKUNORD:     section-position: end
# CHKUNORD:   - name:             some_data
# CHKUNORD:     content:          [ 01, 02 ]
# CHKUNORD:   - name:             early_data
# CHKUNORD:     content:          [ 00, 00, 00, 00 ]
# CHKUNORD:     section-position: early
# CHKUNORD:   - name:             data_start
# CHKUNORD:     section-position: start
# CHKUNORD:   - name:             data_end_too
# CHKUNORD:     section-position: end
# CHKUNORD:   - name:             some_more_data
# CHKUNORD:     content:          [ 03, 04 ]
# CHKUNORD:   - name:             early_data_too
# CHKUNORD:     content:          [ 00, 00, 00, 01 ]
# CHKUNORD:     section-position: early
# CHKUNORD: ...

# CHKORDER: defined-atoms:   
# CHKORDER:   - name:             data_start
# CHKORDER:     section-position: start
# CHKORDER:   - name:             early_data
# CHKORDER:     content:          [ 00, 00, 00, 00 ]
# CHKORDER:     section-position: early
# CHKORDER:   - name:             early_data_too
# CHKORDER:     content:          [ 00, 00, 00, 01 ]
# CHKORDER:     section-position: early
# CHKORDER:   - name:             some_data
# CHKORDER:     content:          [ 01, 02 ]
# CHKORDER:   - name:             some_more_data
# CHKORDER:     content:          [ 03, 04 ]
# CHKORDER:   - name:             data_end
# CHKORDER:     section-position: end
# CHKORDER:   - name:             data_end_too
# CHKORDER:    section-position:  end
# CHKORDER: ...


OpenPOWER on IntegriCloud