genattrtab.c: Don't handle MATCH_INSN.
[gcc.git] / gcc / rtl.def
1 /* This file contains the definitions and documentation for the
2 Register Transfer Expressions (rtx's) that make up the
3 Register Transfer Language (rtl) used in the Back End of the GNU compiler.
4 Copyright (C) 1987, 1988, 1992, 1994, 1995, 1997, 1998, 1999, 2000, 2004
5 Free Software Foundation, Inc.
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to the Free
21 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 02111-1307, USA. */
23
24
25 /* Expression definitions and descriptions for all targets are in this file.
26 Some will not be used for some targets.
27
28 The fields in the cpp macro call "DEF_RTL_EXPR()"
29 are used to create declarations in the C source of the compiler.
30
31 The fields are:
32
33 1. The internal name of the rtx used in the C source.
34 It is a tag in the enumeration "enum rtx_code" defined in "rtl.h".
35 By convention these are in UPPER_CASE.
36
37 2. The name of the rtx in the external ASCII format read by
38 read_rtx(), and printed by print_rtx().
39 These names are stored in rtx_name[].
40 By convention these are the internal (field 1) names in lower_case.
41
42 3. The print format, and type of each rtx->u.fld[] (field) in this rtx.
43 These formats are stored in rtx_format[].
44 The meaning of the formats is documented in front of this array in rtl.c
45
46 4. The class of the rtx. These are stored in rtx_class and are accessed
47 via the GET_RTX_CLASS macro. They are defined as follows:
48
49 "o" an rtx code that can be used to represent an object (e.g, REG, MEM)
50 "<" an rtx code for a comparison (e.g, EQ, NE, LT)
51 "1" an rtx code for a unary arithmetic expression (e.g, NEG, NOT)
52 "c" an rtx code for a commutative binary operation (e.g,, PLUS, MULT)
53 "3" an rtx code for a non-bitfield three input operation (IF_THEN_ELSE)
54 "2" an rtx code for a non-commutative binary operation (e.g., MINUS, DIV)
55 "b" an rtx code for a bit-field operation (ZERO_EXTRACT, SIGN_EXTRACT)
56 "i" an rtx code for a machine insn (INSN, JUMP_INSN, CALL_INSN)
57 "m" an rtx code for something that matches in insns (e.g, MATCH_DUP)
58 "g" an rtx code for grouping insns together (e.g, GROUP_PARALLEL)
59 "a" an rtx code for autoincrement addressing modes (e.g. POST_DEC)
60 "x" everything else
61
62 */
63
64 /* ---------------------------------------------------------------------
65 Expressions (and "meta" expressions) used for structuring the
66 rtl representation of a program.
67 --------------------------------------------------------------------- */
68
69 /* an expression code name unknown to the reader */
70 DEF_RTL_EXPR(UNKNOWN, "UnKnown", "*", 'x')
71
72 /* (NIL) is used by rtl reader and printer to represent a null pointer. */
73
74 DEF_RTL_EXPR(NIL, "nil", "*", 'x')
75
76
77 /* include a file */
78
79 DEF_RTL_EXPR(INCLUDE, "include", "s", 'x')
80
81 /* ---------------------------------------------------------------------
82 Expressions used in constructing lists.
83 --------------------------------------------------------------------- */
84
85 /* a linked list of expressions */
86 DEF_RTL_EXPR(EXPR_LIST, "expr_list", "ee", 'x')
87
88 /* a linked list of instructions.
89 The insns are represented in print by their uids. */
90 DEF_RTL_EXPR(INSN_LIST, "insn_list", "ue", 'x')
91
92 /* ----------------------------------------------------------------------
93 Expression types for machine descriptions.
94 These do not appear in actual rtl code in the compiler.
95 ---------------------------------------------------------------------- */
96
97 /* Appears only in machine descriptions.
98 Means use the function named by the second arg (the string)
99 as a predicate; if matched, store the structure that was matched
100 in the operand table at index specified by the first arg (the integer).
101 If the second arg is the null string, the structure is just stored.
102
103 A third string argument indicates to the register allocator restrictions
104 on where the operand can be allocated.
105
106 If the target needs no restriction on any instruction this field should
107 be the null string.
108
109 The string is prepended by:
110 '=' to indicate the operand is only written to.
111 '+' to indicate the operand is both read and written to.
112
113 Each character in the string represents an allocable class for an operand.
114 'g' indicates the operand can be any valid class.
115 'i' indicates the operand can be immediate (in the instruction) data.
116 'r' indicates the operand can be in a register.
117 'm' indicates the operand can be in memory.
118 'o' a subset of the 'm' class. Those memory addressing modes that
119 can be offset at compile time (have a constant added to them).
120
121 Other characters indicate target dependent operand classes and
122 are described in each target's machine description.
123
124 For instructions with more than one operand, sets of classes can be
125 separated by a comma to indicate the appropriate multi-operand constraints.
126 There must be a 1 to 1 correspondence between these sets of classes in
127 all operands for an instruction.
128 */
129 DEF_RTL_EXPR(MATCH_OPERAND, "match_operand", "iss", 'm')
130
131 /* Appears only in machine descriptions.
132 Means match a SCRATCH or a register. When used to generate rtl, a
133 SCRATCH is generated. As for MATCH_OPERAND, the mode specifies
134 the desired mode and the first argument is the operand number.
135 The second argument is the constraint. */
136 DEF_RTL_EXPR(MATCH_SCRATCH, "match_scratch", "is", 'm')
137
138 /* Appears only in machine descriptions.
139 Means match only something equal to what is stored in the operand table
140 at the index specified by the argument. */
141 DEF_RTL_EXPR(MATCH_DUP, "match_dup", "i", 'm')
142
143 /* Appears only in machine descriptions.
144 Means apply a predicate, AND match recursively the operands of the rtx.
145 Operand 0 is the operand-number, as in match_operand.
146 Operand 1 is a predicate to apply (as a string, a function name).
147 Operand 2 is a vector of expressions, each of which must match
148 one subexpression of the rtx this construct is matching. */
149 DEF_RTL_EXPR(MATCH_OPERATOR, "match_operator", "isE", 'm')
150
151 /* Appears only in machine descriptions.
152 Means to match a PARALLEL of arbitrary length. The predicate is applied
153 to the PARALLEL and the initial expressions in the PARALLEL are matched.
154 Operand 0 is the operand-number, as in match_operand.
155 Operand 1 is a predicate to apply to the PARALLEL.
156 Operand 2 is a vector of expressions, each of which must match the
157 corresponding element in the PARALLEL. */
158 DEF_RTL_EXPR(MATCH_PARALLEL, "match_parallel", "isE", 'm')
159
160 /* Appears only in machine descriptions.
161 Means match only something equal to what is stored in the operand table
162 at the index specified by the argument. For MATCH_OPERATOR. */
163 DEF_RTL_EXPR(MATCH_OP_DUP, "match_op_dup", "iE", 'm')
164
165 /* Appears only in machine descriptions.
166 Means match only something equal to what is stored in the operand table
167 at the index specified by the argument. For MATCH_PARALLEL. */
168 DEF_RTL_EXPR(MATCH_PAR_DUP, "match_par_dup", "iE", 'm')
169
170 /* Appears only in machine descriptions.
171 Defines the pattern for one kind of instruction.
172 Operand:
173 0: names this instruction.
174 If the name is the null string, the instruction is in the
175 machine description just to be recognized, and will never be emitted by
176 the tree to rtl expander.
177 1: is the pattern.
178 2: is a string which is a C expression
179 giving an additional condition for recognizing this pattern.
180 A null string means no extra condition.
181 3: is the action to execute if this pattern is matched.
182 If this assembler code template starts with a * then it is a fragment of
183 C code to run to decide on a template to use. Otherwise, it is the
184 template to use.
185 4: optionally, a vector of attributes for this insn.
186 */
187 DEF_RTL_EXPR(DEFINE_INSN, "define_insn", "sEsTV", 'x')
188
189 /* Definition of a peephole optimization.
190 1st operand: vector of insn patterns to match
191 2nd operand: C expression that must be true
192 3rd operand: template or C code to produce assembler output.
193 4: optionally, a vector of attributes for this insn.
194 */
195 DEF_RTL_EXPR(DEFINE_PEEPHOLE, "define_peephole", "EsTV", 'x')
196
197 /* Definition of a split operation.
198 1st operand: insn pattern to match
199 2nd operand: C expression that must be true
200 3rd operand: vector of insn patterns to place into a SEQUENCE
201 4th operand: optionally, some C code to execute before generating the
202 insns. This might, for example, create some RTX's and store them in
203 elements of `recog_data.operand' for use by the vector of
204 insn-patterns.
205 (`operands' is an alias here for `recog_data.operand'). */
206 DEF_RTL_EXPR(DEFINE_SPLIT, "define_split", "EsES", 'x')
207
208 /* Definition of an insn and associated split.
209 This is the concatenation, with a few modifications, of a define_insn
210 and a define_split which share the same pattern.
211 Operand:
212 0: names this instruction.
213 If the name is the null string, the instruction is in the
214 machine description just to be recognized, and will never be emitted by
215 the tree to rtl expander.
216 1: is the pattern.
217 2: is a string which is a C expression
218 giving an additional condition for recognizing this pattern.
219 A null string means no extra condition.
220 3: is the action to execute if this pattern is matched.
221 If this assembler code template starts with a * then it is a fragment of
222 C code to run to decide on a template to use. Otherwise, it is the
223 template to use.
224 4: C expression that must be true for split. This may start with "&&"
225 in which case the split condition is the logical and of the insn
226 condition and what follows the "&&" of this operand.
227 5: vector of insn patterns to place into a SEQUENCE
228 6: optionally, some C code to execute before generating the
229 insns. This might, for example, create some RTX's and store them in
230 elements of `recog_data.operand' for use by the vector of
231 insn-patterns.
232 (`operands' is an alias here for `recog_data.operand').
233 7: optionally, a vector of attributes for this insn. */
234 DEF_RTL_EXPR(DEFINE_INSN_AND_SPLIT, "define_insn_and_split", "sEsTsESV", 'x')
235
236 /* Definition of an RTL peephole operation.
237 Follows the same arguments as define_split. */
238 DEF_RTL_EXPR(DEFINE_PEEPHOLE2, "define_peephole2", "EsES", 'x')
239
240 /* Define how to generate multiple insns for a standard insn name.
241 1st operand: the insn name.
242 2nd operand: vector of insn-patterns.
243 Use match_operand to substitute an element of `recog_data.operand'.
244 3rd operand: C expression that must be true for this to be available.
245 This may not test any operands.
246 4th operand: Extra C code to execute before generating the insns.
247 This might, for example, create some RTX's and store them in
248 elements of `recog_data.operand' for use by the vector of
249 insn-patterns.
250 (`operands' is an alias here for `recog_data.operand'). */
251 DEF_RTL_EXPR(DEFINE_EXPAND, "define_expand", "sEss", 'x')
252
253 /* Define a requirement for delay slots.
254 1st operand: Condition involving insn attributes that, if true,
255 indicates that the insn requires the number of delay slots
256 shown.
257 2nd operand: Vector whose length is the three times the number of delay
258 slots required.
259 Each entry gives three conditions, each involving attributes.
260 The first must be true for an insn to occupy that delay slot
261 location. The second is true for all insns that can be
262 annulled if the branch is true and the third is true for all
263 insns that can be annulled if the branch is false.
264
265 Multiple DEFINE_DELAYs may be present. They indicate differing
266 requirements for delay slots. */
267 DEF_RTL_EXPR(DEFINE_DELAY, "define_delay", "eE", 'x')
268
269 /* Define a set of insns that requires a function unit. This means that
270 these insns produce their result after a delay and that there may be
271 restrictions on the number of insns of this type that can be scheduled
272 simultaneously.
273
274 More than one DEFINE_FUNCTION_UNIT can be specified for a function unit.
275 Each gives a set of operations and associated delays. The first three
276 operands must be the same for each operation for the same function unit.
277
278 All delays are specified in cycles.
279
280 1st operand: Name of function unit (mostly for documentation)
281 2nd operand: Number of identical function units in CPU
282 3rd operand: Total number of simultaneous insns that can execute on this
283 function unit; 0 if unlimited.
284 4th operand: Condition involving insn attribute, that, if true, specifies
285 those insns that this expression applies to.
286 5th operand: Constant delay after which insn result will be
287 available.
288 6th operand: Delay until next insn can be scheduled on the function unit
289 executing this operation. The meaning depends on whether or
290 not the next operand is supplied.
291 7th operand: If this operand is not specified, the 6th operand gives the
292 number of cycles after the instruction matching the 4th
293 operand begins using the function unit until a subsequent
294 insn can begin. A value of zero should be used for a
295 unit with no issue constraints. If only one operation can
296 be executed a time and the unit is busy for the entire time,
297 the 3rd operand should be specified as 1, the 6th operand
298 should be specified as 0, and the 7th operand should not
299 be specified.
300
301 If this operand is specified, it is a list of attribute
302 expressions. If an insn for which any of these expressions
303 is true is currently executing on the function unit, the
304 issue delay will be given by the 6th operand. Otherwise,
305 the insn can be immediately scheduled (subject to the limit
306 on the number of simultaneous operations executing on the
307 unit.) */
308 DEF_RTL_EXPR(DEFINE_FUNCTION_UNIT, "define_function_unit", "siieiiV", 'x')
309
310 /* Define attribute computation for `asm' instructions. */
311 DEF_RTL_EXPR(DEFINE_ASM_ATTRIBUTES, "define_asm_attributes", "V", 'x' )
312
313 /* Definition of a conditional execution meta operation. Automatically
314 generates new instances of DEFINE_INSN, selected by having attribute
315 "predicable" true. The new pattern will contain a COND_EXEC and the
316 predicate at top-level.
317
318 Operand:
319 0: The predicate pattern. The top-level form should match a
320 relational operator. Operands should have only one alternative.
321 1: A C expression giving an additional condition for recognizing
322 the generated pattern.
323 2: A template or C code to produce assembler output. */
324 DEF_RTL_EXPR(DEFINE_COND_EXEC, "define_cond_exec", "Ess", 'x')
325
326 /* SEQUENCE appears in the result of a `gen_...' function
327 for a DEFINE_EXPAND that wants to make several insns.
328 Its elements are the bodies of the insns that should be made.
329 `emit_insn' takes the SEQUENCE apart and makes separate insns. */
330 DEF_RTL_EXPR(SEQUENCE, "sequence", "E", 'x')
331
332 /* Refers to the address of its argument. This is only used in alias.c. */
333 DEF_RTL_EXPR(ADDRESS, "address", "e", 'm')
334
335 /* ----------------------------------------------------------------------
336 Constructions for CPU pipeline description described by NDFAs.
337 These do not appear in actual rtl code in the compiler.
338 ---------------------------------------------------------------------- */
339
340 /* (define_cpu_unit string [string]) describes cpu functional
341 units (separated by comma).
342
343 1st operand: Names of cpu functional units.
344 2nd operand: Name of automaton (see comments for DEFINE_AUTOMATON).
345
346 All define_reservations, define_cpu_units, and
347 define_query_cpu_units should have unique names which may not be
348 "nothing". */
349 DEF_RTL_EXPR(DEFINE_CPU_UNIT, "define_cpu_unit", "sS", 'x')
350
351 /* (define_query_cpu_unit string [string]) describes cpu functional
352 units analogously to define_cpu_unit. The reservation of such
353 units can be queried for automaton state. */
354 DEF_RTL_EXPR(DEFINE_QUERY_CPU_UNIT, "define_query_cpu_unit", "sS", 'x')
355
356 /* (exclusion_set string string) means that each CPU functional unit
357 in the first string can not be reserved simultaneously with any
358 unit whose name is in the second string and vise versa. CPU units
359 in the string are separated by commas. For example, it is useful
360 for description CPU with fully pipelined floating point functional
361 unit which can execute simultaneously only single floating point
362 insns or only double floating point insns. All CPU functional
363 units in a set should belong to the same automaton. */
364 DEF_RTL_EXPR(EXCLUSION_SET, "exclusion_set", "ss", 'x')
365
366 /* (presence_set string string) means that each CPU functional unit in
367 the first string can not be reserved unless at least one of pattern
368 of units whose names are in the second string is reserved. This is
369 an asymmetric relation. CPU units or unit patterns in the strings
370 are separated by commas. Pattern is one unit name or unit names
371 separated by white-spaces.
372
373 For example, it is useful for description that slot1 is reserved
374 after slot0 reservation for a VLIW processor. We could describe it
375 by the following construction
376
377 (presence_set "slot1" "slot0")
378
379 Or slot1 is reserved only after slot0 and unit b0 reservation. In
380 this case we could write
381
382 (presence_set "slot1" "slot0 b0")
383
384 All CPU functional units in a set should belong to the same
385 automaton. */
386 DEF_RTL_EXPR(PRESENCE_SET, "presence_set", "ss", 'x')
387
388 /* (final_presence_set string string) is analogous to `presence_set'.
389 The difference between them is when checking is done. When an
390 instruction is issued in given automaton state reflecting all
391 current and planned unit reservations, the automaton state is
392 changed. The first state is a source state, the second one is a
393 result state. Checking for `presence_set' is done on the source
394 state reservation, checking for `final_presence_set' is done on the
395 result reservation. This construction is useful to describe a
396 reservation which is actually two subsequent reservations. For
397 example, if we use
398
399 (presence_set "slot1" "slot0")
400
401 the following insn will be never issued (because slot1 requires
402 slot0 which is absent in the source state).
403
404 (define_reservation "insn_and_nop" "slot0 + slot1")
405
406 but it can be issued if we use analogous `final_presence_set'. */
407 DEF_RTL_EXPR(FINAL_PRESENCE_SET, "final_presence_set", "ss", 'x')
408
409 /* (absence_set string string) means that each CPU functional unit in
410 the first string can be reserved only if each pattern of units
411 whose names are in the second string is not reserved. This is an
412 asymmetric relation (actually exclusion set is analogous to this
413 one but it is symmetric). CPU units or unit patterns in the string
414 are separated by commas. Pattern is one unit name or unit names
415 separated by white-spaces.
416
417 For example, it is useful for description that slot0 can not be
418 reserved after slot1 or slot2 reservation for a VLIW processor. We
419 could describe it by the following construction
420
421 (absence_set "slot2" "slot0, slot1")
422
423 Or slot2 can not be reserved if slot0 and unit b0 are reserved or
424 slot1 and unit b1 are reserved . In this case we could write
425
426 (absence_set "slot2" "slot0 b0, slot1 b1")
427
428 All CPU functional units in a set should to belong the same
429 automaton. */
430 DEF_RTL_EXPR(ABSENCE_SET, "absence_set", "ss", 'x')
431
432 /* (final_absence_set string string) is analogous to `absence_set' but
433 checking is done on the result (state) reservation. See comments
434 for `final_presence_set'. */
435 DEF_RTL_EXPR(FINAL_ABSENCE_SET, "final_absence_set", "ss", 'x')
436
437 /* (define_bypass number out_insn_names in_insn_names) names bypass
438 with given latency (the first number) from insns given by the first
439 string (see define_insn_reservation) into insns given by the second
440 string. Insn names in the strings are separated by commas. The
441 third operand is optional name of function which is additional
442 guard for the bypass. The function will get the two insns as
443 parameters. If the function returns zero the bypass will be
444 ignored for this case. Additional guard is necessary to recognize
445 complicated bypasses, e.g. when consumer is load address. */
446 DEF_RTL_EXPR(DEFINE_BYPASS, "define_bypass", "issS", 'x')
447
448 /* (define_automaton string) describes names of automata generated and
449 used for pipeline hazards recognition. The names are separated by
450 comma. Actually it is possibly to generate the single automaton
451 but unfortunately it can be very large. If we use more one
452 automata, the summary size of the automata usually is less than the
453 single one. The automaton name is used in define_cpu_unit and
454 define_query_cpu_unit. All automata should have unique names. */
455 DEF_RTL_EXPR(DEFINE_AUTOMATON, "define_automaton", "s", 'x')
456
457 /* (automata_option string) describes option for generation of
458 automata. Currently there are the following options:
459
460 o "no-minimization" which makes no minimization of automata. This
461 is only worth to do when we are debugging the description and
462 need to look more accurately at reservations of states.
463
464 o "time" which means printing additional time statistics about
465 generation of automata.
466
467 o "v" which means generation of file describing the result
468 automata. The file has suffix `.dfa' and can be used for the
469 description verification and debugging.
470
471 o "w" which means generation of warning instead of error for
472 non-critical errors.
473
474 o "ndfa" which makes nondeterministic finite state automata.
475
476 o "progress" which means output of a progress bar showing how many
477 states were generated so far for automaton being processed. */
478 DEF_RTL_EXPR(AUTOMATA_OPTION, "automata_option", "s", 'x')
479
480 /* (define_reservation string string) names reservation (the first
481 string) of cpu functional units (the 2nd string). Sometimes unit
482 reservations for different insns contain common parts. In such
483 case, you can describe common part and use its name (the 1st
484 parameter) in regular expression in define_insn_reservation. All
485 define_reservations, define_cpu_units, and define_query_cpu_units
486 should have unique names which may not be "nothing". */
487 DEF_RTL_EXPR(DEFINE_RESERVATION, "define_reservation", "ss", 'x')
488
489 /* (define_insn_reservation name default_latency condition regexpr)
490 describes reservation of cpu functional units (the 3nd operand) for
491 instruction which is selected by the condition (the 2nd parameter).
492 The first parameter is used for output of debugging information.
493 The reservations are described by a regular expression according
494 the following syntax:
495
496 regexp = regexp "," oneof
497 | oneof
498
499 oneof = oneof "|" allof
500 | allof
501
502 allof = allof "+" repeat
503 | repeat
504
505 repeat = element "*" number
506 | element
507
508 element = cpu_function_unit_name
509 | reservation_name
510 | result_name
511 | "nothing"
512 | "(" regexp ")"
513
514 1. "," is used for describing start of the next cycle in
515 reservation.
516
517 2. "|" is used for describing the reservation described by the
518 first regular expression *or* the reservation described by the
519 second regular expression *or* etc.
520
521 3. "+" is used for describing the reservation described by the
522 first regular expression *and* the reservation described by the
523 second regular expression *and* etc.
524
525 4. "*" is used for convenience and simply means sequence in
526 which the regular expression are repeated NUMBER times with
527 cycle advancing (see ",").
528
529 5. cpu functional unit name which means its reservation.
530
531 6. reservation name -- see define_reservation.
532
533 7. string "nothing" means no units reservation. */
534
535 DEF_RTL_EXPR(DEFINE_INSN_RESERVATION, "define_insn_reservation", "sies", 'x')
536
537 /* ----------------------------------------------------------------------
538 Expressions used for insn attributes. These also do not appear in
539 actual rtl code in the compiler.
540 ---------------------------------------------------------------------- */
541
542 /* Definition of an insn attribute.
543 1st operand: name of the attribute
544 2nd operand: comma-separated list of possible attribute values
545 3rd operand: expression for the default value of the attribute. */
546 DEF_RTL_EXPR(DEFINE_ATTR, "define_attr", "sse", 'x')
547
548 /* Marker for the name of an attribute. */
549 DEF_RTL_EXPR(ATTR, "attr", "s", 'x')
550
551 /* For use in the last (optional) operand of DEFINE_INSN or DEFINE_PEEPHOLE and
552 in DEFINE_ASM_INSN to specify an attribute to assign to insns matching that
553 pattern.
554
555 (set_attr "name" "value") is equivalent to
556 (set (attr "name") (const_string "value")) */
557 DEF_RTL_EXPR(SET_ATTR, "set_attr", "ss", 'x')
558
559 /* In the last operand of DEFINE_INSN and DEFINE_PEEPHOLE, this can be used to
560 specify that attribute values are to be assigned according to the
561 alternative matched.
562
563 The following three expressions are equivalent:
564
565 (set (attr "att") (cond [(eq_attrq "alternative" "1") (const_string "a1")
566 (eq_attrq "alternative" "2") (const_string "a2")]
567 (const_string "a3")))
568 (set_attr_alternative "att" [(const_string "a1") (const_string "a2")
569 (const_string "a3")])
570 (set_attr "att" "a1,a2,a3")
571 */
572 DEF_RTL_EXPR(SET_ATTR_ALTERNATIVE, "set_attr_alternative", "sE", 'x')
573
574 /* A conditional expression true if the value of the specified attribute of
575 the current insn equals the specified value. The first operand is the
576 attribute name and the second is the comparison value. */
577 DEF_RTL_EXPR(EQ_ATTR, "eq_attr", "ss", 'x')
578
579 /* A special case of the above representing a set of alternatives. The first
580 operand is bitmap of the set, the second one is the default value. */
581 DEF_RTL_EXPR(EQ_ATTR_ALT, "eq_attr_alt", "ii", 'x')
582
583 /* A conditional expression which is true if the specified flag is
584 true for the insn being scheduled in reorg.
585
586 genattr.c defines the following flags which can be tested by
587 (attr_flag "foo") expressions in eligible_for_delay.
588
589 forward, backward, very_likely, likely, very_unlikely, and unlikely. */
590
591 DEF_RTL_EXPR (ATTR_FLAG, "attr_flag", "s", 'x')
592
593 /* ----------------------------------------------------------------------
594 Expression types used for things in the instruction chain.
595
596 All formats must start with "iuu" to handle the chain.
597 Each insn expression holds an rtl instruction and its semantics
598 during back-end processing.
599 See macros's in "rtl.h" for the meaning of each rtx->u.fld[].
600
601 ---------------------------------------------------------------------- */
602
603 /* An instruction that cannot jump. */
604 DEF_RTL_EXPR(INSN, "insn", "iuuBieiee", 'i')
605
606 /* An instruction that can possibly jump.
607 Fields ( rtx->u.fld[] ) have exact same meaning as INSN's. */
608 DEF_RTL_EXPR(JUMP_INSN, "jump_insn", "iuuBieiee0", 'i')
609
610 /* An instruction that can possibly call a subroutine
611 but which will not change which instruction comes next
612 in the current function.
613 Field ( rtx->u.fld[9] ) is CALL_INSN_FUNCTION_USAGE.
614 All other fields ( rtx->u.fld[] ) have exact same meaning as INSN's. */
615 DEF_RTL_EXPR(CALL_INSN, "call_insn", "iuuBieieee", 'i')
616
617 /* A marker that indicates that control will not flow through. */
618 DEF_RTL_EXPR(BARRIER, "barrier", "iuu000000", 'x')
619
620 /* Holds a label that is followed by instructions.
621 Operand:
622 4: is used in jump.c for the use-count of the label.
623 5: is used in flow.c to point to the chain of label_ref's to this label.
624 6: is a number that is unique in the entire compilation.
625 7: is the user-given name of the label, if any. */
626 DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", 'x')
627
628 /* Say where in the code a source line starts, for symbol table's sake.
629 Operand:
630 4: filename, if line number > 0, note-specific data otherwise.
631 5: line number if > 0, enum note_insn otherwise.
632 6: unique number if line number == note_insn_deleted_label. */
633 DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", 'x')
634
635 /* ----------------------------------------------------------------------
636 Top level constituents of INSN, JUMP_INSN and CALL_INSN.
637 ---------------------------------------------------------------------- */
638
639 /* Conditionally execute code.
640 Operand 0 is the condition that if true, the code is executed.
641 Operand 1 is the code to be executed (typically a SET).
642
643 Semantics are that there are no side effects if the condition
644 is false. This pattern is created automatically by the if_convert
645 pass run after reload or by target-specific splitters. */
646 DEF_RTL_EXPR(COND_EXEC, "cond_exec", "ee", 'x')
647
648 /* Several operations to be done in parallel (perhaps under COND_EXEC). */
649 DEF_RTL_EXPR(PARALLEL, "parallel", "E", 'x')
650
651 /* A string that is passed through to the assembler as input.
652 One can obviously pass comments through by using the
653 assembler comment syntax.
654 These occur in an insn all by themselves as the PATTERN.
655 They also appear inside an ASM_OPERANDS
656 as a convenient way to hold a string. */
657 DEF_RTL_EXPR(ASM_INPUT, "asm_input", "s", 'x')
658
659 /* An assembler instruction with operands.
660 1st operand is the instruction template.
661 2nd operand is the constraint for the output.
662 3rd operand is the number of the output this expression refers to.
663 When an insn stores more than one value, a separate ASM_OPERANDS
664 is made for each output; this integer distinguishes them.
665 4th is a vector of values of input operands.
666 5th is a vector of modes and constraints for the input operands.
667 Each element is an ASM_INPUT containing a constraint string
668 and whose mode indicates the mode of the input operand.
669 6th is the name of the containing source file.
670 7th is the source line number. */
671 DEF_RTL_EXPR(ASM_OPERANDS, "asm_operands", "ssiEEsi", 'x')
672
673 /* A machine-specific operation.
674 1st operand is a vector of operands being used by the operation so that
675 any needed reloads can be done.
676 2nd operand is a unique value saying which of a number of machine-specific
677 operations is to be performed.
678 (Note that the vector must be the first operand because of the way that
679 genrecog.c record positions within an insn.)
680 This can occur all by itself in a PATTERN, as a component of a PARALLEL,
681 or inside an expression. */
682 DEF_RTL_EXPR(UNSPEC, "unspec", "Ei", 'x')
683
684 /* Similar, but a volatile operation and one which may trap. */
685 DEF_RTL_EXPR(UNSPEC_VOLATILE, "unspec_volatile", "Ei", 'x')
686
687 /* Vector of addresses, stored as full words. */
688 /* Each element is a LABEL_REF to a CODE_LABEL whose address we want. */
689 DEF_RTL_EXPR(ADDR_VEC, "addr_vec", "E", 'x')
690
691 /* Vector of address differences X0 - BASE, X1 - BASE, ...
692 First operand is BASE; the vector contains the X's.
693 The machine mode of this rtx says how much space to leave
694 for each difference and is adjusted by branch shortening if
695 CASE_VECTOR_SHORTEN_MODE is defined.
696 The third and fourth operands store the target labels with the
697 minimum and maximum addresses respectively.
698 The fifth operand stores flags for use by branch shortening.
699 Set at the start of shorten_branches:
700 min_align: the minimum alignment for any of the target labels.
701 base_after_vec: true iff BASE is after the ADDR_DIFF_VEC.
702 min_after_vec: true iff minimum addr target label is after the ADDR_DIFF_VEC.
703 max_after_vec: true iff maximum addr target label is after the ADDR_DIFF_VEC.
704 min_after_base: true iff minimum address target label is after BASE.
705 max_after_base: true iff maximum address target label is after BASE.
706 Set by the actual branch shortening process:
707 offset_unsigned: true iff offsets have to be treated as unsigned.
708 scale: scaling that is necessary to make offsets fit into the mode.
709
710 The third, fourth and fifth operands are only valid when
711 CASE_VECTOR_SHORTEN_MODE is defined, and only in an optimizing
712 compilations. */
713
714 DEF_RTL_EXPR(ADDR_DIFF_VEC, "addr_diff_vec", "eEee0", 'x')
715
716 /* Memory prefetch, with attributes supported on some targets.
717 Operand 1 is the address of the memory to fetch.
718 Operand 2 is 1 for a write access, 0 otherwise.
719 Operand 3 is the level of temporal locality; 0 means there is no
720 temporal locality and 1, 2, and 3 are for increasing levels of temporal
721 locality.
722
723 The attributes specified by operands 2 and 3 are ignored for targets
724 whose prefetch instructions do not support them. */
725 DEF_RTL_EXPR(PREFETCH, "prefetch", "eee", 'x')
726
727 /* ----------------------------------------------------------------------
728 At the top level of an instruction (perhaps under PARALLEL).
729 ---------------------------------------------------------------------- */
730
731 /* Assignment.
732 Operand 1 is the location (REG, MEM, PC, CC0 or whatever) assigned to.
733 Operand 2 is the value stored there.
734 ALL assignment must use SET.
735 Instructions that do multiple assignments must use multiple SET,
736 under PARALLEL. */
737 DEF_RTL_EXPR(SET, "set", "ee", 'x')
738
739 /* Indicate something is used in a way that we don't want to explain.
740 For example, subroutine calls will use the register
741 in which the static chain is passed. */
742 DEF_RTL_EXPR(USE, "use", "e", 'x')
743
744 /* Indicate something is clobbered in a way that we don't want to explain.
745 For example, subroutine calls will clobber some physical registers
746 (the ones that are by convention not saved). */
747 DEF_RTL_EXPR(CLOBBER, "clobber", "e", 'x')
748
749 /* Call a subroutine.
750 Operand 1 is the address to call.
751 Operand 2 is the number of arguments. */
752
753 DEF_RTL_EXPR(CALL, "call", "ee", 'x')
754
755 /* Return from a subroutine. */
756
757 DEF_RTL_EXPR(RETURN, "return", "", 'x')
758
759 /* Conditional trap.
760 Operand 1 is the condition.
761 Operand 2 is the trap code.
762 For an unconditional trap, make the condition (const_int 1). */
763 DEF_RTL_EXPR(TRAP_IF, "trap_if", "ee", 'x')
764
765 /* Placeholder for _Unwind_Resume before we know if a function call
766 or a branch is needed. Operand 1 is the exception region from
767 which control is flowing. */
768 DEF_RTL_EXPR(RESX, "resx", "i", 'x')
769
770 /* ----------------------------------------------------------------------
771 Primitive values for use in expressions.
772 ---------------------------------------------------------------------- */
773
774 /* numeric integer constant */
775 DEF_RTL_EXPR(CONST_INT, "const_int", "w", 'o')
776
777 /* numeric floating point constant.
778 Operands hold the value. They are all 'w' and there may be from 2 to 6;
779 see real.h. */
780 DEF_RTL_EXPR(CONST_DOUBLE, "const_double", CONST_DOUBLE_FORMAT, 'o')
781
782 /* Describes a vector constant. */
783 DEF_RTL_EXPR(CONST_VECTOR, "const_vector", "E", 'x')
784
785 /* String constant. Used only for attributes right now. */
786 DEF_RTL_EXPR(CONST_STRING, "const_string", "s", 'o')
787
788 /* This is used to encapsulate an expression whose value is constant
789 (such as the sum of a SYMBOL_REF and a CONST_INT) so that it will be
790 recognized as a constant operand rather than by arithmetic instructions. */
791
792 DEF_RTL_EXPR(CONST, "const", "e", 'o')
793
794 /* program counter. Ordinary jumps are represented
795 by a SET whose first operand is (PC). */
796 DEF_RTL_EXPR(PC, "pc", "", 'o')
797
798 /* Used in the cselib routines to describe a value. */
799 DEF_RTL_EXPR(VALUE, "value", "0", 'o')
800
801 /* A register. The "operand" is the register number, accessed with
802 the REGNO macro. If this number is less than FIRST_PSEUDO_REGISTER
803 than a hardware register is being referred to. The second operand
804 holds the original register number - this will be different for a
805 pseudo register that got turned into a hard register.
806 This rtx needs to have as many (or more) fields as a MEM, since we
807 can change REG rtx's into MEMs during reload. */
808 DEF_RTL_EXPR(REG, "reg", "i00", 'o')
809
810 /* A scratch register. This represents a register used only within a
811 single insn. It will be turned into a REG during register allocation
812 or reload unless the constraint indicates that the register won't be
813 needed, in which case it can remain a SCRATCH. This code is
814 marked as having one operand so it can be turned into a REG. */
815 DEF_RTL_EXPR(SCRATCH, "scratch", "0", 'o')
816
817 /* One word of a multi-word value.
818 The first operand is the complete value; the second says which word.
819 The WORDS_BIG_ENDIAN flag controls whether word number 0
820 (as numbered in a SUBREG) is the most or least significant word.
821
822 This is also used to refer to a value in a different machine mode.
823 For example, it can be used to refer to a SImode value as if it were
824 Qimode, or vice versa. Then the word number is always 0. */
825 DEF_RTL_EXPR(SUBREG, "subreg", "ei", 'x')
826
827 /* This one-argument rtx is used for move instructions
828 that are guaranteed to alter only the low part of a destination.
829 Thus, (SET (SUBREG:HI (REG...)) (MEM:HI ...))
830 has an unspecified effect on the high part of REG,
831 but (SET (STRICT_LOW_PART (SUBREG:HI (REG...))) (MEM:HI ...))
832 is guaranteed to alter only the bits of REG that are in HImode.
833
834 The actual instruction used is probably the same in both cases,
835 but the register constraints may be tighter when STRICT_LOW_PART
836 is in use. */
837
838 DEF_RTL_EXPR(STRICT_LOW_PART, "strict_low_part", "e", 'x')
839
840 /* (CONCAT a b) represents the virtual concatenation of a and b
841 to make a value that has as many bits as a and b put together.
842 This is used for complex values. Normally it appears only
843 in DECL_RTLs and during RTL generation, but not in the insn chain. */
844 DEF_RTL_EXPR(CONCAT, "concat", "ee", 'o')
845
846 /* A memory location; operand is the address. The second operand is the
847 alias set to which this MEM belongs. We use `0' instead of `w' for this
848 field so that the field need not be specified in machine descriptions. */
849 DEF_RTL_EXPR(MEM, "mem", "e0", 'o')
850
851 /* Reference to an assembler label in the code for this function.
852 The operand is a CODE_LABEL found in the insn chain.
853 The unprinted fields 1 and 2 are used in flow.c for the
854 LABEL_NEXTREF and CONTAINING_INSN. */
855 DEF_RTL_EXPR(LABEL_REF, "label_ref", "u00", 'o')
856
857 /* Reference to a named label:
858 Operand 0: label name
859 Operand 1: flags (see SYMBOL_FLAG_* in rtl.h)
860 Operand 2: tree from which this symbol is derived, or null.
861 This is either a DECL node, or some kind of constant. */
862 DEF_RTL_EXPR(SYMBOL_REF, "symbol_ref", "s00", 'o')
863
864 /* The condition code register is represented, in our imagination,
865 as a register holding a value that can be compared to zero.
866 In fact, the machine has already compared them and recorded the
867 results; but instructions that look at the condition code
868 pretend to be looking at the entire value and comparing it. */
869 DEF_RTL_EXPR(CC0, "cc0", "", 'o')
870
871 /* Reference to the address of a register. Removed by purge_addressof after
872 CSE has elided as many as possible.
873 1st operand: the register we may need the address of.
874 2nd operand: the original pseudo regno we were generated for.
875 3rd operand: the decl for the object in the register, for
876 put_reg_in_stack. */
877
878 DEF_RTL_EXPR(ADDRESSOF, "addressof", "eit", 'o')
879
880 /* =====================================================================
881 A QUEUED expression really points to a member of the queue of instructions
882 to be output later for postincrement/postdecrement.
883 QUEUED expressions never become part of instructions.
884 When a QUEUED expression would be put into an instruction,
885 instead either the incremented variable or a copy of its previous
886 value is used.
887
888 Operands are:
889 0. the variable to be incremented (a REG rtx).
890 1. the incrementing instruction, or 0 if it hasn't been output yet.
891 2. A REG rtx for a copy of the old value of the variable, or 0 if none yet.
892 3. the body to use for the incrementing instruction
893 4. the next QUEUED expression in the queue.
894 ====================================================================== */
895
896 DEF_RTL_EXPR(QUEUED, "queued", "eeeee", 'x')
897
898 /* ----------------------------------------------------------------------
899 Expressions for operators in an rtl pattern
900 ---------------------------------------------------------------------- */
901
902 /* if_then_else. This is used in representing ordinary
903 conditional jump instructions.
904 Operand:
905 0: condition
906 1: then expr
907 2: else expr */
908 DEF_RTL_EXPR(IF_THEN_ELSE, "if_then_else", "eee", '3')
909
910 /* General conditional. The first operand is a vector composed of pairs of
911 expressions. The first element of each pair is evaluated, in turn.
912 The value of the conditional is the second expression of the first pair
913 whose first expression evaluates nonzero. If none of the expressions is
914 true, the second operand will be used as the value of the conditional.
915
916 This should be replaced with use of IF_THEN_ELSE. */
917 DEF_RTL_EXPR(COND, "cond", "Ee", 'x')
918
919 /* Comparison, produces a condition code result. */
920 DEF_RTL_EXPR(COMPARE, "compare", "ee", '2')
921
922 /* plus */
923 DEF_RTL_EXPR(PLUS, "plus", "ee", 'c')
924
925 /* Operand 0 minus operand 1. */
926 DEF_RTL_EXPR(MINUS, "minus", "ee", '2')
927
928 /* Minus operand 0. */
929 DEF_RTL_EXPR(NEG, "neg", "e", '1')
930
931 DEF_RTL_EXPR(MULT, "mult", "ee", 'c')
932
933 /* Operand 0 divided by operand 1. */
934 DEF_RTL_EXPR(DIV, "div", "ee", '2')
935 /* Remainder of operand 0 divided by operand 1. */
936 DEF_RTL_EXPR(MOD, "mod", "ee", '2')
937
938 /* Unsigned divide and remainder. */
939 DEF_RTL_EXPR(UDIV, "udiv", "ee", '2')
940 DEF_RTL_EXPR(UMOD, "umod", "ee", '2')
941
942 /* Bitwise operations. */
943 DEF_RTL_EXPR(AND, "and", "ee", 'c')
944
945 DEF_RTL_EXPR(IOR, "ior", "ee", 'c')
946
947 DEF_RTL_EXPR(XOR, "xor", "ee", 'c')
948
949 DEF_RTL_EXPR(NOT, "not", "e", '1')
950
951 /* Operand:
952 0: value to be shifted.
953 1: number of bits. */
954 DEF_RTL_EXPR(ASHIFT, "ashift", "ee", '2') /* shift left */
955 DEF_RTL_EXPR(ROTATE, "rotate", "ee", '2') /* rotate left */
956 DEF_RTL_EXPR(ASHIFTRT, "ashiftrt", "ee", '2') /* arithmetic shift right */
957 DEF_RTL_EXPR(LSHIFTRT, "lshiftrt", "ee", '2') /* logical shift right */
958 DEF_RTL_EXPR(ROTATERT, "rotatert", "ee", '2') /* rotate right */
959
960 /* Minimum and maximum values of two operands. We need both signed and
961 unsigned forms. (We cannot use MIN for SMIN because it conflicts
962 with a macro of the same name.) */
963
964 DEF_RTL_EXPR(SMIN, "smin", "ee", 'c')
965 DEF_RTL_EXPR(SMAX, "smax", "ee", 'c')
966 DEF_RTL_EXPR(UMIN, "umin", "ee", 'c')
967 DEF_RTL_EXPR(UMAX, "umax", "ee", 'c')
968
969 /* These unary operations are used to represent incrementation
970 and decrementation as they occur in memory addresses.
971 The amount of increment or decrement are not represented
972 because they can be understood from the machine-mode of the
973 containing MEM. These operations exist in only two cases:
974 1. pushes onto the stack.
975 2. created automatically by the life_analysis pass in flow.c. */
976 DEF_RTL_EXPR(PRE_DEC, "pre_dec", "e", 'a')
977 DEF_RTL_EXPR(PRE_INC, "pre_inc", "e", 'a')
978 DEF_RTL_EXPR(POST_DEC, "post_dec", "e", 'a')
979 DEF_RTL_EXPR(POST_INC, "post_inc", "e", 'a')
980
981 /* These binary operations are used to represent generic address
982 side-effects in memory addresses, except for simple incrementation
983 or decrementation which use the above operations. They are
984 created automatically by the life_analysis pass in flow.c.
985 The first operand is a REG which is used as the address.
986 The second operand is an expression that is assigned to the
987 register, either before (PRE_MODIFY) or after (POST_MODIFY)
988 evaluating the address.
989 Currently, the compiler can only handle second operands of the
990 form (plus (reg) (reg)) and (plus (reg) (const_int)), where
991 the first operand of the PLUS has to be the same register as
992 the first operand of the *_MODIFY. */
993 DEF_RTL_EXPR(PRE_MODIFY, "pre_modify", "ee", 'a')
994 DEF_RTL_EXPR(POST_MODIFY, "post_modify", "ee", 'a')
995
996 /* Comparison operations. The ordered comparisons exist in two
997 flavors, signed and unsigned. */
998 DEF_RTL_EXPR(NE, "ne", "ee", '<')
999 DEF_RTL_EXPR(EQ, "eq", "ee", '<')
1000 DEF_RTL_EXPR(GE, "ge", "ee", '<')
1001 DEF_RTL_EXPR(GT, "gt", "ee", '<')
1002 DEF_RTL_EXPR(LE, "le", "ee", '<')
1003 DEF_RTL_EXPR(LT, "lt", "ee", '<')
1004 DEF_RTL_EXPR(GEU, "geu", "ee", '<')
1005 DEF_RTL_EXPR(GTU, "gtu", "ee", '<')
1006 DEF_RTL_EXPR(LEU, "leu", "ee", '<')
1007 DEF_RTL_EXPR(LTU, "ltu", "ee", '<')
1008
1009 /* Additional floating point unordered comparison flavors. */
1010 DEF_RTL_EXPR(UNORDERED, "unordered", "ee", '<')
1011 DEF_RTL_EXPR(ORDERED, "ordered", "ee", '<')
1012
1013 /* These are equivalent to unordered or ... */
1014 DEF_RTL_EXPR(UNEQ, "uneq", "ee", '<')
1015 DEF_RTL_EXPR(UNGE, "unge", "ee", '<')
1016 DEF_RTL_EXPR(UNGT, "ungt", "ee", '<')
1017 DEF_RTL_EXPR(UNLE, "unle", "ee", '<')
1018 DEF_RTL_EXPR(UNLT, "unlt", "ee", '<')
1019
1020 /* This is an ordered NE, ie !UNEQ, ie false for NaN. */
1021 DEF_RTL_EXPR(LTGT, "ltgt", "ee", '<')
1022
1023 /* Represents the result of sign-extending the sole operand.
1024 The machine modes of the operand and of the SIGN_EXTEND expression
1025 determine how much sign-extension is going on. */
1026 DEF_RTL_EXPR(SIGN_EXTEND, "sign_extend", "e", '1')
1027
1028 /* Similar for zero-extension (such as unsigned short to int). */
1029 DEF_RTL_EXPR(ZERO_EXTEND, "zero_extend", "e", '1')
1030
1031 /* Similar but here the operand has a wider mode. */
1032 DEF_RTL_EXPR(TRUNCATE, "truncate", "e", '1')
1033
1034 /* Similar for extending floating-point values (such as SFmode to DFmode). */
1035 DEF_RTL_EXPR(FLOAT_EXTEND, "float_extend", "e", '1')
1036 DEF_RTL_EXPR(FLOAT_TRUNCATE, "float_truncate", "e", '1')
1037
1038 /* Conversion of fixed point operand to floating point value. */
1039 DEF_RTL_EXPR(FLOAT, "float", "e", '1')
1040
1041 /* With fixed-point machine mode:
1042 Conversion of floating point operand to fixed point value.
1043 Value is defined only when the operand's value is an integer.
1044 With floating-point machine mode (and operand with same mode):
1045 Operand is rounded toward zero to produce an integer value
1046 represented in floating point. */
1047 DEF_RTL_EXPR(FIX, "fix", "e", '1')
1048
1049 /* Conversion of unsigned fixed point operand to floating point value. */
1050 DEF_RTL_EXPR(UNSIGNED_FLOAT, "unsigned_float", "e", '1')
1051
1052 /* With fixed-point machine mode:
1053 Conversion of floating point operand to *unsigned* fixed point value.
1054 Value is defined only when the operand's value is an integer. */
1055 DEF_RTL_EXPR(UNSIGNED_FIX, "unsigned_fix", "e", '1')
1056
1057 /* Absolute value */
1058 DEF_RTL_EXPR(ABS, "abs", "e", '1')
1059
1060 /* Square root */
1061 DEF_RTL_EXPR(SQRT, "sqrt", "e", '1')
1062
1063 /* Find first bit that is set.
1064 Value is 1 + number of trailing zeros in the arg.,
1065 or 0 if arg is 0. */
1066 DEF_RTL_EXPR(FFS, "ffs", "e", '1')
1067
1068 /* Count leading zeros. */
1069 DEF_RTL_EXPR(CLZ, "clz", "e", '1')
1070
1071 /* Count trailing zeros. */
1072 DEF_RTL_EXPR(CTZ, "ctz", "e", '1')
1073
1074 /* Population count (number of 1 bits). */
1075 DEF_RTL_EXPR(POPCOUNT, "popcount", "e", '1')
1076
1077 /* Population parity (number of 1 bits modulo 2). */
1078 DEF_RTL_EXPR(PARITY, "parity", "e", '1')
1079
1080 /* Reference to a signed bit-field of specified size and position.
1081 Operand 0 is the memory unit (usually SImode or QImode) which
1082 contains the field's first bit. Operand 1 is the width, in bits.
1083 Operand 2 is the number of bits in the memory unit before the
1084 first bit of this field.
1085 If BITS_BIG_ENDIAN is defined, the first bit is the msb and
1086 operand 2 counts from the msb of the memory unit.
1087 Otherwise, the first bit is the lsb and operand 2 counts from
1088 the lsb of the memory unit. */
1089 DEF_RTL_EXPR(SIGN_EXTRACT, "sign_extract", "eee", 'b')
1090
1091 /* Similar for unsigned bit-field. */
1092 DEF_RTL_EXPR(ZERO_EXTRACT, "zero_extract", "eee", 'b')
1093
1094 /* For RISC machines. These save memory when splitting insns. */
1095
1096 /* HIGH are the high-order bits of a constant expression. */
1097 DEF_RTL_EXPR(HIGH, "high", "e", 'o')
1098
1099 /* LO_SUM is the sum of a register and the low-order bits
1100 of a constant expression. */
1101 DEF_RTL_EXPR(LO_SUM, "lo_sum", "ee", 'o')
1102
1103 /* Header for range information. Operand 0 is the NOTE_INSN_RANGE_BEG insn.
1104 Operand 1 is the NOTE_INSN_RANGE_END insn. Operand 2 is a vector of all of
1105 the registers that can be substituted within this range. Operand 3 is the
1106 number of calls in the range. Operand 4 is the number of insns in the
1107 range. Operand 5 is the unique range number for this range. Operand 6 is
1108 the basic block # of the start of the live range. Operand 7 is the basic
1109 block # of the end of the live range. Operand 8 is the loop depth. Operand
1110 9 is a bitmap of the registers live at the start of the range. Operand 10
1111 is a bitmap of the registers live at the end of the range. Operand 11 is
1112 marker number for the start of the range. Operand 12 is the marker number
1113 for the end of the range. */
1114 DEF_RTL_EXPR(RANGE_INFO, "range_info", "uuEiiiiiibbii", 'x')
1115
1116 /* Registers that can be substituted within the range. Operand 0 is the
1117 original pseudo register number. Operand 1 will be filled in with the
1118 pseudo register the value is copied for the duration of the range. Operand
1119 2 is the number of references within the range to the register. Operand 3
1120 is the number of sets or clobbers of the register in the range. Operand 4
1121 is the number of deaths the register has. Operand 5 is the copy flags that
1122 give the status of whether a copy is needed from the original register to
1123 the new register at the beginning of the range, or whether a copy from the
1124 new register back to the original at the end of the range. Operand 6 is the
1125 live length. Operand 7 is the number of calls that this register is live
1126 across. Operand 8 is the symbol node of the variable if the register is a
1127 user variable. Operand 9 is the block node that the variable is declared
1128 in if the register is a user variable. */
1129 DEF_RTL_EXPR(RANGE_REG, "range_reg", "iiiiiiiitt", 'x')
1130
1131 /* Information about a local variable's ranges. Operand 0 is an EXPR_LIST of
1132 the different ranges a variable is in where it is copied to a different
1133 pseudo register. Operand 1 is the block that the variable is declared in.
1134 Operand 2 is the number of distinct ranges. */
1135 DEF_RTL_EXPR(RANGE_VAR, "range_var", "eti", 'x')
1136
1137 /* Information about the registers that are live at the current point. Operand
1138 0 is the live bitmap. Operand 1 is the original block number. */
1139 DEF_RTL_EXPR(RANGE_LIVE, "range_live", "bi", 'x')
1140
1141 /* A unary `__builtin_constant_p' expression. These are only emitted
1142 during RTL generation, and then only if optimize > 0. They are
1143 eliminated by the first CSE pass. */
1144 DEF_RTL_EXPR(CONSTANT_P_RTX, "constant_p_rtx", "e", 'x')
1145
1146 /* A placeholder for a CALL_INSN which may be turned into a normal call,
1147 a sibling (tail) call or tail recursion.
1148
1149 Immediately after RTL generation, this placeholder will be replaced
1150 by the insns to perform the call, sibcall or tail recursion.
1151
1152 This RTX has 4 operands. The first three are lists of instructions to
1153 perform the call as a normal call, sibling call and tail recursion
1154 respectively. The latter two lists may be NULL, the first may never
1155 be NULL.
1156
1157 The last operand is the tail recursion CODE_LABEL, which may be NULL if no
1158 potential tail recursive calls were found.
1159
1160 The tail recursion label is needed so that we can clear LABEL_PRESERVE_P
1161 after we select a call method.
1162
1163 This method of tail-call elimination is intended to be replaced by
1164 tree-based optimizations once front-end conversions are complete. */
1165 DEF_RTL_EXPR(CALL_PLACEHOLDER, "call_placeholder", "uuuu", 'x')
1166
1167 /* Describes a merge operation between two vector values.
1168 Operands 0 and 1 are the vectors to be merged, operand 2 is a bitmask
1169 that specifies where the parts of the result are taken from. Set bits
1170 indicate operand 0, clear bits indicate operand 1. The parts are defined
1171 by the mode of the vectors. */
1172 DEF_RTL_EXPR(VEC_MERGE, "vec_merge", "eee", '3')
1173
1174 /* Describes an operation that selects parts of a vector.
1175 Operands 0 is the source vector, operand 1 is a PARALLEL that contains
1176 a CONST_INT for each of the subparts of the result vector, giving the
1177 number of the source subpart that should be stored into it. */
1178 DEF_RTL_EXPR(VEC_SELECT, "vec_select", "ee", '2')
1179
1180 /* Describes a vector concat operation. Operands 0 and 1 are the source
1181 vectors, the result is a vector that is as long as operands 0 and 1
1182 combined and is the concatenation of the two source vectors. */
1183 DEF_RTL_EXPR(VEC_CONCAT, "vec_concat", "ee", '2')
1184
1185 /* Describes an operation that converts a small vector into a larger one by
1186 duplicating the input values. The output vector mode must have the same
1187 submodes as the input vector mode, and the number of output parts must be
1188 an integer multiple of the number of input parts. */
1189 DEF_RTL_EXPR(VEC_DUPLICATE, "vec_duplicate", "e", '1')
1190
1191 /* Addition with signed saturation */
1192 DEF_RTL_EXPR(SS_PLUS, "ss_plus", "ee", 'c')
1193
1194 /* Addition with unsigned saturation */
1195 DEF_RTL_EXPR(US_PLUS, "us_plus", "ee", 'c')
1196
1197 /* Operand 0 minus operand 1, with signed saturation. */
1198 DEF_RTL_EXPR(SS_MINUS, "ss_minus", "ee", '2')
1199
1200 /* Operand 0 minus operand 1, with unsigned saturation. */
1201 DEF_RTL_EXPR(US_MINUS, "us_minus", "ee", '2')
1202
1203 /* Signed saturating truncate. */
1204 DEF_RTL_EXPR(SS_TRUNCATE, "ss_truncate", "e", '1')
1205
1206 /* Unsigned saturating truncate. */
1207 DEF_RTL_EXPR(US_TRUNCATE, "us_truncate", "e", '1')
1208
1209 /* Information about the variable and its location. */
1210 DEF_RTL_EXPR(VAR_LOCATION, "var_location", "te", 'x')
1211
1212 /*
1213 Local variables:
1214 mode:c
1215 End:
1216 */