]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/md.texi
IA-64 ABI Exception Handling.
[thirdparty/gcc.git] / gcc / md.texi
1 @c Copyright (C) 1988, 89, 92, 93, 94, 96, 1998, 2000, 2001 Free Software Foundation, Inc.
2 @c This is part of the GCC manual.
3 @c For copying conditions, see the file gcc.texi.
4
5 @ifset INTERNALS
6 @node Machine Desc
7 @chapter Machine Descriptions
8 @cindex machine descriptions
9
10 A machine description has two parts: a file of instruction patterns
11 (@file{.md} file) and a C header file of macro definitions.
12
13 The @file{.md} file for a target machine contains a pattern for each
14 instruction that the target machine supports (or at least each instruction
15 that is worth telling the compiler about). It may also contain comments.
16 A semicolon causes the rest of the line to be a comment, unless the semicolon
17 is inside a quoted string.
18
19 See the next chapter for information on the C header file.
20
21 @menu
22 * Overview:: How the machine description is used.
23 * Patterns:: How to write instruction patterns.
24 * Example:: An explained example of a @code{define_insn} pattern.
25 * RTL Template:: The RTL template defines what insns match a pattern.
26 * Output Template:: The output template says how to make assembler code
27 from such an insn.
28 * Output Statement:: For more generality, write C code to output
29 the assembler code.
30 * Constraints:: When not all operands are general operands.
31 * Standard Names:: Names mark patterns to use for code generation.
32 * Pattern Ordering:: When the order of patterns makes a difference.
33 * Dependent Patterns:: Having one pattern may make you need another.
34 * Jump Patterns:: Special considerations for patterns for jump insns.
35 * Looping Patterns:: How to define patterns for special looping insns.
36 * Insn Canonicalizations::Canonicalization of Instructions
37 * Expander Definitions::Generating a sequence of several RTL insns
38 for a standard operation.
39 * Insn Splitting:: Splitting Instructions into Multiple Instructions.
40 * Peephole Definitions::Defining machine-specific peephole optimizations.
41 * Insn Attributes:: Specifying the value of attributes for generated insns.
42 * Conditional Execution::Generating @code{define_insn} patterns for
43 predication.
44 * Constant Definitions::Defining symbolic constants that can be used in the
45 md file.
46 @end menu
47
48 @node Overview
49 @section Overview of How the Machine Description is Used
50
51 There are three main conversions that happen in the compiler:
52
53 @enumerate
54
55 @item
56 The front end reads the source code and builds a parse tree.
57
58 @item
59 The parse tree is used to generate an RTL insn list based on named
60 instruction patterns.
61
62 @item
63 The insn list is matched against the RTL templates to produce assembler
64 code.
65
66 @end enumerate
67
68 For the generate pass, only the names of the insns matter, from either a
69 named @code{define_insn} or a @code{define_expand}. The compiler will
70 choose the pattern with the right name and apply the operands according
71 to the documentation later in this chapter, without regard for the RTL
72 template or operand constraints. Note that the names the compiler looks
73 for are hard-coded in the compiler - it will ignore unnamed patterns and
74 patterns with names it doesn't know about, but if you don't provide a
75 named pattern it needs, it will abort.
76
77 If a @code{define_insn} is used, the template given is inserted into the
78 insn list. If a @code{define_expand} is used, one of three things
79 happens, based on the condition logic. The condition logic may manually
80 create new insns for the insn list, say via @code{emit_insn()}, and
81 invoke DONE. For certain named patterns, it may invoke FAIL to tell the
82 compiler to use an alternate way of performing that task. If it invokes
83 neither @code{DONE} nor @code{FAIL}, the template given in the pattern
84 is inserted, as if the @code{define_expand} were a @code{define_insn}.
85
86 Once the insn list is generated, various optimization passes convert,
87 replace, and rearrange the insns in the insn list. This is where the
88 @code{define_split} and @code{define_peephole} patterns get used, for
89 example.
90
91 Finally, the insn list's RTL is matched up with the RTL templates in the
92 @code{define_insn} patterns, and those patterns are used to emit the
93 final assembly code. For this purpose, each named @code{define_insn}
94 acts like it's unnamed, since the names are ignored.
95
96 @node Patterns
97 @section Everything about Instruction Patterns
98 @cindex patterns
99 @cindex instruction patterns
100
101 @findex define_insn
102 Each instruction pattern contains an incomplete RTL expression, with pieces
103 to be filled in later, operand constraints that restrict how the pieces can
104 be filled in, and an output pattern or C code to generate the assembler
105 output, all wrapped up in a @code{define_insn} expression.
106
107 A @code{define_insn} is an RTL expression containing four or five operands:
108
109 @enumerate
110 @item
111 An optional name. The presence of a name indicate that this instruction
112 pattern can perform a certain standard job for the RTL-generation
113 pass of the compiler. This pass knows certain names and will use
114 the instruction patterns with those names, if the names are defined
115 in the machine description.
116
117 The absence of a name is indicated by writing an empty string
118 where the name should go. Nameless instruction patterns are never
119 used for generating RTL code, but they may permit several simpler insns
120 to be combined later on.
121
122 Names that are not thus known and used in RTL-generation have no
123 effect; they are equivalent to no name at all.
124
125 For the purpose of debugging the compiler, you may also specify a
126 name beginning with the @samp{*} character. Such a name is used only
127 for identifying the instruction in RTL dumps; it is entirely equivalent
128 to having a nameless pattern for all other purposes.
129
130 @item
131 The @dfn{RTL template} (@pxref{RTL Template}) is a vector of incomplete
132 RTL expressions which show what the instruction should look like. It is
133 incomplete because it may contain @code{match_operand},
134 @code{match_operator}, and @code{match_dup} expressions that stand for
135 operands of the instruction.
136
137 If the vector has only one element, that element is the template for the
138 instruction pattern. If the vector has multiple elements, then the
139 instruction pattern is a @code{parallel} expression containing the
140 elements described.
141
142 @item
143 @cindex pattern conditions
144 @cindex conditions, in patterns
145 A condition. This is a string which contains a C expression that is
146 the final test to decide whether an insn body matches this pattern.
147
148 @cindex named patterns and conditions
149 For a named pattern, the condition (if present) may not depend on
150 the data in the insn being matched, but only the target-machine-type
151 flags. The compiler needs to test these conditions during
152 initialization in order to learn exactly which named instructions are
153 available in a particular run.
154
155 @findex operands
156 For nameless patterns, the condition is applied only when matching an
157 individual insn, and only after the insn has matched the pattern's
158 recognition template. The insn's operands may be found in the vector
159 @code{operands}.
160
161 @item
162 The @dfn{output template}: a string that says how to output matching
163 insns as assembler code. @samp{%} in this string specifies where
164 to substitute the value of an operand. @xref{Output Template}.
165
166 When simple substitution isn't general enough, you can specify a piece
167 of C code to compute the output. @xref{Output Statement}.
168
169 @item
170 Optionally, a vector containing the values of attributes for insns matching
171 this pattern. @xref{Insn Attributes}.
172 @end enumerate
173
174 @node Example
175 @section Example of @code{define_insn}
176 @cindex @code{define_insn} example
177
178 Here is an actual example of an instruction pattern, for the 68000/68020.
179
180 @example
181 (define_insn "tstsi"
182 [(set (cc0)
183 (match_operand:SI 0 "general_operand" "rm"))]
184 ""
185 "*
186 @{ if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
187 return \"tstl %0\";
188 return \"cmpl #0,%0\"; @}")
189 @end example
190
191 This is an instruction that sets the condition codes based on the value of
192 a general operand. It has no condition, so any insn whose RTL description
193 has the form shown may be handled according to this pattern. The name
194 @samp{tstsi} means ``test a @code{SImode} value'' and tells the RTL generation
195 pass that, when it is necessary to test such a value, an insn to do so
196 can be constructed using this pattern.
197
198 The output control string is a piece of C code which chooses which
199 output template to return based on the kind of operand and the specific
200 type of CPU for which code is being generated.
201
202 @samp{"rm"} is an operand constraint. Its meaning is explained below.
203
204 @node RTL Template
205 @section RTL Template
206 @cindex RTL insn template
207 @cindex generating insns
208 @cindex insns, generating
209 @cindex recognizing insns
210 @cindex insns, recognizing
211
212 The RTL template is used to define which insns match the particular pattern
213 and how to find their operands. For named patterns, the RTL template also
214 says how to construct an insn from specified operands.
215
216 Construction involves substituting specified operands into a copy of the
217 template. Matching involves determining the values that serve as the
218 operands in the insn being matched. Both of these activities are
219 controlled by special expression types that direct matching and
220 substitution of the operands.
221
222 @table @code
223 @findex match_operand
224 @item (match_operand:@var{m} @var{n} @var{predicate} @var{constraint})
225 This expression is a placeholder for operand number @var{n} of
226 the insn. When constructing an insn, operand number @var{n}
227 will be substituted at this point. When matching an insn, whatever
228 appears at this position in the insn will be taken as operand
229 number @var{n}; but it must satisfy @var{predicate} or this instruction
230 pattern will not match at all.
231
232 Operand numbers must be chosen consecutively counting from zero in
233 each instruction pattern. There may be only one @code{match_operand}
234 expression in the pattern for each operand number. Usually operands
235 are numbered in the order of appearance in @code{match_operand}
236 expressions. In the case of a @code{define_expand}, any operand numbers
237 used only in @code{match_dup} expressions have higher values than all
238 other operand numbers.
239
240 @var{predicate} is a string that is the name of a C function that accepts two
241 arguments, an expression and a machine mode. During matching, the
242 function will be called with the putative operand as the expression and
243 @var{m} as the mode argument (if @var{m} is not specified,
244 @code{VOIDmode} will be used, which normally causes @var{predicate} to accept
245 any mode). If it returns zero, this instruction pattern fails to match.
246 @var{predicate} may be an empty string; then it means no test is to be done
247 on the operand, so anything which occurs in this position is valid.
248
249 Most of the time, @var{predicate} will reject modes other than @var{m}---but
250 not always. For example, the predicate @code{address_operand} uses
251 @var{m} as the mode of memory ref that the address should be valid for.
252 Many predicates accept @code{const_int} nodes even though their mode is
253 @code{VOIDmode}.
254
255 @var{constraint} controls reloading and the choice of the best register
256 class to use for a value, as explained later (@pxref{Constraints}).
257
258 People are often unclear on the difference between the constraint and the
259 predicate. The predicate helps decide whether a given insn matches the
260 pattern. The constraint plays no role in this decision; instead, it
261 controls various decisions in the case of an insn which does match.
262
263 @findex general_operand
264 On CISC machines, the most common @var{predicate} is
265 @code{"general_operand"}. This function checks that the putative
266 operand is either a constant, a register or a memory reference, and that
267 it is valid for mode @var{m}.
268
269 @findex register_operand
270 For an operand that must be a register, @var{predicate} should be
271 @code{"register_operand"}. Using @code{"general_operand"} would be
272 valid, since the reload pass would copy any non-register operands
273 through registers, but this would make GNU CC do extra work, it would
274 prevent invariant operands (such as constant) from being removed from
275 loops, and it would prevent the register allocator from doing the best
276 possible job. On RISC machines, it is usually most efficient to allow
277 @var{predicate} to accept only objects that the constraints allow.
278
279 @findex immediate_operand
280 For an operand that must be a constant, you must be sure to either use
281 @code{"immediate_operand"} for @var{predicate}, or make the instruction
282 pattern's extra condition require a constant, or both. You cannot
283 expect the constraints to do this work! If the constraints allow only
284 constants, but the predicate allows something else, the compiler will
285 crash when that case arises.
286
287 @findex match_scratch
288 @item (match_scratch:@var{m} @var{n} @var{constraint})
289 This expression is also a placeholder for operand number @var{n}
290 and indicates that operand must be a @code{scratch} or @code{reg}
291 expression.
292
293 When matching patterns, this is equivalent to
294
295 @smallexample
296 (match_operand:@var{m} @var{n} "scratch_operand" @var{pred})
297 @end smallexample
298
299 but, when generating RTL, it produces a (@code{scratch}:@var{m})
300 expression.
301
302 If the last few expressions in a @code{parallel} are @code{clobber}
303 expressions whose operands are either a hard register or
304 @code{match_scratch}, the combiner can add or delete them when
305 necessary. @xref{Side Effects}.
306
307 @findex match_dup
308 @item (match_dup @var{n})
309 This expression is also a placeholder for operand number @var{n}.
310 It is used when the operand needs to appear more than once in the
311 insn.
312
313 In construction, @code{match_dup} acts just like @code{match_operand}:
314 the operand is substituted into the insn being constructed. But in
315 matching, @code{match_dup} behaves differently. It assumes that operand
316 number @var{n} has already been determined by a @code{match_operand}
317 appearing earlier in the recognition template, and it matches only an
318 identical-looking expression.
319
320 Note that @code{match_dup} should not be used to tell the compiler that
321 a particular register is being used for two operands (example:
322 @code{add} that adds one register to another; the second register is
323 both an input operand and the output operand). Use a matching
324 constraint (@pxref{Simple Constraints}) for those. @code{match_dup} is for the cases where one
325 operand is used in two places in the template, such as an instruction
326 that computes both a quotient and a remainder, where the opcode takes
327 two input operands but the RTL template has to refer to each of those
328 twice; once for the quotient pattern and once for the remainder pattern.
329
330 @findex match_operator
331 @item (match_operator:@var{m} @var{n} @var{predicate} [@var{operands}@dots{}])
332 This pattern is a kind of placeholder for a variable RTL expression
333 code.
334
335 When constructing an insn, it stands for an RTL expression whose
336 expression code is taken from that of operand @var{n}, and whose
337 operands are constructed from the patterns @var{operands}.
338
339 When matching an expression, it matches an expression if the function
340 @var{predicate} returns nonzero on that expression @emph{and} the
341 patterns @var{operands} match the operands of the expression.
342
343 Suppose that the function @code{commutative_operator} is defined as
344 follows, to match any expression whose operator is one of the
345 commutative arithmetic operators of RTL and whose mode is @var{mode}:
346
347 @smallexample
348 int
349 commutative_operator (x, mode)
350 rtx x;
351 enum machine_mode mode;
352 @{
353 enum rtx_code code = GET_CODE (x);
354 if (GET_MODE (x) != mode)
355 return 0;
356 return (GET_RTX_CLASS (code) == 'c'
357 || code == EQ || code == NE);
358 @}
359 @end smallexample
360
361 Then the following pattern will match any RTL expression consisting
362 of a commutative operator applied to two general operands:
363
364 @smallexample
365 (match_operator:SI 3 "commutative_operator"
366 [(match_operand:SI 1 "general_operand" "g")
367 (match_operand:SI 2 "general_operand" "g")])
368 @end smallexample
369
370 Here the vector @code{[@var{operands}@dots{}]} contains two patterns
371 because the expressions to be matched all contain two operands.
372
373 When this pattern does match, the two operands of the commutative
374 operator are recorded as operands 1 and 2 of the insn. (This is done
375 by the two instances of @code{match_operand}.) Operand 3 of the insn
376 will be the entire commutative expression: use @code{GET_CODE
377 (operands[3])} to see which commutative operator was used.
378
379 The machine mode @var{m} of @code{match_operator} works like that of
380 @code{match_operand}: it is passed as the second argument to the
381 predicate function, and that function is solely responsible for
382 deciding whether the expression to be matched ``has'' that mode.
383
384 When constructing an insn, argument 3 of the gen-function will specify
385 the operation (i.e. the expression code) for the expression to be
386 made. It should be an RTL expression, whose expression code is copied
387 into a new expression whose operands are arguments 1 and 2 of the
388 gen-function. The subexpressions of argument 3 are not used;
389 only its expression code matters.
390
391 When @code{match_operator} is used in a pattern for matching an insn,
392 it usually best if the operand number of the @code{match_operator}
393 is higher than that of the actual operands of the insn. This improves
394 register allocation because the register allocator often looks at
395 operands 1 and 2 of insns to see if it can do register tying.
396
397 There is no way to specify constraints in @code{match_operator}. The
398 operand of the insn which corresponds to the @code{match_operator}
399 never has any constraints because it is never reloaded as a whole.
400 However, if parts of its @var{operands} are matched by
401 @code{match_operand} patterns, those parts may have constraints of
402 their own.
403
404 @findex match_op_dup
405 @item (match_op_dup:@var{m} @var{n}[@var{operands}@dots{}])
406 Like @code{match_dup}, except that it applies to operators instead of
407 operands. When constructing an insn, operand number @var{n} will be
408 substituted at this point. But in matching, @code{match_op_dup} behaves
409 differently. It assumes that operand number @var{n} has already been
410 determined by a @code{match_operator} appearing earlier in the
411 recognition template, and it matches only an identical-looking
412 expression.
413
414 @findex match_parallel
415 @item (match_parallel @var{n} @var{predicate} [@var{subpat}@dots{}])
416 This pattern is a placeholder for an insn that consists of a
417 @code{parallel} expression with a variable number of elements. This
418 expression should only appear at the top level of an insn pattern.
419
420 When constructing an insn, operand number @var{n} will be substituted at
421 this point. When matching an insn, it matches if the body of the insn
422 is a @code{parallel} expression with at least as many elements as the
423 vector of @var{subpat} expressions in the @code{match_parallel}, if each
424 @var{subpat} matches the corresponding element of the @code{parallel},
425 @emph{and} the function @var{predicate} returns nonzero on the
426 @code{parallel} that is the body of the insn. It is the responsibility
427 of the predicate to validate elements of the @code{parallel} beyond
428 those listed in the @code{match_parallel}.@refill
429
430 A typical use of @code{match_parallel} is to match load and store
431 multiple expressions, which can contain a variable number of elements
432 in a @code{parallel}. For example,
433 @c the following is *still* going over. need to change the code.
434 @c also need to work on grouping of this example. --mew 1feb93
435
436 @smallexample
437 (define_insn ""
438 [(match_parallel 0 "load_multiple_operation"
439 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
440 (match_operand:SI 2 "memory_operand" "m"))
441 (use (reg:SI 179))
442 (clobber (reg:SI 179))])]
443 ""
444 "loadm 0,0,%1,%2")
445 @end smallexample
446
447 This example comes from @file{a29k.md}. The function
448 @code{load_multiple_operations} is defined in @file{a29k.c} and checks
449 that subsequent elements in the @code{parallel} are the same as the
450 @code{set} in the pattern, except that they are referencing subsequent
451 registers and memory locations.
452
453 An insn that matches this pattern might look like:
454
455 @smallexample
456 (parallel
457 [(set (reg:SI 20) (mem:SI (reg:SI 100)))
458 (use (reg:SI 179))
459 (clobber (reg:SI 179))
460 (set (reg:SI 21)
461 (mem:SI (plus:SI (reg:SI 100)
462 (const_int 4))))
463 (set (reg:SI 22)
464 (mem:SI (plus:SI (reg:SI 100)
465 (const_int 8))))])
466 @end smallexample
467
468 @findex match_par_dup
469 @item (match_par_dup @var{n} [@var{subpat}@dots{}])
470 Like @code{match_op_dup}, but for @code{match_parallel} instead of
471 @code{match_operator}.
472
473 @findex match_insn
474 @item (match_insn @var{predicate})
475 Match a complete insn. Unlike the other @code{match_*} recognizers,
476 @code{match_insn} does not take an operand number.
477
478 The machine mode @var{m} of @code{match_insn} works like that of
479 @code{match_operand}: it is passed as the second argument to the
480 predicate function, and that function is solely responsible for
481 deciding whether the expression to be matched ``has'' that mode.
482
483 @findex match_insn2
484 @item (match_insn2 @var{n} @var{predicate})
485 Match a complete insn.
486
487 The machine mode @var{m} of @code{match_insn2} works like that of
488 @code{match_operand}: it is passed as the second argument to the
489 predicate function, and that function is solely responsible for
490 deciding whether the expression to be matched ``has'' that mode.
491
492 @end table
493
494 @node Output Template
495 @section Output Templates and Operand Substitution
496 @cindex output templates
497 @cindex operand substitution
498
499 @cindex @samp{%} in template
500 @cindex percent sign
501 The @dfn{output template} is a string which specifies how to output the
502 assembler code for an instruction pattern. Most of the template is a
503 fixed string which is output literally. The character @samp{%} is used
504 to specify where to substitute an operand; it can also be used to
505 identify places where different variants of the assembler require
506 different syntax.
507
508 In the simplest case, a @samp{%} followed by a digit @var{n} says to output
509 operand @var{n} at that point in the string.
510
511 @samp{%} followed by a letter and a digit says to output an operand in an
512 alternate fashion. Four letters have standard, built-in meanings described
513 below. The machine description macro @code{PRINT_OPERAND} can define
514 additional letters with nonstandard meanings.
515
516 @samp{%c@var{digit}} can be used to substitute an operand that is a
517 constant value without the syntax that normally indicates an immediate
518 operand.
519
520 @samp{%n@var{digit}} is like @samp{%c@var{digit}} except that the value of
521 the constant is negated before printing.
522
523 @samp{%a@var{digit}} can be used to substitute an operand as if it were a
524 memory reference, with the actual operand treated as the address. This may
525 be useful when outputting a ``load address'' instruction, because often the
526 assembler syntax for such an instruction requires you to write the operand
527 as if it were a memory reference.
528
529 @samp{%l@var{digit}} is used to substitute a @code{label_ref} into a jump
530 instruction.
531
532 @samp{%=} outputs a number which is unique to each instruction in the
533 entire compilation. This is useful for making local labels to be
534 referred to more than once in a single template that generates multiple
535 assembler instructions.
536
537 @samp{%} followed by a punctuation character specifies a substitution that
538 does not use an operand. Only one case is standard: @samp{%%} outputs a
539 @samp{%} into the assembler code. Other nonstandard cases can be
540 defined in the @code{PRINT_OPERAND} macro. You must also define
541 which punctuation characters are valid with the
542 @code{PRINT_OPERAND_PUNCT_VALID_P} macro.
543
544 @cindex \
545 @cindex backslash
546 The template may generate multiple assembler instructions. Write the text
547 for the instructions, with @samp{\;} between them.
548
549 @cindex matching operands
550 When the RTL contains two operands which are required by constraint to match
551 each other, the output template must refer only to the lower-numbered operand.
552 Matching operands are not always identical, and the rest of the compiler
553 arranges to put the proper RTL expression for printing into the lower-numbered
554 operand.
555
556 One use of nonstandard letters or punctuation following @samp{%} is to
557 distinguish between different assembler languages for the same machine; for
558 example, Motorola syntax versus MIT syntax for the 68000. Motorola syntax
559 requires periods in most opcode names, while MIT syntax does not. For
560 example, the opcode @samp{movel} in MIT syntax is @samp{move.l} in Motorola
561 syntax. The same file of patterns is used for both kinds of output syntax,
562 but the character sequence @samp{%.} is used in each place where Motorola
563 syntax wants a period. The @code{PRINT_OPERAND} macro for Motorola syntax
564 defines the sequence to output a period; the macro for MIT syntax defines
565 it to do nothing.
566
567 @cindex @code{#} in template
568 As a special case, a template consisting of the single character @code{#}
569 instructs the compiler to first split the insn, and then output the
570 resulting instructions separately. This helps eliminate redundancy in the
571 output templates. If you have a @code{define_insn} that needs to emit
572 multiple assembler instructions, and there is an matching @code{define_split}
573 already defined, then you can simply use @code{#} as the output template
574 instead of writing an output template that emits the multiple assembler
575 instructions.
576
577 If the macro @code{ASSEMBLER_DIALECT} is defined, you can use construct
578 of the form @samp{@{option0|option1|option2@}} in the templates. These
579 describe multiple variants of assembler language syntax.
580 @xref{Instruction Output}.
581
582 @node Output Statement
583 @section C Statements for Assembler Output
584 @cindex output statements
585 @cindex C statements for assembler output
586 @cindex generating assembler output
587
588 Often a single fixed template string cannot produce correct and efficient
589 assembler code for all the cases that are recognized by a single
590 instruction pattern. For example, the opcodes may depend on the kinds of
591 operands; or some unfortunate combinations of operands may require extra
592 machine instructions.
593
594 If the output control string starts with a @samp{@@}, then it is actually
595 a series of templates, each on a separate line. (Blank lines and
596 leading spaces and tabs are ignored.) The templates correspond to the
597 pattern's constraint alternatives (@pxref{Multi-Alternative}). For example,
598 if a target machine has a two-address add instruction @samp{addr} to add
599 into a register and another @samp{addm} to add a register to memory, you
600 might write this pattern:
601
602 @smallexample
603 (define_insn "addsi3"
604 [(set (match_operand:SI 0 "general_operand" "=r,m")
605 (plus:SI (match_operand:SI 1 "general_operand" "0,0")
606 (match_operand:SI 2 "general_operand" "g,r")))]
607 ""
608 "@@
609 addr %2,%0
610 addm %2,%0")
611 @end smallexample
612
613 @cindex @code{*} in template
614 @cindex asterisk in template
615 If the output control string starts with a @samp{*}, then it is not an
616 output template but rather a piece of C program that should compute a
617 template. It should execute a @code{return} statement to return the
618 template-string you want. Most such templates use C string literals, which
619 require doublequote characters to delimit them. To include these
620 doublequote characters in the string, prefix each one with @samp{\}.
621
622 The operands may be found in the array @code{operands}, whose C data type
623 is @code{rtx []}.
624
625 It is very common to select different ways of generating assembler code
626 based on whether an immediate operand is within a certain range. Be
627 careful when doing this, because the result of @code{INTVAL} is an
628 integer on the host machine. If the host machine has more bits in an
629 @code{int} than the target machine has in the mode in which the constant
630 will be used, then some of the bits you get from @code{INTVAL} will be
631 superfluous. For proper results, you must carefully disregard the
632 values of those bits.
633
634 @findex output_asm_insn
635 It is possible to output an assembler instruction and then go on to output
636 or compute more of them, using the subroutine @code{output_asm_insn}. This
637 receives two arguments: a template-string and a vector of operands. The
638 vector may be @code{operands}, or it may be another array of @code{rtx}
639 that you declare locally and initialize yourself.
640
641 @findex which_alternative
642 When an insn pattern has multiple alternatives in its constraints, often
643 the appearance of the assembler code is determined mostly by which alternative
644 was matched. When this is so, the C code can test the variable
645 @code{which_alternative}, which is the ordinal number of the alternative
646 that was actually satisfied (0 for the first, 1 for the second alternative,
647 etc.).
648
649 For example, suppose there are two opcodes for storing zero, @samp{clrreg}
650 for registers and @samp{clrmem} for memory locations. Here is how
651 a pattern could use @code{which_alternative} to choose between them:
652
653 @smallexample
654 (define_insn ""
655 [(set (match_operand:SI 0 "general_operand" "=r,m")
656 (const_int 0))]
657 ""
658 "*
659 return (which_alternative == 0
660 ? \"clrreg %0\" : \"clrmem %0\");
661 ")
662 @end smallexample
663
664 The example above, where the assembler code to generate was
665 @emph{solely} determined by the alternative, could also have been specified
666 as follows, having the output control string start with a @samp{@@}:
667
668 @smallexample
669 @group
670 (define_insn ""
671 [(set (match_operand:SI 0 "general_operand" "=r,m")
672 (const_int 0))]
673 ""
674 "@@
675 clrreg %0
676 clrmem %0")
677 @end group
678 @end smallexample
679 @end ifset
680
681 @c Most of this node appears by itself (in a different place) even
682 @c when the INTERNALS flag is clear. Passages that require the full
683 @c manual's context are conditionalized to appear only in the full manual.
684 @ifset INTERNALS
685 @node Constraints
686 @section Operand Constraints
687 @cindex operand constraints
688 @cindex constraints
689
690 Each @code{match_operand} in an instruction pattern can specify a
691 constraint for the type of operands allowed.
692 @end ifset
693 @ifclear INTERNALS
694 @node Constraints
695 @section Constraints for @code{asm} Operands
696 @cindex operand constraints, @code{asm}
697 @cindex constraints, @code{asm}
698 @cindex @code{asm} constraints
699
700 Here are specific details on what constraint letters you can use with
701 @code{asm} operands.
702 @end ifclear
703 Constraints can say whether
704 an operand may be in a register, and which kinds of register; whether the
705 operand can be a memory reference, and which kinds of address; whether the
706 operand may be an immediate constant, and which possible values it may
707 have. Constraints can also require two operands to match.
708
709 @ifset INTERNALS
710 @menu
711 * Simple Constraints:: Basic use of constraints.
712 * Multi-Alternative:: When an insn has two alternative constraint-patterns.
713 * Class Preferences:: Constraints guide which hard register to put things in.
714 * Modifiers:: More precise control over effects of constraints.
715 * Machine Constraints:: Existing constraints for some particular machines.
716 @end menu
717 @end ifset
718
719 @ifclear INTERNALS
720 @menu
721 * Simple Constraints:: Basic use of constraints.
722 * Multi-Alternative:: When an insn has two alternative constraint-patterns.
723 * Modifiers:: More precise control over effects of constraints.
724 * Machine Constraints:: Special constraints for some particular machines.
725 @end menu
726 @end ifclear
727
728 @node Simple Constraints
729 @subsection Simple Constraints
730 @cindex simple constraints
731
732 The simplest kind of constraint is a string full of letters, each of
733 which describes one kind of operand that is permitted. Here are
734 the letters that are allowed:
735
736 @table @asis
737 @item whitespace
738 Whitespace characters are ignored and can be inserted at any position
739 except the first. This enables each alternative for different operands to
740 be visually aligned in the machine description even if they have different
741 number of constraints and modifiers.
742
743 @cindex @samp{m} in constraint
744 @cindex memory references in constraints
745 @item @samp{m}
746 A memory operand is allowed, with any kind of address that the machine
747 supports in general.
748
749 @cindex offsettable address
750 @cindex @samp{o} in constraint
751 @item @samp{o}
752 A memory operand is allowed, but only if the address is
753 @dfn{offsettable}. This means that adding a small integer (actually,
754 the width in bytes of the operand, as determined by its machine mode)
755 may be added to the address and the result is also a valid memory
756 address.
757
758 @cindex autoincrement/decrement addressing
759 For example, an address which is constant is offsettable; so is an
760 address that is the sum of a register and a constant (as long as a
761 slightly larger constant is also within the range of address-offsets
762 supported by the machine); but an autoincrement or autodecrement
763 address is not offsettable. More complicated indirect/indexed
764 addresses may or may not be offsettable depending on the other
765 addressing modes that the machine supports.
766
767 Note that in an output operand which can be matched by another
768 operand, the constraint letter @samp{o} is valid only when accompanied
769 by both @samp{<} (if the target machine has predecrement addressing)
770 and @samp{>} (if the target machine has preincrement addressing).
771
772 @cindex @samp{V} in constraint
773 @item @samp{V}
774 A memory operand that is not offsettable. In other words, anything that
775 would fit the @samp{m} constraint but not the @samp{o} constraint.
776
777 @cindex @samp{<} in constraint
778 @item @samp{<}
779 A memory operand with autodecrement addressing (either predecrement or
780 postdecrement) is allowed.
781
782 @cindex @samp{>} in constraint
783 @item @samp{>}
784 A memory operand with autoincrement addressing (either preincrement or
785 postincrement) is allowed.
786
787 @cindex @samp{r} in constraint
788 @cindex registers in constraints
789 @item @samp{r}
790 A register operand is allowed provided that it is in a general
791 register.
792
793 @cindex constants in constraints
794 @cindex @samp{i} in constraint
795 @item @samp{i}
796 An immediate integer operand (one with constant value) is allowed.
797 This includes symbolic constants whose values will be known only at
798 assembly time.
799
800 @cindex @samp{n} in constraint
801 @item @samp{n}
802 An immediate integer operand with a known numeric value is allowed.
803 Many systems cannot support assembly-time constants for operands less
804 than a word wide. Constraints for these operands should use @samp{n}
805 rather than @samp{i}.
806
807 @cindex @samp{I} in constraint
808 @item @samp{I}, @samp{J}, @samp{K}, @dots{} @samp{P}
809 Other letters in the range @samp{I} through @samp{P} may be defined in
810 a machine-dependent fashion to permit immediate integer operands with
811 explicit integer values in specified ranges. For example, on the
812 68000, @samp{I} is defined to stand for the range of values 1 to 8.
813 This is the range permitted as a shift count in the shift
814 instructions.
815
816 @cindex @samp{E} in constraint
817 @item @samp{E}
818 An immediate floating operand (expression code @code{const_double}) is
819 allowed, but only if the target floating point format is the same as
820 that of the host machine (on which the compiler is running).
821
822 @cindex @samp{F} in constraint
823 @item @samp{F}
824 An immediate floating operand (expression code @code{const_double}) is
825 allowed.
826
827 @cindex @samp{G} in constraint
828 @cindex @samp{H} in constraint
829 @item @samp{G}, @samp{H}
830 @samp{G} and @samp{H} may be defined in a machine-dependent fashion to
831 permit immediate floating operands in particular ranges of values.
832
833 @cindex @samp{s} in constraint
834 @item @samp{s}
835 An immediate integer operand whose value is not an explicit integer is
836 allowed.
837
838 This might appear strange; if an insn allows a constant operand with a
839 value not known at compile time, it certainly must allow any known
840 value. So why use @samp{s} instead of @samp{i}? Sometimes it allows
841 better code to be generated.
842
843 For example, on the 68000 in a fullword instruction it is possible to
844 use an immediate operand; but if the immediate value is between -128
845 and 127, better code results from loading the value into a register and
846 using the register. This is because the load into the register can be
847 done with a @samp{moveq} instruction. We arrange for this to happen
848 by defining the letter @samp{K} to mean ``any integer outside the
849 range -128 to 127'', and then specifying @samp{Ks} in the operand
850 constraints.
851
852 @cindex @samp{g} in constraint
853 @item @samp{g}
854 Any register, memory or immediate integer operand is allowed, except for
855 registers that are not general registers.
856
857 @cindex @samp{X} in constraint
858 @item @samp{X}
859 @ifset INTERNALS
860 Any operand whatsoever is allowed, even if it does not satisfy
861 @code{general_operand}. This is normally used in the constraint of
862 a @code{match_scratch} when certain alternatives will not actually
863 require a scratch register.
864 @end ifset
865 @ifclear INTERNALS
866 Any operand whatsoever is allowed.
867 @end ifclear
868
869 @cindex @samp{0} in constraint
870 @cindex digits in constraint
871 @item @samp{0}, @samp{1}, @samp{2}, @dots{} @samp{9}
872 An operand that matches the specified operand number is allowed. If a
873 digit is used together with letters within the same alternative, the
874 digit should come last.
875
876 @cindex matching constraint
877 @cindex constraint, matching
878 This is called a @dfn{matching constraint} and what it really means is
879 that the assembler has only a single operand that fills two roles
880 @ifset INTERNALS
881 considered separate in the RTL insn. For example, an add insn has two
882 input operands and one output operand in the RTL, but on most CISC
883 @end ifset
884 @ifclear INTERNALS
885 which @code{asm} distinguishes. For example, an add instruction uses
886 two input operands and an output operand, but on most CISC
887 @end ifclear
888 machines an add instruction really has only two operands, one of them an
889 input-output operand:
890
891 @smallexample
892 addl #35,r12
893 @end smallexample
894
895 Matching constraints are used in these circumstances.
896 More precisely, the two operands that match must include one input-only
897 operand and one output-only operand. Moreover, the digit must be a
898 smaller number than the number of the operand that uses it in the
899 constraint.
900
901 @ifset INTERNALS
902 For operands to match in a particular case usually means that they
903 are identical-looking RTL expressions. But in a few special cases
904 specific kinds of dissimilarity are allowed. For example, @code{*x}
905 as an input operand will match @code{*x++} as an output operand.
906 For proper results in such cases, the output template should always
907 use the output-operand's number when printing the operand.
908 @end ifset
909
910 @cindex load address instruction
911 @cindex push address instruction
912 @cindex address constraints
913 @cindex @samp{p} in constraint
914 @item @samp{p}
915 An operand that is a valid memory address is allowed. This is
916 for ``load address'' and ``push address'' instructions.
917
918 @findex address_operand
919 @samp{p} in the constraint must be accompanied by @code{address_operand}
920 as the predicate in the @code{match_operand}. This predicate interprets
921 the mode specified in the @code{match_operand} as the mode of the memory
922 reference for which the address would be valid.
923
924 @cindex other register constraints
925 @cindex extensible constraints
926 @item @var{other letters}
927 Other letters can be defined in machine-dependent fashion to stand for
928 particular classes of registers or other arbitrary operand types.
929 @samp{d}, @samp{a} and @samp{f} are defined on the 68000/68020 to stand
930 for data, address and floating point registers.
931
932 @ifset INTERNALS
933 The machine description macro @code{REG_CLASS_FROM_LETTER} has first
934 cut at the otherwise unused letters. If it evaluates to @code{NO_REGS},
935 then @code{EXTRA_CONSTRAINT} is evaluated.
936
937 A typical use for @code{EXTRA_CONSTRANT} would be to distinguish certain
938 types of memory references that affect other insn operands.
939 @end ifset
940 @end table
941
942 @ifset INTERNALS
943 In order to have valid assembler code, each operand must satisfy
944 its constraint. But a failure to do so does not prevent the pattern
945 from applying to an insn. Instead, it directs the compiler to modify
946 the code so that the constraint will be satisfied. Usually this is
947 done by copying an operand into a register.
948
949 Contrast, therefore, the two instruction patterns that follow:
950
951 @smallexample
952 (define_insn ""
953 [(set (match_operand:SI 0 "general_operand" "=r")
954 (plus:SI (match_dup 0)
955 (match_operand:SI 1 "general_operand" "r")))]
956 ""
957 "@dots{}")
958 @end smallexample
959
960 @noindent
961 which has two operands, one of which must appear in two places, and
962
963 @smallexample
964 (define_insn ""
965 [(set (match_operand:SI 0 "general_operand" "=r")
966 (plus:SI (match_operand:SI 1 "general_operand" "0")
967 (match_operand:SI 2 "general_operand" "r")))]
968 ""
969 "@dots{}")
970 @end smallexample
971
972 @noindent
973 which has three operands, two of which are required by a constraint to be
974 identical. If we are considering an insn of the form
975
976 @smallexample
977 (insn @var{n} @var{prev} @var{next}
978 (set (reg:SI 3)
979 (plus:SI (reg:SI 6) (reg:SI 109)))
980 @dots{})
981 @end smallexample
982
983 @noindent
984 the first pattern would not apply at all, because this insn does not
985 contain two identical subexpressions in the right place. The pattern would
986 say, ``That does not look like an add instruction; try other patterns.''
987 The second pattern would say, ``Yes, that's an add instruction, but there
988 is something wrong with it.'' It would direct the reload pass of the
989 compiler to generate additional insns to make the constraint true. The
990 results might look like this:
991
992 @smallexample
993 (insn @var{n2} @var{prev} @var{n}
994 (set (reg:SI 3) (reg:SI 6))
995 @dots{})
996
997 (insn @var{n} @var{n2} @var{next}
998 (set (reg:SI 3)
999 (plus:SI (reg:SI 3) (reg:SI 109)))
1000 @dots{})
1001 @end smallexample
1002
1003 It is up to you to make sure that each operand, in each pattern, has
1004 constraints that can handle any RTL expression that could be present for
1005 that operand. (When multiple alternatives are in use, each pattern must,
1006 for each possible combination of operand expressions, have at least one
1007 alternative which can handle that combination of operands.) The
1008 constraints don't need to @emph{allow} any possible operand---when this is
1009 the case, they do not constrain---but they must at least point the way to
1010 reloading any possible operand so that it will fit.
1011
1012 @itemize @bullet
1013 @item
1014 If the constraint accepts whatever operands the predicate permits,
1015 there is no problem: reloading is never necessary for this operand.
1016
1017 For example, an operand whose constraints permit everything except
1018 registers is safe provided its predicate rejects registers.
1019
1020 An operand whose predicate accepts only constant values is safe
1021 provided its constraints include the letter @samp{i}. If any possible
1022 constant value is accepted, then nothing less than @samp{i} will do;
1023 if the predicate is more selective, then the constraints may also be
1024 more selective.
1025
1026 @item
1027 Any operand expression can be reloaded by copying it into a register.
1028 So if an operand's constraints allow some kind of register, it is
1029 certain to be safe. It need not permit all classes of registers; the
1030 compiler knows how to copy a register into another register of the
1031 proper class in order to make an instruction valid.
1032
1033 @cindex nonoffsettable memory reference
1034 @cindex memory reference, nonoffsettable
1035 @item
1036 A nonoffsettable memory reference can be reloaded by copying the
1037 address into a register. So if the constraint uses the letter
1038 @samp{o}, all memory references are taken care of.
1039
1040 @item
1041 A constant operand can be reloaded by allocating space in memory to
1042 hold it as preinitialized data. Then the memory reference can be used
1043 in place of the constant. So if the constraint uses the letters
1044 @samp{o} or @samp{m}, constant operands are not a problem.
1045
1046 @item
1047 If the constraint permits a constant and a pseudo register used in an insn
1048 was not allocated to a hard register and is equivalent to a constant,
1049 the register will be replaced with the constant. If the predicate does
1050 not permit a constant and the insn is re-recognized for some reason, the
1051 compiler will crash. Thus the predicate must always recognize any
1052 objects allowed by the constraint.
1053 @end itemize
1054
1055 If the operand's predicate can recognize registers, but the constraint does
1056 not permit them, it can make the compiler crash. When this operand happens
1057 to be a register, the reload pass will be stymied, because it does not know
1058 how to copy a register temporarily into memory.
1059
1060 If the predicate accepts a unary operator, the constraint applies to the
1061 operand. For example, the MIPS processor at ISA level 3 supports an
1062 instruction which adds two registers in @code{SImode} to produce a
1063 @code{DImode} result, but only if the registers are correctly sign
1064 extended. This predicate for the input operands accepts a
1065 @code{sign_extend} of an @code{SImode} register. Write the constraint
1066 to indicate the type of register that is required for the operand of the
1067 @code{sign_extend}.
1068 @end ifset
1069
1070 @node Multi-Alternative
1071 @subsection Multiple Alternative Constraints
1072 @cindex multiple alternative constraints
1073
1074 Sometimes a single instruction has multiple alternative sets of possible
1075 operands. For example, on the 68000, a logical-or instruction can combine
1076 register or an immediate value into memory, or it can combine any kind of
1077 operand into a register; but it cannot combine one memory location into
1078 another.
1079
1080 These constraints are represented as multiple alternatives. An alternative
1081 can be described by a series of letters for each operand. The overall
1082 constraint for an operand is made from the letters for this operand
1083 from the first alternative, a comma, the letters for this operand from
1084 the second alternative, a comma, and so on until the last alternative.
1085 @ifset INTERNALS
1086 Here is how it is done for fullword logical-or on the 68000:
1087
1088 @smallexample
1089 (define_insn "iorsi3"
1090 [(set (match_operand:SI 0 "general_operand" "=m,d")
1091 (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
1092 (match_operand:SI 2 "general_operand" "dKs,dmKs")))]
1093 @dots{})
1094 @end smallexample
1095
1096 The first alternative has @samp{m} (memory) for operand 0, @samp{0} for
1097 operand 1 (meaning it must match operand 0), and @samp{dKs} for operand
1098 2. The second alternative has @samp{d} (data register) for operand 0,
1099 @samp{0} for operand 1, and @samp{dmKs} for operand 2. The @samp{=} and
1100 @samp{%} in the constraints apply to all the alternatives; their
1101 meaning is explained in the next section (@pxref{Class Preferences}).
1102 @end ifset
1103
1104 @c FIXME Is this ? and ! stuff of use in asm()? If not, hide unless INTERNAL
1105 If all the operands fit any one alternative, the instruction is valid.
1106 Otherwise, for each alternative, the compiler counts how many instructions
1107 must be added to copy the operands so that that alternative applies.
1108 The alternative requiring the least copying is chosen. If two alternatives
1109 need the same amount of copying, the one that comes first is chosen.
1110 These choices can be altered with the @samp{?} and @samp{!} characters:
1111
1112 @table @code
1113 @cindex @samp{?} in constraint
1114 @cindex question mark
1115 @item ?
1116 Disparage slightly the alternative that the @samp{?} appears in,
1117 as a choice when no alternative applies exactly. The compiler regards
1118 this alternative as one unit more costly for each @samp{?} that appears
1119 in it.
1120
1121 @cindex @samp{!} in constraint
1122 @cindex exclamation point
1123 @item !
1124 Disparage severely the alternative that the @samp{!} appears in.
1125 This alternative can still be used if it fits without reloading,
1126 but if reloading is needed, some other alternative will be used.
1127 @end table
1128
1129 @ifset INTERNALS
1130 When an insn pattern has multiple alternatives in its constraints, often
1131 the appearance of the assembler code is determined mostly by which
1132 alternative was matched. When this is so, the C code for writing the
1133 assembler code can use the variable @code{which_alternative}, which is
1134 the ordinal number of the alternative that was actually satisfied (0 for
1135 the first, 1 for the second alternative, etc.). @xref{Output Statement}.
1136 @end ifset
1137
1138 @ifset INTERNALS
1139 @node Class Preferences
1140 @subsection Register Class Preferences
1141 @cindex class preference constraints
1142 @cindex register class preference constraints
1143
1144 @cindex voting between constraint alternatives
1145 The operand constraints have another function: they enable the compiler
1146 to decide which kind of hardware register a pseudo register is best
1147 allocated to. The compiler examines the constraints that apply to the
1148 insns that use the pseudo register, looking for the machine-dependent
1149 letters such as @samp{d} and @samp{a} that specify classes of registers.
1150 The pseudo register is put in whichever class gets the most ``votes''.
1151 The constraint letters @samp{g} and @samp{r} also vote: they vote in
1152 favor of a general register. The machine description says which registers
1153 are considered general.
1154
1155 Of course, on some machines all registers are equivalent, and no register
1156 classes are defined. Then none of this complexity is relevant.
1157 @end ifset
1158
1159 @node Modifiers
1160 @subsection Constraint Modifier Characters
1161 @cindex modifiers in constraints
1162 @cindex constraint modifier characters
1163
1164 @c prevent bad page break with this line
1165 Here are constraint modifier characters.
1166
1167 @table @samp
1168 @cindex @samp{=} in constraint
1169 @item =
1170 Means that this operand is write-only for this instruction: the previous
1171 value is discarded and replaced by output data.
1172
1173 @cindex @samp{+} in constraint
1174 @item +
1175 Means that this operand is both read and written by the instruction.
1176
1177 When the compiler fixes up the operands to satisfy the constraints,
1178 it needs to know which operands are inputs to the instruction and
1179 which are outputs from it. @samp{=} identifies an output; @samp{+}
1180 identifies an operand that is both input and output; all other operands
1181 are assumed to be input only.
1182
1183 If you specify @samp{=} or @samp{+} in a constraint, you put it in the
1184 first character of the constraint string.
1185
1186 @cindex @samp{&} in constraint
1187 @cindex earlyclobber operand
1188 @item &
1189 Means (in a particular alternative) that this operand is an
1190 @dfn{earlyclobber} operand, which is modified before the instruction is
1191 finished using the input operands. Therefore, this operand may not lie
1192 in a register that is used as an input operand or as part of any memory
1193 address.
1194
1195 @samp{&} applies only to the alternative in which it is written. In
1196 constraints with multiple alternatives, sometimes one alternative
1197 requires @samp{&} while others do not. See, for example, the
1198 @samp{movdf} insn of the 68000.
1199
1200 An input operand can be tied to an earlyclobber operand if its only
1201 use as an input occurs before the early result is written. Adding
1202 alternatives of this form often allows GCC to produce better code
1203 when only some of the inputs can be affected by the earlyclobber.
1204 See, for example, the @samp{mulsi3} insn of the ARM.
1205
1206 @samp{&} does not obviate the need to write @samp{=}.
1207
1208 @cindex @samp{%} in constraint
1209 @item %
1210 Declares the instruction to be commutative for this operand and the
1211 following operand. This means that the compiler may interchange the
1212 two operands if that is the cheapest way to make all operands fit the
1213 constraints.
1214 @ifset INTERNALS
1215 This is often used in patterns for addition instructions
1216 that really have only two operands: the result must go in one of the
1217 arguments. Here for example, is how the 68000 halfword-add
1218 instruction is defined:
1219
1220 @smallexample
1221 (define_insn "addhi3"
1222 [(set (match_operand:HI 0 "general_operand" "=m,r")
1223 (plus:HI (match_operand:HI 1 "general_operand" "%0,0")
1224 (match_operand:HI 2 "general_operand" "di,g")))]
1225 @dots{})
1226 @end smallexample
1227 @end ifset
1228
1229 @cindex @samp{#} in constraint
1230 @item #
1231 Says that all following characters, up to the next comma, are to be
1232 ignored as a constraint. They are significant only for choosing
1233 register preferences.
1234
1235 @ifset INTERNALS
1236 @cindex @samp{*} in constraint
1237 @item *
1238 Says that the following character should be ignored when choosing
1239 register preferences. @samp{*} has no effect on the meaning of the
1240 constraint as a constraint, and no effect on reloading.
1241
1242 Here is an example: the 68000 has an instruction to sign-extend a
1243 halfword in a data register, and can also sign-extend a value by
1244 copying it into an address register. While either kind of register is
1245 acceptable, the constraints on an address-register destination are
1246 less strict, so it is best if register allocation makes an address
1247 register its goal. Therefore, @samp{*} is used so that the @samp{d}
1248 constraint letter (for data register) is ignored when computing
1249 register preferences.
1250
1251 @smallexample
1252 (define_insn "extendhisi2"
1253 [(set (match_operand:SI 0 "general_operand" "=*d,a")
1254 (sign_extend:SI
1255 (match_operand:HI 1 "general_operand" "0,g")))]
1256 @dots{})
1257 @end smallexample
1258 @end ifset
1259 @end table
1260
1261 @node Machine Constraints
1262 @subsection Constraints for Particular Machines
1263 @cindex machine specific constraints
1264 @cindex constraints, machine specific
1265
1266 Whenever possible, you should use the general-purpose constraint letters
1267 in @code{asm} arguments, since they will convey meaning more readily to
1268 people reading your code. Failing that, use the constraint letters
1269 that usually have very similar meanings across architectures. The most
1270 commonly used constraints are @samp{m} and @samp{r} (for memory and
1271 general-purpose registers respectively; @pxref{Simple Constraints}), and
1272 @samp{I}, usually the letter indicating the most common
1273 immediate-constant format.
1274
1275 For each machine architecture, the @file{config/@var{machine}.h} file
1276 defines additional constraints. These constraints are used by the
1277 compiler itself for instruction generation, as well as for @code{asm}
1278 statements; therefore, some of the constraints are not particularly
1279 interesting for @code{asm}. The constraints are defined through these
1280 macros:
1281
1282 @table @code
1283 @item REG_CLASS_FROM_LETTER
1284 Register class constraints (usually lower case).
1285
1286 @item CONST_OK_FOR_LETTER_P
1287 Immediate constant constraints, for non-floating point constants of
1288 word size or smaller precision (usually upper case).
1289
1290 @item CONST_DOUBLE_OK_FOR_LETTER_P
1291 Immediate constant constraints, for all floating point constants and for
1292 constants of greater than word size precision (usually upper case).
1293
1294 @item EXTRA_CONSTRAINT
1295 Special cases of registers or memory. This macro is not required, and
1296 is only defined for some machines.
1297 @end table
1298
1299 Inspecting these macro definitions in the compiler source for your
1300 machine is the best way to be certain you have the right constraints.
1301 However, here is a summary of the machine-dependent constraints
1302 available on some particular machines.
1303
1304 @table @emph
1305 @item ARM family---@file{arm.h}
1306 @table @code
1307 @item f
1308 Floating-point register
1309
1310 @item F
1311 One of the floating-point constants 0.0, 0.5, 1.0, 2.0, 3.0, 4.0, 5.0
1312 or 10.0
1313
1314 @item G
1315 Floating-point constant that would satisfy the constraint @samp{F} if it
1316 were negated
1317
1318 @item I
1319 Integer that is valid as an immediate operand in a data processing
1320 instruction. That is, an integer in the range 0 to 255 rotated by a
1321 multiple of 2
1322
1323 @item J
1324 Integer in the range -4095 to 4095
1325
1326 @item K
1327 Integer that satisfies constraint @samp{I} when inverted (ones complement)
1328
1329 @item L
1330 Integer that satisfies constraint @samp{I} when negated (twos complement)
1331
1332 @item M
1333 Integer in the range 0 to 32
1334
1335 @item Q
1336 A memory reference where the exact address is in a single register
1337 (`@samp{m}' is preferable for @code{asm} statements)
1338
1339 @item R
1340 An item in the constant pool
1341
1342 @item S
1343 A symbol in the text segment of the current file
1344 @end table
1345
1346 @item AMD 29000 family---@file{a29k.h}
1347 @table @code
1348 @item l
1349 Local register 0
1350
1351 @item b
1352 Byte Pointer (@samp{BP}) register
1353
1354 @item q
1355 @samp{Q} register
1356
1357 @item h
1358 Special purpose register
1359
1360 @item A
1361 First accumulator register
1362
1363 @item a
1364 Other accumulator register
1365
1366 @item f
1367 Floating point register
1368
1369 @item I
1370 Constant greater than 0, less than 0x100
1371
1372 @item J
1373 Constant greater than 0, less than 0x10000
1374
1375 @item K
1376 Constant whose high 24 bits are on (1)
1377
1378 @item L
1379 16 bit constant whose high 8 bits are on (1)
1380
1381 @item M
1382 32 bit constant whose high 16 bits are on (1)
1383
1384 @item N
1385 32 bit negative constant that fits in 8 bits
1386
1387 @item O
1388 The constant 0x80000000 or, on the 29050, any 32 bit constant
1389 whose low 16 bits are 0.
1390
1391 @item P
1392 16 bit negative constant that fits in 8 bits
1393
1394 @item G
1395 @itemx H
1396 A floating point constant (in @code{asm} statements, use the machine
1397 independent @samp{E} or @samp{F} instead)
1398 @end table
1399
1400 @item AVR family---@file{avr.h}
1401 @table @code
1402 @item l
1403 Registers from r0 to r15
1404
1405 @item a
1406 Registers from r16 to r23
1407
1408 @item d
1409 Registers from r16 to r31
1410
1411 @item w
1412 Registers from r24 to r31. These registers can be used in @samp{adiw} command
1413
1414 @item e
1415 Pointer register (r26 - r31)
1416
1417 @item b
1418 Base pointer register (r28 - r31)
1419
1420 @item q
1421 Stack pointer register (SPH:SPL)
1422
1423 @item t
1424 Temporary register r0
1425
1426 @item x
1427 Register pair X (r27:r26)
1428
1429 @item y
1430 Register pair Y (r29:r28)
1431
1432 @item z
1433 Register pair Z (r31:r30)
1434
1435 @item I
1436 Constant greater than -1, less than 64
1437
1438 @item J
1439 Constant greater than -64, less than 1
1440
1441 @item K
1442 Constant integer 2
1443
1444 @item L
1445 Constant integer 0
1446
1447 @item M
1448 Constant that fits in 8 bits
1449
1450 @item N
1451 Constant integer -1
1452
1453 @item O
1454 Constant integer 8, 16, or 24
1455
1456 @item P
1457 Constant integer 1
1458
1459 @item G
1460 A floating point constant 0.0
1461 @end table
1462
1463 @item IBM RS6000---@file{rs6000.h}
1464 @table @code
1465 @item b
1466 Address base register
1467
1468 @item f
1469 Floating point register
1470
1471 @item h
1472 @samp{MQ}, @samp{CTR}, or @samp{LINK} register
1473
1474 @item q
1475 @samp{MQ} register
1476
1477 @item c
1478 @samp{CTR} register
1479
1480 @item l
1481 @samp{LINK} register
1482
1483 @item x
1484 @samp{CR} register (condition register) number 0
1485
1486 @item y
1487 @samp{CR} register (condition register)
1488
1489 @item z
1490 @samp{FPMEM} stack memory for FPR-GPR transfers
1491
1492 @item I
1493 Signed 16 bit constant
1494
1495 @item J
1496 Unsigned 16 bit constant shifted left 16 bits (use @samp{L} instead for
1497 @code{SImode} constants)
1498
1499 @item K
1500 Unsigned 16 bit constant
1501
1502 @item L
1503 Signed 16 bit constant shifted left 16 bits
1504
1505 @item M
1506 Constant larger than 31
1507
1508 @item N
1509 Exact power of 2
1510
1511 @item O
1512 Zero
1513
1514 @item P
1515 Constant whose negation is a signed 16 bit constant
1516
1517 @item G
1518 Floating point constant that can be loaded into a register with one
1519 instruction per word
1520
1521 @item Q
1522 Memory operand that is an offset from a register (@samp{m} is preferable
1523 for @code{asm} statements)
1524
1525 @item R
1526 AIX TOC entry
1527
1528 @item S
1529 Constant suitable as a 64-bit mask operand
1530
1531 @item T
1532 Constant suitable as a 32-bit mask operand
1533
1534 @item U
1535 System V Release 4 small data area reference
1536 @end table
1537
1538 @item Intel 386---@file{i386.h}
1539 @table @code
1540 @item q
1541 @samp{a}, @code{b}, @code{c}, or @code{d} register for the i386.
1542 For x86-64 it is equivalent to @samp{r} class. (for 8bit instrucitons that
1543 do not use upper halves)
1544
1545 @item Q
1546 @samp{a}, @code{b}, @code{c}, or @code{d} register. (for 8bit instructions,
1547 that do use upper halves)
1548
1549 @item R
1550 Legacy register --- equivalent to @code{r} class in i386 mode.
1551 (for non-8bit registers used together with 8bit upper halves in a single
1552 instruction)
1553
1554 @item A
1555 @samp{a}, or @code{d} register (for 64-bit ints)
1556
1557 @item f
1558 Floating point register
1559
1560 @item t
1561 First (top of stack) floating point register
1562
1563 @item u
1564 Second floating point register
1565
1566 @item a
1567 @samp{a} register
1568
1569 @item b
1570 @samp{b} register
1571
1572 @item c
1573 @samp{c} register
1574
1575 @item d
1576 @samp{d} register
1577
1578 @item D
1579 @samp{di} register
1580
1581 @item S
1582 @samp{si} register
1583
1584 @item I
1585 Constant in range 0 to 31 (for 32 bit shifts)
1586
1587 @item J
1588 Constant in range 0 to 63 (for 64 bit shifts)
1589
1590 @item K
1591 @samp{0xff}
1592
1593 @item L
1594 @samp{0xffff}
1595
1596 @item M
1597 0, 1, 2, or 3 (shifts for @code{lea} instruction)
1598
1599 @item N
1600 Constant in range 0 to 255 (for @code{out} instruction)
1601
1602 @item Z
1603 Constant in range 0 to 0xffffffff or symbolic reference known to fit specified range.
1604 (for using immediates in zero extending 32bit to 64bit x86-64 instructions)
1605
1606 @item e
1607 Constant in range -2147483648 to 2147483647 or symbolic reference known to fit specified range.
1608 (for using immediates in 64bit x86-64 instructions)
1609
1610 @item G
1611 Standard 80387 floating point constant
1612 @end table
1613
1614 @item Intel 960---@file{i960.h}
1615 @table @code
1616 @item f
1617 Floating point register (@code{fp0} to @code{fp3})
1618
1619 @item l
1620 Local register (@code{r0} to @code{r15})
1621
1622 @item b
1623 Global register (@code{g0} to @code{g15})
1624
1625 @item d
1626 Any local or global register
1627
1628 @item I
1629 Integers from 0 to 31
1630
1631 @item J
1632 0
1633
1634 @item K
1635 Integers from -31 to 0
1636
1637 @item G
1638 Floating point 0
1639
1640 @item H
1641 Floating point 1
1642 @end table
1643
1644 @item MIPS---@file{mips.h}
1645 @table @code
1646 @item d
1647 General-purpose integer register
1648
1649 @item f
1650 Floating-point register (if available)
1651
1652 @item h
1653 @samp{Hi} register
1654
1655 @item l
1656 @samp{Lo} register
1657
1658 @item x
1659 @samp{Hi} or @samp{Lo} register
1660
1661 @item y
1662 General-purpose integer register
1663
1664 @item z
1665 Floating-point status register
1666
1667 @item I
1668 Signed 16 bit constant (for arithmetic instructions)
1669
1670 @item J
1671 Zero
1672
1673 @item K
1674 Zero-extended 16-bit constant (for logic instructions)
1675
1676 @item L
1677 Constant with low 16 bits zero (can be loaded with @code{lui})
1678
1679 @item M
1680 32 bit constant which requires two instructions to load (a constant
1681 which is not @samp{I}, @samp{K}, or @samp{L})
1682
1683 @item N
1684 Negative 16 bit constant
1685
1686 @item O
1687 Exact power of two
1688
1689 @item P
1690 Positive 16 bit constant
1691
1692 @item G
1693 Floating point zero
1694
1695 @item Q
1696 Memory reference that can be loaded with more than one instruction
1697 (@samp{m} is preferable for @code{asm} statements)
1698
1699 @item R
1700 Memory reference that can be loaded with one instruction
1701 (@samp{m} is preferable for @code{asm} statements)
1702
1703 @item S
1704 Memory reference in external OSF/rose PIC format
1705 (@samp{m} is preferable for @code{asm} statements)
1706 @end table
1707
1708 @item Motorola 680x0---@file{m68k.h}
1709 @table @code
1710 @item a
1711 Address register
1712
1713 @item d
1714 Data register
1715
1716 @item f
1717 68881 floating-point register, if available
1718
1719 @item x
1720 Sun FPA (floating-point) register, if available
1721
1722 @item y
1723 First 16 Sun FPA registers, if available
1724
1725 @item I
1726 Integer in the range 1 to 8
1727
1728 @item J
1729 16 bit signed number
1730
1731 @item K
1732 Signed number whose magnitude is greater than 0x80
1733
1734 @item L
1735 Integer in the range -8 to -1
1736
1737 @item M
1738 Signed number whose magnitude is greater than 0x100
1739
1740 @item G
1741 Floating point constant that is not a 68881 constant
1742
1743 @item H
1744 Floating point constant that can be used by Sun FPA
1745 @end table
1746
1747 @item Motorola 68HC11 & 68HC12 families---@file{m68hc11.h}
1748 @table @code
1749 @item a
1750 Register 'a'
1751
1752 @item b
1753 Register 'b'
1754
1755 @item d
1756 Register 'd'
1757
1758 @item q
1759 An 8-bit register
1760
1761 @item t
1762 Temporary soft register _.tmp
1763
1764 @item u
1765 A soft register _.d1 to _.d31
1766
1767 @item w
1768 Stack pointer register
1769
1770 @item x
1771 Register 'x'
1772
1773 @item y
1774 Register 'y'
1775
1776 @item z
1777 Pseudo register 'z' (replaced by 'x' or 'y' at the end)
1778
1779 @item A
1780 An address register: x, y or z
1781
1782 @item B
1783 An address register: x or y
1784
1785 @item D
1786 Register pair (x:d) to form a 32-bit value
1787
1788 @item L
1789 Constants in the range -65536 to 65535
1790
1791 @item M
1792 Constants whose 16-bit low part is zero
1793
1794 @item N
1795 Constant integer 1 or -1
1796
1797 @item O
1798 Constant integer 16
1799
1800 @item P
1801 Constants in the range -8 to 2
1802
1803 @end table
1804
1805 @need 1000
1806 @item SPARC---@file{sparc.h}
1807 @table @code
1808 @item f
1809 Floating-point register that can hold 32 or 64 bit values.
1810
1811 @item e
1812 Floating-point register that can hold 64 or 128 bit values.
1813
1814 @item I
1815 Signed 13 bit constant
1816
1817 @item J
1818 Zero
1819
1820 @item K
1821 32 bit constant with the low 12 bits clear (a constant that can be
1822 loaded with the @code{sethi} instruction)
1823
1824 @item G
1825 Floating-point zero
1826
1827 @item H
1828 Signed 13 bit constant, sign-extended to 32 or 64 bits
1829
1830 @item Q
1831 Floating-point constant whose integral representation can
1832 be moved into an integer register using a single sethi
1833 instruction
1834
1835 @item R
1836 Floating-point constant whose integral representation can
1837 be moved into an integer register using a single mov
1838 instruction
1839
1840 @item S
1841 Floating-point constant whose integral representation can
1842 be moved into an integer register using a high/lo_sum
1843 instruction sequence
1844
1845 @item T
1846 Memory address aligned to an 8-byte boundary
1847
1848 @item U
1849 Even register
1850
1851 @end table
1852
1853 @item TMS320C3x/C4x---@file{c4x.h}
1854 @table @code
1855 @item a
1856 Auxiliary (address) register (ar0-ar7)
1857
1858 @item b
1859 Stack pointer register (sp)
1860
1861 @item c
1862 Standard (32 bit) precision integer register
1863
1864 @item f
1865 Extended (40 bit) precision register (r0-r11)
1866
1867 @item k
1868 Block count register (bk)
1869
1870 @item q
1871 Extended (40 bit) precision low register (r0-r7)
1872
1873 @item t
1874 Extended (40 bit) precision register (r0-r1)
1875
1876 @item u
1877 Extended (40 bit) precision register (r2-r3)
1878
1879 @item v
1880 Repeat count register (rc)
1881
1882 @item x
1883 Index register (ir0-ir1)
1884
1885 @item y
1886 Status (condition code) register (st)
1887
1888 @item z
1889 Data page register (dp)
1890
1891 @item G
1892 Floating-point zero
1893
1894 @item H
1895 Immediate 16 bit floating-point constant
1896
1897 @item I
1898 Signed 16 bit constant
1899
1900 @item J
1901 Signed 8 bit constant
1902
1903 @item K
1904 Signed 5 bit constant
1905
1906 @item L
1907 Unsigned 16 bit constant
1908
1909 @item M
1910 Unsigned 8 bit constant
1911
1912 @item N
1913 Ones complement of unsigned 16 bit constant
1914
1915 @item O
1916 High 16 bit constant (32 bit constant with 16 LSBs zero)
1917
1918 @item Q
1919 Indirect memory reference with signed 8 bit or index register displacement
1920
1921 @item R
1922 Indirect memory reference with unsigned 5 bit displacement
1923
1924 @item S
1925 Indirect memory reference with 1 bit or index register displacement
1926
1927 @item T
1928 Direct memory reference
1929
1930 @item U
1931 Symbolic address
1932
1933 @end table
1934 @end table
1935
1936 @ifset INTERNALS
1937 @node Standard Names
1938 @section Standard Pattern Names For Generation
1939 @cindex standard pattern names
1940 @cindex pattern names
1941 @cindex names, pattern
1942
1943 Here is a table of the instruction names that are meaningful in the RTL
1944 generation pass of the compiler. Giving one of these names to an
1945 instruction pattern tells the RTL generation pass that it can use the
1946 pattern to accomplish a certain task.
1947
1948 @table @asis
1949 @cindex @code{mov@var{m}} instruction pattern
1950 @item @samp{mov@var{m}}
1951 Here @var{m} stands for a two-letter machine mode name, in lower case.
1952 This instruction pattern moves data with that machine mode from operand
1953 1 to operand 0. For example, @samp{movsi} moves full-word data.
1954
1955 If operand 0 is a @code{subreg} with mode @var{m} of a register whose
1956 own mode is wider than @var{m}, the effect of this instruction is
1957 to store the specified value in the part of the register that corresponds
1958 to mode @var{m}. The effect on the rest of the register is undefined.
1959
1960 This class of patterns is special in several ways. First of all, each
1961 of these names up to and including full word size @emph{must} be defined,
1962 because there is no other way to copy a datum from one place to another.
1963 If there are patterns accepting operands in larger modes,
1964 @samp{mov@var{m}} must be defined for integer modes of those sizes.
1965
1966 Second, these patterns are not used solely in the RTL generation pass.
1967 Even the reload pass can generate move insns to copy values from stack
1968 slots into temporary registers. When it does so, one of the operands is
1969 a hard register and the other is an operand that can need to be reloaded
1970 into a register.
1971
1972 @findex force_reg
1973 Therefore, when given such a pair of operands, the pattern must generate
1974 RTL which needs no reloading and needs no temporary registers---no
1975 registers other than the operands. For example, if you support the
1976 pattern with a @code{define_expand}, then in such a case the
1977 @code{define_expand} mustn't call @code{force_reg} or any other such
1978 function which might generate new pseudo registers.
1979
1980 This requirement exists even for subword modes on a RISC machine where
1981 fetching those modes from memory normally requires several insns and
1982 some temporary registers.
1983
1984 @findex change_address
1985 During reload a memory reference with an invalid address may be passed
1986 as an operand. Such an address will be replaced with a valid address
1987 later in the reload pass. In this case, nothing may be done with the
1988 address except to use it as it stands. If it is copied, it will not be
1989 replaced with a valid address. No attempt should be made to make such
1990 an address into a valid address and no routine (such as
1991 @code{change_address}) that will do so may be called. Note that
1992 @code{general_operand} will fail when applied to such an address.
1993
1994 @findex reload_in_progress
1995 The global variable @code{reload_in_progress} (which must be explicitly
1996 declared if required) can be used to determine whether such special
1997 handling is required.
1998
1999 The variety of operands that have reloads depends on the rest of the
2000 machine description, but typically on a RISC machine these can only be
2001 pseudo registers that did not get hard registers, while on other
2002 machines explicit memory references will get optional reloads.
2003
2004 If a scratch register is required to move an object to or from memory,
2005 it can be allocated using @code{gen_reg_rtx} prior to life analysis.
2006
2007 If there are cases needing
2008 scratch registers after reload, you must define
2009 @code{SECONDARY_INPUT_RELOAD_CLASS} and perhaps also
2010 @code{SECONDARY_OUTPUT_RELOAD_CLASS} to detect them, and provide
2011 patterns @samp{reload_in@var{m}} or @samp{reload_out@var{m}} to handle
2012 them. @xref{Register Classes}.
2013
2014 @findex no_new_pseudos
2015 The global variable @code{no_new_pseudos} can be used to determine if it
2016 is unsafe to create new pseudo registers. If this variable is nonzero, then
2017 it is unsafe to call @code{gen_reg_rtx} to allocate a new pseudo.
2018
2019 The constraints on a @samp{mov@var{m}} must permit moving any hard
2020 register to any other hard register provided that
2021 @code{HARD_REGNO_MODE_OK} permits mode @var{m} in both registers and
2022 @code{REGISTER_MOVE_COST} applied to their classes returns a value of 2.
2023
2024 It is obligatory to support floating point @samp{mov@var{m}}
2025 instructions into and out of any registers that can hold fixed point
2026 values, because unions and structures (which have modes @code{SImode} or
2027 @code{DImode}) can be in those registers and they may have floating
2028 point members.
2029
2030 There may also be a need to support fixed point @samp{mov@var{m}}
2031 instructions in and out of floating point registers. Unfortunately, I
2032 have forgotten why this was so, and I don't know whether it is still
2033 true. If @code{HARD_REGNO_MODE_OK} rejects fixed point values in
2034 floating point registers, then the constraints of the fixed point
2035 @samp{mov@var{m}} instructions must be designed to avoid ever trying to
2036 reload into a floating point register.
2037
2038 @cindex @code{reload_in} instruction pattern
2039 @cindex @code{reload_out} instruction pattern
2040 @item @samp{reload_in@var{m}}
2041 @itemx @samp{reload_out@var{m}}
2042 Like @samp{mov@var{m}}, but used when a scratch register is required to
2043 move between operand 0 and operand 1. Operand 2 describes the scratch
2044 register. See the discussion of the @code{SECONDARY_RELOAD_CLASS}
2045 macro in @pxref{Register Classes}.
2046
2047 @cindex @code{movstrict@var{m}} instruction pattern
2048 @item @samp{movstrict@var{m}}
2049 Like @samp{mov@var{m}} except that if operand 0 is a @code{subreg}
2050 with mode @var{m} of a register whose natural mode is wider,
2051 the @samp{movstrict@var{m}} instruction is guaranteed not to alter
2052 any of the register except the part which belongs to mode @var{m}.
2053
2054 @cindex @code{load_multiple} instruction pattern
2055 @item @samp{load_multiple}
2056 Load several consecutive memory locations into consecutive registers.
2057 Operand 0 is the first of the consecutive registers, operand 1
2058 is the first memory location, and operand 2 is a constant: the
2059 number of consecutive registers.
2060
2061 Define this only if the target machine really has such an instruction;
2062 do not define this if the most efficient way of loading consecutive
2063 registers from memory is to do them one at a time.
2064
2065 On some machines, there are restrictions as to which consecutive
2066 registers can be stored into memory, such as particular starting or
2067 ending register numbers or only a range of valid counts. For those
2068 machines, use a @code{define_expand} (@pxref{Expander Definitions})
2069 and make the pattern fail if the restrictions are not met.
2070
2071 Write the generated insn as a @code{parallel} with elements being a
2072 @code{set} of one register from the appropriate memory location (you may
2073 also need @code{use} or @code{clobber} elements). Use a
2074 @code{match_parallel} (@pxref{RTL Template}) to recognize the insn. See
2075 @file{a29k.md} and @file{rs6000.md} for examples of the use of this insn
2076 pattern.
2077
2078 @cindex @samp{store_multiple} instruction pattern
2079 @item @samp{store_multiple}
2080 Similar to @samp{load_multiple}, but store several consecutive registers
2081 into consecutive memory locations. Operand 0 is the first of the
2082 consecutive memory locations, operand 1 is the first register, and
2083 operand 2 is a constant: the number of consecutive registers.
2084
2085 @cindex @code{add@var{m}3} instruction pattern
2086 @item @samp{add@var{m}3}
2087 Add operand 2 and operand 1, storing the result in operand 0. All operands
2088 must have mode @var{m}. This can be used even on two-address machines, by
2089 means of constraints requiring operands 1 and 0 to be the same location.
2090
2091 @cindex @code{sub@var{m}3} instruction pattern
2092 @cindex @code{mul@var{m}3} instruction pattern
2093 @cindex @code{div@var{m}3} instruction pattern
2094 @cindex @code{udiv@var{m}3} instruction pattern
2095 @cindex @code{mod@var{m}3} instruction pattern
2096 @cindex @code{umod@var{m}3} instruction pattern
2097 @cindex @code{smin@var{m}3} instruction pattern
2098 @cindex @code{smax@var{m}3} instruction pattern
2099 @cindex @code{umin@var{m}3} instruction pattern
2100 @cindex @code{umax@var{m}3} instruction pattern
2101 @cindex @code{and@var{m}3} instruction pattern
2102 @cindex @code{ior@var{m}3} instruction pattern
2103 @cindex @code{xor@var{m}3} instruction pattern
2104 @item @samp{sub@var{m}3}, @samp{mul@var{m}3}
2105 @itemx @samp{div@var{m}3}, @samp{udiv@var{m}3}, @samp{mod@var{m}3}, @samp{umod@var{m}3}
2106 @itemx @samp{smin@var{m}3}, @samp{smax@var{m}3}, @samp{umin@var{m}3}, @samp{umax@var{m}3}
2107 @itemx @samp{and@var{m}3}, @samp{ior@var{m}3}, @samp{xor@var{m}3}
2108 Similar, for other arithmetic operations.
2109 @cindex @code{min@var{m}3} instruction pattern
2110 @cindex @code{max@var{m}3} instruction pattern
2111 @itemx @samp{min@var{m}3}, @samp{max@var{m}3}
2112 Floating point min and max operations. If both operands are zeros,
2113 or if either operand is NaN, then it is unspecified which of the two
2114 operands is returned as the result.
2115
2116
2117 @cindex @code{mulhisi3} instruction pattern
2118 @item @samp{mulhisi3}
2119 Multiply operands 1 and 2, which have mode @code{HImode}, and store
2120 a @code{SImode} product in operand 0.
2121
2122 @cindex @code{mulqihi3} instruction pattern
2123 @cindex @code{mulsidi3} instruction pattern
2124 @item @samp{mulqihi3}, @samp{mulsidi3}
2125 Similar widening-multiplication instructions of other widths.
2126
2127 @cindex @code{umulqihi3} instruction pattern
2128 @cindex @code{umulhisi3} instruction pattern
2129 @cindex @code{umulsidi3} instruction pattern
2130 @item @samp{umulqihi3}, @samp{umulhisi3}, @samp{umulsidi3}
2131 Similar widening-multiplication instructions that do unsigned
2132 multiplication.
2133
2134 @cindex @code{smul@var{m}3_highpart} instruction pattern
2135 @item @samp{smul@var{m}3_highpart}
2136 Perform a signed multiplication of operands 1 and 2, which have mode
2137 @var{m}, and store the most significant half of the product in operand 0.
2138 The least significant half of the product is discarded.
2139
2140 @cindex @code{umul@var{m}3_highpart} instruction pattern
2141 @item @samp{umul@var{m}3_highpart}
2142 Similar, but the multiplication is unsigned.
2143
2144 @cindex @code{divmod@var{m}4} instruction pattern
2145 @item @samp{divmod@var{m}4}
2146 Signed division that produces both a quotient and a remainder.
2147 Operand 1 is divided by operand 2 to produce a quotient stored
2148 in operand 0 and a remainder stored in operand 3.
2149
2150 For machines with an instruction that produces both a quotient and a
2151 remainder, provide a pattern for @samp{divmod@var{m}4} but do not
2152 provide patterns for @samp{div@var{m}3} and @samp{mod@var{m}3}. This
2153 allows optimization in the relatively common case when both the quotient
2154 and remainder are computed.
2155
2156 If an instruction that just produces a quotient or just a remainder
2157 exists and is more efficient than the instruction that produces both,
2158 write the output routine of @samp{divmod@var{m}4} to call
2159 @code{find_reg_note} and look for a @code{REG_UNUSED} note on the
2160 quotient or remainder and generate the appropriate instruction.
2161
2162 @cindex @code{udivmod@var{m}4} instruction pattern
2163 @item @samp{udivmod@var{m}4}
2164 Similar, but does unsigned division.
2165
2166 @cindex @code{ashl@var{m}3} instruction pattern
2167 @item @samp{ashl@var{m}3}
2168 Arithmetic-shift operand 1 left by a number of bits specified by operand
2169 2, and store the result in operand 0. Here @var{m} is the mode of
2170 operand 0 and operand 1; operand 2's mode is specified by the
2171 instruction pattern, and the compiler will convert the operand to that
2172 mode before generating the instruction.
2173
2174 @cindex @code{ashr@var{m}3} instruction pattern
2175 @cindex @code{lshr@var{m}3} instruction pattern
2176 @cindex @code{rotl@var{m}3} instruction pattern
2177 @cindex @code{rotr@var{m}3} instruction pattern
2178 @item @samp{ashr@var{m}3}, @samp{lshr@var{m}3}, @samp{rotl@var{m}3}, @samp{rotr@var{m}3}
2179 Other shift and rotate instructions, analogous to the
2180 @code{ashl@var{m}3} instructions.
2181
2182 @cindex @code{neg@var{m}2} instruction pattern
2183 @item @samp{neg@var{m}2}
2184 Negate operand 1 and store the result in operand 0.
2185
2186 @cindex @code{abs@var{m}2} instruction pattern
2187 @item @samp{abs@var{m}2}
2188 Store the absolute value of operand 1 into operand 0.
2189
2190 @cindex @code{sqrt@var{m}2} instruction pattern
2191 @item @samp{sqrt@var{m}2}
2192 Store the square root of operand 1 into operand 0.
2193
2194 The @code{sqrt} built-in function of C always uses the mode which
2195 corresponds to the C data type @code{double}.
2196
2197 @cindex @code{ffs@var{m}2} instruction pattern
2198 @item @samp{ffs@var{m}2}
2199 Store into operand 0 one plus the index of the least significant 1-bit
2200 of operand 1. If operand 1 is zero, store zero. @var{m} is the mode
2201 of operand 0; operand 1's mode is specified by the instruction
2202 pattern, and the compiler will convert the operand to that mode before
2203 generating the instruction.
2204
2205 The @code{ffs} built-in function of C always uses the mode which
2206 corresponds to the C data type @code{int}.
2207
2208 @cindex @code{one_cmpl@var{m}2} instruction pattern
2209 @item @samp{one_cmpl@var{m}2}
2210 Store the bitwise-complement of operand 1 into operand 0.
2211
2212 @cindex @code{cmp@var{m}} instruction pattern
2213 @item @samp{cmp@var{m}}
2214 Compare operand 0 and operand 1, and set the condition codes.
2215 The RTL pattern should look like this:
2216
2217 @smallexample
2218 (set (cc0) (compare (match_operand:@var{m} 0 @dots{})
2219 (match_operand:@var{m} 1 @dots{})))
2220 @end smallexample
2221
2222 @cindex @code{tst@var{m}} instruction pattern
2223 @item @samp{tst@var{m}}
2224 Compare operand 0 against zero, and set the condition codes.
2225 The RTL pattern should look like this:
2226
2227 @smallexample
2228 (set (cc0) (match_operand:@var{m} 0 @dots{}))
2229 @end smallexample
2230
2231 @samp{tst@var{m}} patterns should not be defined for machines that do
2232 not use @code{(cc0)}. Doing so would confuse the optimizer since it
2233 would no longer be clear which @code{set} operations were comparisons.
2234 The @samp{cmp@var{m}} patterns should be used instead.
2235
2236 @cindex @code{movstr@var{m}} instruction pattern
2237 @item @samp{movstr@var{m}}
2238 Block move instruction. The addresses of the destination and source
2239 strings are the first two operands, and both are in mode @code{Pmode}.
2240
2241 The number of bytes to move is the third operand, in mode @var{m}.
2242 Usually, you specify @code{word_mode} for @var{m}. However, if you can
2243 generate better code knowing the range of valid lengths is smaller than
2244 those representable in a full word, you should provide a pattern with a
2245 mode corresponding to the range of values you can handle efficiently
2246 (e.g., @code{QImode} for values in the range 0--127; note we avoid numbers
2247 that appear negative) and also a pattern with @code{word_mode}.
2248
2249 The fourth operand is the known shared alignment of the source and
2250 destination, in the form of a @code{const_int} rtx. Thus, if the
2251 compiler knows that both source and destination are word-aligned,
2252 it may provide the value 4 for this operand.
2253
2254 Descriptions of multiple @code{movstr@var{m}} patterns can only be
2255 beneficial if the patterns for smaller modes have fewer restrictions
2256 on their first, second and fourth operands. Note that the mode @var{m}
2257 in @code{movstr@var{m}} does not impose any restriction on the mode of
2258 individually moved data units in the block.
2259
2260 These patterns need not give special consideration to the possibility
2261 that the source and destination strings might overlap.
2262
2263 @cindex @code{clrstr@var{m}} instruction pattern
2264 @item @samp{clrstr@var{m}}
2265 Block clear instruction. The addresses of the destination string is the
2266 first operand, in mode @code{Pmode}. The number of bytes to clear is
2267 the second operand, in mode @var{m}. See @samp{movstr@var{m}} for
2268 a discussion of the choice of mode.
2269
2270 The third operand is the known alignment of the destination, in the form
2271 of a @code{const_int} rtx. Thus, if the compiler knows that the
2272 destination is word-aligned, it may provide the value 4 for this
2273 operand.
2274
2275 The use for multiple @code{clrstr@var{m}} is as for @code{movstr@var{m}}.
2276
2277 @cindex @code{cmpstr@var{m}} instruction pattern
2278 @item @samp{cmpstr@var{m}}
2279 Block compare instruction, with five operands. Operand 0 is the output;
2280 it has mode @var{m}. The remaining four operands are like the operands
2281 of @samp{movstr@var{m}}. The two memory blocks specified are compared
2282 byte by byte in lexicographic order. The effect of the instruction is
2283 to store a value in operand 0 whose sign indicates the result of the
2284 comparison.
2285
2286 @cindex @code{strlen@var{m}} instruction pattern
2287 @item @samp{strlen@var{m}}
2288 Compute the length of a string, with three operands.
2289 Operand 0 is the result (of mode @var{m}), operand 1 is
2290 a @code{mem} referring to the first character of the string,
2291 operand 2 is the character to search for (normally zero),
2292 and operand 3 is a constant describing the known alignment
2293 of the beginning of the string.
2294
2295 @cindex @code{float@var{mn}2} instruction pattern
2296 @item @samp{float@var{m}@var{n}2}
2297 Convert signed integer operand 1 (valid for fixed point mode @var{m}) to
2298 floating point mode @var{n} and store in operand 0 (which has mode
2299 @var{n}).
2300
2301 @cindex @code{floatuns@var{mn}2} instruction pattern
2302 @item @samp{floatuns@var{m}@var{n}2}
2303 Convert unsigned integer operand 1 (valid for fixed point mode @var{m})
2304 to floating point mode @var{n} and store in operand 0 (which has mode
2305 @var{n}).
2306
2307 @cindex @code{fix@var{mn}2} instruction pattern
2308 @item @samp{fix@var{m}@var{n}2}
2309 Convert operand 1 (valid for floating point mode @var{m}) to fixed
2310 point mode @var{n} as a signed number and store in operand 0 (which
2311 has mode @var{n}). This instruction's result is defined only when
2312 the value of operand 1 is an integer.
2313
2314 @cindex @code{fixuns@var{mn}2} instruction pattern
2315 @item @samp{fixuns@var{m}@var{n}2}
2316 Convert operand 1 (valid for floating point mode @var{m}) to fixed
2317 point mode @var{n} as an unsigned number and store in operand 0 (which
2318 has mode @var{n}). This instruction's result is defined only when the
2319 value of operand 1 is an integer.
2320
2321 @cindex @code{ftrunc@var{m}2} instruction pattern
2322 @item @samp{ftrunc@var{m}2}
2323 Convert operand 1 (valid for floating point mode @var{m}) to an
2324 integer value, still represented in floating point mode @var{m}, and
2325 store it in operand 0 (valid for floating point mode @var{m}).
2326
2327 @cindex @code{fix_trunc@var{mn}2} instruction pattern
2328 @item @samp{fix_trunc@var{m}@var{n}2}
2329 Like @samp{fix@var{m}@var{n}2} but works for any floating point value
2330 of mode @var{m} by converting the value to an integer.
2331
2332 @cindex @code{fixuns_trunc@var{mn}2} instruction pattern
2333 @item @samp{fixuns_trunc@var{m}@var{n}2}
2334 Like @samp{fixuns@var{m}@var{n}2} but works for any floating point
2335 value of mode @var{m} by converting the value to an integer.
2336
2337 @cindex @code{trunc@var{mn}2} instruction pattern
2338 @item @samp{trunc@var{m}@var{n}2}
2339 Truncate operand 1 (valid for mode @var{m}) to mode @var{n} and
2340 store in operand 0 (which has mode @var{n}). Both modes must be fixed
2341 point or both floating point.
2342
2343 @cindex @code{extend@var{mn}2} instruction pattern
2344 @item @samp{extend@var{m}@var{n}2}
2345 Sign-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
2346 store in operand 0 (which has mode @var{n}). Both modes must be fixed
2347 point or both floating point.
2348
2349 @cindex @code{zero_extend@var{mn}2} instruction pattern
2350 @item @samp{zero_extend@var{m}@var{n}2}
2351 Zero-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
2352 store in operand 0 (which has mode @var{n}). Both modes must be fixed
2353 point.
2354
2355 @cindex @code{extv} instruction pattern
2356 @item @samp{extv}
2357 Extract a bit field from operand 1 (a register or memory operand), where
2358 operand 2 specifies the width in bits and operand 3 the starting bit,
2359 and store it in operand 0. Operand 0 must have mode @code{word_mode}.
2360 Operand 1 may have mode @code{byte_mode} or @code{word_mode}; often
2361 @code{word_mode} is allowed only for registers. Operands 2 and 3 must
2362 be valid for @code{word_mode}.
2363
2364 The RTL generation pass generates this instruction only with constants
2365 for operands 2 and 3.
2366
2367 The bit-field value is sign-extended to a full word integer
2368 before it is stored in operand 0.
2369
2370 @cindex @code{extzv} instruction pattern
2371 @item @samp{extzv}
2372 Like @samp{extv} except that the bit-field value is zero-extended.
2373
2374 @cindex @code{insv} instruction pattern
2375 @item @samp{insv}
2376 Store operand 3 (which must be valid for @code{word_mode}) into a bit
2377 field in operand 0, where operand 1 specifies the width in bits and
2378 operand 2 the starting bit. Operand 0 may have mode @code{byte_mode} or
2379 @code{word_mode}; often @code{word_mode} is allowed only for registers.
2380 Operands 1 and 2 must be valid for @code{word_mode}.
2381
2382 The RTL generation pass generates this instruction only with constants
2383 for operands 1 and 2.
2384
2385 @cindex @code{mov@var{mode}cc} instruction pattern
2386 @item @samp{mov@var{mode}cc}
2387 Conditionally move operand 2 or operand 3 into operand 0 according to the
2388 comparison in operand 1. If the comparison is true, operand 2 is moved
2389 into operand 0, otherwise operand 3 is moved.
2390
2391 The mode of the operands being compared need not be the same as the operands
2392 being moved. Some machines, sparc64 for example, have instructions that
2393 conditionally move an integer value based on the floating point condition
2394 codes and vice versa.
2395
2396 If the machine does not have conditional move instructions, do not
2397 define these patterns.
2398
2399 @cindex @code{s@var{cond}} instruction pattern
2400 @item @samp{s@var{cond}}
2401 Store zero or nonzero in the operand according to the condition codes.
2402 Value stored is nonzero iff the condition @var{cond} is true.
2403 @var{cond} is the name of a comparison operation expression code, such
2404 as @code{eq}, @code{lt} or @code{leu}.
2405
2406 You specify the mode that the operand must have when you write the
2407 @code{match_operand} expression. The compiler automatically sees
2408 which mode you have used and supplies an operand of that mode.
2409
2410 The value stored for a true condition must have 1 as its low bit, or
2411 else must be negative. Otherwise the instruction is not suitable and
2412 you should omit it from the machine description. You describe to the
2413 compiler exactly which value is stored by defining the macro
2414 @code{STORE_FLAG_VALUE} (@pxref{Misc}). If a description cannot be
2415 found that can be used for all the @samp{s@var{cond}} patterns, you
2416 should omit those operations from the machine description.
2417
2418 These operations may fail, but should do so only in relatively
2419 uncommon cases; if they would fail for common cases involving
2420 integer comparisons, it is best to omit these patterns.
2421
2422 If these operations are omitted, the compiler will usually generate code
2423 that copies the constant one to the target and branches around an
2424 assignment of zero to the target. If this code is more efficient than
2425 the potential instructions used for the @samp{s@var{cond}} pattern
2426 followed by those required to convert the result into a 1 or a zero in
2427 @code{SImode}, you should omit the @samp{s@var{cond}} operations from
2428 the machine description.
2429
2430 @cindex @code{b@var{cond}} instruction pattern
2431 @item @samp{b@var{cond}}
2432 Conditional branch instruction. Operand 0 is a @code{label_ref} that
2433 refers to the label to jump to. Jump if the condition codes meet
2434 condition @var{cond}.
2435
2436 Some machines do not follow the model assumed here where a comparison
2437 instruction is followed by a conditional branch instruction. In that
2438 case, the @samp{cmp@var{m}} (and @samp{tst@var{m}}) patterns should
2439 simply store the operands away and generate all the required insns in a
2440 @code{define_expand} (@pxref{Expander Definitions}) for the conditional
2441 branch operations. All calls to expand @samp{b@var{cond}} patterns are
2442 immediately preceded by calls to expand either a @samp{cmp@var{m}}
2443 pattern or a @samp{tst@var{m}} pattern.
2444
2445 Machines that use a pseudo register for the condition code value, or
2446 where the mode used for the comparison depends on the condition being
2447 tested, should also use the above mechanism. @xref{Jump Patterns}.
2448
2449 The above discussion also applies to the @samp{mov@var{mode}cc} and
2450 @samp{s@var{cond}} patterns.
2451
2452 @cindex @code{jump} instruction pattern
2453 @item @samp{jump}
2454 A jump inside a function; an unconditional branch. Operand 0 is the
2455 @code{label_ref} of the label to jump to. This pattern name is mandatory
2456 on all machines.
2457
2458 @cindex @code{call} instruction pattern
2459 @item @samp{call}
2460 Subroutine call instruction returning no value. Operand 0 is the
2461 function to call; operand 1 is the number of bytes of arguments pushed
2462 as a @code{const_int}; operand 2 is the number of registers used as
2463 operands.
2464
2465 On most machines, operand 2 is not actually stored into the RTL
2466 pattern. It is supplied for the sake of some RISC machines which need
2467 to put this information into the assembler code; they can put it in
2468 the RTL instead of operand 1.
2469
2470 Operand 0 should be a @code{mem} RTX whose address is the address of the
2471 function. Note, however, that this address can be a @code{symbol_ref}
2472 expression even if it would not be a legitimate memory address on the
2473 target machine. If it is also not a valid argument for a call
2474 instruction, the pattern for this operation should be a
2475 @code{define_expand} (@pxref{Expander Definitions}) that places the
2476 address into a register and uses that register in the call instruction.
2477
2478 @cindex @code{call_value} instruction pattern
2479 @item @samp{call_value}
2480 Subroutine call instruction returning a value. Operand 0 is the hard
2481 register in which the value is returned. There are three more
2482 operands, the same as the three operands of the @samp{call}
2483 instruction (but with numbers increased by one).
2484
2485 Subroutines that return @code{BLKmode} objects use the @samp{call}
2486 insn.
2487
2488 @cindex @code{call_pop} instruction pattern
2489 @cindex @code{call_value_pop} instruction pattern
2490 @item @samp{call_pop}, @samp{call_value_pop}
2491 Similar to @samp{call} and @samp{call_value}, except used if defined and
2492 if @code{RETURN_POPS_ARGS} is non-zero. They should emit a @code{parallel}
2493 that contains both the function call and a @code{set} to indicate the
2494 adjustment made to the frame pointer.
2495
2496 For machines where @code{RETURN_POPS_ARGS} can be non-zero, the use of these
2497 patterns increases the number of functions for which the frame pointer
2498 can be eliminated, if desired.
2499
2500 @cindex @code{untyped_call} instruction pattern
2501 @item @samp{untyped_call}
2502 Subroutine call instruction returning a value of any type. Operand 0 is
2503 the function to call; operand 1 is a memory location where the result of
2504 calling the function is to be stored; operand 2 is a @code{parallel}
2505 expression where each element is a @code{set} expression that indicates
2506 the saving of a function return value into the result block.
2507
2508 This instruction pattern should be defined to support
2509 @code{__builtin_apply} on machines where special instructions are needed
2510 to call a subroutine with arbitrary arguments or to save the value
2511 returned. This instruction pattern is required on machines that have
2512 multiple registers that can hold a return value (i.e.
2513 @code{FUNCTION_VALUE_REGNO_P} is true for more than one register).
2514
2515 @cindex @code{return} instruction pattern
2516 @item @samp{return}
2517 Subroutine return instruction. This instruction pattern name should be
2518 defined only if a single instruction can do all the work of returning
2519 from a function.
2520
2521 Like the @samp{mov@var{m}} patterns, this pattern is also used after the
2522 RTL generation phase. In this case it is to support machines where
2523 multiple instructions are usually needed to return from a function, but
2524 some class of functions only requires one instruction to implement a
2525 return. Normally, the applicable functions are those which do not need
2526 to save any registers or allocate stack space.
2527
2528 @findex reload_completed
2529 @findex leaf_function_p
2530 For such machines, the condition specified in this pattern should only
2531 be true when @code{reload_completed} is non-zero and the function's
2532 epilogue would only be a single instruction. For machines with register
2533 windows, the routine @code{leaf_function_p} may be used to determine if
2534 a register window push is required.
2535
2536 Machines that have conditional return instructions should define patterns
2537 such as
2538
2539 @smallexample
2540 (define_insn ""
2541 [(set (pc)
2542 (if_then_else (match_operator
2543 0 "comparison_operator"
2544 [(cc0) (const_int 0)])
2545 (return)
2546 (pc)))]
2547 "@var{condition}"
2548 "@dots{}")
2549 @end smallexample
2550
2551 where @var{condition} would normally be the same condition specified on the
2552 named @samp{return} pattern.
2553
2554 @cindex @code{untyped_return} instruction pattern
2555 @item @samp{untyped_return}
2556 Untyped subroutine return instruction. This instruction pattern should
2557 be defined to support @code{__builtin_return} on machines where special
2558 instructions are needed to return a value of any type.
2559
2560 Operand 0 is a memory location where the result of calling a function
2561 with @code{__builtin_apply} is stored; operand 1 is a @code{parallel}
2562 expression where each element is a @code{set} expression that indicates
2563 the restoring of a function return value from the result block.
2564
2565 @cindex @code{nop} instruction pattern
2566 @item @samp{nop}
2567 No-op instruction. This instruction pattern name should always be defined
2568 to output a no-op in assembler code. @code{(const_int 0)} will do as an
2569 RTL pattern.
2570
2571 @cindex @code{indirect_jump} instruction pattern
2572 @item @samp{indirect_jump}
2573 An instruction to jump to an address which is operand zero.
2574 This pattern name is mandatory on all machines.
2575
2576 @cindex @code{casesi} instruction pattern
2577 @item @samp{casesi}
2578 Instruction to jump through a dispatch table, including bounds checking.
2579 This instruction takes five operands:
2580
2581 @enumerate
2582 @item
2583 The index to dispatch on, which has mode @code{SImode}.
2584
2585 @item
2586 The lower bound for indices in the table, an integer constant.
2587
2588 @item
2589 The total range of indices in the table---the largest index
2590 minus the smallest one (both inclusive).
2591
2592 @item
2593 A label that precedes the table itself.
2594
2595 @item
2596 A label to jump to if the index has a value outside the bounds.
2597 (If the machine-description macro @code{CASE_DROPS_THROUGH} is defined,
2598 then an out-of-bounds index drops through to the code following
2599 the jump table instead of jumping to this label. In that case,
2600 this label is not actually used by the @samp{casesi} instruction,
2601 but it is always provided as an operand.)
2602 @end enumerate
2603
2604 The table is a @code{addr_vec} or @code{addr_diff_vec} inside of a
2605 @code{jump_insn}. The number of elements in the table is one plus the
2606 difference between the upper bound and the lower bound.
2607
2608 @cindex @code{tablejump} instruction pattern
2609 @item @samp{tablejump}
2610 Instruction to jump to a variable address. This is a low-level
2611 capability which can be used to implement a dispatch table when there
2612 is no @samp{casesi} pattern.
2613
2614 This pattern requires two operands: the address or offset, and a label
2615 which should immediately precede the jump table. If the macro
2616 @code{CASE_VECTOR_PC_RELATIVE} evaluates to a nonzero value then the first
2617 operand is an offset which counts from the address of the table; otherwise,
2618 it is an absolute address to jump to. In either case, the first operand has
2619 mode @code{Pmode}.
2620
2621 The @samp{tablejump} insn is always the last insn before the jump
2622 table it uses. Its assembler code normally has no need to use the
2623 second operand, but you should incorporate it in the RTL pattern so
2624 that the jump optimizer will not delete the table as unreachable code.
2625
2626
2627 @cindex @code{decrement_and_branch_until_zero} instruction pattern
2628 @item @samp{decrement_and_branch_until_zero}
2629 Conditional branch instruction that decrements a register and
2630 jumps if the register is non-zero. Operand 0 is the register to
2631 decrement and test; operand 1 is the label to jump to if the
2632 register is non-zero. @xref{Looping Patterns}.
2633
2634 This optional instruction pattern is only used by the combiner,
2635 typically for loops reversed by the loop optimizer when strength
2636 reduction is enabled.
2637
2638 @cindex @code{doloop_end} instruction pattern
2639 @item @samp{doloop_end}
2640 Conditional branch instruction that decrements a register and jumps if
2641 the register is non-zero. This instruction takes five operands: Operand
2642 0 is the register to decrement and test; operand 1 is the number of loop
2643 iterations as a @code{const_int} or @code{const0_rtx} if this cannot be
2644 determined until run-time; operand 2 is the actual or estimated maximum
2645 number of iterations as a @code{const_int}; operand 3 is the number of
2646 enclosed loops as a @code{const_int} (an innermost loop has a value of
2647 1); operand 4 is the label to jump to if the register is non-zero.
2648 @xref{Looping Patterns}.
2649
2650 This optional instruction pattern should be defined for machines with
2651 low-overhead looping instructions as the loop optimizer will try to
2652 modify suitable loops to utilize it. If nested low-overhead looping is
2653 not supported, use a @code{define_expand} (@pxref{Expander Definitions})
2654 and make the pattern fail if operand 3 is not @code{const1_rtx}.
2655 Similarly, if the actual or estimated maximum number of iterations is
2656 too large for this instruction, make it fail.
2657
2658 @cindex @code{doloop_begin} instruction pattern
2659 @item @samp{doloop_begin}
2660 Companion instruction to @code{doloop_end} required for machines that
2661 need to perform some initialisation, such as loading special registers
2662 used by a low-overhead looping instruction. If initialisation insns do
2663 not always need to be emitted, use a @code{define_expand}
2664 (@pxref{Expander Definitions}) and make it fail.
2665
2666
2667 @cindex @code{canonicalize_funcptr_for_compare} instruction pattern
2668 @item @samp{canonicalize_funcptr_for_compare}
2669 Canonicalize the function pointer in operand 1 and store the result
2670 into operand 0.
2671
2672 Operand 0 is always a @code{reg} and has mode @code{Pmode}; operand 1
2673 may be a @code{reg}, @code{mem}, @code{symbol_ref}, @code{const_int}, etc
2674 and also has mode @code{Pmode}.
2675
2676 Canonicalization of a function pointer usually involves computing
2677 the address of the function which would be called if the function
2678 pointer were used in an indirect call.
2679
2680 Only define this pattern if function pointers on the target machine
2681 can have different values but still call the same function when
2682 used in an indirect call.
2683
2684 @cindex @code{save_stack_block} instruction pattern
2685 @cindex @code{save_stack_function} instruction pattern
2686 @cindex @code{save_stack_nonlocal} instruction pattern
2687 @cindex @code{restore_stack_block} instruction pattern
2688 @cindex @code{restore_stack_function} instruction pattern
2689 @cindex @code{restore_stack_nonlocal} instruction pattern
2690 @item @samp{save_stack_block}
2691 @itemx @samp{save_stack_function}
2692 @itemx @samp{save_stack_nonlocal}
2693 @itemx @samp{restore_stack_block}
2694 @itemx @samp{restore_stack_function}
2695 @itemx @samp{restore_stack_nonlocal}
2696 Most machines save and restore the stack pointer by copying it to or
2697 from an object of mode @code{Pmode}. Do not define these patterns on
2698 such machines.
2699
2700 Some machines require special handling for stack pointer saves and
2701 restores. On those machines, define the patterns corresponding to the
2702 non-standard cases by using a @code{define_expand} (@pxref{Expander
2703 Definitions}) that produces the required insns. The three types of
2704 saves and restores are:
2705
2706 @enumerate
2707 @item
2708 @samp{save_stack_block} saves the stack pointer at the start of a block
2709 that allocates a variable-sized object, and @samp{restore_stack_block}
2710 restores the stack pointer when the block is exited.
2711
2712 @item
2713 @samp{save_stack_function} and @samp{restore_stack_function} do a
2714 similar job for the outermost block of a function and are used when the
2715 function allocates variable-sized objects or calls @code{alloca}. Only
2716 the epilogue uses the restored stack pointer, allowing a simpler save or
2717 restore sequence on some machines.
2718
2719 @item
2720 @samp{save_stack_nonlocal} is used in functions that contain labels
2721 branched to by nested functions. It saves the stack pointer in such a
2722 way that the inner function can use @samp{restore_stack_nonlocal} to
2723 restore the stack pointer. The compiler generates code to restore the
2724 frame and argument pointer registers, but some machines require saving
2725 and restoring additional data such as register window information or
2726 stack backchains. Place insns in these patterns to save and restore any
2727 such required data.
2728 @end enumerate
2729
2730 When saving the stack pointer, operand 0 is the save area and operand 1
2731 is the stack pointer. The mode used to allocate the save area defaults
2732 to @code{Pmode} but you can override that choice by defining the
2733 @code{STACK_SAVEAREA_MODE} macro (@pxref{Storage Layout}). You must
2734 specify an integral mode, or @code{VOIDmode} if no save area is needed
2735 for a particular type of save (either because no save is needed or
2736 because a machine-specific save area can be used). Operand 0 is the
2737 stack pointer and operand 1 is the save area for restore operations. If
2738 @samp{save_stack_block} is defined, operand 0 must not be
2739 @code{VOIDmode} since these saves can be arbitrarily nested.
2740
2741 A save area is a @code{mem} that is at a constant offset from
2742 @code{virtual_stack_vars_rtx} when the stack pointer is saved for use by
2743 nonlocal gotos and a @code{reg} in the other two cases.
2744
2745 @cindex @code{allocate_stack} instruction pattern
2746 @item @samp{allocate_stack}
2747 Subtract (or add if @code{STACK_GROWS_DOWNWARD} is undefined) operand 1 from
2748 the stack pointer to create space for dynamically allocated data.
2749
2750 Store the resultant pointer to this space into operand 0. If you
2751 are allocating space from the main stack, do this by emitting a
2752 move insn to copy @code{virtual_stack_dynamic_rtx} to operand 0.
2753 If you are allocating the space elsewhere, generate code to copy the
2754 location of the space to operand 0. In the latter case, you must
2755 ensure this space gets freed when the corresponding space on the main
2756 stack is free.
2757
2758 Do not define this pattern if all that must be done is the subtraction.
2759 Some machines require other operations such as stack probes or
2760 maintaining the back chain. Define this pattern to emit those
2761 operations in addition to updating the stack pointer.
2762
2763 @cindex @code{probe} instruction pattern
2764 @item @samp{probe}
2765 Some machines require instructions to be executed after space is
2766 allocated from the stack, for example to generate a reference at
2767 the bottom of the stack.
2768
2769 If you need to emit instructions before the stack has been adjusted,
2770 put them into the @samp{allocate_stack} pattern. Otherwise, define
2771 this pattern to emit the required instructions.
2772
2773 No operands are provided.
2774
2775 @cindex @code{check_stack} instruction pattern
2776 @item @samp{check_stack}
2777 If stack checking cannot be done on your system by probing the stack with
2778 a load or store instruction (@pxref{Stack Checking}), define this pattern
2779 to perform the needed check and signaling an error if the stack
2780 has overflowed. The single operand is the location in the stack furthest
2781 from the current stack pointer that you need to validate. Normally,
2782 on machines where this pattern is needed, you would obtain the stack
2783 limit from a global or thread-specific variable or register.
2784
2785 @cindex @code{nonlocal_goto} instruction pattern
2786 @item @samp{nonlocal_goto}
2787 Emit code to generate a non-local goto, e.g., a jump from one function
2788 to a label in an outer function. This pattern has four arguments,
2789 each representing a value to be used in the jump. The first
2790 argument is to be loaded into the frame pointer, the second is
2791 the address to branch to (code to dispatch to the actual label),
2792 the third is the address of a location where the stack is saved,
2793 and the last is the address of the label, to be placed in the
2794 location for the incoming static chain.
2795
2796 On most machines you need not define this pattern, since GNU CC will
2797 already generate the correct code, which is to load the frame pointer
2798 and static chain, restore the stack (using the
2799 @samp{restore_stack_nonlocal} pattern, if defined), and jump indirectly
2800 to the dispatcher. You need only define this pattern if this code will
2801 not work on your machine.
2802
2803 @cindex @code{nonlocal_goto_receiver} instruction pattern
2804 @item @samp{nonlocal_goto_receiver}
2805 This pattern, if defined, contains code needed at the target of a
2806 nonlocal goto after the code already generated by GNU CC. You will not
2807 normally need to define this pattern. A typical reason why you might
2808 need this pattern is if some value, such as a pointer to a global table,
2809 must be restored when the frame pointer is restored. Note that a nonlocal
2810 goto only occurs within a unit-of-translation, so a global table pointer
2811 that is shared by all functions of a given module need not be restored.
2812 There are no arguments.
2813
2814 @cindex @code{exception_receiver} instruction pattern
2815 @item @samp{exception_receiver}
2816 This pattern, if defined, contains code needed at the site of an
2817 exception handler that isn't needed at the site of a nonlocal goto. You
2818 will not normally need to define this pattern. A typical reason why you
2819 might need this pattern is if some value, such as a pointer to a global
2820 table, must be restored after control flow is branched to the handler of
2821 an exception. There are no arguments.
2822
2823 @cindex @code{builtin_setjmp_setup} instruction pattern
2824 @item @samp{builtin_setjmp_setup}
2825 This pattern, if defined, contains additional code needed to initialize
2826 the @code{jmp_buf}. You will not normally need to define this pattern.
2827 A typical reason why you might need this pattern is if some value, such
2828 as a pointer to a global table, must be restored. Though it is
2829 preferred that the pointer value be recalculated if possible (given the
2830 address of a label for instance). The single argument is a pointer to
2831 the @code{jmp_buf}. Note that the buffer is five words long and that
2832 the first three are normally used by the generic mechanism.
2833
2834 @cindex @code{builtin_setjmp_receiver} instruction pattern
2835 @item @samp{builtin_setjmp_receiver}
2836 This pattern, if defined, contains code needed at the site of an
2837 builtin setjmp that isn't needed at the site of a nonlocal goto. You
2838 will not normally need to define this pattern. A typical reason why you
2839 might need this pattern is if some value, such as a pointer to a global
2840 table, must be restored. It takes one argument, which is the label
2841 to which builtin_longjmp transfered control; this pattern may be emitted
2842 at a small offset from that label.
2843
2844 @cindex @code{builtin_longjmp} instruction pattern
2845 @item @samp{builtin_longjmp}
2846 This pattern, if defined, performs the entire action of the longjmp.
2847 You will not normally need to define this pattern unless you also define
2848 @code{builtin_setjmp_setup}. The single argument is a pointer to the
2849 @code{jmp_buf}.
2850
2851 @cindex @code{eh_return} instruction pattern
2852 @item @samp{eh_return}
2853 This pattern, if defined, affects the way @code{__builtin_eh_return},
2854 and thence the call frame exception handling library routines, are
2855 built. It is intended to handle non-trivial actions needed along
2856 the abnormal return path.
2857
2858 The pattern takes two arguments. The first is an offset to be applied
2859 to the stack pointer. It will have been copied to some appropriate
2860 location (typically @code{EH_RETURN_STACKADJ_RTX}) which will survive
2861 until after reload to when the normal epilogue is generated.
2862 The second argument is the address of the exception handler to which
2863 the function should return. This will normally need to copied by the
2864 pattern to some special register or memory location.
2865
2866 This pattern only needs to be defined if call frame exception handling
2867 is to be used, and simple moves to @code{EH_RETURN_STACKADJ_RTX} and
2868 @code{EH_RETURN_HANDLER_RTX} are not sufficient.
2869
2870 @cindex @code{prologue} instruction pattern
2871 @item @samp{prologue}
2872 This pattern, if defined, emits RTL for entry to a function. The function
2873 entry is responsible for setting up the stack frame, initializing the frame
2874 pointer register, saving callee saved registers, etc.
2875
2876 Using a prologue pattern is generally preferred over defining
2877 @code{FUNCTION_PROLOGUE} to emit assembly code for the prologue.
2878
2879 The @code{prologue} pattern is particularly useful for targets which perform
2880 instruction scheduling.
2881
2882 @cindex @code{epilogue} instruction pattern
2883 @item @samp{epilogue}
2884 This pattern, if defined, emits RTL for exit from a function. The function
2885 exit is responsible for deallocating the stack frame, restoring callee saved
2886 registers and emitting the return instruction.
2887
2888 Using an epilogue pattern is generally preferred over defining
2889 @code{FUNCTION_EPILOGUE} to emit assembly code for the prologue.
2890
2891 The @code{epilogue} pattern is particularly useful for targets which perform
2892 instruction scheduling or which have delay slots for their return instruction.
2893
2894 @cindex @code{sibcall_epilogue} instruction pattern
2895 @item @samp{sibcall_epilogue}
2896 This pattern, if defined, emits RTL for exit from a function without the final
2897 branch back to the calling function. This pattern will be emitted before any
2898 sibling call (aka tail call) sites.
2899
2900 The @code{sibcall_epilogue} pattern must not clobber any arguments used for
2901 parameter passing or any stack slots for arguments passed to the current
2902 function.
2903
2904 @cindex @code{trap} instruction pattern
2905 @item @samp{trap}
2906 This pattern, if defined, signals an error, typically by causing some
2907 kind of signal to be raised. Among other places, it is used by the Java
2908 frontend to signal `invalid array index' exceptions.
2909
2910 @cindex @code{conditional_trap} instruction pattern
2911 @item @samp{conditional_trap}
2912 Conditional trap instruction. Operand 0 is a piece of RTL which
2913 performs a comparison. Operand 1 is the trap code, an integer.
2914
2915 A typical @code{conditional_trap} pattern looks like
2916
2917 @smallexample
2918 (define_insn "conditional_trap"
2919 [(trap_if (match_operator 0 "trap_operator"
2920 [(cc0) (const_int 0)])
2921 (match_operand 1 "const_int_operand" "i"))]
2922 ""
2923 "@dots{}")
2924 @end smallexample
2925
2926 @cindex @code{cycle_display} instruction pattern
2927 @item @samp{cycle_display}
2928
2929 This pattern, if present, will be emitted by the instruction scheduler at
2930 the beginning of each new clock cycle. This can be used for annotating the
2931 assembler output with cycle counts. Operand 0 is a @code{const_int} that
2932 holds the clock cycle.
2933
2934 @end table
2935
2936 @node Pattern Ordering
2937 @section When the Order of Patterns Matters
2938 @cindex Pattern Ordering
2939 @cindex Ordering of Patterns
2940
2941 Sometimes an insn can match more than one instruction pattern. Then the
2942 pattern that appears first in the machine description is the one used.
2943 Therefore, more specific patterns (patterns that will match fewer things)
2944 and faster instructions (those that will produce better code when they
2945 do match) should usually go first in the description.
2946
2947 In some cases the effect of ordering the patterns can be used to hide
2948 a pattern when it is not valid. For example, the 68000 has an
2949 instruction for converting a fullword to floating point and another
2950 for converting a byte to floating point. An instruction converting
2951 an integer to floating point could match either one. We put the
2952 pattern to convert the fullword first to make sure that one will
2953 be used rather than the other. (Otherwise a large integer might
2954 be generated as a single-byte immediate quantity, which would not work.)
2955 Instead of using this pattern ordering it would be possible to make the
2956 pattern for convert-a-byte smart enough to deal properly with any
2957 constant value.
2958
2959 @node Dependent Patterns
2960 @section Interdependence of Patterns
2961 @cindex Dependent Patterns
2962 @cindex Interdependence of Patterns
2963
2964 Every machine description must have a named pattern for each of the
2965 conditional branch names @samp{b@var{cond}}. The recognition template
2966 must always have the form
2967
2968 @example
2969 (set (pc)
2970 (if_then_else (@var{cond} (cc0) (const_int 0))
2971 (label_ref (match_operand 0 "" ""))
2972 (pc)))
2973 @end example
2974
2975 @noindent
2976 In addition, every machine description must have an anonymous pattern
2977 for each of the possible reverse-conditional branches. Their templates
2978 look like
2979
2980 @example
2981 (set (pc)
2982 (if_then_else (@var{cond} (cc0) (const_int 0))
2983 (pc)
2984 (label_ref (match_operand 0 "" ""))))
2985 @end example
2986
2987 @noindent
2988 They are necessary because jump optimization can turn direct-conditional
2989 branches into reverse-conditional branches.
2990
2991 It is often convenient to use the @code{match_operator} construct to
2992 reduce the number of patterns that must be specified for branches. For
2993 example,
2994
2995 @example
2996 (define_insn ""
2997 [(set (pc)
2998 (if_then_else (match_operator 0 "comparison_operator"
2999 [(cc0) (const_int 0)])
3000 (pc)
3001 (label_ref (match_operand 1 "" ""))))]
3002 "@var{condition}"
3003 "@dots{}")
3004 @end example
3005
3006 In some cases machines support instructions identical except for the
3007 machine mode of one or more operands. For example, there may be
3008 ``sign-extend halfword'' and ``sign-extend byte'' instructions whose
3009 patterns are
3010
3011 @example
3012 (set (match_operand:SI 0 @dots{})
3013 (extend:SI (match_operand:HI 1 @dots{})))
3014
3015 (set (match_operand:SI 0 @dots{})
3016 (extend:SI (match_operand:QI 1 @dots{})))
3017 @end example
3018
3019 @noindent
3020 Constant integers do not specify a machine mode, so an instruction to
3021 extend a constant value could match either pattern. The pattern it
3022 actually will match is the one that appears first in the file. For correct
3023 results, this must be the one for the widest possible mode (@code{HImode},
3024 here). If the pattern matches the @code{QImode} instruction, the results
3025 will be incorrect if the constant value does not actually fit that mode.
3026
3027 Such instructions to extend constants are rarely generated because they are
3028 optimized away, but they do occasionally happen in nonoptimized
3029 compilations.
3030
3031 If a constraint in a pattern allows a constant, the reload pass may
3032 replace a register with a constant permitted by the constraint in some
3033 cases. Similarly for memory references. Because of this substitution,
3034 you should not provide separate patterns for increment and decrement
3035 instructions. Instead, they should be generated from the same pattern
3036 that supports register-register add insns by examining the operands and
3037 generating the appropriate machine instruction.
3038
3039 @node Jump Patterns
3040 @section Defining Jump Instruction Patterns
3041 @cindex jump instruction patterns
3042 @cindex defining jump instruction patterns
3043
3044 For most machines, GNU CC assumes that the machine has a condition code.
3045 A comparison insn sets the condition code, recording the results of both
3046 signed and unsigned comparison of the given operands. A separate branch
3047 insn tests the condition code and branches or not according its value.
3048 The branch insns come in distinct signed and unsigned flavors. Many
3049 common machines, such as the Vax, the 68000 and the 32000, work this
3050 way.
3051
3052 Some machines have distinct signed and unsigned compare instructions, and
3053 only one set of conditional branch instructions. The easiest way to handle
3054 these machines is to treat them just like the others until the final stage
3055 where assembly code is written. At this time, when outputting code for the
3056 compare instruction, peek ahead at the following branch using
3057 @code{next_cc0_user (insn)}. (The variable @code{insn} refers to the insn
3058 being output, in the output-writing code in an instruction pattern.) If
3059 the RTL says that is an unsigned branch, output an unsigned compare;
3060 otherwise output a signed compare. When the branch itself is output, you
3061 can treat signed and unsigned branches identically.
3062
3063 The reason you can do this is that GNU CC always generates a pair of
3064 consecutive RTL insns, possibly separated by @code{note} insns, one to
3065 set the condition code and one to test it, and keeps the pair inviolate
3066 until the end.
3067
3068 To go with this technique, you must define the machine-description macro
3069 @code{NOTICE_UPDATE_CC} to do @code{CC_STATUS_INIT}; in other words, no
3070 compare instruction is superfluous.
3071
3072 Some machines have compare-and-branch instructions and no condition code.
3073 A similar technique works for them. When it is time to ``output'' a
3074 compare instruction, record its operands in two static variables. When
3075 outputting the branch-on-condition-code instruction that follows, actually
3076 output a compare-and-branch instruction that uses the remembered operands.
3077
3078 It also works to define patterns for compare-and-branch instructions.
3079 In optimizing compilation, the pair of compare and branch instructions
3080 will be combined according to these patterns. But this does not happen
3081 if optimization is not requested. So you must use one of the solutions
3082 above in addition to any special patterns you define.
3083
3084 In many RISC machines, most instructions do not affect the condition
3085 code and there may not even be a separate condition code register. On
3086 these machines, the restriction that the definition and use of the
3087 condition code be adjacent insns is not necessary and can prevent
3088 important optimizations. For example, on the IBM RS/6000, there is a
3089 delay for taken branches unless the condition code register is set three
3090 instructions earlier than the conditional branch. The instruction
3091 scheduler cannot perform this optimization if it is not permitted to
3092 separate the definition and use of the condition code register.
3093
3094 On these machines, do not use @code{(cc0)}, but instead use a register
3095 to represent the condition code. If there is a specific condition code
3096 register in the machine, use a hard register. If the condition code or
3097 comparison result can be placed in any general register, or if there are
3098 multiple condition registers, use a pseudo register.
3099
3100 @findex prev_cc0_setter
3101 @findex next_cc0_user
3102 On some machines, the type of branch instruction generated may depend on
3103 the way the condition code was produced; for example, on the 68k and
3104 Sparc, setting the condition code directly from an add or subtract
3105 instruction does not clear the overflow bit the way that a test
3106 instruction does, so a different branch instruction must be used for
3107 some conditional branches. For machines that use @code{(cc0)}, the set
3108 and use of the condition code must be adjacent (separated only by
3109 @code{note} insns) allowing flags in @code{cc_status} to be used.
3110 (@xref{Condition Code}.) Also, the comparison and branch insns can be
3111 located from each other by using the functions @code{prev_cc0_setter}
3112 and @code{next_cc0_user}.
3113
3114 However, this is not true on machines that do not use @code{(cc0)}. On
3115 those machines, no assumptions can be made about the adjacency of the
3116 compare and branch insns and the above methods cannot be used. Instead,
3117 we use the machine mode of the condition code register to record
3118 different formats of the condition code register.
3119
3120 Registers used to store the condition code value should have a mode that
3121 is in class @code{MODE_CC}. Normally, it will be @code{CCmode}. If
3122 additional modes are required (as for the add example mentioned above in
3123 the Sparc), define the macro @code{EXTRA_CC_MODES} to list the
3124 additional modes required (@pxref{Condition Code}). Also define
3125 @code{SELECT_CC_MODE} to choose a mode given an operand of a compare.
3126
3127 If it is known during RTL generation that a different mode will be
3128 required (for example, if the machine has separate compare instructions
3129 for signed and unsigned quantities, like most IBM processors), they can
3130 be specified at that time.
3131
3132 If the cases that require different modes would be made by instruction
3133 combination, the macro @code{SELECT_CC_MODE} determines which machine
3134 mode should be used for the comparison result. The patterns should be
3135 written using that mode. To support the case of the add on the Sparc
3136 discussed above, we have the pattern
3137
3138 @smallexample
3139 (define_insn ""
3140 [(set (reg:CC_NOOV 0)
3141 (compare:CC_NOOV
3142 (plus:SI (match_operand:SI 0 "register_operand" "%r")
3143 (match_operand:SI 1 "arith_operand" "rI"))
3144 (const_int 0)))]
3145 ""
3146 "@dots{}")
3147 @end smallexample
3148
3149 The @code{SELECT_CC_MODE} macro on the Sparc returns @code{CC_NOOVmode}
3150 for comparisons whose argument is a @code{plus}.
3151
3152 @node Looping Patterns
3153 @section Defining Looping Instruction Patterns
3154 @cindex looping instruction patterns
3155 @cindex defining looping instruction patterns
3156
3157 Some machines have special jump instructions that can be utilised to
3158 make loops more efficient. A common example is the 68000 @samp{dbra}
3159 instruction which performs a decrement of a register and a branch if the
3160 result was greater than zero. Other machines, in particular digital
3161 signal processors (DSPs), have special block repeat instructions to
3162 provide low-overhead loop support. For example, the TI TMS320C3x/C4x
3163 DSPs have a block repeat instruction that loads special registers to
3164 mark the top and end of a loop and to count the number of loop
3165 iterations. This avoids the need for fetching and executing a
3166 @samp{dbra}-like instruction and avoids pipeline stalls asociated with
3167 the jump.
3168
3169 GNU CC has three special named patterns to support low overhead looping,
3170 @samp{decrement_and_branch_until_zero}, @samp{doloop_begin}, and
3171 @samp{doloop_end}. The first pattern,
3172 @samp{decrement_and_branch_until_zero}, is not emitted during RTL
3173 generation but may be emitted during the instruction combination phase.
3174 This requires the assistance of the loop optimizer, using information
3175 collected during strength reduction, to reverse a loop to count down to
3176 zero. Some targets also require the loop optimizer to add a
3177 @code{REG_NONNEG} note to indicate that the iteration count is always
3178 positive. This is needed if the target performs a signed loop
3179 termination test. For example, the 68000 uses a pattern similar to the
3180 following for its @code{dbra} instruction:
3181
3182 @smallexample
3183 @group
3184 (define_insn "decrement_and_branch_until_zero"
3185 [(set (pc)
3186 (if_then_else
3187 (ge (plus:SI (match_operand:SI 0 "general_operand" "+d*am")
3188 (const_int -1))
3189 (const_int 0))
3190 (label_ref (match_operand 1 "" ""))
3191 (pc)))
3192 (set (match_dup 0)
3193 (plus:SI (match_dup 0)
3194 (const_int -1)))]
3195 "find_reg_note (insn, REG_NONNEG, 0)"
3196 "...")
3197 @end group
3198 @end smallexample
3199
3200 Note that since the insn is both a jump insn and has an output, it must
3201 deal with its own reloads, hence the `m' constraints. Also note that
3202 since this insn is generated by the instruction combination phase
3203 combining two sequential insns together into an implicit parallel insn,
3204 the iteration counter needs to be biased by the same amount as the
3205 decrement operation, in this case -1. Note that the following similar
3206 pattern will not be matched by the combiner.
3207
3208 @smallexample
3209 @group
3210 (define_insn "decrement_and_branch_until_zero"
3211 [(set (pc)
3212 (if_then_else
3213 (ge (match_operand:SI 0 "general_operand" "+d*am")
3214 (const_int 1))
3215 (label_ref (match_operand 1 "" ""))
3216 (pc)))
3217 (set (match_dup 0)
3218 (plus:SI (match_dup 0)
3219 (const_int -1)))]
3220 "find_reg_note (insn, REG_NONNEG, 0)"
3221 "...")
3222 @end group
3223 @end smallexample
3224
3225 The other two special looping patterns, @samp{doloop_begin} and
3226 @samp{doloop_end}, are emitted by the loop optimiser for certain
3227 well-behaved loops with a finite number of loop iterations using
3228 information collected during strength reduction.
3229
3230 The @samp{doloop_end} pattern describes the actual looping instruction
3231 (or the implicit looping operation) and the @samp{doloop_begin} pattern
3232 is an optional companion pattern that can be used for initialisation
3233 needed for some low-overhead looping instructions.
3234
3235 Note that some machines require the actual looping instruction to be
3236 emitted at the top of the loop (e.g., the TMS320C3x/C4x DSPs). Emitting
3237 the true RTL for a looping instruction at the top of the loop can cause
3238 problems with flow analysis. So instead, a dummy @code{doloop} insn is
3239 emitted at the end of the loop. The machine dependent reorg pass checks
3240 for the presence of this @code{doloop} insn and then searches back to
3241 the top of the loop, where it inserts the true looping insn (provided
3242 there are no instructions in the loop which would cause problems). Any
3243 additional labels can be emitted at this point. In addition, if the
3244 desired special iteration counter register was not allocated, this
3245 machine dependent reorg pass could emit a traditional compare and jump
3246 instruction pair.
3247
3248 The essential difference between the
3249 @samp{decrement_and_branch_until_zero} and the @samp{doloop_end}
3250 patterns is that the loop optimizer allocates an additional pseudo
3251 register for the latter as an iteration counter. This pseudo register
3252 cannot be used within the loop (i.e., general induction variables cannot
3253 be derived from it), however, in many cases the loop induction variable
3254 may become redundant and removed by the flow pass.
3255
3256
3257 @node Insn Canonicalizations
3258 @section Canonicalization of Instructions
3259 @cindex canonicalization of instructions
3260 @cindex insn canonicalization
3261
3262 There are often cases where multiple RTL expressions could represent an
3263 operation performed by a single machine instruction. This situation is
3264 most commonly encountered with logical, branch, and multiply-accumulate
3265 instructions. In such cases, the compiler attempts to convert these
3266 multiple RTL expressions into a single canonical form to reduce the
3267 number of insn patterns required.
3268
3269 In addition to algebraic simplifications, following canonicalizations
3270 are performed:
3271
3272 @itemize @bullet
3273 @item
3274 For commutative and comparison operators, a constant is always made the
3275 second operand. If a machine only supports a constant as the second
3276 operand, only patterns that match a constant in the second operand need
3277 be supplied.
3278
3279 @cindex @code{neg}, canonicalization of
3280 @cindex @code{not}, canonicalization of
3281 @cindex @code{mult}, canonicalization of
3282 @cindex @code{plus}, canonicalization of
3283 @cindex @code{minus}, canonicalization of
3284 For these operators, if only one operand is a @code{neg}, @code{not},
3285 @code{mult}, @code{plus}, or @code{minus} expression, it will be the
3286 first operand.
3287
3288 @cindex @code{compare}, canonicalization of
3289 @item
3290 For the @code{compare} operator, a constant is always the second operand
3291 on machines where @code{cc0} is used (@pxref{Jump Patterns}). On other
3292 machines, there are rare cases where the compiler might want to construct
3293 a @code{compare} with a constant as the first operand. However, these
3294 cases are not common enough for it to be worthwhile to provide a pattern
3295 matching a constant as the first operand unless the machine actually has
3296 such an instruction.
3297
3298 An operand of @code{neg}, @code{not}, @code{mult}, @code{plus}, or
3299 @code{minus} is made the first operand under the same conditions as
3300 above.
3301
3302 @item
3303 @code{(minus @var{x} (const_int @var{n}))} is converted to
3304 @code{(plus @var{x} (const_int @var{-n}))}.
3305
3306 @item
3307 Within address computations (i.e., inside @code{mem}), a left shift is
3308 converted into the appropriate multiplication by a power of two.
3309
3310 @cindex @code{ior}, canonicalization of
3311 @cindex @code{and}, canonicalization of
3312 @cindex De Morgan's law
3313 @item
3314 De`Morgan's Law is used to move bitwise negation inside a bitwise
3315 logical-and or logical-or operation. If this results in only one
3316 operand being a @code{not} expression, it will be the first one.
3317
3318 A machine that has an instruction that performs a bitwise logical-and of one
3319 operand with the bitwise negation of the other should specify the pattern
3320 for that instruction as
3321
3322 @example
3323 (define_insn ""
3324 [(set (match_operand:@var{m} 0 @dots{})
3325 (and:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
3326 (match_operand:@var{m} 2 @dots{})))]
3327 "@dots{}"
3328 "@dots{}")
3329 @end example
3330
3331 @noindent
3332 Similarly, a pattern for a ``NAND'' instruction should be written
3333
3334 @example
3335 (define_insn ""
3336 [(set (match_operand:@var{m} 0 @dots{})
3337 (ior:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
3338 (not:@var{m} (match_operand:@var{m} 2 @dots{}))))]
3339 "@dots{}"
3340 "@dots{}")
3341 @end example
3342
3343 In both cases, it is not necessary to include patterns for the many
3344 logically equivalent RTL expressions.
3345
3346 @cindex @code{xor}, canonicalization of
3347 @item
3348 The only possible RTL expressions involving both bitwise exclusive-or
3349 and bitwise negation are @code{(xor:@var{m} @var{x} @var{y})}
3350 and @code{(not:@var{m} (xor:@var{m} @var{x} @var{y}))}.@refill
3351
3352 @item
3353 The sum of three items, one of which is a constant, will only appear in
3354 the form
3355
3356 @example
3357 (plus:@var{m} (plus:@var{m} @var{x} @var{y}) @var{constant})
3358 @end example
3359
3360 @item
3361 On machines that do not use @code{cc0},
3362 @code{(compare @var{x} (const_int 0))} will be converted to
3363 @var{x}.@refill
3364
3365 @cindex @code{zero_extract}, canonicalization of
3366 @cindex @code{sign_extract}, canonicalization of
3367 @item
3368 Equality comparisons of a group of bits (usually a single bit) with zero
3369 will be written using @code{zero_extract} rather than the equivalent
3370 @code{and} or @code{sign_extract} operations.
3371
3372 @end itemize
3373
3374 @node Expander Definitions
3375 @section Defining RTL Sequences for Code Generation
3376 @cindex expander definitions
3377 @cindex code generation RTL sequences
3378 @cindex defining RTL sequences for code generation
3379
3380 On some target machines, some standard pattern names for RTL generation
3381 cannot be handled with single insn, but a sequence of RTL insns can
3382 represent them. For these target machines, you can write a
3383 @code{define_expand} to specify how to generate the sequence of RTL.
3384
3385 @findex define_expand
3386 A @code{define_expand} is an RTL expression that looks almost like a
3387 @code{define_insn}; but, unlike the latter, a @code{define_expand} is used
3388 only for RTL generation and it can produce more than one RTL insn.
3389
3390 A @code{define_expand} RTX has four operands:
3391
3392 @itemize @bullet
3393 @item
3394 The name. Each @code{define_expand} must have a name, since the only
3395 use for it is to refer to it by name.
3396
3397 @item
3398 The RTL template. This is a vector of RTL expressions representing
3399 a sequence of separate instructions. Unlike @code{define_insn}, there
3400 is no implicit surrounding @code{PARALLEL}.
3401
3402 @item
3403 The condition, a string containing a C expression. This expression is
3404 used to express how the availability of this pattern depends on
3405 subclasses of target machine, selected by command-line options when GNU
3406 CC is run. This is just like the condition of a @code{define_insn} that
3407 has a standard name. Therefore, the condition (if present) may not
3408 depend on the data in the insn being matched, but only the
3409 target-machine-type flags. The compiler needs to test these conditions
3410 during initialization in order to learn exactly which named instructions
3411 are available in a particular run.
3412
3413 @item
3414 The preparation statements, a string containing zero or more C
3415 statements which are to be executed before RTL code is generated from
3416 the RTL template.
3417
3418 Usually these statements prepare temporary registers for use as
3419 internal operands in the RTL template, but they can also generate RTL
3420 insns directly by calling routines such as @code{emit_insn}, etc.
3421 Any such insns precede the ones that come from the RTL template.
3422 @end itemize
3423
3424 Every RTL insn emitted by a @code{define_expand} must match some
3425 @code{define_insn} in the machine description. Otherwise, the compiler
3426 will crash when trying to generate code for the insn or trying to optimize
3427 it.
3428
3429 The RTL template, in addition to controlling generation of RTL insns,
3430 also describes the operands that need to be specified when this pattern
3431 is used. In particular, it gives a predicate for each operand.
3432
3433 A true operand, which needs to be specified in order to generate RTL from
3434 the pattern, should be described with a @code{match_operand} in its first
3435 occurrence in the RTL template. This enters information on the operand's
3436 predicate into the tables that record such things. GNU CC uses the
3437 information to preload the operand into a register if that is required for
3438 valid RTL code. If the operand is referred to more than once, subsequent
3439 references should use @code{match_dup}.
3440
3441 The RTL template may also refer to internal ``operands'' which are
3442 temporary registers or labels used only within the sequence made by the
3443 @code{define_expand}. Internal operands are substituted into the RTL
3444 template with @code{match_dup}, never with @code{match_operand}. The
3445 values of the internal operands are not passed in as arguments by the
3446 compiler when it requests use of this pattern. Instead, they are computed
3447 within the pattern, in the preparation statements. These statements
3448 compute the values and store them into the appropriate elements of
3449 @code{operands} so that @code{match_dup} can find them.
3450
3451 There are two special macros defined for use in the preparation statements:
3452 @code{DONE} and @code{FAIL}. Use them with a following semicolon,
3453 as a statement.
3454
3455 @table @code
3456
3457 @findex DONE
3458 @item DONE
3459 Use the @code{DONE} macro to end RTL generation for the pattern. The
3460 only RTL insns resulting from the pattern on this occasion will be
3461 those already emitted by explicit calls to @code{emit_insn} within the
3462 preparation statements; the RTL template will not be generated.
3463
3464 @findex FAIL
3465 @item FAIL
3466 Make the pattern fail on this occasion. When a pattern fails, it means
3467 that the pattern was not truly available. The calling routines in the
3468 compiler will try other strategies for code generation using other patterns.
3469
3470 Failure is currently supported only for binary (addition, multiplication,
3471 shifting, etc.) and bitfield (@code{extv}, @code{extzv}, and @code{insv})
3472 operations.
3473 @end table
3474
3475 If the preparation falls through (invokes neither @code{DONE} nor
3476 @code{FAIL}), then the @code{define_expand} acts like a
3477 @code{define_insn} in that the RTL template is used to generate the
3478 insn.
3479
3480 The RTL template is not used for matching, only for generating the
3481 initial insn list. If the preparation statement always invokes
3482 @code{DONE} or @code{FAIL}, the RTL template may be reduced to a simple
3483 list of operands, such as this example:
3484
3485 @smallexample
3486 @group
3487 (define_expand "addsi3"
3488 [(match_operand:SI 0 "register_operand" "")
3489 (match_operand:SI 1 "register_operand" "")
3490 (match_operand:SI 2 "register_operand" "")]
3491 @end group
3492 @group
3493 ""
3494 "
3495 @{
3496 handle_add (operands[0], operands[1], operands[2]);
3497 DONE;
3498 @}")
3499 @end group
3500 @end smallexample
3501
3502 Here is an example, the definition of left-shift for the SPUR chip:
3503
3504 @smallexample
3505 @group
3506 (define_expand "ashlsi3"
3507 [(set (match_operand:SI 0 "register_operand" "")
3508 (ashift:SI
3509 @end group
3510 @group
3511 (match_operand:SI 1 "register_operand" "")
3512 (match_operand:SI 2 "nonmemory_operand" "")))]
3513 ""
3514 "
3515 @end group
3516 @end smallexample
3517
3518 @smallexample
3519 @group
3520 @{
3521 if (GET_CODE (operands[2]) != CONST_INT
3522 || (unsigned) INTVAL (operands[2]) > 3)
3523 FAIL;
3524 @}")
3525 @end group
3526 @end smallexample
3527
3528 @noindent
3529 This example uses @code{define_expand} so that it can generate an RTL insn
3530 for shifting when the shift-count is in the supported range of 0 to 3 but
3531 fail in other cases where machine insns aren't available. When it fails,
3532 the compiler tries another strategy using different patterns (such as, a
3533 library call).
3534
3535 If the compiler were able to handle nontrivial condition-strings in
3536 patterns with names, then it would be possible to use a
3537 @code{define_insn} in that case. Here is another case (zero-extension
3538 on the 68000) which makes more use of the power of @code{define_expand}:
3539
3540 @smallexample
3541 (define_expand "zero_extendhisi2"
3542 [(set (match_operand:SI 0 "general_operand" "")
3543 (const_int 0))
3544 (set (strict_low_part
3545 (subreg:HI
3546 (match_dup 0)
3547 0))
3548 (match_operand:HI 1 "general_operand" ""))]
3549 ""
3550 "operands[1] = make_safe_from (operands[1], operands[0]);")
3551 @end smallexample
3552
3553 @noindent
3554 @findex make_safe_from
3555 Here two RTL insns are generated, one to clear the entire output operand
3556 and the other to copy the input operand into its low half. This sequence
3557 is incorrect if the input operand refers to [the old value of] the output
3558 operand, so the preparation statement makes sure this isn't so. The
3559 function @code{make_safe_from} copies the @code{operands[1]} into a
3560 temporary register if it refers to @code{operands[0]}. It does this
3561 by emitting another RTL insn.
3562
3563 Finally, a third example shows the use of an internal operand.
3564 Zero-extension on the SPUR chip is done by @code{and}-ing the result
3565 against a halfword mask. But this mask cannot be represented by a
3566 @code{const_int} because the constant value is too large to be legitimate
3567 on this machine. So it must be copied into a register with
3568 @code{force_reg} and then the register used in the @code{and}.
3569
3570 @smallexample
3571 (define_expand "zero_extendhisi2"
3572 [(set (match_operand:SI 0 "register_operand" "")
3573 (and:SI (subreg:SI
3574 (match_operand:HI 1 "register_operand" "")
3575 0)
3576 (match_dup 2)))]
3577 ""
3578 "operands[2]
3579 = force_reg (SImode, GEN_INT (65535)); ")
3580 @end smallexample
3581
3582 @strong{Note:} If the @code{define_expand} is used to serve a
3583 standard binary or unary arithmetic operation or a bitfield operation,
3584 then the last insn it generates must not be a @code{code_label},
3585 @code{barrier} or @code{note}. It must be an @code{insn},
3586 @code{jump_insn} or @code{call_insn}. If you don't need a real insn
3587 at the end, emit an insn to copy the result of the operation into
3588 itself. Such an insn will generate no code, but it can avoid problems
3589 in the compiler.@refill
3590
3591 @node Insn Splitting
3592 @section Defining How to Split Instructions
3593 @cindex insn splitting
3594 @cindex instruction splitting
3595 @cindex splitting instructions
3596
3597 There are two cases where you should specify how to split a pattern into
3598 multiple insns. On machines that have instructions requiring delay
3599 slots (@pxref{Delay Slots}) or that have instructions whose output is
3600 not available for multiple cycles (@pxref{Function Units}), the compiler
3601 phases that optimize these cases need to be able to move insns into
3602 one-instruction delay slots. However, some insns may generate more than one
3603 machine instruction. These insns cannot be placed into a delay slot.
3604
3605 Often you can rewrite the single insn as a list of individual insns,
3606 each corresponding to one machine instruction. The disadvantage of
3607 doing so is that it will cause the compilation to be slower and require
3608 more space. If the resulting insns are too complex, it may also
3609 suppress some optimizations. The compiler splits the insn if there is a
3610 reason to believe that it might improve instruction or delay slot
3611 scheduling.
3612
3613 The insn combiner phase also splits putative insns. If three insns are
3614 merged into one insn with a complex expression that cannot be matched by
3615 some @code{define_insn} pattern, the combiner phase attempts to split
3616 the complex pattern into two insns that are recognized. Usually it can
3617 break the complex pattern into two patterns by splitting out some
3618 subexpression. However, in some other cases, such as performing an
3619 addition of a large constant in two insns on a RISC machine, the way to
3620 split the addition into two insns is machine-dependent.
3621
3622 @findex define_split
3623 The @code{define_split} definition tells the compiler how to split a
3624 complex insn into several simpler insns. It looks like this:
3625
3626 @smallexample
3627 (define_split
3628 [@var{insn-pattern}]
3629 "@var{condition}"
3630 [@var{new-insn-pattern-1}
3631 @var{new-insn-pattern-2}
3632 @dots{}]
3633 "@var{preparation statements}")
3634 @end smallexample
3635
3636 @var{insn-pattern} is a pattern that needs to be split and
3637 @var{condition} is the final condition to be tested, as in a
3638 @code{define_insn}. When an insn matching @var{insn-pattern} and
3639 satisfying @var{condition} is found, it is replaced in the insn list
3640 with the insns given by @var{new-insn-pattern-1},
3641 @var{new-insn-pattern-2}, etc.
3642
3643 The @var{preparation statements} are similar to those statements that
3644 are specified for @code{define_expand} (@pxref{Expander Definitions})
3645 and are executed before the new RTL is generated to prepare for the
3646 generated code or emit some insns whose pattern is not fixed. Unlike
3647 those in @code{define_expand}, however, these statements must not
3648 generate any new pseudo-registers. Once reload has completed, they also
3649 must not allocate any space in the stack frame.
3650
3651 Patterns are matched against @var{insn-pattern} in two different
3652 circumstances. If an insn needs to be split for delay slot scheduling
3653 or insn scheduling, the insn is already known to be valid, which means
3654 that it must have been matched by some @code{define_insn} and, if
3655 @code{reload_completed} is non-zero, is known to satisfy the constraints
3656 of that @code{define_insn}. In that case, the new insn patterns must
3657 also be insns that are matched by some @code{define_insn} and, if
3658 @code{reload_completed} is non-zero, must also satisfy the constraints
3659 of those definitions.
3660
3661 As an example of this usage of @code{define_split}, consider the following
3662 example from @file{a29k.md}, which splits a @code{sign_extend} from
3663 @code{HImode} to @code{SImode} into a pair of shift insns:
3664
3665 @smallexample
3666 (define_split
3667 [(set (match_operand:SI 0 "gen_reg_operand" "")
3668 (sign_extend:SI (match_operand:HI 1 "gen_reg_operand" "")))]
3669 ""
3670 [(set (match_dup 0)
3671 (ashift:SI (match_dup 1)
3672 (const_int 16)))
3673 (set (match_dup 0)
3674 (ashiftrt:SI (match_dup 0)
3675 (const_int 16)))]
3676 "
3677 @{ operands[1] = gen_lowpart (SImode, operands[1]); @}")
3678 @end smallexample
3679
3680 When the combiner phase tries to split an insn pattern, it is always the
3681 case that the pattern is @emph{not} matched by any @code{define_insn}.
3682 The combiner pass first tries to split a single @code{set} expression
3683 and then the same @code{set} expression inside a @code{parallel}, but
3684 followed by a @code{clobber} of a pseudo-reg to use as a scratch
3685 register. In these cases, the combiner expects exactly two new insn
3686 patterns to be generated. It will verify that these patterns match some
3687 @code{define_insn} definitions, so you need not do this test in the
3688 @code{define_split} (of course, there is no point in writing a
3689 @code{define_split} that will never produce insns that match).
3690
3691 Here is an example of this use of @code{define_split}, taken from
3692 @file{rs6000.md}:
3693
3694 @smallexample
3695 (define_split
3696 [(set (match_operand:SI 0 "gen_reg_operand" "")
3697 (plus:SI (match_operand:SI 1 "gen_reg_operand" "")
3698 (match_operand:SI 2 "non_add_cint_operand" "")))]
3699 ""
3700 [(set (match_dup 0) (plus:SI (match_dup 1) (match_dup 3)))
3701 (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 4)))]
3702 "
3703 @{
3704 int low = INTVAL (operands[2]) & 0xffff;
3705 int high = (unsigned) INTVAL (operands[2]) >> 16;
3706
3707 if (low & 0x8000)
3708 high++, low |= 0xffff0000;
3709
3710 operands[3] = GEN_INT (high << 16);
3711 operands[4] = GEN_INT (low);
3712 @}")
3713 @end smallexample
3714
3715 Here the predicate @code{non_add_cint_operand} matches any
3716 @code{const_int} that is @emph{not} a valid operand of a single add
3717 insn. The add with the smaller displacement is written so that it
3718 can be substituted into the address of a subsequent operation.
3719
3720 An example that uses a scratch register, from the same file, generates
3721 an equality comparison of a register and a large constant:
3722
3723 @smallexample
3724 (define_split
3725 [(set (match_operand:CC 0 "cc_reg_operand" "")
3726 (compare:CC (match_operand:SI 1 "gen_reg_operand" "")
3727 (match_operand:SI 2 "non_short_cint_operand" "")))
3728 (clobber (match_operand:SI 3 "gen_reg_operand" ""))]
3729 "find_single_use (operands[0], insn, 0)
3730 && (GET_CODE (*find_single_use (operands[0], insn, 0)) == EQ
3731 || GET_CODE (*find_single_use (operands[0], insn, 0)) == NE)"
3732 [(set (match_dup 3) (xor:SI (match_dup 1) (match_dup 4)))
3733 (set (match_dup 0) (compare:CC (match_dup 3) (match_dup 5)))]
3734 "
3735 @{
3736 /* Get the constant we are comparing against, C, and see what it
3737 looks like sign-extended to 16 bits. Then see what constant
3738 could be XOR'ed with C to get the sign-extended value. */
3739
3740 int c = INTVAL (operands[2]);
3741 int sextc = (c << 16) >> 16;
3742 int xorv = c ^ sextc;
3743
3744 operands[4] = GEN_INT (xorv);
3745 operands[5] = GEN_INT (sextc);
3746 @}")
3747 @end smallexample
3748
3749 To avoid confusion, don't write a single @code{define_split} that
3750 accepts some insns that match some @code{define_insn} as well as some
3751 insns that don't. Instead, write two separate @code{define_split}
3752 definitions, one for the insns that are valid and one for the insns that
3753 are not valid.
3754
3755 For the common case where the pattern of a define_split exactly matches the
3756 pattern of a define_insn, use @code{define_insn_and_split}. It looks like
3757 this:
3758
3759 @smallexample
3760 (define_insn_and_split
3761 [@var{insn-pattern}]
3762 "@var{condition}"
3763 "@var{output-template}"
3764 "@var{split-condition}"
3765 [@var{new-insn-pattern-1}
3766 @var{new-insn-pattern-2}
3767 @dots{}]
3768 "@var{preparation statements}"
3769 [@var{insn-attributes}])
3770
3771 @end smallexample
3772
3773 @var{insn-pattern}, @var{condition}, @var{output-template}, and
3774 @var{insn-attributes} are used as in @code{define_insn}. The
3775 @var{new-insn-pattern} vector and the @var{preparation-statements} are used as
3776 in a @code{define_split}. The @var{split-condition} is also used as in
3777 @code{define_split}, with the additional behavior that if the condition starts
3778 with @samp{&&}, the condition used for the split will be the constructed as a
3779 logical "and" of the split condition with the insn condition. For example,
3780 from i386.md:
3781
3782 @smallexample
3783 (define_insn_and_split "zero_extendhisi2_and"
3784 [(set (match_operand:SI 0 "register_operand" "=r")
3785 (zero_extend:SI (match_operand:HI 1 "register_operand" "0")))
3786 (clobber (reg:CC 17))]
3787 "TARGET_ZERO_EXTEND_WITH_AND && !optimize_size"
3788 "#"
3789 "&& reload_completed"
3790 [(parallel [(set (match_dup 0) (and:SI (match_dup 0) (const_int 65535)))
3791 (clobber (reg:CC 17))])]
3792 ""
3793 [(set_attr "type" "alu1")])
3794
3795 @end smallexample
3796
3797 In this case, the actual split condition will be
3798 "TARGET_ZERO_EXTEND_WITH_AND && !optimize_size && reload_completed."
3799
3800 The @code{define_insn_and_split} construction provides exactly the same
3801 functionality as two separate @code{define_insn} and @code{define_split}
3802 patterns. It exists for compactness, and as a maintenance tool to prevent
3803 having to ensure the two patterns' templates match.
3804
3805 @node Peephole Definitions
3806 @section Machine-Specific Peephole Optimizers
3807 @cindex peephole optimizer definitions
3808 @cindex defining peephole optimizers
3809
3810 In addition to instruction patterns the @file{md} file may contain
3811 definitions of machine-specific peephole optimizations.
3812
3813 The combiner does not notice certain peephole optimizations when the data
3814 flow in the program does not suggest that it should try them. For example,
3815 sometimes two consecutive insns related in purpose can be combined even
3816 though the second one does not appear to use a register computed in the
3817 first one. A machine-specific peephole optimizer can detect such
3818 opportunities.
3819
3820 There are two forms of peephole definitions that may be used. The
3821 original @code{define_peephole} is run at assembly output time to
3822 match insns and substitute assembly text. Use of @code{define_peephole}
3823 is deprecated.
3824
3825 A newer @code{define_peephole2} matches insns and substitutes new
3826 insns. The @code{peephole2} pass is run after register allocation
3827 but before scheduling, which may result in much better code for
3828 targets that do scheduling.
3829
3830 @menu
3831 * define_peephole:: RTL to Text Peephole Optimizers
3832 * define_peephole2:: RTL to RTL Peephole Optimizers
3833 @end menu
3834
3835 @node define_peephole
3836 @subsection RTL to Text Peephole Optimizers
3837 @findex define_peephole
3838
3839 @need 1000
3840 A definition looks like this:
3841
3842 @smallexample
3843 (define_peephole
3844 [@var{insn-pattern-1}
3845 @var{insn-pattern-2}
3846 @dots{}]
3847 "@var{condition}"
3848 "@var{template}"
3849 "@var{optional insn-attributes}")
3850 @end smallexample
3851
3852 @noindent
3853 The last string operand may be omitted if you are not using any
3854 machine-specific information in this machine description. If present,
3855 it must obey the same rules as in a @code{define_insn}.
3856
3857 In this skeleton, @var{insn-pattern-1} and so on are patterns to match
3858 consecutive insns. The optimization applies to a sequence of insns when
3859 @var{insn-pattern-1} matches the first one, @var{insn-pattern-2} matches
3860 the next, and so on.@refill
3861
3862 Each of the insns matched by a peephole must also match a
3863 @code{define_insn}. Peepholes are checked only at the last stage just
3864 before code generation, and only optionally. Therefore, any insn which
3865 would match a peephole but no @code{define_insn} will cause a crash in code
3866 generation in an unoptimized compilation, or at various optimization
3867 stages.
3868
3869 The operands of the insns are matched with @code{match_operands},
3870 @code{match_operator}, and @code{match_dup}, as usual. What is not
3871 usual is that the operand numbers apply to all the insn patterns in the
3872 definition. So, you can check for identical operands in two insns by
3873 using @code{match_operand} in one insn and @code{match_dup} in the
3874 other.
3875
3876 The operand constraints used in @code{match_operand} patterns do not have
3877 any direct effect on the applicability of the peephole, but they will
3878 be validated afterward, so make sure your constraints are general enough
3879 to apply whenever the peephole matches. If the peephole matches
3880 but the constraints are not satisfied, the compiler will crash.
3881
3882 It is safe to omit constraints in all the operands of the peephole; or
3883 you can write constraints which serve as a double-check on the criteria
3884 previously tested.
3885
3886 Once a sequence of insns matches the patterns, the @var{condition} is
3887 checked. This is a C expression which makes the final decision whether to
3888 perform the optimization (we do so if the expression is nonzero). If
3889 @var{condition} is omitted (in other words, the string is empty) then the
3890 optimization is applied to every sequence of insns that matches the
3891 patterns.
3892
3893 The defined peephole optimizations are applied after register allocation
3894 is complete. Therefore, the peephole definition can check which
3895 operands have ended up in which kinds of registers, just by looking at
3896 the operands.
3897
3898 @findex prev_active_insn
3899 The way to refer to the operands in @var{condition} is to write
3900 @code{operands[@var{i}]} for operand number @var{i} (as matched by
3901 @code{(match_operand @var{i} @dots{})}). Use the variable @code{insn}
3902 to refer to the last of the insns being matched; use
3903 @code{prev_active_insn} to find the preceding insns.
3904
3905 @findex dead_or_set_p
3906 When optimizing computations with intermediate results, you can use
3907 @var{condition} to match only when the intermediate results are not used
3908 elsewhere. Use the C expression @code{dead_or_set_p (@var{insn},
3909 @var{op})}, where @var{insn} is the insn in which you expect the value
3910 to be used for the last time (from the value of @code{insn}, together
3911 with use of @code{prev_nonnote_insn}), and @var{op} is the intermediate
3912 value (from @code{operands[@var{i}]}).@refill
3913
3914 Applying the optimization means replacing the sequence of insns with one
3915 new insn. The @var{template} controls ultimate output of assembler code
3916 for this combined insn. It works exactly like the template of a
3917 @code{define_insn}. Operand numbers in this template are the same ones
3918 used in matching the original sequence of insns.
3919
3920 The result of a defined peephole optimizer does not need to match any of
3921 the insn patterns in the machine description; it does not even have an
3922 opportunity to match them. The peephole optimizer definition itself serves
3923 as the insn pattern to control how the insn is output.
3924
3925 Defined peephole optimizers are run as assembler code is being output,
3926 so the insns they produce are never combined or rearranged in any way.
3927
3928 Here is an example, taken from the 68000 machine description:
3929
3930 @smallexample
3931 (define_peephole
3932 [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int 4)))
3933 (set (match_operand:DF 0 "register_operand" "=f")
3934 (match_operand:DF 1 "register_operand" "ad"))]
3935 "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])"
3936 "*
3937 @{
3938 rtx xoperands[2];
3939 xoperands[1] = gen_rtx (REG, SImode, REGNO (operands[1]) + 1);
3940 #ifdef MOTOROLA
3941 output_asm_insn (\"move.l %1,(sp)\", xoperands);
3942 output_asm_insn (\"move.l %1,-(sp)\", operands);
3943 return \"fmove.d (sp)+,%0\";
3944 #else
3945 output_asm_insn (\"movel %1,sp@@\", xoperands);
3946 output_asm_insn (\"movel %1,sp@@-\", operands);
3947 return \"fmoved sp@@+,%0\";
3948 #endif
3949 @}
3950 ")
3951 @end smallexample
3952
3953 @need 1000
3954 The effect of this optimization is to change
3955
3956 @smallexample
3957 @group
3958 jbsr _foobar
3959 addql #4,sp
3960 movel d1,sp@@-
3961 movel d0,sp@@-
3962 fmoved sp@@+,fp0
3963 @end group
3964 @end smallexample
3965
3966 @noindent
3967 into
3968
3969 @smallexample
3970 @group
3971 jbsr _foobar
3972 movel d1,sp@@
3973 movel d0,sp@@-
3974 fmoved sp@@+,fp0
3975 @end group
3976 @end smallexample
3977
3978 @ignore
3979 @findex CC_REVERSED
3980 If a peephole matches a sequence including one or more jump insns, you must
3981 take account of the flags such as @code{CC_REVERSED} which specify that the
3982 condition codes are represented in an unusual manner. The compiler
3983 automatically alters any ordinary conditional jumps which occur in such
3984 situations, but the compiler cannot alter jumps which have been replaced by
3985 peephole optimizations. So it is up to you to alter the assembler code
3986 that the peephole produces. Supply C code to write the assembler output,
3987 and in this C code check the condition code status flags and change the
3988 assembler code as appropriate.
3989 @end ignore
3990
3991 @var{insn-pattern-1} and so on look @emph{almost} like the second
3992 operand of @code{define_insn}. There is one important difference: the
3993 second operand of @code{define_insn} consists of one or more RTX's
3994 enclosed in square brackets. Usually, there is only one: then the same
3995 action can be written as an element of a @code{define_peephole}. But
3996 when there are multiple actions in a @code{define_insn}, they are
3997 implicitly enclosed in a @code{parallel}. Then you must explicitly
3998 write the @code{parallel}, and the square brackets within it, in the
3999 @code{define_peephole}. Thus, if an insn pattern looks like this,
4000
4001 @smallexample
4002 (define_insn "divmodsi4"
4003 [(set (match_operand:SI 0 "general_operand" "=d")
4004 (div:SI (match_operand:SI 1 "general_operand" "0")
4005 (match_operand:SI 2 "general_operand" "dmsK")))
4006 (set (match_operand:SI 3 "general_operand" "=d")
4007 (mod:SI (match_dup 1) (match_dup 2)))]
4008 "TARGET_68020"
4009 "divsl%.l %2,%3:%0")
4010 @end smallexample
4011
4012 @noindent
4013 then the way to mention this insn in a peephole is as follows:
4014
4015 @smallexample
4016 (define_peephole
4017 [@dots{}
4018 (parallel
4019 [(set (match_operand:SI 0 "general_operand" "=d")
4020 (div:SI (match_operand:SI 1 "general_operand" "0")
4021 (match_operand:SI 2 "general_operand" "dmsK")))
4022 (set (match_operand:SI 3 "general_operand" "=d")
4023 (mod:SI (match_dup 1) (match_dup 2)))])
4024 @dots{}]
4025 @dots{})
4026 @end smallexample
4027
4028 @node define_peephole2
4029 @subsection RTL to RTL Peephole Optimizers
4030 @findex define_peephole2
4031
4032 The @code{define_peephole2} definition tells the compiler how to
4033 substitute one sequence of instructions for another sequence,
4034 what additional scratch registers may be needed and what their
4035 lifetimes must be.
4036
4037 @smallexample
4038 (define_peephole2
4039 [@var{insn-pattern-1}
4040 @var{insn-pattern-2}
4041 @dots{}]
4042 "@var{condition}"
4043 [@var{new-insn-pattern-1}
4044 @var{new-insn-pattern-2}
4045 @dots{}]
4046 "@var{preparation statements}")
4047 @end smallexample
4048
4049 The definition is almost identical to @code{define_split}
4050 (@pxref{Insn Splitting}) except that the pattern to match is not a
4051 single instruction, but a sequence of instructions.
4052
4053 It is possible to request additional scratch registers for use in the
4054 output template. If appropriate registers are not free, the pattern
4055 will simply not match.
4056
4057 @findex match_scratch
4058 @findex match_dup
4059 Scratch registers are requested with a @code{match_scratch} pattern at
4060 the top level of the input pattern. The allocated register (initially) will
4061 be dead at the point requested within the original sequence. If the scratch
4062 is used at more than a single point, a @code{match_dup} pattern at the
4063 top level of the input pattern marks the last position in the input sequence
4064 at which the register must be available.
4065
4066 Here is an example from the IA-32 machine description:
4067
4068 @smallexample
4069 (define_peephole2
4070 [(match_scratch:SI 2 "r")
4071 (parallel [(set (match_operand:SI 0 "register_operand" "")
4072 (match_operator:SI 3 "arith_or_logical_operator"
4073 [(match_dup 0)
4074 (match_operand:SI 1 "memory_operand" "")]))
4075 (clobber (reg:CC 17))])]
4076 "! optimize_size && ! TARGET_READ_MODIFY"
4077 [(set (match_dup 2) (match_dup 1))
4078 (parallel [(set (match_dup 0)
4079 (match_op_dup 3 [(match_dup 0) (match_dup 2)]))
4080 (clobber (reg:CC 17))])]
4081 "")
4082 @end smallexample
4083
4084 @noindent
4085 This pattern tries to split a load from its use in the hopes that we'll be
4086 able to schedule around the memory load latency. It allocates a single
4087 @code{SImode} register of class @code{GENERAL_REGS} (@code{"r"}) that needs
4088 to be live only at the point just before the arithmetic.
4089
4090 A real example requiring extended scratch lifetimes is harder to come by,
4091 so here's a silly made-up example:
4092
4093 @smallexample
4094 (define_peephole2
4095 [(match_scratch:SI 4 "r")
4096 (set (match_operand:SI 0 "" "") (match_operand:SI 1 "" ""))
4097 (set (match_operand:SI 2 "" "") (match_dup 1))
4098 (match_dup 4)
4099 (set (match_operand:SI 3 "" "") (match_dup 1))]
4100 "@var{determine 1 does not overlap 0 and 2}"
4101 [(set (match_dup 4) (match_dup 1))
4102 (set (match_dup 0) (match_dup 4))
4103 (set (match_dup 2) (match_dup 4))]
4104 (set (match_dup 3) (match_dup 4))]
4105 "")
4106 @end smallexample
4107
4108 @noindent
4109 If we had not added the @code{(match_dup 4)} in the middle of the input
4110 sequence, it might have been the case that the register we chose at the
4111 beginning of the sequence is killed by the first or second @code{set}.
4112
4113 @node Insn Attributes
4114 @section Instruction Attributes
4115 @cindex insn attributes
4116 @cindex instruction attributes
4117
4118 In addition to describing the instruction supported by the target machine,
4119 the @file{md} file also defines a group of @dfn{attributes} and a set of
4120 values for each. Every generated insn is assigned a value for each attribute.
4121 One possible attribute would be the effect that the insn has on the machine's
4122 condition code. This attribute can then be used by @code{NOTICE_UPDATE_CC}
4123 to track the condition codes.
4124
4125 @menu
4126 * Defining Attributes:: Specifying attributes and their values.
4127 * Expressions:: Valid expressions for attribute values.
4128 * Tagging Insns:: Assigning attribute values to insns.
4129 * Attr Example:: An example of assigning attributes.
4130 * Insn Lengths:: Computing the length of insns.
4131 * Constant Attributes:: Defining attributes that are constant.
4132 * Delay Slots:: Defining delay slots required for a machine.
4133 * Function Units:: Specifying information for insn scheduling.
4134 @end menu
4135
4136 @node Defining Attributes
4137 @subsection Defining Attributes and their Values
4138 @cindex defining attributes and their values
4139 @cindex attributes, defining
4140
4141 @findex define_attr
4142 The @code{define_attr} expression is used to define each attribute required
4143 by the target machine. It looks like:
4144
4145 @smallexample
4146 (define_attr @var{name} @var{list-of-values} @var{default})
4147 @end smallexample
4148
4149 @var{name} is a string specifying the name of the attribute being defined.
4150
4151 @var{list-of-values} is either a string that specifies a comma-separated
4152 list of values that can be assigned to the attribute, or a null string to
4153 indicate that the attribute takes numeric values.
4154
4155 @var{default} is an attribute expression that gives the value of this
4156 attribute for insns that match patterns whose definition does not include
4157 an explicit value for this attribute. @xref{Attr Example}, for more
4158 information on the handling of defaults. @xref{Constant Attributes},
4159 for information on attributes that do not depend on any particular insn.
4160
4161 @findex insn-attr.h
4162 For each defined attribute, a number of definitions are written to the
4163 @file{insn-attr.h} file. For cases where an explicit set of values is
4164 specified for an attribute, the following are defined:
4165
4166 @itemize @bullet
4167 @item
4168 A @samp{#define} is written for the symbol @samp{HAVE_ATTR_@var{name}}.
4169
4170 @item
4171 An enumeral class is defined for @samp{attr_@var{name}} with
4172 elements of the form @samp{@var{upper-name}_@var{upper-value}} where
4173 the attribute name and value are first converted to upper case.
4174
4175 @item
4176 A function @samp{get_attr_@var{name}} is defined that is passed an insn and
4177 returns the attribute value for that insn.
4178 @end itemize
4179
4180 For example, if the following is present in the @file{md} file:
4181
4182 @smallexample
4183 (define_attr "type" "branch,fp,load,store,arith" @dots{})
4184 @end smallexample
4185
4186 @noindent
4187 the following lines will be written to the file @file{insn-attr.h}.
4188
4189 @smallexample
4190 #define HAVE_ATTR_type
4191 enum attr_type @{TYPE_BRANCH, TYPE_FP, TYPE_LOAD,
4192 TYPE_STORE, TYPE_ARITH@};
4193 extern enum attr_type get_attr_type ();
4194 @end smallexample
4195
4196 If the attribute takes numeric values, no @code{enum} type will be
4197 defined and the function to obtain the attribute's value will return
4198 @code{int}.
4199
4200 @node Expressions
4201 @subsection Attribute Expressions
4202 @cindex attribute expressions
4203
4204 RTL expressions used to define attributes use the codes described above
4205 plus a few specific to attribute definitions, to be discussed below.
4206 Attribute value expressions must have one of the following forms:
4207
4208 @table @code
4209 @cindex @code{const_int} and attributes
4210 @item (const_int @var{i})
4211 The integer @var{i} specifies the value of a numeric attribute. @var{i}
4212 must be non-negative.
4213
4214 The value of a numeric attribute can be specified either with a
4215 @code{const_int}, or as an integer represented as a string in
4216 @code{const_string}, @code{eq_attr} (see below), @code{attr},
4217 @code{symbol_ref}, simple arithmetic expressions, and @code{set_attr}
4218 overrides on specific instructions (@pxref{Tagging Insns}).
4219
4220 @cindex @code{const_string} and attributes
4221 @item (const_string @var{value})
4222 The string @var{value} specifies a constant attribute value.
4223 If @var{value} is specified as @samp{"*"}, it means that the default value of
4224 the attribute is to be used for the insn containing this expression.
4225 @samp{"*"} obviously cannot be used in the @var{default} expression
4226 of a @code{define_attr}.@refill
4227
4228 If the attribute whose value is being specified is numeric, @var{value}
4229 must be a string containing a non-negative integer (normally
4230 @code{const_int} would be used in this case). Otherwise, it must
4231 contain one of the valid values for the attribute.
4232
4233 @cindex @code{if_then_else} and attributes
4234 @item (if_then_else @var{test} @var{true-value} @var{false-value})
4235 @var{test} specifies an attribute test, whose format is defined below.
4236 The value of this expression is @var{true-value} if @var{test} is true,
4237 otherwise it is @var{false-value}.
4238
4239 @cindex @code{cond} and attributes
4240 @item (cond [@var{test1} @var{value1} @dots{}] @var{default})
4241 The first operand of this expression is a vector containing an even
4242 number of expressions and consisting of pairs of @var{test} and @var{value}
4243 expressions. The value of the @code{cond} expression is that of the
4244 @var{value} corresponding to the first true @var{test} expression. If
4245 none of the @var{test} expressions are true, the value of the @code{cond}
4246 expression is that of the @var{default} expression.
4247 @end table
4248
4249 @var{test} expressions can have one of the following forms:
4250
4251 @table @code
4252 @cindex @code{const_int} and attribute tests
4253 @item (const_int @var{i})
4254 This test is true if @var{i} is non-zero and false otherwise.
4255
4256 @cindex @code{not} and attributes
4257 @cindex @code{ior} and attributes
4258 @cindex @code{and} and attributes
4259 @item (not @var{test})
4260 @itemx (ior @var{test1} @var{test2})
4261 @itemx (and @var{test1} @var{test2})
4262 These tests are true if the indicated logical function is true.
4263
4264 @cindex @code{match_operand} and attributes
4265 @item (match_operand:@var{m} @var{n} @var{pred} @var{constraints})
4266 This test is true if operand @var{n} of the insn whose attribute value
4267 is being determined has mode @var{m} (this part of the test is ignored
4268 if @var{m} is @code{VOIDmode}) and the function specified by the string
4269 @var{pred} returns a non-zero value when passed operand @var{n} and mode
4270 @var{m} (this part of the test is ignored if @var{pred} is the null
4271 string).
4272
4273 The @var{constraints} operand is ignored and should be the null string.
4274
4275 @cindex @code{le} and attributes
4276 @cindex @code{leu} and attributes
4277 @cindex @code{lt} and attributes
4278 @cindex @code{gt} and attributes
4279 @cindex @code{gtu} and attributes
4280 @cindex @code{ge} and attributes
4281 @cindex @code{geu} and attributes
4282 @cindex @code{ne} and attributes
4283 @cindex @code{eq} and attributes
4284 @cindex @code{plus} and attributes
4285 @cindex @code{minus} and attributes
4286 @cindex @code{mult} and attributes
4287 @cindex @code{div} and attributes
4288 @cindex @code{mod} and attributes
4289 @cindex @code{abs} and attributes
4290 @cindex @code{neg} and attributes
4291 @cindex @code{ashift} and attributes
4292 @cindex @code{lshiftrt} and attributes
4293 @cindex @code{ashiftrt} and attributes
4294 @item (le @var{arith1} @var{arith2})
4295 @itemx (leu @var{arith1} @var{arith2})
4296 @itemx (lt @var{arith1} @var{arith2})
4297 @itemx (ltu @var{arith1} @var{arith2})
4298 @itemx (gt @var{arith1} @var{arith2})
4299 @itemx (gtu @var{arith1} @var{arith2})
4300 @itemx (ge @var{arith1} @var{arith2})
4301 @itemx (geu @var{arith1} @var{arith2})
4302 @itemx (ne @var{arith1} @var{arith2})
4303 @itemx (eq @var{arith1} @var{arith2})
4304 These tests are true if the indicated comparison of the two arithmetic
4305 expressions is true. Arithmetic expressions are formed with
4306 @code{plus}, @code{minus}, @code{mult}, @code{div}, @code{mod},
4307 @code{abs}, @code{neg}, @code{and}, @code{ior}, @code{xor}, @code{not},
4308 @code{ashift}, @code{lshiftrt}, and @code{ashiftrt} expressions.@refill
4309
4310 @findex get_attr
4311 @code{const_int} and @code{symbol_ref} are always valid terms (@pxref{Insn
4312 Lengths},for additional forms). @code{symbol_ref} is a string
4313 denoting a C expression that yields an @code{int} when evaluated by the
4314 @samp{get_attr_@dots{}} routine. It should normally be a global
4315 variable.@refill
4316
4317 @findex eq_attr
4318 @item (eq_attr @var{name} @var{value})
4319 @var{name} is a string specifying the name of an attribute.
4320
4321 @var{value} is a string that is either a valid value for attribute
4322 @var{name}, a comma-separated list of values, or @samp{!} followed by a
4323 value or list. If @var{value} does not begin with a @samp{!}, this
4324 test is true if the value of the @var{name} attribute of the current
4325 insn is in the list specified by @var{value}. If @var{value} begins
4326 with a @samp{!}, this test is true if the attribute's value is
4327 @emph{not} in the specified list.
4328
4329 For example,
4330
4331 @smallexample
4332 (eq_attr "type" "load,store")
4333 @end smallexample
4334
4335 @noindent
4336 is equivalent to
4337
4338 @smallexample
4339 (ior (eq_attr "type" "load") (eq_attr "type" "store"))
4340 @end smallexample
4341
4342 If @var{name} specifies an attribute of @samp{alternative}, it refers to the
4343 value of the compiler variable @code{which_alternative}
4344 (@pxref{Output Statement}) and the values must be small integers. For
4345 example,@refill
4346
4347 @smallexample
4348 (eq_attr "alternative" "2,3")
4349 @end smallexample
4350
4351 @noindent
4352 is equivalent to
4353
4354 @smallexample
4355 (ior (eq (symbol_ref "which_alternative") (const_int 2))
4356 (eq (symbol_ref "which_alternative") (const_int 3)))
4357 @end smallexample
4358
4359 Note that, for most attributes, an @code{eq_attr} test is simplified in cases
4360 where the value of the attribute being tested is known for all insns matching
4361 a particular pattern. This is by far the most common case.@refill
4362
4363 @findex attr_flag
4364 @item (attr_flag @var{name})
4365 The value of an @code{attr_flag} expression is true if the flag
4366 specified by @var{name} is true for the @code{insn} currently being
4367 scheduled.
4368
4369 @var{name} is a string specifying one of a fixed set of flags to test.
4370 Test the flags @code{forward} and @code{backward} to determine the
4371 direction of a conditional branch. Test the flags @code{very_likely},
4372 @code{likely}, @code{very_unlikely}, and @code{unlikely} to determine
4373 if a conditional branch is expected to be taken.
4374
4375 If the @code{very_likely} flag is true, then the @code{likely} flag is also
4376 true. Likewise for the @code{very_unlikely} and @code{unlikely} flags.
4377
4378 This example describes a conditional branch delay slot which
4379 can be nullified for forward branches that are taken (annul-true) or
4380 for backward branches which are not taken (annul-false).
4381
4382 @smallexample
4383 (define_delay (eq_attr "type" "cbranch")
4384 [(eq_attr "in_branch_delay" "true")
4385 (and (eq_attr "in_branch_delay" "true")
4386 (attr_flag "forward"))
4387 (and (eq_attr "in_branch_delay" "true")
4388 (attr_flag "backward"))])
4389 @end smallexample
4390
4391 The @code{forward} and @code{backward} flags are false if the current
4392 @code{insn} being scheduled is not a conditional branch.
4393
4394 The @code{very_likely} and @code{likely} flags are true if the
4395 @code{insn} being scheduled is not a conditional branch.
4396 The @code{very_unlikely} and @code{unlikely} flags are false if the
4397 @code{insn} being scheduled is not a conditional branch.
4398
4399 @code{attr_flag} is only used during delay slot scheduling and has no
4400 meaning to other passes of the compiler.
4401
4402 @findex attr
4403 @item (attr @var{name})
4404 The value of another attribute is returned. This is most useful
4405 for numeric attributes, as @code{eq_attr} and @code{attr_flag}
4406 produce more efficient code for non-numeric attributes.
4407 @end table
4408
4409 @node Tagging Insns
4410 @subsection Assigning Attribute Values to Insns
4411 @cindex tagging insns
4412 @cindex assigning attribute values to insns
4413
4414 The value assigned to an attribute of an insn is primarily determined by
4415 which pattern is matched by that insn (or which @code{define_peephole}
4416 generated it). Every @code{define_insn} and @code{define_peephole} can
4417 have an optional last argument to specify the values of attributes for
4418 matching insns. The value of any attribute not specified in a particular
4419 insn is set to the default value for that attribute, as specified in its
4420 @code{define_attr}. Extensive use of default values for attributes
4421 permits the specification of the values for only one or two attributes
4422 in the definition of most insn patterns, as seen in the example in the
4423 next section.@refill
4424
4425 The optional last argument of @code{define_insn} and
4426 @code{define_peephole} is a vector of expressions, each of which defines
4427 the value for a single attribute. The most general way of assigning an
4428 attribute's value is to use a @code{set} expression whose first operand is an
4429 @code{attr} expression giving the name of the attribute being set. The
4430 second operand of the @code{set} is an attribute expression
4431 (@pxref{Expressions}) giving the value of the attribute.@refill
4432
4433 When the attribute value depends on the @samp{alternative} attribute
4434 (i.e., which is the applicable alternative in the constraint of the
4435 insn), the @code{set_attr_alternative} expression can be used. It
4436 allows the specification of a vector of attribute expressions, one for
4437 each alternative.
4438
4439 @findex set_attr
4440 When the generality of arbitrary attribute expressions is not required,
4441 the simpler @code{set_attr} expression can be used, which allows
4442 specifying a string giving either a single attribute value or a list
4443 of attribute values, one for each alternative.
4444
4445 The form of each of the above specifications is shown below. In each case,
4446 @var{name} is a string specifying the attribute to be set.
4447
4448 @table @code
4449 @item (set_attr @var{name} @var{value-string})
4450 @var{value-string} is either a string giving the desired attribute value,
4451 or a string containing a comma-separated list giving the values for
4452 succeeding alternatives. The number of elements must match the number
4453 of alternatives in the constraint of the insn pattern.
4454
4455 Note that it may be useful to specify @samp{*} for some alternative, in
4456 which case the attribute will assume its default value for insns matching
4457 that alternative.
4458
4459 @findex set_attr_alternative
4460 @item (set_attr_alternative @var{name} [@var{value1} @var{value2} @dots{}])
4461 Depending on the alternative of the insn, the value will be one of the
4462 specified values. This is a shorthand for using a @code{cond} with
4463 tests on the @samp{alternative} attribute.
4464
4465 @findex attr
4466 @item (set (attr @var{name}) @var{value})
4467 The first operand of this @code{set} must be the special RTL expression
4468 @code{attr}, whose sole operand is a string giving the name of the
4469 attribute being set. @var{value} is the value of the attribute.
4470 @end table
4471
4472 The following shows three different ways of representing the same
4473 attribute value specification:
4474
4475 @smallexample
4476 (set_attr "type" "load,store,arith")
4477
4478 (set_attr_alternative "type"
4479 [(const_string "load") (const_string "store")
4480 (const_string "arith")])
4481
4482 (set (attr "type")
4483 (cond [(eq_attr "alternative" "1") (const_string "load")
4484 (eq_attr "alternative" "2") (const_string "store")]
4485 (const_string "arith")))
4486 @end smallexample
4487
4488 @need 1000
4489 @findex define_asm_attributes
4490 The @code{define_asm_attributes} expression provides a mechanism to
4491 specify the attributes assigned to insns produced from an @code{asm}
4492 statement. It has the form:
4493
4494 @smallexample
4495 (define_asm_attributes [@var{attr-sets}])
4496 @end smallexample
4497
4498 @noindent
4499 where @var{attr-sets} is specified the same as for both the
4500 @code{define_insn} and the @code{define_peephole} expressions.
4501
4502 These values will typically be the ``worst case'' attribute values. For
4503 example, they might indicate that the condition code will be clobbered.
4504
4505 A specification for a @code{length} attribute is handled specially. The
4506 way to compute the length of an @code{asm} insn is to multiply the
4507 length specified in the expression @code{define_asm_attributes} by the
4508 number of machine instructions specified in the @code{asm} statement,
4509 determined by counting the number of semicolons and newlines in the
4510 string. Therefore, the value of the @code{length} attribute specified
4511 in a @code{define_asm_attributes} should be the maximum possible length
4512 of a single machine instruction.
4513
4514 @node Attr Example
4515 @subsection Example of Attribute Specifications
4516 @cindex attribute specifications example
4517 @cindex attribute specifications
4518
4519 The judicious use of defaulting is important in the efficient use of
4520 insn attributes. Typically, insns are divided into @dfn{types} and an
4521 attribute, customarily called @code{type}, is used to represent this
4522 value. This attribute is normally used only to define the default value
4523 for other attributes. An example will clarify this usage.
4524
4525 Assume we have a RISC machine with a condition code and in which only
4526 full-word operations are performed in registers. Let us assume that we
4527 can divide all insns into loads, stores, (integer) arithmetic
4528 operations, floating point operations, and branches.
4529
4530 Here we will concern ourselves with determining the effect of an insn on
4531 the condition code and will limit ourselves to the following possible
4532 effects: The condition code can be set unpredictably (clobbered), not
4533 be changed, be set to agree with the results of the operation, or only
4534 changed if the item previously set into the condition code has been
4535 modified.
4536
4537 Here is part of a sample @file{md} file for such a machine:
4538
4539 @smallexample
4540 (define_attr "type" "load,store,arith,fp,branch" (const_string "arith"))
4541
4542 (define_attr "cc" "clobber,unchanged,set,change0"
4543 (cond [(eq_attr "type" "load")
4544 (const_string "change0")
4545 (eq_attr "type" "store,branch")
4546 (const_string "unchanged")
4547 (eq_attr "type" "arith")
4548 (if_then_else (match_operand:SI 0 "" "")
4549 (const_string "set")
4550 (const_string "clobber"))]
4551 (const_string "clobber")))
4552
4553 (define_insn ""
4554 [(set (match_operand:SI 0 "general_operand" "=r,r,m")
4555 (match_operand:SI 1 "general_operand" "r,m,r"))]
4556 ""
4557 "@@
4558 move %0,%1
4559 load %0,%1
4560 store %0,%1"
4561 [(set_attr "type" "arith,load,store")])
4562 @end smallexample
4563
4564 Note that we assume in the above example that arithmetic operations
4565 performed on quantities smaller than a machine word clobber the condition
4566 code since they will set the condition code to a value corresponding to the
4567 full-word result.
4568
4569 @node Insn Lengths
4570 @subsection Computing the Length of an Insn
4571 @cindex insn lengths, computing
4572 @cindex computing the length of an insn
4573
4574 For many machines, multiple types of branch instructions are provided, each
4575 for different length branch displacements. In most cases, the assembler
4576 will choose the correct instruction to use. However, when the assembler
4577 cannot do so, GCC can when a special attribute, the @samp{length}
4578 attribute, is defined. This attribute must be defined to have numeric
4579 values by specifying a null string in its @code{define_attr}.
4580
4581 In the case of the @samp{length} attribute, two additional forms of
4582 arithmetic terms are allowed in test expressions:
4583
4584 @table @code
4585 @cindex @code{match_dup} and attributes
4586 @item (match_dup @var{n})
4587 This refers to the address of operand @var{n} of the current insn, which
4588 must be a @code{label_ref}.
4589
4590 @cindex @code{pc} and attributes
4591 @item (pc)
4592 This refers to the address of the @emph{current} insn. It might have
4593 been more consistent with other usage to make this the address of the
4594 @emph{next} insn but this would be confusing because the length of the
4595 current insn is to be computed.
4596 @end table
4597
4598 @cindex @code{addr_vec}, length of
4599 @cindex @code{addr_diff_vec}, length of
4600 For normal insns, the length will be determined by value of the
4601 @samp{length} attribute. In the case of @code{addr_vec} and
4602 @code{addr_diff_vec} insn patterns, the length is computed as
4603 the number of vectors multiplied by the size of each vector.
4604
4605 Lengths are measured in addressable storage units (bytes).
4606
4607 The following macros can be used to refine the length computation:
4608
4609 @table @code
4610 @findex FIRST_INSN_ADDRESS
4611 @item FIRST_INSN_ADDRESS
4612 When the @code{length} insn attribute is used, this macro specifies the
4613 value to be assigned to the address of the first insn in a function. If
4614 not specified, 0 is used.
4615
4616 @findex ADJUST_INSN_LENGTH
4617 @item ADJUST_INSN_LENGTH (@var{insn}, @var{length})
4618 If defined, modifies the length assigned to instruction @var{insn} as a
4619 function of the context in which it is used. @var{length} is an lvalue
4620 that contains the initially computed length of the insn and should be
4621 updated with the correct length of the insn.
4622
4623 This macro will normally not be required. A case in which it is
4624 required is the ROMP. On this machine, the size of an @code{addr_vec}
4625 insn must be increased by two to compensate for the fact that alignment
4626 may be required.
4627 @end table
4628
4629 @findex get_attr_length
4630 The routine that returns @code{get_attr_length} (the value of the
4631 @code{length} attribute) can be used by the output routine to
4632 determine the form of the branch instruction to be written, as the
4633 example below illustrates.
4634
4635 As an example of the specification of variable-length branches, consider
4636 the IBM 360. If we adopt the convention that a register will be set to
4637 the starting address of a function, we can jump to labels within 4k of
4638 the start using a four-byte instruction. Otherwise, we need a six-byte
4639 sequence to load the address from memory and then branch to it.
4640
4641 On such a machine, a pattern for a branch instruction might be specified
4642 as follows:
4643
4644 @smallexample
4645 (define_insn "jump"
4646 [(set (pc)
4647 (label_ref (match_operand 0 "" "")))]
4648 ""
4649 "*
4650 @{
4651 return (get_attr_length (insn) == 4
4652 ? \"b %l0\" : \"l r15,=a(%l0); br r15\");
4653 @}"
4654 [(set (attr "length") (if_then_else (lt (match_dup 0) (const_int 4096))
4655 (const_int 4)
4656 (const_int 6)))])
4657 @end smallexample
4658
4659 @node Constant Attributes
4660 @subsection Constant Attributes
4661 @cindex constant attributes
4662
4663 A special form of @code{define_attr}, where the expression for the
4664 default value is a @code{const} expression, indicates an attribute that
4665 is constant for a given run of the compiler. Constant attributes may be
4666 used to specify which variety of processor is used. For example,
4667
4668 @smallexample
4669 (define_attr "cpu" "m88100,m88110,m88000"
4670 (const
4671 (cond [(symbol_ref "TARGET_88100") (const_string "m88100")
4672 (symbol_ref "TARGET_88110") (const_string "m88110")]
4673 (const_string "m88000"))))
4674
4675 (define_attr "memory" "fast,slow"
4676 (const
4677 (if_then_else (symbol_ref "TARGET_FAST_MEM")
4678 (const_string "fast")
4679 (const_string "slow"))))
4680 @end smallexample
4681
4682 The routine generated for constant attributes has no parameters as it
4683 does not depend on any particular insn. RTL expressions used to define
4684 the value of a constant attribute may use the @code{symbol_ref} form,
4685 but may not use either the @code{match_operand} form or @code{eq_attr}
4686 forms involving insn attributes.
4687
4688 @node Delay Slots
4689 @subsection Delay Slot Scheduling
4690 @cindex delay slots, defining
4691
4692 The insn attribute mechanism can be used to specify the requirements for
4693 delay slots, if any, on a target machine. An instruction is said to
4694 require a @dfn{delay slot} if some instructions that are physically
4695 after the instruction are executed as if they were located before it.
4696 Classic examples are branch and call instructions, which often execute
4697 the following instruction before the branch or call is performed.
4698
4699 On some machines, conditional branch instructions can optionally
4700 @dfn{annul} instructions in the delay slot. This means that the
4701 instruction will not be executed for certain branch outcomes. Both
4702 instructions that annul if the branch is true and instructions that
4703 annul if the branch is false are supported.
4704
4705 Delay slot scheduling differs from instruction scheduling in that
4706 determining whether an instruction needs a delay slot is dependent only
4707 on the type of instruction being generated, not on data flow between the
4708 instructions. See the next section for a discussion of data-dependent
4709 instruction scheduling.
4710
4711 @findex define_delay
4712 The requirement of an insn needing one or more delay slots is indicated
4713 via the @code{define_delay} expression. It has the following form:
4714
4715 @smallexample
4716 (define_delay @var{test}
4717 [@var{delay-1} @var{annul-true-1} @var{annul-false-1}
4718 @var{delay-2} @var{annul-true-2} @var{annul-false-2}
4719 @dots{}])
4720 @end smallexample
4721
4722 @var{test} is an attribute test that indicates whether this
4723 @code{define_delay} applies to a particular insn. If so, the number of
4724 required delay slots is determined by the length of the vector specified
4725 as the second argument. An insn placed in delay slot @var{n} must
4726 satisfy attribute test @var{delay-n}. @var{annul-true-n} is an
4727 attribute test that specifies which insns may be annulled if the branch
4728 is true. Similarly, @var{annul-false-n} specifies which insns in the
4729 delay slot may be annulled if the branch is false. If annulling is not
4730 supported for that delay slot, @code{(nil)} should be coded.@refill
4731
4732 For example, in the common case where branch and call insns require
4733 a single delay slot, which may contain any insn other than a branch or
4734 call, the following would be placed in the @file{md} file:
4735
4736 @smallexample
4737 (define_delay (eq_attr "type" "branch,call")
4738 [(eq_attr "type" "!branch,call") (nil) (nil)])
4739 @end smallexample
4740
4741 Multiple @code{define_delay} expressions may be specified. In this
4742 case, each such expression specifies different delay slot requirements
4743 and there must be no insn for which tests in two @code{define_delay}
4744 expressions are both true.
4745
4746 For example, if we have a machine that requires one delay slot for branches
4747 but two for calls, no delay slot can contain a branch or call insn,
4748 and any valid insn in the delay slot for the branch can be annulled if the
4749 branch is true, we might represent this as follows:
4750
4751 @smallexample
4752 (define_delay (eq_attr "type" "branch")
4753 [(eq_attr "type" "!branch,call")
4754 (eq_attr "type" "!branch,call")
4755 (nil)])
4756
4757 (define_delay (eq_attr "type" "call")
4758 [(eq_attr "type" "!branch,call") (nil) (nil)
4759 (eq_attr "type" "!branch,call") (nil) (nil)])
4760 @end smallexample
4761 @c the above is *still* too long. --mew 4feb93
4762
4763 @node Function Units
4764 @subsection Specifying Function Units
4765 @cindex function units, for scheduling
4766
4767 On most RISC machines, there are instructions whose results are not
4768 available for a specific number of cycles. Common cases are instructions
4769 that load data from memory. On many machines, a pipeline stall will result
4770 if the data is referenced too soon after the load instruction.
4771
4772 In addition, many newer microprocessors have multiple function units, usually
4773 one for integer and one for floating point, and often will incur pipeline
4774 stalls when a result that is needed is not yet ready.
4775
4776 The descriptions in this section allow the specification of how much
4777 time must elapse between the execution of an instruction and the time
4778 when its result is used. It also allows specification of when the
4779 execution of an instruction will delay execution of similar instructions
4780 due to function unit conflicts.
4781
4782 For the purposes of the specifications in this section, a machine is
4783 divided into @dfn{function units}, each of which execute a specific
4784 class of instructions in first-in-first-out order. Function units that
4785 accept one instruction each cycle and allow a result to be used in the
4786 succeeding instruction (usually via forwarding) need not be specified.
4787 Classic RISC microprocessors will normally have a single function unit,
4788 which we can call @samp{memory}. The newer ``superscalar'' processors
4789 will often have function units for floating point operations, usually at
4790 least a floating point adder and multiplier.
4791
4792 @findex define_function_unit
4793 Each usage of a function units by a class of insns is specified with a
4794 @code{define_function_unit} expression, which looks like this:
4795
4796 @smallexample
4797 (define_function_unit @var{name} @var{multiplicity} @var{simultaneity}
4798 @var{test} @var{ready-delay} @var{issue-delay}
4799 [@var{conflict-list}])
4800 @end smallexample
4801
4802 @var{name} is a string giving the name of the function unit.
4803
4804 @var{multiplicity} is an integer specifying the number of identical
4805 units in the processor. If more than one unit is specified, they will
4806 be scheduled independently. Only truly independent units should be
4807 counted; a pipelined unit should be specified as a single unit. (The
4808 only common example of a machine that has multiple function units for a
4809 single instruction class that are truly independent and not pipelined
4810 are the two multiply and two increment units of the CDC 6600.)
4811
4812 @var{simultaneity} specifies the maximum number of insns that can be
4813 executing in each instance of the function unit simultaneously or zero
4814 if the unit is pipelined and has no limit.
4815
4816 All @code{define_function_unit} definitions referring to function unit
4817 @var{name} must have the same name and values for @var{multiplicity} and
4818 @var{simultaneity}.
4819
4820 @var{test} is an attribute test that selects the insns we are describing
4821 in this definition. Note that an insn may use more than one function
4822 unit and a function unit may be specified in more than one
4823 @code{define_function_unit}.
4824
4825 @var{ready-delay} is an integer that specifies the number of cycles
4826 after which the result of the instruction can be used without
4827 introducing any stalls.
4828
4829 @var{issue-delay} is an integer that specifies the number of cycles
4830 after the instruction matching the @var{test} expression begins using
4831 this unit until a subsequent instruction can begin. A cost of @var{N}
4832 indicates an @var{N-1} cycle delay. A subsequent instruction may also
4833 be delayed if an earlier instruction has a longer @var{ready-delay}
4834 value. This blocking effect is computed using the @var{simultaneity},
4835 @var{ready-delay}, @var{issue-delay}, and @var{conflict-list} terms.
4836 For a normal non-pipelined function unit, @var{simultaneity} is one, the
4837 unit is taken to block for the @var{ready-delay} cycles of the executing
4838 insn, and smaller values of @var{issue-delay} are ignored.
4839
4840 @var{conflict-list} is an optional list giving detailed conflict costs
4841 for this unit. If specified, it is a list of condition test expressions
4842 to be applied to insns chosen to execute in @var{name} following the
4843 particular insn matching @var{test} that is already executing in
4844 @var{name}. For each insn in the list, @var{issue-delay} specifies the
4845 conflict cost; for insns not in the list, the cost is zero. If not
4846 specified, @var{conflict-list} defaults to all instructions that use the
4847 function unit.
4848
4849 Typical uses of this vector are where a floating point function unit can
4850 pipeline either single- or double-precision operations, but not both, or
4851 where a memory unit can pipeline loads, but not stores, etc.
4852
4853 As an example, consider a classic RISC machine where the result of a
4854 load instruction is not available for two cycles (a single ``delay''
4855 instruction is required) and where only one load instruction can be executed
4856 simultaneously. This would be specified as:
4857
4858 @smallexample
4859 (define_function_unit "memory" 1 1 (eq_attr "type" "load") 2 0)
4860 @end smallexample
4861
4862 For the case of a floating point function unit that can pipeline either
4863 single or double precision, but not both, the following could be specified:
4864
4865 @smallexample
4866 (define_function_unit
4867 "fp" 1 0 (eq_attr "type" "sp_fp") 4 4 [(eq_attr "type" "dp_fp")])
4868 (define_function_unit
4869 "fp" 1 0 (eq_attr "type" "dp_fp") 4 4 [(eq_attr "type" "sp_fp")])
4870 @end smallexample
4871
4872 @strong{Note:} The scheduler attempts to avoid function unit conflicts
4873 and uses all the specifications in the @code{define_function_unit}
4874 expression. It has recently come to our attention that these
4875 specifications may not allow modeling of some of the newer
4876 ``superscalar'' processors that have insns using multiple pipelined
4877 units. These insns will cause a potential conflict for the second unit
4878 used during their execution and there is no way of representing that
4879 conflict. We welcome any examples of how function unit conflicts work
4880 in such processors and suggestions for their representation.
4881 @end ifset
4882
4883 @node Conditional Execution
4884 @section Conditional Execution
4885 @cindex conditional execution
4886 @cindex predication
4887
4888 A number of architectures provide for some form of conditional
4889 execution, or predication. The hallmark of this feature is the
4890 ability to nullify most of the instructions in the instruction set.
4891 When the instruction set is large and not entirely symmetric, it
4892 can be quite tedious to describe these forms directly in the
4893 @file{.md} file. An alternative is the @code{define_cond_exec} template.
4894
4895 @findex define_cond_exec
4896 @smallexample
4897 (define_cond_exec
4898 [@var{predicate-pattern}]
4899 "@var{condition}"
4900 "@var{output template}")
4901 @end smallexample
4902
4903 @var{predicate-pattern} is the condition that must be true for the
4904 insn to be executed at runtime and should match a relational operator.
4905 One can use @code{match_operator} to match several relational operators
4906 at once. Any @code{match_operand} operands must have no more than one
4907 alternative.
4908
4909 @var{condition} is a C expression that must be true for the generated
4910 pattern to match.
4911
4912 @findex current_insn_predicate
4913 @var{output template} is a string similar to the @code{define_insn}
4914 output template (@pxref{Output Template}), except that the @samp{*}
4915 and @samp{@@} special cases do not apply. This is only useful if the
4916 assembly text for the predicate is a simple prefix to the main insn.
4917 In order to handle the general case, there is a global variable
4918 @code{current_insn_predicate} that will contain the entire predicate
4919 if the current insn is predicated, and will otherwise be @code{NULL}.
4920
4921 When @code{define_cond_exec} is used, an implicit reference to
4922 the @code{predicable} instruction attribute is made.
4923 @xref{Insn Attributes}. This attribute must be boolean (i.e. have
4924 exactly two elements in its @var{list-of-values}). Further, it must
4925 not be used with complex expressions. That is, the default and all
4926 uses in the insns must be a simple constant, not dependent on the
4927 alternative or anything else.
4928
4929 For each @code{define_insn} for which the @code{predicable}
4930 attribute is true, a new @code{define_insn} pattern will be
4931 generated that matches a predicated version of the instruction.
4932 For example,
4933
4934 @smallexample
4935 (define_insn "addsi"
4936 [(set (match_operand:SI 0 "register_operand" "r")
4937 (plus:SI (match_operand:SI 1 "register_operand" "r")
4938 (match_operand:SI 2 "register_operand" "r")))]
4939 "@var{test1}"
4940 "add %2,%1,%0")
4941
4942 (define_cond_exec
4943 [(ne (match_operand:CC 0 "register_operand" "c")
4944 (const_int 0))]
4945 "@var{test2}"
4946 "(%0)")
4947 @end smallexample
4948
4949 @noindent
4950 generates a new pattern
4951
4952 @smallexample
4953 (define_insn ""
4954 [(cond_exec
4955 (ne (match_operand:CC 3 "register_operand" "c") (const_int 0))
4956 (set (match_operand:SI 0 "register_operand" "r")
4957 (plus:SI (match_operand:SI 1 "register_operand" "r")
4958 (match_operand:SI 2 "register_operand" "r"))))]
4959 "(@var{test2}) && (@var{test1})"
4960 "(%3) add %2,%1,%0")
4961 @end smallexample
4962
4963 @node Constant Definitions
4964 @section Constant Definitions
4965 @cindex constant definitions
4966 @findex define_constants
4967
4968 Using literal constants inside instruction patterns reduces legibility and
4969 can be a maintenance problem.
4970
4971 To overcome this problem, you may use the @code{define_constants}
4972 expression. It contains a vector of name-value pairs. From that
4973 point on, wherever any of the names appears in the MD file, it is as
4974 if the corresponding value had been written instead. You may use
4975 @code{define_constants} multiple times; each appearance adds more
4976 constants to the table. It is an error to redefine a constant with
4977 a different value.
4978
4979 To come back to the a29k load multiple example, instead of
4980
4981 @smallexample
4982 (define_insn ""
4983 [(match_parallel 0 "load_multiple_operation"
4984 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
4985 (match_operand:SI 2 "memory_operand" "m"))
4986 (use (reg:SI 179))
4987 (clobber (reg:SI 179))])]
4988 ""
4989 "loadm 0,0,%1,%2")
4990 @end smallexample
4991
4992 You could write:
4993
4994 @smallexample
4995 (define_constants [
4996 (R_BP 177)
4997 (R_FC 178)
4998 (R_CR 179)
4999 (R_Q 180)
5000 ])
5001
5002 (define_insn ""
5003 [(match_parallel 0 "load_multiple_operation"
5004 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
5005 (match_operand:SI 2 "memory_operand" "m"))
5006 (use (reg:SI R_CR))
5007 (clobber (reg:SI R_CR))])]
5008 ""
5009 "loadm 0,0,%1,%2")
5010 @end smallexample
5011
5012 The constants that are defined with a define_constant are also output
5013 in the insn-codes.h header file as #defines.