]> git.xonotic.org Git - xonotic/gmqcc.git/blob - doc/gmqcc.1
manpage: -flegacy-vector-maths
[xonotic/gmqcc.git] / doc / gmqcc.1
1 .\" Process with groff -man -Tascii file.3
2 .TH GMQCC 1 2012-07-12 "" "gmqcc Manual"
3 .SH NAME
4 gmqcc \- A Quake C compiler built from the NIH realm of sarcastic wit
5 .SH SYNOPSIS
6 .B gmqcc
7 [\fIOPTIONS\fR] [\fIfiles...\fR]
8 .SH DESCRIPTION
9 Traditionally, a QC compiler reads the file \fIprogs.src\fR which
10 in its first line contains the output filename, and the rest is a
11 list of QC source files that are to be compiled in order.
12 \fBgmqcc\fR optionally takes options to specify the output and
13 input files on the commandline, and also accepts assembly files.
14 .SH OPTIONS
15 \fBgmqcc\fR mostly tries to mimic gcc's commandline handling, though
16 there are also traditional long-options available.
17 .TP
18 .B "-h, --help"
19 Show a usage message and exit.
20 .TP
21 .B "-debug"
22 Turn on some compiler debugging mechanisms.
23 .TP
24 .B "-memchk"
25 Turn on compiler mem-check. (Shows allocations and checks for leaks.)
26 .TP
27 .BI "-o, --output=" filename
28 Specify the output filename. Defaults to progs.dat. This will overwrite
29 the output file listed in a \fIprogs.src\fR file in case such a file is used.
30 .TP
31 .BI "-O" number
32 Specify the optimization level
33 .RS
34 .IP 3
35 Highest optimization level
36 .IP 2
37 Default optimization level
38 .IP 1
39 Minimal optimization level
40 .IP 0
41 Disable optimization entirely
42 .RE
43 .TP
44 .BI "-O" name "\fR, " "" -Ono- name
45 Enable or disable a specific optimization. Note that these options
46 must be used after setting the optimization level, otherwise they'll
47 be overwritten.
48 .TP
49 .B -Ohelp
50 List all possible optimizations and the optimization level they're
51 activated at.
52 .TP
53 .BR -q ", " --quiet
54 Be less verbose. In particular removes the messages about which files
55 are being processed, and which compilation mode is being used, and
56 some others. Warnings and errors will of course still be displayed.
57 .TP
58 .BI -W warning "\fR, " "" -Wno- warning
59 Enable or disable a warning.
60 .TP
61 .B -Wall
62 Enable almost all warnings. Overrides preceding -W parameters.
63 .sp
64 The following warnings will \fBnot\fR be anbled:
65 .in +4
66 .nf
67 -Wuninitialized-global
68 .fi
69 .in
70 .TP
71 .BR -Werror ", " -Wno-error
72 Controls whether or not all warnings should be treated as errors.
73 .TP
74 .BI -Werror- warning "\fR, " "" -Wno-error- warning
75 Controls whether a specific warning should be an error.
76 .TP
77 .B -Whelp
78 List all possible warn flags.
79 .TP
80 .BI -f flag "\fR, " "" -fno- flag
81 Enable or disable a specific compile flag. See the list of flags
82 below.
83 .TP
84 .B -fhelp
85 List all possible compile flags.
86 .TP
87 .B -nocolor
88 Disables colored output
89 .TP
90 .BI -config= file
91 Use an ini file to read all the -O, -W and -f flag from. See the
92 CONFIG section about the file format.
93 .TP
94 .BI "-redirout=" file
95 Redirects standard output to a \fIfile\fR
96 .TP
97 .BI "-redirerr=" file
98 Redirects standard error to a \fIfile\fR
99 .TP
100 .BI "-std=" standard
101 Use the specified standard for parsing QC code. The following standards
102 are available:
103 .IR gmqcc , qcc , fteqcc
104 Selecting a standard also implies some -f options and behaves as if
105 those options have been written right after the -std option, meaning
106 if you changed them before the -std option, you're now overwriting
107 them.
108 .sp
109 .BR -std=gmqcc " includes:"
110 .in +4
111 .nf
112 -fadjust-vector-fields
113 -fcorrect-logic
114 -ftrue-empty-strings
115 -floop-labels
116 -finitialized-nonconstants
117 -ftranslatable-strings
118 -f\fIno-\fRfalse-empty-strings
119 -Winvalid-parameter-count
120 -Wmissing-returnvalues
121 -fcorrect-ternary (cannot be turned off)
122 .fi
123 .in
124 .sp
125 .BR -std=qcc " includes:"
126 .in +4
127 .nf
128 -fassign-function-types
129 -f\fIno-\fRadjust-vector-fields
130 .fi
131 .in
132 .sp
133 .BR -std=fteqcc " includes:"
134 .in +4
135 .nf
136 -fftepp
137 -ftranslatable-strings
138 -fassign-function-types
139 -Wternary-precedence
140 -f\fIno-\fRadjust-vector-fields
141 -f\fIno-\fRcorrect-ternary
142 .fi
143 .in
144 .TP
145 .B "--add-info"
146 Adds compiler information to the generated binary file. Currently
147 this includes the following globals:
148 .RS
149 .IP "reserved:version"
150 String containing the compiler version as printed by the --version
151 parameter.
152 .RE
153 .TP
154 .BR "--correct" ", " "--no-correct"
155 When enabled, errors about undefined values try to suggest an existing
156 value via spell checking.
157 .TP
158 .B "-dump"
159 DEBUG OPTION. Print the code's intermediate representation before the
160 optimization and finalization passes to stdout before generating the
161 binary.
162 .TP
163 .B "-dumpfin"
164 DEBUG OPTION. Print the code's intermediate representation after the
165 optimization and finalization passes to stdout before generating the
166 binary. The instructions will be enumerated, and values will contain a
167 list of liferanges.
168 .SH COMPILE WARNINGS
169 .TP
170 .B -Wunused-variable
171 Generate a warning about variables which are declared but never used.
172 This can be avoided by adding the \fInoref\fR keyword in front of the
173 variable declaration. Additionally a complete section of unreferenced
174 variables can be opened using \fI#pragma noref 1\fR, and closed via
175 \fI#pragma noref 0\fR.
176 .TP
177 .B -Wused-uninitialized
178 Generate a warning if it is possible that a variable can be used
179 without prior initialization. Note that this warning is not
180 necessarily reliable if the initialization happens only under certain
181 conditions. The other way is \fInot\fR possible: that the warning is
182 \fInot\fR generated when uninitialized use \fIis possible\fR.
183 .TP
184 .B -Wunknown-control-sequence
185 Generate an error when an unrecognized control sequence in a string is
186 used. Meaning: when there's a character after a backslash in a string
187 which has no known meaning.
188 .TP
189 .B -Wextensions
190 Warn when using special extensions which are not part of the selected
191 standard.
192 .TP
193 .B -Wfield-redeclared
194 Generally QC compilers ignore redeclaration of fields. Here you can
195 optionally enable a warning.
196 .TP
197 .B -Wmissing-return-values
198 Functions which aren't of type \fIvoid\fR will warn if it possible to
199 reach the end without returning an actual value.
200 .TP
201 .B -Winvalid-parameter-count
202 Warn about a function call with an invalid number of parameters.
203 .TP
204 .B -Wlocal-shadows
205 Warn when a locally declared variable shadows variable.
206 .TP
207 .B -Wlocal-constants
208 Warn when the initialization of a local variable turns the variable
209 into a constant. This is default behaviour unless
210 \fI-finitialized-nonconstants\fR is used.
211 .TP
212 .B -Wvoid-variables
213 There are only 2 known global variables of type void: end_sys_globals
214 and end_sys_fields. Any other void-variable will warn.
215 .TP
216 .B -Wimplicit-function-pointer
217 A global function which is not declared with the \fIvar\fR keyword is
218 expected to have an implementing body, or be a builtin. If neither is
219 the case, it implicitly becomes a function pointer, and a warning is
220 generated.
221 .TP
222 .B -Wvariadic-function
223 Currently there's no way for an in QC implemented function to access
224 variadic parameters. If a function with variadic parameters has an
225 implementing body, a warning will be generated.
226 .TP
227 .B -Wframe-macros
228 Generate warnings about \fI$frame\fR commands, for instance about
229 duplicate frame definitions.
230 .TP
231 .B -Weffectless-statement
232 Warn about statements which have no effect. Any expression which does
233 not call a function or assigns a variable.
234 .TP
235 .B -Wend-sys-fields
236 The \fIend_sys_fields\fR variable is supposed to be a global variable
237 of type \fIvoid\fR. It is also recognized as a \fIfield\fR but this
238 will generate a warning.
239 .TP
240 .B -Wassign-function-types
241 Warn when assigning to a function pointer with an unmatching
242 signature. This usually happens in cases like assigning the null
243 function to an entity's .think function pointer.
244 .TP
245 .B -Wpreprocessor
246 Enable warnings coming from the preprocessor. Like duplicate macro
247 declarations. This warning triggers when there's a problem with the
248 way the preprocessor has been used, it will \fBnot\fR affect warnings
249 generated with the '#warning' directive. See -Wcpp.
250 .TP
251 .B -Wcpp
252 Show warnings created using the preprocessor's '#warning' directive.
253 .TP
254 .B -Wmultifile-if
255 Warn if there's a preprocessor \fI#if\fR spanning across several
256 files.
257 .TP
258 .B -Wdouble-declaration
259 Warn about multiple declarations of globals. This seems pretty common
260 in QC code so you probably do not want this unless you want to clean
261 up your code.
262 .TP
263 .B -Wconst-var
264 The combination of \fIconst\fR and \fIvar\fR is not illegal, however
265 different compilers may handle them differently. We were told, the
266 intention is to create a function-pointer which is not assignable.
267 This is exactly how we interpret it. However for this interpretation
268 the \fIvar\fR keyword is considered superfluous (and philosophically
269 wrong), so it is possible to generate a warning about this.
270 .TP
271 .B -Wmultibyte-character
272 Warn about multibyte character constants, they do not work right now.
273 .TP
274 .B -Wternary-precedence
275 Warn if a ternary expression which contains a comma operator is used
276 without enclosing parenthesis, since this is most likely not what you
277 actually want. We recommend the \fI-fcorrect-ternary\fR option.
278 .TP
279 .B -Wunknown-pragmas
280 Warn when encountering an unrecognized \fI#pragma\fR line.
281 .TP
282 .B -Wunreachable-code
283 Warn about unreachable code. That is: code after a return statement,
284 or code after a call to a function marked as 'noreturn'.
285 .TP
286 .B -Wdebug
287 Enable some warnings added in order to help debugging in the compiler.
288 You won't need this.
289 .B -Wunknown-attribute
290 Warn on an unknown attribute. The warning will inlclude only the first
291 token inside the enclosing attribute-brackets. This may change when
292 the actual attribute syntax is better defined.
293 .TP
294 .B -Wreserved-names
295 Warn when using reserved names such as 'nil'.
296 .TP
297 .B -Wuninitialized-constant
298 Warn about global constants (using the 'const' keyword) with no
299 assigned value.
300 .TP
301 .B -Wuninitialized-global
302 Warn about global variables with no initializing value. This is off by
303 default, and is added mostly to help find null-values which are
304 supposed to be replaced by the untyped 'nil' constant.
305 .TP
306 .B -Wdifferent-qualifiers
307 Warn when a variables is redeclared with a different qualifier. For
308 example when redeclaring a variable as \'var\' which was previously
309 marked \'const\'.
310 .TP
311 .B -Wdifferent-attributes
312 Similar to the above but for attributes like "[[noreturn]]".
313 .TP
314 .B -Wdeprecated
315 Warn when a function is marked with the attribute
316 "[[deprecated]]". This flag enables a warning on calls to functions
317 marked as such.
318 .TP
319 .B -Wparenthesis
320 Warn about possible mistakes caused by missing or wrong parenthesis,
321 like an assignment in an 'if' condition when there's no additional set
322 of parens around the assignment.
323 .SH COMPILE FLAGS
324 .TP
325 .B -fdarkplaces-string-table-bug
326 Add some additional characters to the string table in order to
327 compensate for a wrong boundcheck in some specific version of the
328 darkplaces engine.
329 .TP
330 .B -fadjust-vector-fields
331 When assigning to field pointers of type \fI.vector\fR the common
332 behaviour in compilers like \fIfteqcc\fR is to only assign the
333 x-component of the pointer. This means that you can use the vector as
334 such, but you cannot use its y and z components directly. This flag
335 fixes this behaviour. Before using it make sure your code does not
336 depend on the buggy behaviour.
337 .TP
338 .B -fftepp
339 Enable a partially fteqcc-compatible preprocessor. It supports all the
340 features used in the Xonotic codebase. If you need more, write a
341 ticket.
342 .TP
343 .B -fftepp-predefs
344 Enable some predefined macros. This only works in combination with
345 \'-fftepp' and is currently not included by '-std=fteqcc'. The
346 following macros will be added:
347 .in +4
348 .nf
349 __LINE__
350 __FILE__
351 __COUNTER__
352 __COUNTER_LAST__
353 __RANDOM__
354 __RANDOM_LAST__
355 __DATE__
356 __TIME__
357 .fi
358 .in
359 Note that fteqcc also defines __NULL__ which is not implemented yet.
360 (See -funtyped-nil about gmqcc's alternative to __NULL__).
361 .TP
362 .B -frelaxed-switch
363 Allow switch cases to use non constant variables.
364 .TP
365 .B -fshort-logic
366 Perform early out in logical AND and OR expressions. The final result
367 will be either a 0 or a 1, see the next flag for more possibilities.
368 .TP
369 .B -fperl-logic
370 In many languages, logical expressions perform early out in a special
371 way: If the left operand of an AND yeilds true, or the one of an OR
372 yields false, the complete expression evaluates to the right side.
373 Thus \fItrue && 5\fI evaluates to 5 rather than 1.
374 .TP
375 .B -ftranslatable-strings
376 Enable the underscore intrinsic: Using \fI_("A string constant")\fR
377 will cause the string immediate to get a name with a "dotranslate_"
378 prefix. The darkplaces engine recognizes these and translates them in
379 a way similar to how gettext works.
380 .TP
381 .B -finitialized-nonconstants
382 Don't implicitly convert initialized variables to constants. With this
383 flag, the \fIconst\fR keyword is required to make a constant.
384 .TP
385 .B -fassign-function-types
386 If this flag is not set, (and it is set by default in the qcc and
387 fteqcc standards), assigning function pointers of mismatching
388 signatures will result in an error rather than a warning.
389 .TP
390 .B -flno
391 Produce a linenumber file along with the output .dat file.
392 .TP
393 .B -fcorrect-ternary
394 Use C's operator precedence for ternary expressions. Unless your code
395 depends on fteqcc-compatible behaviour, you'll want to use thi
396 soption.
397 .TP
398 .B -fsingle-vector-defs
399 Normally vectors generate 4 defs, once for the vector, and once for
400 its components with _x, _y, _z suffixes. This option
401 prevents components from being listed.
402 .TP
403 .B -fcorrect-logic
404 Most QC compilers translate if(a_vector) directly as an IF on the
405 vector, which means only the x-component is checked. This causes
406 vectors to be cast to actual booleans via a NOT_V and, if necessary, a
407 NOT_F chained to it.
408 .in +4
409 .nf
410 if (a_vector) // becomes
411 if not(!a_vector)
412 // likewise
413 a = a_vector && a_float // becomes
414 a = !!a_vector && a_float
415 .fi
416 .in
417 .TP
418 .B -ftrue-empty-strings
419 An empty string is considered to be true everywhere. The NOT_S
420 instruction usually considers an empty string to be false, this option
421 effectively causes the unary not in strings to use NOT_F instead.
422 .TP
423 .B -ffalse-empty-strings
424 An empty string is considered to be false everywhere. This means loops
425 and if statements which depend on a string will perform a NOT_S
426 instruction on the string before using it.
427 .TP
428 .B -futf8
429 Enable utf8 characters. This allows utf-8 encoded character constants,
430 and escape sequence codepoints in the valid utf-8 range. Effectively
431 enabling escape sequences like '\\{x2211}'.
432 .TP
433 .B -fbail-on-werror
434 When a warning is treated as an error, and this option is set (which
435 it is by default), it is like any other error and will cause
436 compilation to stop. When disabling this flag by using
437 \-fno-bail-on-werror, compilation will continue until the end, but no
438 output is generated. Instead the first such error message's context is
439 shown.
440 .TP
441 .B -floop-labels
442 Allow loops to be labeled, and allow 'break' and 'continue' to take an
443 optional label to decide which loop to actually jump out of or
444 continue.
445 .sp
446 .in +4
447 .nf
448 for :outer (i = 0; i < n; ++i) {
449     while (inner) {
450         ...;
451         if (something)
452             continue outer;
453     }
454 }
455 .fi
456 .in
457 .TP
458 .B -funtyped-nil
459 Adds a global named 'nil' which is of no type and can be assigned to
460 anything. No typechecking will be performed on assignments. Assigning
461 to it is forbidden, using it in any other kind of expression is also
462 not allowed.
463 .sp
464 Note that this is different from fteqcc's __NULL__: In fteqcc,
465 __NULL__ maps to the integer written as '0i'. It's can be assigned to
466 function pointers and integers, but it'll error about invalid
467 instructions when assigning it to floats without enabling the FTE
468 instruction set. There's also a bug which allows it to be assigned to
469 vectors, for which the source will be the global at offset 0, meaning
470 the vector's y and z components will contain the OFS_RETURN x and y
471 components.
472 .sp
473 In that gmqcc the nil global is an actual global filled with zeroes,
474 and can be assigned to anything including fields, vectors or function
475 pointers, and they end up becoming zeroed.
476 .TP
477 .B -fpermissive
478 Various effects, usually to weaken some conditions.
479 .RS
480 .IP "with -funtyped-nil"
481 Allow local variables named 'nil'. (This will not allow declaring a
482 global of that name.)
483 .RE
484 .TP
485 .B -fvariadic-args
486 Allow variadic parameters to be accessed by QC code. This can be
487 achieved via the '...' function, which takes a parameter index and a
488 typename.
489
490 Example:
491 .sp
492 .in +4
493 .nf
494 void vafunc(string...count) {
495     float i;
496     for (i = 0; i < count; ++i)
497         print(...(i, string), "\\n");
498 }
499 .fi
500 .in
501 .TP -flegacy-vector-maths
502 Most Quake VMs, including the one from FTEQW or up till recently
503 Darkplaces, do not cope well with vector instructions with overlapping
504 input and output. This option will avoid producing such code.
505 .SH OPTIMIZATIONS
506 .TP
507 .B -Opeephole
508 Some general peephole optimizations. For instance the code `a = b + c`
509 typically generates 2 instructions, an ADD and a STORE. This
510 optimization removes the STORE and lets the ADD write directly into A.
511 .TP
512 .B -Otail-recursion
513 Tail recursive function calls will be turned into loops to avoid the
514 overhead of the CALL and RETURN instructions.
515 .TP
516 .B -Ooverlap-locals
517 Make all functions which use neither local arrays nor have locals
518 which are seen as possibly uninitialized use the same local section.
519 This should be pretty safe compared to other compilers which do not
520 check for uninitialized values properly. The problem is that there's
521 QC code out there which really doesn't initialize some values. This is
522 fine as long as this kind of optimization isn't used, but also, only
523 as long as the functions cannot be called in a recursive manner. Since
524 it's hard to know whether or not an array is actually fully
525 initialized, especially when initializing it via a loop, we assume
526 functions with arrays to be too dangerous for this optimization.
527 .TP
528 .B -Olocal-temps
529 This promotes locally declared variables to "temps". Meaning when a
530 temporary result of an operation has to be stored somewhere, a local
531 variable which is not 'alive' at that point can be used to keep the
532 result. This can reduce the size of the global section.
533 This will not have declared variables overlap, even if it was
534 possible.
535 .TP
536 .B -Oglobal-temps
537 Causes temporary values which do not need to be backed up on a CALL to
538 not be stored in the function's locals-area. With this, a CALL to a
539 function may need to back up fewer values and thus execute faster.
540 .TP
541 .B -Ostrip-constant-names
542 Don't generate defs for immediate values or even declared constants.
543 Meaning variables which are implicitly constant or qualified as such
544 using the 'const' keyword.
545 .TP
546 .B -Ooverlap-strings
547 Aggressively reuse strings in the string section. When a string should
548 be added which is the trailing substring of an already existing
549 string, the existing string's tail will be returned instead of the new
550 string being added.
551
552 For example the following code will only generate 1 string:
553
554 .in +4
555 .nf
556 print("Hell you!\\n");
557 print("you!\\n"); // trailing substring of "Hello you!\\n"
558 .fi
559 .in
560 There's however one limitation. Strings are still processed in order,
561 so if the above print statements were reversed, this optimization
562 would not happen.
563 .TP
564 .B -Ocall-stores
565 By default, all parameters of a CALL are copied into the
566 parameter-globals right before the CALL instructions. This is the
567 easiest and safest way to translate calls, but also adds a lot of
568 unnecessary copying and unnecessary temporary values. This
569 optimization makes operations which are used as a parameter evaluate
570 directly into the parameter-global if that is possible, which is when
571 there's no other CALL instruction in between.
572 .TP
573 .B -Ovoid-return
574 Usually an empty RETURN instruction is added to the end of a void
575 typed function. However, additionally after every function a DONE
576 instruction is added for several reasons. (For example the qcvm's
577 disassemble switch uses it to know when the function ends.). This
578 optimization replaces that last RETURN with DONE rather than adding
579 the DONE additionally.
580 .TP
581 .B -Ovector-components
582 Because traditional QC code doesn't allow you to access individual
583 vector components of a computed vector without storing it in a local
584 first, sometimes people multiply it by a constant like '0 1 0' to get,
585 in this case, the y component of a vector. This optimization will turn
586 such a multiplication into a direct component access. If the factor is
587 anything other than 1, a float-multiplication will be added, which is
588 still faster than a vector multiplication.
589 .SH CONFIG
590 The configuration file is similar to regular .ini files. Comments
591 start with hashtags or semicolons, sections are written in square
592 brackets and in each section there can be arbitrary many key-value
593 pairs.
594 .sp
595 There are 3 sections currently:
596 .IR flags ", " warnings ", and " optimizations .
597 They contain a list of boolean values of the form `VARNAME = true` or
598 `VARNAME = false`. The variable names are the same as for the
599 corresponding -W, -f or -O flag written with only capital letters and
600 dashes replaced by underscores.
601 .sp
602 Here's an example:
603 .in +4
604 .nf
605 # a GMQCC configuration file
606 [flags]
607     FTEPP = true
608     ADJUST_VECTOR_FIELDS = false
609     LNO = true
610
611 [warnings]
612     UNUSED_VARIABLE = false
613     USED_UNINITIALIZED = true
614
615 [optimizations]
616     PEEPHOLE = true
617     TAIL_RECURSION = true
618 .fi
619 .in
620 .SH BUGS
621 Currently the '-fftepp-predefs' flag is not included by '-std=fteqcc',
622 partially because it is not entirely conformant to fteqcc.
623 .sp
624
625 Please report bugs on <http://github.com/graphitemaster/gmqcc/issues>,
626 or see <http://graphitemaster.github.com/gmqcc> on how to contact us.
627 .SH FILES
628 .TP 20
629 .B gmqcc.ini.example
630 A documented example for a gmqcc.ini file.
631 .SH SEE ALSO
632 .IR qcvm (1)
633 .SH AUTHOR
634 See <http://graphitemaster.github.com/gmqcc>.