Lines Matching +full:8 +full:- +full:level

4 .nr rst2man-indent-level 0
7 \\$1 \\n[an-margin]
8 level \\n[rst2man-indent-level]
9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
10 -
11 \\n[rst2man-indent0]
12 \\n[rst2man-indent1]
13 \\n[rst2man-indent2]
18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
19 . nr rst2man-indent-level +1
24 .\" indent \\n[an-margin]
25 .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
26 .nr rst2man-indent-level -1
27 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
30 .TH "LLVM-SIZE" "1" "2023-05-24" "16" "LLVM"
32 llvm-size \- print size information
35 \fBllvm\-size\fP [\fIoptions\fP] [\fIinput...\fP]
38 \fBllvm\-size\fP is a tool that prints size information for binary files.
39 It is intended to be a drop\-in replacement for GNU\(aqs \fBsize\fP\&.
42 specified, the program prints size information for \fBa.out\fP\&. If \(dq\fB\-\fP\(dq is
43 specified as an input file, \fBllvm\-size\fP reads a file from the standard
49 .B \-A
50 Equivalent to \fI\%\-\-format\fP with a value of \fBsysv\fP\&.
54 .B \-\-arch=<arch>
55 Architecture(s) from Mach\-O universal binaries to display information for.
59 .B \-B
60 Equivalent to \fI\%\-\-format\fP with a value of \fBberkeley\fP\&.
64 .B \-\-common
71 .B \-d
72 Equivalent to \fI\%\-\-radix\fP with a value of \fB10\fP\&.
76 .B \-l
78 Mach\-O files in \fBdarwin\fP format.
82 .B \-\-format=<format>
93 $ llvm\-size \-\-format=berkeley test.o test2.o
96 82 8 1 91 5b test2.o
102 For Mach\-O files, the output format is slightly different:
108 $ llvm\-size \-\-format=berkeley macho.obj macho2.obj
110 4 8 0 0 12 c macho.obj
124 $ llvm\-size \-\-format=sysv test.elf test2.o
137 .data 8 0
140 .note.GNU\-stack 0 0
149 \fBdarwin\fP format only affects Mach\-O input files. If an input of a different
150 file format is specified, \fBllvm\-size\fP falls back to \fBberkeley\fP
158 $ llvm\-size \-\-format=darwin macho.obj macho2.obj
162 Section (__DATA, __data): 8
178 .B \-\-help, \-h
183 .B \-m
184 Equivalent to \fI\%\-\-format\fP with a value of \fBdarwin\fP\&.
188 .B \-o
189 Equivalent to \fI\%\-\-radix\fP with a value of \fB8\fP\&.
193 .B \-\-radix=<value>
194 Display size information in the specified radix. Permitted values are \fB8\fP,
204 $ llvm\-size \-\-radix=8 test.o
208 $ llvm\-size \-\-radix=10 test.o
212 $ llvm\-size \-\-radix=16 test.o
222 .B \-\-totals, \-t
232 $ llvm\-size \-\-totals test.elf test2.o
235 82 8 1 91 5b test2.o
244 .B \-\-version
245 Display the version of the \fBllvm\-size\fP executable.
249 .B \-x
250 Equivalent to \fI\%\-\-radix\fP with a value of \fB16\fP\&.
255 Read command\-line options from response file \fB<FILE>\fP\&.
259 \fBllvm\-size\fP exits with a non\-zero exit code if there is an error.
263 To report bugs, please visit <\fI\%https://github.com/llvm/llvm\-project/labels/tools:llvm\-size/\f…
267 2003-2023, LLVM Project