remove-section.test
4.78 KB
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
## Show that if --remove-section is given, llvm-objcopy removes sections
## specified by the option.
# RUN: yaml2obj %s -o %t
## Remove only __TEXT,__text section.
# RUN: llvm-objcopy --remove-section __TEXT,__text %t %t2
# RUN: llvm-readobj --sections --section-data %t2 \
# RUN: | FileCheck %s --check-prefixes=COMMON,REMOVE-TEXT-ONLY
## Remove multiple sections.
# RUN: llvm-objcopy --remove-section __TEXT,__text --remove-section __DATA,__data %t %t3
# RUN: llvm-readobj --sections --section-data %t3 \
# RUN: | FileCheck %s --check-prefixes=COMMON,REMOVE-TEXT-AND-DATA
# COMMON: Sections [
# REMOVE-TEXT-ONLY-NEXT: Section {
# REMOVE-TEXT-ONLY-NEXT: Index: 0
# REMOVE-TEXT-ONLY-NEXT: Name: __data (5F 5F 64 61 74 61 00 00 00 00 00 00 00 00 00 00)
# REMOVE-TEXT-ONLY-NEXT: Segment: __DATA (5F 5F 44 41 54 41 00 00 00 00 00 00 00 00 00 00)
# REMOVE-TEXT-ONLY-NEXT: Address: 0x4
# REMOVE-TEXT-ONLY-NEXT: Size: 0x4
# REMOVE-TEXT-ONLY-NEXT: Offset: 264
# REMOVE-TEXT-ONLY-NEXT: Alignment: 0
# REMOVE-TEXT-ONLY-NEXT: RelocationOffset: 0x0
# REMOVE-TEXT-ONLY-NEXT: RelocationCount: 0
# REMOVE-TEXT-ONLY-NEXT: Type: Regular (0x0)
# REMOVE-TEXT-ONLY-NEXT: Attributes [ (0x0)
# REMOVE-TEXT-ONLY-NEXT: ]
# REMOVE-TEXT-ONLY-NEXT: Reserved1: 0x0
# REMOVE-TEXT-ONLY-NEXT: Reserved2: 0x0
# REMOVE-TEXT-ONLY-NEXT: Reserved3: 0x0
# REMOVE-TEXT-ONLY-NEXT: SectionData (
# REMOVE-TEXT-ONLY-NEXT: 0000: DDAADDAA |....|
# REMOVE-TEXT-ONLY-NEXT: )
# REMOVE-TEXT-ONLY-NEXT: }
# COMMON-NEXT: Section {
# REMOVE-TEXT-ONLY-NEXT: Index: 1
# REMOVE-TEXT-AND-DATA-NEXT: Index: 0
# COMMON-NEXT: Name: __const (5F 5F 63 6F 6E 73 74 00 00 00 00 00 00 00 00 00)
# COMMON-NEXT: Segment: __TEXT (5F 5F 54 45 58 54 00 00 00 00 00 00 00 00 00 00)
# COMMON-NEXT: Address: 0x8
# COMMON-NEXT: Size: 0x4
# REMOVE-TEXT-ONLY-NEXT: Offset: 268
# REMOVE-TEXT-AND-DATA-NEXT: Offset: 184
# COMMON-NEXT: Alignment: 0
# COMMON-NEXT: RelocationOffset: 0x0
# COMMON-NEXT: RelocationCount: 0
# COMMON-NEXT: Type: Regular (0x0)
# COMMON-NEXT: Attributes [ (0x0)
# COMMON-NEXT: ]
# COMMON-NEXT: Reserved1: 0x0
# COMMON-NEXT: Reserved2: 0x0
# COMMON-NEXT: Reserved3: 0x0
# COMMON-NEXT: SectionData (
# COMMON-NEXT: 0000: EEFFEEFF |....|
# COMMON-NEXT: )
# COMMON-NEXT: }
# COMMON-NEXT: ]
## Keep all sections if the specified section name is not present in the
## input. The output file should be the same as the input.
# RUN: llvm-objcopy --remove-section __TEXT,__foo %t %t4
# RUN: cmp %t %t4
--- !mach-o
FileHeader:
magic: 0xFEEDFACF
cputype: 0x01000007
cpusubtype: 0x00000003
filetype: 0x00000001
ncmds: 1
sizeofcmds: 312
flags: 0x00002000
reserved: 0x00000000
LoadCommands:
- cmd: LC_SEGMENT_64
cmdsize: 312
segname: ''
vmaddr: 0
vmsize: 12
fileoff: 344
filesize: 12
maxprot: 7
initprot: 7
nsects: 3
flags: 0
Sections:
- sectname: __text
segname: __TEXT
addr: 0x0000000000000000
content: 'AABBCCDD'
size: 4
offset: 344
align: 0
reloff: 0x00000000
nreloc: 0
flags: 0x80000400
reserved1: 0x00000000
reserved2: 0x00000000
reserved3: 0x00000000
- sectname: __data
segname: __DATA
addr: 0x0000000000000004
content: 'DDAADDAA'
size: 4
offset: 348
align: 0
reloff: 0x00000000
nreloc: 0
flags: 0x00000000
reserved1: 0x00000000
reserved2: 0x00000000
reserved3: 0x00000000
- sectname: __const
segname: __TEXT
addr: 0x0000000000000008
content: 'EEFFEEFF'
size: 4
offset: 352
align: 0
reloff: 0x00000000
nreloc: 0
flags: 0x00000000
reserved1: 0x00000000
reserved2: 0x00000000
reserved3: 0x00000000