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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
# RUN: yaml2obj -docnum=1 %s > %t.o32
# RUN: llvm-readobj --file-headers %t.o32 | FileCheck -check-prefix=O32OBJ %s
# RUN: obj2yaml %t.o32 | FileCheck -check-prefix=O32YAML %s
# O32OBJ: Flags [ (0x50001002)
# O32OBJ-NEXT: EF_MIPS_ABI_O32 (0x1000)
# O32OBJ-NEXT: EF_MIPS_ARCH_32 (0x50000000)
# O32OBJ-NEXT: EF_MIPS_PIC (0x2)
# O32OBJ-NEXT: ]
# O32YAML: Flags: [ EF_MIPS_PIC, EF_MIPS_ABI_O32, EF_MIPS_ARCH_32 ]
# RUN: yaml2obj -docnum=2 %s > %t.o64
# RUN: llvm-readobj --file-headers %t.o64 | FileCheck -check-prefix=O64OBJ %s
# RUN: obj2yaml %t.o64 | FileCheck -check-prefix=O64YAML %s
# O64OBJ: Flags [ (0x60002002)
# O64OBJ-NEXT: EF_MIPS_ABI_O64 (0x2000)
# O64OBJ-NEXT: EF_MIPS_ARCH_64 (0x60000000)
# O64OBJ-NEXT: EF_MIPS_PIC (0x2)
# O64OBJ-NEXT: ]
# O64YAML: Flags: [ EF_MIPS_PIC, EF_MIPS_ABI_O64, EF_MIPS_ARCH_64 ]
# RUN: yaml2obj -docnum=3 %s > %t.eabi32
# RUN: llvm-readobj --file-headers %t.eabi32 | FileCheck -check-prefix=E32OBJ %s
# RUN: obj2yaml %t.eabi32 | FileCheck -check-prefix=E32YAML %s
# E32OBJ: Flags [ (0x50003002)
# E32OBJ-NEXT: EF_MIPS_ABI_EABI32 (0x3000)
# E32OBJ-NEXT: EF_MIPS_ARCH_32 (0x50000000)
# E32OBJ-NEXT: EF_MIPS_PIC (0x2)
# E32OBJ-NEXT: ]
# E32YAML: Flags: [ EF_MIPS_PIC, EF_MIPS_ABI_EABI32, EF_MIPS_ARCH_32 ]
# RUN: yaml2obj -docnum=4 %s > %t.eabi64
# RUN: llvm-readobj --file-headers %t.eabi64 | FileCheck -check-prefix=E64OBJ %s
# RUN: obj2yaml %t.eabi64 | FileCheck -check-prefix=E64YAML %s
# E64OBJ: Flags [ (0x60004002)
# E64OBJ-NEXT: EF_MIPS_ABI_EABI64 (0x4000)
# E64OBJ-NEXT: EF_MIPS_ARCH_64 (0x60000000)
# E64OBJ-NEXT: EF_MIPS_PIC (0x2)
# E64OBJ-NEXT: ]
# E64YAML: Flags: [ EF_MIPS_PIC, EF_MIPS_ABI_EABI64, EF_MIPS_ARCH_64 ]
# o32
--- !ELF
FileHeader:
Class: ELFCLASS32
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_MIPS
Flags: [ EF_MIPS_PIC, EF_MIPS_ABI_O32, EF_MIPS_ARCH_32 ]
Sections:
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
AddressAlign: 16
Size: 4
Symbols:
- Name: T1
Section: .text
Value: 0
Size: 4
Binding: STB_GLOBAL
# o64
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_MIPS
Flags: [ EF_MIPS_PIC, EF_MIPS_ABI_O64, EF_MIPS_ARCH_64 ]
Sections:
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
AddressAlign: 16
Size: 4
Symbols:
- Name: T1
Section: .text
Value: 0
Size: 4
Binding: STB_GLOBAL
# eabio32
--- !ELF
FileHeader:
Class: ELFCLASS32
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_MIPS
Flags: [ EF_MIPS_PIC, EF_MIPS_ABI_EABI32, EF_MIPS_ARCH_32 ]
Sections:
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
AddressAlign: 16
Size: 4
Symbols:
- Name: T1
Section: .text
Value: 0
Size: 4
Binding: STB_GLOBAL
# eabi64
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_MIPS
Flags: [ EF_MIPS_PIC, EF_MIPS_ABI_EABI64, EF_MIPS_ARCH_64 ]
Sections:
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
AddressAlign: 16
Size: 4
Symbols:
- Name: T1
Section: .text
Value: 0
Size: 4
Binding: STB_GLOBAL
...
|