Lines Matching +full:fsin +full:- +full:enable

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 "LLC" "1" "2023-05-24" "16" "LLVM"
32 llc \- LLVM static compiler
43 determined from the input file, unless the \fI\%\-march\fP option is used to
47 If \fBfilename\fP is \(dq\fB\-\fP\(dq or omitted, \fBllc\fP reads from standard input.
51 If the \fI\%\-o\fP option is omitted, then \fBllc\fP will send its output
52 to standard output if the input is from standard input. If the \fI\%\-o\fP
53 option specifies \(dq\fB\-\fP\(dq, then the output will also be sent to standard output.
55 If no \fI\%\-o\fP option is specified and an input file other than \(dq\fB\-\fP\(dq is
60 .SS End\-user Options
63 .B \-help
68 .B \-o <filename>
74 .B \-O=uint
76 \fB\-O0\fP, \fB\-O1\fP, \fB\-O2\fP, and \fB\-O3\fP optimization levels used by
81 .B \-mtriple=<target triple>
87 .B \-march=<arch>
89 encoded in the input file. See the output of \fBllc \-help\fP for a list of
95 .B \-mcpu=<cpuname>
104 llvm\-as < /dev/null | llc \-march=xyz \-mcpu=help
112 .B \-filetype=<output file type>
121 .B \-mattr=a1,+a2,\-a3,...
130 llvm\-as < /dev/null | llc \-march=xyz \-mattr=help
138 .B \-\-frame\-pointer
139 Specify effect of frame pointer elimination optimization (all,non\-leaf,none).
143 .B \-\-disable\-excess\-fp\-precision
150 .B \-\-enable\-no\-infs\-fp\-math
151 Enable optimizations that assume no Inf values.
155 .B \-\-enable\-no\-nans\-fp\-math
156 Enable optimizations that assume no NAN values.
160 .B \-\-enable\-no\-signed\-zeros\-fp\-math
161 Enable FP math optimizations that assume the sign of 0 is insignificant.
165 .B \-\-enable\-no\-trapping\-fp\-math
166 Enable setting the FP exceptions build attribute not to use exceptions.
170 .B \-\-enable\-unsafe\-fp\-math
171 Enable optimizations that make unsafe assumptions about IEEE math (e.g. that
174 would otherwise not be usable (such as \fBfsin\fP on X86).
178 .B \-\-stats
179 Print statistics recorded by code\-generation passes.
183 .B \-\-time\-passes
189 .B \-\-load=<dso_path>
192 the \fI\%\-march\fP option so that code can be generated for that target.
196 .B \-meabi=[default|gnu|4|5]
202 .B \-stack\-size\-section
211 .B \-remarks\-section
218 .B \-\-print\-after\-isel
223 .B \-\-regalloc=<allocator>
257 .B \-\-spiller=<spiller>
276 .SS Intel IA\-32\-specific Options
279 .B \-\-x86\-asm\-syntax=[att|intel]
286 occurs, it will exit with a non\-zero value.
293 2003-2023, LLVM Project