Lines Matching +full:16 +full:- +full:input

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\&.
41 The tool prints size information for each \fBinput\fP specified. If no input is
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
44 input stream. If an input is an archive, size information will be displayed for
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
95 182 16 5 203 cb test.elf
102 For Mach\-O files, the output format is slightly different:
108 $ llvm\-size \-\-format=berkeley macho.obj macho2.obj
111 16 32 0 0 48 30 macho2.obj
124 $ llvm\-size \-\-format=sysv test.elf test2.o
129 .data 16 2105344
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
167 Section (__TEXT, __text): 16
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>
195 \fB10\fP (the default) and \fB16\fP for octal, decimal and hexadecimal output
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
234 182 16 5 203 cb test.elf
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