rtl.def 52.9 KB
Newer Older
Richard Kenner committed
1 2 3
/* This file contains the definitions and documentation for the
   Register Transfer Expressions (rtx's) that make up the
   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
Jeff Law committed
5
   Free Software Foundation, Inc.
Richard Kenner committed
6

7
This file is part of GCC.
Richard Kenner committed
8

9 10 11 12
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
Richard Kenner committed
13

14 15 16 17
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
Richard Kenner committed
18 19

You should have received a copy of the GNU General Public License
20 21 22
along with GCC; see the file COPYING.  If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.  */
Richard Kenner committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41


/* Expression definitions and descriptions for all targets are in this file.
   Some will not be used for some targets.

   The fields in the cpp macro call "DEF_RTL_EXPR()"
   are used to create declarations in the C source of the compiler.

   The fields are:

   1.  The internal name of the rtx used in the C source.
   It is a tag in the enumeration "enum rtx_code" defined in "rtl.h".
   By convention these are in UPPER_CASE.

   2.  The name of the rtx in the external ASCII format read by
   read_rtx(), and printed by print_rtx().
   These names are stored in rtx_name[].
   By convention these are the internal (field 1) names in lower_case.

42
   3.  The print format, and type of each rtx->u.fld[] (field) in this rtx.
Richard Kenner committed
43 44 45 46 47 48
   These formats are stored in rtx_format[].
   The meaning of the formats is documented in front of this array in rtl.c
   
   4.  The class of the rtx.  These are stored in rtx_class and are accessed
   via the GET_RTX_CLASS macro.  They are defined as follows:

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
     RTX_CONST_OBJ
         an rtx code that can be used to represent a constant object
         (e.g, CONST_INT)
     RTX_OBJ
         an rtx code that can be used to represent an object (e.g, REG, MEM)
     RTX_COMPARE
         an rtx code for a comparison (e.g, LT, GT)
     RTX_COMM_COMPARE
         an rtx code for a commutative comparison (e.g, EQ, NE, ORDERED)
     RTX_UNARY
         an rtx code for a unary arithmetic expression (e.g, NEG, NOT)
     RTX_COMM_ARITH
         an rtx code for a commutative binary operation (e.g,, PLUS, MULT)
     RTX_TERNARY
         an rtx code for a non-bitfield three input operation (IF_THEN_ELSE)
     RTX_BIN_ARITH
         an rtx code for a non-commutative binary operation (e.g., MINUS, DIV)
     RTX_BITFIELD_OPS
         an rtx code for a bit-field operation (ZERO_EXTRACT, SIGN_EXTRACT)
     RTX_INSN
         an rtx code for a machine insn (INSN, JUMP_INSN, CALL_INSN)
     RTX_MATCH
         an rtx code for something that matches in insns (e.g, MATCH_DUP)
     RTX_AUTOINC
         an rtx code for autoincrement addressing modes (e.g. POST_DEC)
     RTX_EXTRA
         everything else
Richard Kenner committed
76 77 78 79 80 81 82 83 84
     
   */

/* ---------------------------------------------------------------------
   Expressions (and "meta" expressions) used for structuring the
   rtl representation of a program.
   --------------------------------------------------------------------- */

/* an expression code name unknown to the reader */
85
DEF_RTL_EXPR(UNKNOWN, "UnKnown", "*", RTX_EXTRA)
Richard Kenner committed
86 87 88

/* (NIL) is used by rtl reader and printer to represent a null pointer.  */

89
DEF_RTL_EXPR(NIL, "nil", "*", RTX_EXTRA)
Richard Kenner committed
90

91 92 93

/* include a file */

94
DEF_RTL_EXPR(INCLUDE, "include", "s", RTX_EXTRA)
95

Richard Kenner committed
96 97 98 99 100
/* ---------------------------------------------------------------------
   Expressions used in constructing lists.
   --------------------------------------------------------------------- */

/* a linked list of expressions */
101
DEF_RTL_EXPR(EXPR_LIST, "expr_list", "ee", RTX_EXTRA)
Richard Kenner committed
102 103 104

/* a linked list of instructions.
   The insns are represented in print by their uids.  */
105
DEF_RTL_EXPR(INSN_LIST, "insn_list", "ue", RTX_EXTRA)
Richard Kenner committed
106 107

/* ----------------------------------------------------------------------
108
   Expression types for machine descriptions.
Richard Kenner committed
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
   These do not appear in actual rtl code in the compiler.
   ---------------------------------------------------------------------- */

/* Appears only in machine descriptions.
   Means use the function named by the second arg (the string)
   as a predicate; if matched, store the structure that was matched
   in the operand table at index specified by the first arg (the integer).
   If the second arg is the null string, the structure is just stored.

   A third string argument indicates to the register allocator restrictions
   on where the operand can be allocated.

   If the target needs no restriction on any instruction this field should
   be the null string.

   The string is prepended by:
   '=' to indicate the operand is only written to.
   '+' to indicate the operand is both read and written to.

Jeff Law committed
128
   Each character in the string represents an allocable class for an operand.
Richard Kenner committed
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
   'g' indicates the operand can be any valid class.
   'i' indicates the operand can be immediate (in the instruction) data.
   'r' indicates the operand can be in a register.
   'm' indicates the operand can be in memory.
   'o' a subset of the 'm' class.  Those memory addressing modes that
       can be offset at compile time (have a constant added to them).

   Other characters indicate target dependent operand classes and
   are described in each target's machine description.

   For instructions with more than one operand, sets of classes can be
   separated by a comma to indicate the appropriate multi-operand constraints.
   There must be a 1 to 1 correspondence between these sets of classes in
   all operands for an instruction.
   */
144
DEF_RTL_EXPR(MATCH_OPERAND, "match_operand", "iss", RTX_MATCH)
Richard Kenner committed
145 146 147 148 149 150

/* Appears only in machine descriptions.
   Means match a SCRATCH or a register.  When used to generate rtl, a
   SCRATCH is generated.  As for MATCH_OPERAND, the mode specifies
   the desired mode and the first argument is the operand number.
   The second argument is the constraint.  */
151
DEF_RTL_EXPR(MATCH_SCRATCH, "match_scratch", "is", RTX_MATCH)
Richard Kenner committed
152 153 154 155

/* Appears only in machine descriptions.
   Means match only something equal to what is stored in the operand table
   at the index specified by the argument.  */
156
DEF_RTL_EXPR(MATCH_DUP, "match_dup", "i", RTX_MATCH)
Richard Kenner committed
157 158 159 160 161 162 163

/* Appears only in machine descriptions.
   Means apply a predicate, AND match recursively the operands of the rtx.
   Operand 0 is the operand-number, as in match_operand.
   Operand 1 is a predicate to apply (as a string, a function name).
   Operand 2 is a vector of expressions, each of which must match
   one subexpression of the rtx this construct is matching.  */
164
DEF_RTL_EXPR(MATCH_OPERATOR, "match_operator", "isE", RTX_MATCH)
Richard Kenner committed
165 166 167 168 169 170 171 172

/* Appears only in machine descriptions.
   Means to match a PARALLEL of arbitrary length.  The predicate is applied
   to the PARALLEL and the initial expressions in the PARALLEL are matched.
   Operand 0 is the operand-number, as in match_operand.
   Operand 1 is a predicate to apply to the PARALLEL.
   Operand 2 is a vector of expressions, each of which must match the 
   corresponding element in the PARALLEL.  */
173
DEF_RTL_EXPR(MATCH_PARALLEL, "match_parallel", "isE", RTX_MATCH)
Richard Kenner committed
174 175 176 177

/* Appears only in machine descriptions.
   Means match only something equal to what is stored in the operand table
   at the index specified by the argument.  For MATCH_OPERATOR.  */
178
DEF_RTL_EXPR(MATCH_OP_DUP, "match_op_dup", "iE", RTX_MATCH)
Richard Kenner committed
179 180

/* Appears only in machine descriptions.
181 182
   Means match only something equal to what is stored in the operand table
   at the index specified by the argument.  For MATCH_PARALLEL.  */
183
DEF_RTL_EXPR(MATCH_PAR_DUP, "match_par_dup", "iE", RTX_MATCH)
184 185

/* Appears only in machine descriptions.
Richard Kenner committed
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
   Defines the pattern for one kind of instruction.
   Operand:
   0: names this instruction.
      If the name is the null string, the instruction is in the
      machine description just to be recognized, and will never be emitted by
      the tree to rtl expander.
   1: is the pattern.
   2: is a string which is a C expression
      giving an additional condition for recognizing this pattern.
      A null string means no extra condition.
   3: is the action to execute if this pattern is matched.
      If this assembler code template starts with a * then it is a fragment of
      C code to run to decide on a template to use.  Otherwise, it is the
      template to use.
   4: optionally, a vector of attributes for this insn.
     */
202
DEF_RTL_EXPR(DEFINE_INSN, "define_insn", "sEsTV", RTX_EXTRA)
Richard Kenner committed
203 204 205 206 207 208 209

/* Definition of a peephole optimization.
   1st operand: vector of insn patterns to match
   2nd operand: C expression that must be true
   3rd operand: template or C code to produce assembler output.
   4: optionally, a vector of attributes for this insn.
     */
210
DEF_RTL_EXPR(DEFINE_PEEPHOLE, "define_peephole", "EsTV", RTX_EXTRA)
Richard Kenner committed
211 212 213 214 215 216 217

/* Definition of a split operation.
   1st operand: insn pattern to match
   2nd operand: C expression that must be true
   3rd operand: vector of insn patterns to place into a SEQUENCE
   4th operand: optionally, some C code to execute before generating the
	insns.  This might, for example, create some RTX's and store them in
218 219
	elements of `recog_data.operand' for use by the vector of
	insn-patterns.
220
	(`operands' is an alias here for `recog_data.operand').  */
221
DEF_RTL_EXPR(DEFINE_SPLIT, "define_split", "EsES", RTX_EXTRA)
Richard Kenner committed
222

Clinton Popetz committed
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
/* Definition of an insn and associated split.
   This is the concatenation, with a few modifications, of a define_insn
   and a define_split which share the same pattern.
   Operand:
   0: names this instruction.
      If the name is the null string, the instruction is in the
      machine description just to be recognized, and will never be emitted by
      the tree to rtl expander.
   1: is the pattern.
   2: is a string which is a C expression
      giving an additional condition for recognizing this pattern.
      A null string means no extra condition.
   3: is the action to execute if this pattern is matched.
      If this assembler code template starts with a * then it is a fragment of
      C code to run to decide on a template to use.  Otherwise, it is the
      template to use.
   4: C expression that must be true for split.  This may start with "&&"
      in which case the split condition is the logical and of the insn 
      condition and what follows the "&&" of this operand.
   5: vector of insn patterns to place into a SEQUENCE
   6: optionally, some C code to execute before generating the
	insns.  This might, for example, create some RTX's and store them in
245 246 247
	elements of `recog_data.operand' for use by the vector of
	insn-patterns.
	(`operands' is an alias here for `recog_data.operand').  
Clinton Popetz committed
248
   7: optionally, a vector of attributes for this insn.  */
249
DEF_RTL_EXPR(DEFINE_INSN_AND_SPLIT, "define_insn_and_split", "sEsTsESV", RTX_EXTRA)
Clinton Popetz committed
250

251 252
/* Definition of an RTL peephole operation.
   Follows the same arguments as define_split.  */
253
DEF_RTL_EXPR(DEFINE_PEEPHOLE2, "define_peephole2", "EsES", RTX_EXTRA)
254

Richard Kenner committed
255 256 257
/* Define how to generate multiple insns for a standard insn name.
   1st operand: the insn name.
   2nd operand: vector of insn-patterns.
258
	Use match_operand to substitute an element of `recog_data.operand'.
Richard Kenner committed
259 260 261 262
   3rd operand: C expression that must be true for this to be available.
	This may not test any operands.
   4th operand: Extra C code to execute before generating the insns.
	This might, for example, create some RTX's and store them in
263 264 265
	elements of `recog_data.operand' for use by the vector of
	insn-patterns.
	(`operands' is an alias here for `recog_data.operand').  */
266
DEF_RTL_EXPR(DEFINE_EXPAND, "define_expand", "sEss", RTX_EXTRA)
Richard Kenner committed
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
   
/* Define a requirement for delay slots.
   1st operand: Condition involving insn attributes that, if true,
	        indicates that the insn requires the number of delay slots
		shown.
   2nd operand: Vector whose length is the three times the number of delay
		slots required.
	        Each entry gives three conditions, each involving attributes.
		The first must be true for an insn to occupy that delay slot
		location.  The second is true for all insns that can be
		annulled if the branch is true and the third is true for all
		insns that can be annulled if the branch is false. 

   Multiple DEFINE_DELAYs may be present.  They indicate differing
   requirements for delay slots.  */
282
DEF_RTL_EXPR(DEFINE_DELAY, "define_delay", "eE", RTX_EXTRA)
Richard Kenner committed
283 284 285 286 287 288 289 290 291 292

/* Define a set of insns that requires a function unit.  This means that
   these insns produce their result after a delay and that there may be
   restrictions on the number of insns of this type that can be scheduled
   simultaneously.

   More than one DEFINE_FUNCTION_UNIT can be specified for a function unit.
   Each gives a set of operations and associated delays.  The first three
   operands must be the same for each operation for the same function unit.

Tom Wood committed
293
   All delays are specified in cycles.
Richard Kenner committed
294 295 296 297 298 299 300 301 302 303 304 305 306

   1st operand: Name of function unit (mostly for documentation)
   2nd operand: Number of identical function units in CPU
   3rd operand: Total number of simultaneous insns that can execute on this
		function unit; 0 if unlimited.
   4th operand: Condition involving insn attribute, that, if true, specifies
		those insns that this expression applies to.
   5th operand: Constant delay after which insn result will be
		available.
   6th operand: Delay until next insn can be scheduled on the function unit
		executing this operation.  The meaning depends on whether or
		not the next operand is supplied.
   7th operand: If this operand is not specified, the 6th operand gives the
Tom Wood committed
307 308 309 310 311 312
		number of cycles after the instruction matching the 4th
		operand begins using the function unit until a subsequent
		insn can begin.  A value of zero should be used for a
		unit with no issue constraints.  If only one operation can
		be executed a time and the unit is busy for the entire time,
		the 3rd operand should be specified as 1, the 6th operand
Jeff Law committed
313
		should be specified as 0, and the 7th operand should not
Tom Wood committed
314
		be specified.
Richard Kenner committed
315 316 317 318

		If this operand is specified, it is a list of attribute
		expressions.  If an insn for which any of these expressions
		is true is currently executing on the function unit, the
Tom Wood committed
319 320 321
		issue delay will be given by the 6th operand.  Otherwise,
		the insn can be immediately scheduled (subject to the limit
		on the number of simultaneous operations executing on the
Richard Kenner committed
322
		unit.)  */
323
DEF_RTL_EXPR(DEFINE_FUNCTION_UNIT, "define_function_unit", "siieiiV", RTX_EXTRA)
Richard Kenner committed
324 325

/* Define attribute computation for `asm' instructions.  */
326
DEF_RTL_EXPR(DEFINE_ASM_ATTRIBUTES, "define_asm_attributes", "V", RTX_EXTRA)
Richard Kenner committed
327

328 329 330 331 332 333 334 335 336 337 338
/* Definition of a conditional execution meta operation.  Automatically
   generates new instances of DEFINE_INSN, selected by having attribute
   "predicable" true.  The new pattern will contain a COND_EXEC and the
   predicate at top-level.

   Operand:
   0: The predicate pattern.  The top-level form should match a
      relational operator.  Operands should have only one alternative.
   1: A C expression giving an additional condition for recognizing
      the generated pattern.
   2: A template or C code to produce assembler output.  */
339
DEF_RTL_EXPR(DEFINE_COND_EXEC, "define_cond_exec", "Ess", RTX_EXTRA)
340

Richard Kenner committed
341 342 343 344
/* SEQUENCE appears in the result of a `gen_...' function
   for a DEFINE_EXPAND that wants to make several insns.
   Its elements are the bodies of the insns that should be made.
   `emit_insn' takes the SEQUENCE apart and makes separate insns.  */
345
DEF_RTL_EXPR(SEQUENCE, "sequence", "E", RTX_EXTRA)
Richard Kenner committed
346

Bernd Schmidt committed
347
/* Refers to the address of its argument.  This is only used in alias.c.  */
348
DEF_RTL_EXPR(ADDRESS, "address", "e", RTX_MATCH)
Richard Kenner committed
349 350

/* ----------------------------------------------------------------------
351 352 353 354 355 356 357 358 359 360 361 362 363
   Constructions for CPU pipeline description described by NDFAs.
   These do not appear in actual rtl code in the compiler.
   ---------------------------------------------------------------------- */

/* (define_cpu_unit string [string]) describes cpu functional
   units (separated by comma).

   1st operand: Names of cpu functional units.
   2nd operand: Name of automaton (see comments for DEFINE_AUTOMATON).

   All define_reservations, define_cpu_units, and
   define_query_cpu_units should have unique names which may not be
   "nothing".  */
364
DEF_RTL_EXPR(DEFINE_CPU_UNIT, "define_cpu_unit", "sS", RTX_EXTRA)
365 366

/* (define_query_cpu_unit string [string]) describes cpu functional
367 368
   units analogously to define_cpu_unit.  The reservation of such
   units can be queried for automaton state.  */
369
DEF_RTL_EXPR(DEFINE_QUERY_CPU_UNIT, "define_query_cpu_unit", "sS", RTX_EXTRA)
370 371 372 373 374 375 376 377

/* (exclusion_set string string) means that each CPU functional unit
   in the first string can not be reserved simultaneously with any
   unit whose name is in the second string and vise versa.  CPU units
   in the string are separated by commas.  For example, it is useful
   for description CPU with fully pipelined floating point functional
   unit which can execute simultaneously only single floating point
   insns or only double floating point insns.  All CPU functional
378
   units in a set should belong to the same automaton.  */
379
DEF_RTL_EXPR(EXCLUSION_SET, "exclusion_set", "ss", RTX_EXTRA)
380 381

/* (presence_set string string) means that each CPU functional unit in
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
   the first string can not be reserved unless at least one of pattern
   of units whose names are in the second string is reserved.  This is
   an asymmetric relation.  CPU units or unit patterns in the strings
   are separated by commas.  Pattern is one unit name or unit names
   separated by white-spaces.
 
   For example, it is useful for description that slot1 is reserved
   after slot0 reservation for a VLIW processor.  We could describe it
   by the following construction

      (presence_set "slot1" "slot0")

   Or slot1 is reserved only after slot0 and unit b0 reservation.  In
   this case we could write

      (presence_set "slot1" "slot0 b0")

   All CPU functional units in a set should belong to the same
   automaton.  */
401
DEF_RTL_EXPR(PRESENCE_SET, "presence_set", "ss", RTX_EXTRA)
402

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
/* (final_presence_set string string) is analogous to `presence_set'.
   The difference between them is when checking is done.  When an
   instruction is issued in given automaton state reflecting all
   current and planned unit reservations, the automaton state is
   changed.  The first state is a source state, the second one is a
   result state.  Checking for `presence_set' is done on the source
   state reservation, checking for `final_presence_set' is done on the
   result reservation.  This construction is useful to describe a
   reservation which is actually two subsequent reservations.  For
   example, if we use 

      (presence_set "slot1" "slot0")

   the following insn will be never issued (because slot1 requires
   slot0 which is absent in the source state).

      (define_reservation "insn_and_nop" "slot0 + slot1")

   but it can be issued if we use analogous `final_presence_set'.  */
422
DEF_RTL_EXPR(FINAL_PRESENCE_SET, "final_presence_set", "ss", RTX_EXTRA)
423

424
/* (absence_set string string) means that each CPU functional unit in
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
   the first string can be reserved only if each pattern of units
   whose names are in the second string is not reserved.  This is an
   asymmetric relation (actually exclusion set is analogous to this
   one but it is symmetric).  CPU units or unit patterns in the string
   are separated by commas.  Pattern is one unit name or unit names
   separated by white-spaces.

   For example, it is useful for description that slot0 can not be
   reserved after slot1 or slot2 reservation for a VLIW processor.  We
   could describe it by the following construction

      (absence_set "slot2" "slot0, slot1")

   Or slot2 can not be reserved if slot0 and unit b0 are reserved or
   slot1 and unit b1 are reserved .  In this case we could write

      (absence_set "slot2" "slot0 b0, slot1 b1")

   All CPU functional units in a set should to belong the same
   automaton.  */
445
DEF_RTL_EXPR(ABSENCE_SET, "absence_set", "ss", RTX_EXTRA)
446

447 448 449
/* (final_absence_set string string) is analogous to `absence_set' but
   checking is done on the result (state) reservation.  See comments
   for `final_presence_set'.  */
450
DEF_RTL_EXPR(FINAL_ABSENCE_SET, "final_absence_set", "ss", RTX_EXTRA)
451

452 453 454 455 456 457 458 459 460
/* (define_bypass number out_insn_names in_insn_names) names bypass
   with given latency (the first number) from insns given by the first
   string (see define_insn_reservation) into insns given by the second
   string.  Insn names in the strings are separated by commas.  The
   third operand is optional name of function which is additional
   guard for the bypass.  The function will get the two insns as
   parameters.  If the function returns zero the bypass will be
   ignored for this case.  Additional guard is necessary to recognize
   complicated bypasses, e.g. when consumer is load address.  */
461
DEF_RTL_EXPR(DEFINE_BYPASS, "define_bypass", "issS", RTX_EXTRA)
462 463 464 465 466 467 468 469

/* (define_automaton string) describes names of automata generated and
   used for pipeline hazards recognition.  The names are separated by
   comma.  Actually it is possibly to generate the single automaton
   but unfortunately it can be very large.  If we use more one
   automata, the summary size of the automata usually is less than the
   single one.  The automaton name is used in define_cpu_unit and
   define_query_cpu_unit.  All automata should have unique names.  */
470
DEF_RTL_EXPR(DEFINE_AUTOMATON, "define_automaton", "s", RTX_EXTRA)
471 472 473 474 475

/* (automata_option string) describes option for generation of
   automata.  Currently there are the following options:

   o "no-minimization" which makes no minimization of automata.  This
476 477
     is only worth to do when we are debugging the description and
     need to look more accurately at reservations of states.
478

479 480 481 482 483 484 485 486 487
   o "time" which means printing additional time statistics about
      generation of automata.
  
   o "v" which means generation of file describing the result
     automata.  The file has suffix `.dfa' and can be used for the
     description verification and debugging.

   o "w" which means generation of warning instead of error for
     non-critical errors.
488

489 490 491 492
   o "ndfa" which makes nondeterministic finite state automata.

   o "progress" which means output of a progress bar showing how many
     states were generated so far for automaton being processed.  */
493
DEF_RTL_EXPR(AUTOMATA_OPTION, "automata_option", "s", RTX_EXTRA)
494 495 496 497 498 499 500 501

/* (define_reservation string string) names reservation (the first
   string) of cpu functional units (the 2nd string).  Sometimes unit
   reservations for different insns contain common parts.  In such
   case, you can describe common part and use its name (the 1st
   parameter) in regular expression in define_insn_reservation.  All
   define_reservations, define_cpu_units, and define_query_cpu_units
   should have unique names which may not be "nothing".  */
502
DEF_RTL_EXPR(DEFINE_RESERVATION, "define_reservation", "ss", RTX_EXTRA)
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539

/* (define_insn_reservation name default_latency condition regexpr)
   describes reservation of cpu functional units (the 3nd operand) for
   instruction which is selected by the condition (the 2nd parameter).
   The first parameter is used for output of debugging information.
   The reservations are described by a regular expression according
   the following syntax:

       regexp = regexp "," oneof
              | oneof

       oneof = oneof "|" allof
             | allof

       allof = allof "+" repeat
             | repeat
 
       repeat = element "*" number
              | element

       element = cpu_function_unit_name
               | reservation_name
               | result_name
               | "nothing"
               | "(" regexp ")"

       1. "," is used for describing start of the next cycle in
       reservation.

       2. "|" is used for describing the reservation described by the
       first regular expression *or* the reservation described by the
       second regular expression *or* etc.

       3. "+" is used for describing the reservation described by the
       first regular expression *and* the reservation described by the
       second regular expression *and* etc.

540
       4. "*" is used for convenience and simply means sequence in
541 542 543 544 545 546 547 548 549
       which the regular expression are repeated NUMBER times with
       cycle advancing (see ",").

       5. cpu functional unit name which means its reservation.

       6. reservation name -- see define_reservation.

       7. string "nothing" means no units reservation.  */

550
DEF_RTL_EXPR(DEFINE_INSN_RESERVATION, "define_insn_reservation", "sies", RTX_EXTRA)
551 552

/* ----------------------------------------------------------------------
Richard Kenner committed
553 554 555 556 557 558 559
   Expressions used for insn attributes.  These also do not appear in
   actual rtl code in the compiler.
   ---------------------------------------------------------------------- */

/* Definition of an insn attribute.
   1st operand: name of the attribute
   2nd operand: comma-separated list of possible attribute values
560
   3rd operand: expression for the default value of the attribute.  */
561
DEF_RTL_EXPR(DEFINE_ATTR, "define_attr", "sse", RTX_EXTRA)
Richard Kenner committed
562

563
/* Marker for the name of an attribute.  */
564
DEF_RTL_EXPR(ATTR, "attr", "s", RTX_EXTRA)
Richard Kenner committed
565 566 567 568 569 570 571

/* For use in the last (optional) operand of DEFINE_INSN or DEFINE_PEEPHOLE and
   in DEFINE_ASM_INSN to specify an attribute to assign to insns matching that
   pattern.

   (set_attr "name" "value") is equivalent to
   (set (attr "name") (const_string "value"))  */
572
DEF_RTL_EXPR(SET_ATTR, "set_attr", "ss", RTX_EXTRA)
Richard Kenner committed
573 574 575 576 577 578 579 580 581 582 583 584 585 586

/* In the last operand of DEFINE_INSN and DEFINE_PEEPHOLE, this can be used to
   specify that attribute values are to be assigned according to the
   alternative matched.

   The following three expressions are equivalent:

   (set (attr "att") (cond [(eq_attrq "alternative" "1") (const_string "a1")
			    (eq_attrq "alternative" "2") (const_string "a2")]
			   (const_string "a3")))
   (set_attr_alternative "att" [(const_string "a1") (const_string "a2")
				 (const_string "a3")])
   (set_attr "att" "a1,a2,a3")
 */
587
DEF_RTL_EXPR(SET_ATTR_ALTERNATIVE, "set_attr_alternative", "sE", RTX_EXTRA)
Richard Kenner committed
588 589 590 591

/* A conditional expression true if the value of the specified attribute of
   the current insn equals the specified value.  The first operand is the
   attribute name and the second is the comparison value.  */
592
DEF_RTL_EXPR(EQ_ATTR, "eq_attr", "ss", RTX_EXTRA)
Richard Kenner committed
593

594 595
/* A special case of the above representing a set of alternatives.  The first
   operand is bitmap of the set, the second one is the default value.  */
596
DEF_RTL_EXPR(EQ_ATTR_ALT, "eq_attr_alt", "ii", RTX_EXTRA)
597

598 599 600 601 602 603 604 605
/* A conditional expression which is true if the specified flag is
   true for the insn being scheduled in reorg.

   genattr.c defines the following flags which can be tested by
   (attr_flag "foo") expressions in eligible_for_delay.

   forward, backward, very_likely, likely, very_unlikely, and unlikely.  */

606
DEF_RTL_EXPR (ATTR_FLAG, "attr_flag", "s", RTX_EXTRA)
607

Richard Kenner committed
608 609 610 611 612 613
/* ----------------------------------------------------------------------
   Expression types used for things in the instruction chain.

   All formats must start with "iuu" to handle the chain.
   Each insn expression holds an rtl instruction and its semantics
   during back-end processing.
614
   See macros's in "rtl.h" for the meaning of each rtx->u.fld[].
Richard Kenner committed
615 616 617 618

   ---------------------------------------------------------------------- */

/* An instruction that cannot jump.  */
619
DEF_RTL_EXPR(INSN, "insn", "iuuBieiee", RTX_INSN)
Richard Kenner committed
620 621

/* An instruction that can possibly jump.
622
   Fields ( rtx->u.fld[] ) have exact same meaning as INSN's.  */
623
DEF_RTL_EXPR(JUMP_INSN, "jump_insn", "iuuBieiee0", RTX_INSN)
Richard Kenner committed
624 625 626 627

/* An instruction that can possibly call a subroutine
   but which will not change which instruction comes next
   in the current function.
628 629
   Field ( rtx->u.fld[9] ) is CALL_INSN_FUNCTION_USAGE.
   All other fields ( rtx->u.fld[] ) have exact same meaning as INSN's.  */
630
DEF_RTL_EXPR(CALL_INSN, "call_insn", "iuuBieieee", RTX_INSN)
Richard Kenner committed
631 632

/* A marker that indicates that control will not flow through.  */
633
DEF_RTL_EXPR(BARRIER, "barrier", "iuu000000", RTX_EXTRA)
Richard Kenner committed
634 635 636

/* Holds a label that is followed by instructions.
   Operand:
637 638 639 640
   4: is used in jump.c for the use-count of the label.
   5: is used in flow.c to point to the chain of label_ref's to this label.
   6: is a number that is unique in the entire compilation.
   7: is the user-given name of the label, if any.  */
641
DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", RTX_EXTRA)
642

Richard Kenner committed
643
/* Say where in the code a source line starts, for symbol table's sake.
644
   Operand:
645 646 647
   4: filename, if line number > 0, note-specific data otherwise.
   5: line number if > 0, enum note_insn otherwise.
   6: unique number if line number == note_insn_deleted_label.  */
648
DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", RTX_EXTRA)
Richard Kenner committed
649 650 651 652 653

/* ----------------------------------------------------------------------
   Top level constituents of INSN, JUMP_INSN and CALL_INSN.
   ---------------------------------------------------------------------- */
   
654 655 656 657 658 659 660
/* Conditionally execute code.
   Operand 0 is the condition that if true, the code is executed.
   Operand 1 is the code to be executed (typically a SET). 

   Semantics are that there are no side effects if the condition
   is false.  This pattern is created automatically by the if_convert
   pass run after reload or by target-specific splitters.  */
661
DEF_RTL_EXPR(COND_EXEC, "cond_exec", "ee", RTX_EXTRA)
662 663

/* Several operations to be done in parallel (perhaps under COND_EXEC).  */
664
DEF_RTL_EXPR(PARALLEL, "parallel", "E", RTX_EXTRA)
Richard Kenner committed
665 666 667 668 669 670 671

/* A string that is passed through to the assembler as input.
     One can obviously pass comments through by using the
     assembler comment syntax.
     These occur in an insn all by themselves as the PATTERN.
     They also appear inside an ASM_OPERANDS
     as a convenient way to hold a string.  */
672
DEF_RTL_EXPR(ASM_INPUT, "asm_input", "s", RTX_EXTRA)
Richard Kenner committed
673 674 675 676 677 678 679 680 681 682 683 684 685

/* An assembler instruction with operands.
   1st operand is the instruction template.
   2nd operand is the constraint for the output.
   3rd operand is the number of the output this expression refers to.
     When an insn stores more than one value, a separate ASM_OPERANDS
     is made for each output; this integer distinguishes them.
   4th is a vector of values of input operands.
   5th is a vector of modes and constraints for the input operands.
     Each element is an ASM_INPUT containing a constraint string
     and whose mode indicates the mode of the input operand.
   6th is the name of the containing source file.
   7th is the source line number.  */
686
DEF_RTL_EXPR(ASM_OPERANDS, "asm_operands", "ssiEEsi", RTX_EXTRA)
Richard Kenner committed
687

688 689 690 691 692 693 694 695 696
/* A machine-specific operation.
   1st operand is a vector of operands being used by the operation so that
     any needed reloads can be done.
   2nd operand is a unique value saying which of a number of machine-specific
     operations is to be performed.
   (Note that the vector must be the first operand because of the way that
   genrecog.c record positions within an insn.)
   This can occur all by itself in a PATTERN, as a component of a PARALLEL,
   or inside an expression.  */
697
DEF_RTL_EXPR(UNSPEC, "unspec", "Ei", RTX_EXTRA)
698

699
/* Similar, but a volatile operation and one which may trap.  */
700
DEF_RTL_EXPR(UNSPEC_VOLATILE, "unspec_volatile", "Ei", RTX_EXTRA)
701

Richard Kenner committed
702 703
/* Vector of addresses, stored as full words.  */
/* Each element is a LABEL_REF to a CODE_LABEL whose address we want.  */
704
DEF_RTL_EXPR(ADDR_VEC, "addr_vec", "E", RTX_EXTRA)
Richard Kenner committed
705 706 707 708

/* Vector of address differences X0 - BASE, X1 - BASE, ...
   First operand is BASE; the vector contains the X's.
   The machine mode of this rtx says how much space to leave
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728
   for each difference and is adjusted by branch shortening if
   CASE_VECTOR_SHORTEN_MODE is defined.
   The third and fourth operands store the target labels with the
   minimum and maximum addresses respectively.
   The fifth operand stores flags for use by branch shortening.
  Set at the start of shorten_branches:
   min_align: the minimum alignment for any of the target labels.
   base_after_vec: true iff BASE is after the ADDR_DIFF_VEC.
   min_after_vec: true iff minimum addr target label is after the ADDR_DIFF_VEC.
   max_after_vec: true iff maximum addr target label is after the ADDR_DIFF_VEC.
   min_after_base: true iff minimum address target label is after BASE.
   max_after_base: true iff maximum address target label is after BASE.
  Set by the actual branch shortening process:
   offset_unsigned: true iff offsets have to be treated as unsigned.
   scale: scaling that is necessary to make offsets fit into the mode.

   The third, fourth and fifth operands are only valid when
   CASE_VECTOR_SHORTEN_MODE is defined, and only in an optimizing
   compilations.  */
     
729
DEF_RTL_EXPR(ADDR_DIFF_VEC, "addr_diff_vec", "eEee0", RTX_EXTRA)
Richard Kenner committed
730

731 732 733 734 735 736 737 738 739
/* Memory prefetch, with attributes supported on some targets.
   Operand 1 is the address of the memory to fetch.
   Operand 2 is 1 for a write access, 0 otherwise.
   Operand 3 is the level of temporal locality; 0 means there is no
   temporal locality and 1, 2, and 3 are for increasing levels of temporal
   locality.

   The attributes specified by operands 2 and 3 are ignored for targets
   whose prefetch instructions do not support them.  */
740
DEF_RTL_EXPR(PREFETCH, "prefetch", "eee", RTX_EXTRA)
741

Richard Kenner committed
742 743 744 745 746 747 748 749 750 751
/* ----------------------------------------------------------------------
   At the top level of an instruction (perhaps under PARALLEL).
   ---------------------------------------------------------------------- */

/* Assignment.
   Operand 1 is the location (REG, MEM, PC, CC0 or whatever) assigned to.
   Operand 2 is the value stored there.
   ALL assignment must use SET.
   Instructions that do multiple assignments must use multiple SET,
   under PARALLEL.  */
752
DEF_RTL_EXPR(SET, "set", "ee", RTX_EXTRA)
Richard Kenner committed
753 754 755 756

/* Indicate something is used in a way that we don't want to explain.
   For example, subroutine calls will use the register
   in which the static chain is passed.  */
757
DEF_RTL_EXPR(USE, "use", "e", RTX_EXTRA)
Richard Kenner committed
758 759 760 761

/* Indicate something is clobbered in a way that we don't want to explain.
   For example, subroutine calls will clobber some physical registers
   (the ones that are by convention not saved).  */
762
DEF_RTL_EXPR(CLOBBER, "clobber", "e", RTX_EXTRA)
Richard Kenner committed
763 764 765 766 767

/* Call a subroutine.
   Operand 1 is the address to call.
   Operand 2 is the number of arguments.  */

768
DEF_RTL_EXPR(CALL, "call", "ee", RTX_EXTRA)
Richard Kenner committed
769 770 771

/* Return from a subroutine.  */

772
DEF_RTL_EXPR(RETURN, "return", "", RTX_EXTRA)
Richard Kenner committed
773 774 775 776 777

/* Conditional trap.
   Operand 1 is the condition.
   Operand 2 is the trap code.
   For an unconditional trap, make the condition (const_int 1).  */
778
DEF_RTL_EXPR(TRAP_IF, "trap_if", "ee", RTX_EXTRA)
Richard Kenner committed
779

780 781 782
/* Placeholder for _Unwind_Resume before we know if a function call
   or a branch is needed.  Operand 1 is the exception region from
   which control is flowing.  */
783
DEF_RTL_EXPR(RESX, "resx", "i", RTX_EXTRA)
784

Richard Kenner committed
785 786 787 788 789
/* ----------------------------------------------------------------------
   Primitive values for use in expressions.
   ---------------------------------------------------------------------- */

/* numeric integer constant */
790
DEF_RTL_EXPR(CONST_INT, "const_int", "w", RTX_CONST_OBJ)
Richard Kenner committed
791

792
/* numeric floating point constant.
793 794
   Operands hold the value.  They are all 'w' and there may be from 2 to 6;
   see real.h.  */
795
DEF_RTL_EXPR(CONST_DOUBLE, "const_double", CONST_DOUBLE_FORMAT, RTX_CONST_OBJ)
Richard Kenner committed
796

797
/* Describes a vector constant.  */
798
DEF_RTL_EXPR(CONST_VECTOR, "const_vector", "E", RTX_EXTRA)
799

Richard Kenner committed
800
/* String constant.  Used only for attributes right now.  */
801
DEF_RTL_EXPR(CONST_STRING, "const_string", "s", RTX_OBJ)
Richard Kenner committed
802 803 804 805 806

/* This is used to encapsulate an expression whose value is constant
   (such as the sum of a SYMBOL_REF and a CONST_INT) so that it will be
   recognized as a constant operand rather than by arithmetic instructions.  */

807
DEF_RTL_EXPR(CONST, "const", "e", RTX_CONST_OBJ)
Jeff Law committed
808

Richard Kenner committed
809 810
/* program counter.  Ordinary jumps are represented
   by a SET whose first operand is (PC).  */
811
DEF_RTL_EXPR(PC, "pc", "", RTX_OBJ)
Richard Kenner committed
812

813
/* Used in the cselib routines to describe a value.  */
814
DEF_RTL_EXPR(VALUE, "value", "0", RTX_OBJ)
815

816 817 818
/* A register.  The "operand" is the register number, accessed with
   the REGNO macro.  If this number is less than FIRST_PSEUDO_REGISTER
   than a hardware register is being referred to.  The second operand
819 820 821 822
   holds the original register number - this will be different for a
   pseudo register that got turned into a hard register.
   This rtx needs to have as many (or more) fields as a MEM, since we
   can change REG rtx's into MEMs during reload.  */
823
DEF_RTL_EXPR(REG, "reg", "i00", RTX_OBJ)
Richard Kenner committed
824 825 826 827 828 829

/* A scratch register.  This represents a register used only within a
   single insn.  It will be turned into a REG during register allocation
   or reload unless the constraint indicates that the register won't be
   needed, in which case it can remain a SCRATCH.  This code is
   marked as having one operand so it can be turned into a REG.  */
830
DEF_RTL_EXPR(SCRATCH, "scratch", "0", RTX_OBJ)
Richard Kenner committed
831 832 833 834 835 836 837 838 839

/* One word of a multi-word value.
   The first operand is the complete value; the second says which word.
   The WORDS_BIG_ENDIAN flag controls whether word number 0
   (as numbered in a SUBREG) is the most or least significant word.

   This is also used to refer to a value in a different machine mode.
   For example, it can be used to refer to a SImode value as if it were
   Qimode, or vice versa.  Then the word number is always 0.  */
840
DEF_RTL_EXPR(SUBREG, "subreg", "ei", RTX_EXTRA)
Richard Kenner committed
841 842 843 844 845 846 847 848 849 850 851 852

/* This one-argument rtx is used for move instructions
   that are guaranteed to alter only the low part of a destination.
   Thus, (SET (SUBREG:HI (REG...)) (MEM:HI ...))
   has an unspecified effect on the high part of REG,
   but (SET (STRICT_LOW_PART (SUBREG:HI (REG...))) (MEM:HI ...))
   is guaranteed to alter only the bits of REG that are in HImode.

   The actual instruction used is probably the same in both cases,
   but the register constraints may be tighter when STRICT_LOW_PART
   is in use.  */

853
DEF_RTL_EXPR(STRICT_LOW_PART, "strict_low_part", "e", RTX_EXTRA)
Richard Kenner committed
854

855 856 857 858
/* (CONCAT a b) represents the virtual concatenation of a and b
   to make a value that has as many bits as a and b put together.
   This is used for complex values.  Normally it appears only
   in DECL_RTLs and during RTL generation, but not in the insn chain.  */
859
DEF_RTL_EXPR(CONCAT, "concat", "ee", RTX_OBJ)
860

861 862 863
/* A memory location; operand is the address.  The second operand is the
   alias set to which this MEM belongs.  We use `0' instead of `w' for this
   field so that the field need not be specified in machine descriptions.  */
864
DEF_RTL_EXPR(MEM, "mem", "e0", RTX_OBJ)
Richard Kenner committed
865 866 867 868 869

/* Reference to an assembler label in the code for this function.
   The operand is a CODE_LABEL found in the insn chain.
   The unprinted fields 1 and 2 are used in flow.c for the
   LABEL_NEXTREF and CONTAINING_INSN.  */
870
DEF_RTL_EXPR(LABEL_REF, "label_ref", "u00", RTX_CONST_OBJ)
Richard Kenner committed
871

872 873 874
/* Reference to a named label: 
   Operand 0: label name
   Operand 1: flags (see SYMBOL_FLAG_* in rtl.h)
875 876
   Operand 2: tree from which this symbol is derived, or null.
   This is either a DECL node, or some kind of constant.  */
877
DEF_RTL_EXPR(SYMBOL_REF, "symbol_ref", "s00", RTX_CONST_OBJ)
Richard Kenner committed
878 879 880 881 882 883

/* The condition code register is represented, in our imagination,
   as a register holding a value that can be compared to zero.
   In fact, the machine has already compared them and recorded the
   results; but instructions that look at the condition code
   pretend to be looking at the entire value and comparing it.  */
884
DEF_RTL_EXPR(CC0, "cc0", "", RTX_OBJ)
Richard Kenner committed
885

886 887 888 889 890 891 892
/* Reference to the address of a register.  Removed by purge_addressof after
   CSE has elided as many as possible.
   1st operand: the register we may need the address of.
   2nd operand: the original pseudo regno we were generated for.
   3rd operand: the decl for the object in the register, for
     put_reg_in_stack.  */

893
DEF_RTL_EXPR(ADDRESSOF, "addressof", "eit", RTX_OBJ)
894

Richard Kenner committed
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
/* =====================================================================
   A QUEUED expression really points to a member of the queue of instructions
   to be output later for postincrement/postdecrement.
   QUEUED expressions never become part of instructions.
   When a QUEUED expression would be put into an instruction,
   instead either the incremented variable or a copy of its previous
   value is used.
   
   Operands are:
   0. the variable to be incremented (a REG rtx).
   1. the incrementing instruction, or 0 if it hasn't been output yet.
   2. A REG rtx for a copy of the old value of the variable, or 0 if none yet.
   3. the body to use for the incrementing instruction
   4. the next QUEUED expression in the queue.
   ====================================================================== */

911
DEF_RTL_EXPR(QUEUED, "queued", "eeeee", RTX_EXTRA)
Richard Kenner committed
912 913 914 915 916 917 918 919 920 921 922

/* ----------------------------------------------------------------------
   Expressions for operators in an rtl pattern
   ---------------------------------------------------------------------- */

/* if_then_else.  This is used in representing ordinary
   conditional jump instructions.
     Operand:
     0:  condition
     1:  then expr
     2:  else expr */
923
DEF_RTL_EXPR(IF_THEN_ELSE, "if_then_else", "eee", RTX_TERNARY)
Richard Kenner committed
924 925 926 927

/* General conditional. The first operand is a vector composed of pairs of
   expressions.  The first element of each pair is evaluated, in turn.
   The value of the conditional is the second expression of the first pair
928
   whose first expression evaluates nonzero.  If none of the expressions is
Richard Kenner committed
929 930 931
   true, the second operand will be used as the value of the conditional.

   This should be replaced with use of IF_THEN_ELSE.  */
932
DEF_RTL_EXPR(COND, "cond", "Ee", RTX_EXTRA)
Richard Kenner committed
933 934

/* Comparison, produces a condition code result.  */
935
DEF_RTL_EXPR(COMPARE, "compare", "ee", RTX_BIN_ARITH)
Richard Kenner committed
936 937

/* plus */
938
DEF_RTL_EXPR(PLUS, "plus", "ee", RTX_COMM_ARITH)
Richard Kenner committed
939 940

/* Operand 0 minus operand 1.  */
941
DEF_RTL_EXPR(MINUS, "minus", "ee", RTX_BIN_ARITH)
Richard Kenner committed
942 943

/* Minus operand 0.  */
944
DEF_RTL_EXPR(NEG, "neg", "e", RTX_UNARY)
Richard Kenner committed
945

946
DEF_RTL_EXPR(MULT, "mult", "ee", RTX_COMM_ARITH)
Richard Kenner committed
947 948

/* Operand 0 divided by operand 1.  */
949
DEF_RTL_EXPR(DIV, "div", "ee", RTX_BIN_ARITH)
Richard Kenner committed
950
/* Remainder of operand 0 divided by operand 1.  */
951
DEF_RTL_EXPR(MOD, "mod", "ee", RTX_BIN_ARITH)
Richard Kenner committed
952 953

/* Unsigned divide and remainder.  */
954 955
DEF_RTL_EXPR(UDIV, "udiv", "ee", RTX_BIN_ARITH)
DEF_RTL_EXPR(UMOD, "umod", "ee", RTX_BIN_ARITH)
Richard Kenner committed
956 957

/* Bitwise operations.  */
958
DEF_RTL_EXPR(AND, "and", "ee", RTX_COMM_ARITH)
Richard Kenner committed
959

960
DEF_RTL_EXPR(IOR, "ior", "ee", RTX_COMM_ARITH)
Richard Kenner committed
961

962
DEF_RTL_EXPR(XOR, "xor", "ee", RTX_COMM_ARITH)
Richard Kenner committed
963

964
DEF_RTL_EXPR(NOT, "not", "e", RTX_UNARY)
Richard Kenner committed
965 966 967

/* Operand:
     0:  value to be shifted.
Richard Kenner committed
968
     1:  number of bits.  */
969 970 971 972 973
DEF_RTL_EXPR(ASHIFT, "ashift", "ee", RTX_BIN_ARITH) /* shift left */
DEF_RTL_EXPR(ROTATE, "rotate", "ee", RTX_BIN_ARITH) /* rotate left */
DEF_RTL_EXPR(ASHIFTRT, "ashiftrt", "ee", RTX_BIN_ARITH) /* arithmetic shift right */
DEF_RTL_EXPR(LSHIFTRT, "lshiftrt", "ee", RTX_BIN_ARITH) /* logical shift right */
DEF_RTL_EXPR(ROTATERT, "rotatert", "ee", RTX_BIN_ARITH) /* rotate right */
Richard Kenner committed
974 975 976 977 978

/* Minimum and maximum values of two operands.  We need both signed and
   unsigned forms.  (We cannot use MIN for SMIN because it conflicts
   with a macro of the same name.) */

979 980 981 982
DEF_RTL_EXPR(SMIN, "smin", "ee", RTX_COMM_ARITH)
DEF_RTL_EXPR(SMAX, "smax", "ee", RTX_COMM_ARITH)
DEF_RTL_EXPR(UMIN, "umin", "ee", RTX_COMM_ARITH)
DEF_RTL_EXPR(UMAX, "umax", "ee", RTX_COMM_ARITH)
Richard Kenner committed
983 984 985 986 987 988 989 990

/* These unary operations are used to represent incrementation
   and decrementation as they occur in memory addresses.
   The amount of increment or decrement are not represented
   because they can be understood from the machine-mode of the
   containing MEM.  These operations exist in only two cases:
   1. pushes onto the stack.
   2. created automatically by the life_analysis pass in flow.c.  */
991 992 993 994
DEF_RTL_EXPR(PRE_DEC, "pre_dec", "e", RTX_AUTOINC)
DEF_RTL_EXPR(PRE_INC, "pre_inc", "e", RTX_AUTOINC)
DEF_RTL_EXPR(POST_DEC, "post_dec", "e", RTX_AUTOINC)
DEF_RTL_EXPR(POST_INC, "post_inc", "e", RTX_AUTOINC)
Richard Kenner committed
995

996 997 998
/* These binary operations are used to represent generic address
   side-effects in memory addresses, except for simple incrementation
   or decrementation which use the above operations.  They are
999 1000 1001 1002 1003 1004 1005 1006 1007
   created automatically by the life_analysis pass in flow.c.
   The first operand is a REG which is used as the address.
   The second operand is an expression that is assigned to the
   register, either before (PRE_MODIFY) or after (POST_MODIFY)
   evaluating the address.
   Currently, the compiler can only handle second operands of the
   form (plus (reg) (reg)) and (plus (reg) (const_int)), where
   the first operand of the PLUS has to be the same register as
   the first operand of the *_MODIFY.  */
1008 1009
DEF_RTL_EXPR(PRE_MODIFY, "pre_modify", "ee", RTX_AUTOINC)
DEF_RTL_EXPR(POST_MODIFY, "post_modify", "ee", RTX_AUTOINC)
1010

Richard Kenner committed
1011 1012
/* Comparison operations.  The ordered comparisons exist in two
   flavors, signed and unsigned.  */
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
DEF_RTL_EXPR(NE, "ne", "ee", RTX_COMM_COMPARE)
DEF_RTL_EXPR(EQ, "eq", "ee", RTX_COMM_COMPARE)
DEF_RTL_EXPR(GE, "ge", "ee", RTX_COMPARE)
DEF_RTL_EXPR(GT, "gt", "ee", RTX_COMPARE)
DEF_RTL_EXPR(LE, "le", "ee", RTX_COMPARE)
DEF_RTL_EXPR(LT, "lt", "ee", RTX_COMPARE)
DEF_RTL_EXPR(GEU, "geu", "ee", RTX_COMPARE)
DEF_RTL_EXPR(GTU, "gtu", "ee", RTX_COMPARE)
DEF_RTL_EXPR(LEU, "leu", "ee", RTX_COMPARE)
DEF_RTL_EXPR(LTU, "ltu", "ee", RTX_COMPARE)
Richard Kenner committed
1023

1024
/* Additional floating point unordered comparison flavors.  */
1025 1026
DEF_RTL_EXPR(UNORDERED, "unordered", "ee", RTX_COMM_COMPARE)
DEF_RTL_EXPR(ORDERED, "ordered", "ee", RTX_COMM_COMPARE)
1027

1028
/* These are equivalent to unordered or ...  */
1029 1030 1031 1032 1033
DEF_RTL_EXPR(UNEQ, "uneq", "ee", RTX_COMM_COMPARE)
DEF_RTL_EXPR(UNGE, "unge", "ee", RTX_COMPARE)
DEF_RTL_EXPR(UNGT, "ungt", "ee", RTX_COMPARE)
DEF_RTL_EXPR(UNLE, "unle", "ee", RTX_COMPARE)
DEF_RTL_EXPR(UNLT, "unlt", "ee", RTX_COMPARE)
1034

1035
/* This is an ordered NE, ie !UNEQ, ie false for NaN.  */
1036
DEF_RTL_EXPR(LTGT, "ltgt", "ee", RTX_COMM_COMPARE)
1037

Richard Kenner committed
1038 1039 1040
/* Represents the result of sign-extending the sole operand.
   The machine modes of the operand and of the SIGN_EXTEND expression
   determine how much sign-extension is going on.  */
1041
DEF_RTL_EXPR(SIGN_EXTEND, "sign_extend", "e", RTX_UNARY)
Richard Kenner committed
1042 1043

/* Similar for zero-extension (such as unsigned short to int).  */
1044
DEF_RTL_EXPR(ZERO_EXTEND, "zero_extend", "e", RTX_UNARY)
Richard Kenner committed
1045 1046

/* Similar but here the operand has a wider mode.  */
1047
DEF_RTL_EXPR(TRUNCATE, "truncate", "e", RTX_UNARY)
Richard Kenner committed
1048 1049

/* Similar for extending floating-point values (such as SFmode to DFmode).  */
1050 1051
DEF_RTL_EXPR(FLOAT_EXTEND, "float_extend", "e", RTX_UNARY)
DEF_RTL_EXPR(FLOAT_TRUNCATE, "float_truncate", "e", RTX_UNARY)
Richard Kenner committed
1052 1053

/* Conversion of fixed point operand to floating point value.  */
1054
DEF_RTL_EXPR(FLOAT, "float", "e", RTX_UNARY)
Richard Kenner committed
1055 1056 1057 1058 1059 1060 1061

/* With fixed-point machine mode:
   Conversion of floating point operand to fixed point value.
   Value is defined only when the operand's value is an integer.
   With floating-point machine mode (and operand with same mode):
   Operand is rounded toward zero to produce an integer value
   represented in floating point.  */
1062
DEF_RTL_EXPR(FIX, "fix", "e", RTX_UNARY)
Richard Kenner committed
1063 1064

/* Conversion of unsigned fixed point operand to floating point value.  */
1065
DEF_RTL_EXPR(UNSIGNED_FLOAT, "unsigned_float", "e", RTX_UNARY)
Richard Kenner committed
1066 1067 1068 1069

/* With fixed-point machine mode:
   Conversion of floating point operand to *unsigned* fixed point value.
   Value is defined only when the operand's value is an integer.  */
1070
DEF_RTL_EXPR(UNSIGNED_FIX, "unsigned_fix", "e", RTX_UNARY)
Richard Kenner committed
1071 1072

/* Absolute value */
1073
DEF_RTL_EXPR(ABS, "abs", "e", RTX_UNARY)
Richard Kenner committed
1074 1075

/* Square root */
1076
DEF_RTL_EXPR(SQRT, "sqrt", "e", RTX_UNARY)
Richard Kenner committed
1077 1078 1079 1080

/* Find first bit that is set.
   Value is 1 + number of trailing zeros in the arg.,
   or 0 if arg is 0.  */
1081
DEF_RTL_EXPR(FFS, "ffs", "e", RTX_UNARY)
Richard Kenner committed
1082

Richard Henderson committed
1083
/* Count leading zeros.  */
1084
DEF_RTL_EXPR(CLZ, "clz", "e", RTX_UNARY)
Richard Henderson committed
1085 1086

/* Count trailing zeros.  */
1087
DEF_RTL_EXPR(CTZ, "ctz", "e", RTX_UNARY)
Richard Henderson committed
1088 1089

/* Population count (number of 1 bits).  */
1090
DEF_RTL_EXPR(POPCOUNT, "popcount", "e", RTX_UNARY)
Richard Henderson committed
1091 1092

/* Population parity (number of 1 bits modulo 2).  */
1093
DEF_RTL_EXPR(PARITY, "parity", "e", RTX_UNARY)
Richard Henderson committed
1094

Richard Kenner committed
1095 1096 1097 1098 1099 1100 1101 1102 1103
/* Reference to a signed bit-field of specified size and position.
   Operand 0 is the memory unit (usually SImode or QImode) which
   contains the field's first bit.  Operand 1 is the width, in bits.
   Operand 2 is the number of bits in the memory unit before the
   first bit of this field.
   If BITS_BIG_ENDIAN is defined, the first bit is the msb and
   operand 2 counts from the msb of the memory unit.
   Otherwise, the first bit is the lsb and operand 2 counts from
   the lsb of the memory unit.  */
1104
DEF_RTL_EXPR(SIGN_EXTRACT, "sign_extract", "eee", RTX_BITFIELD_OPS)
Richard Kenner committed
1105 1106

/* Similar for unsigned bit-field.  */
1107
DEF_RTL_EXPR(ZERO_EXTRACT, "zero_extract", "eee", RTX_BITFIELD_OPS)
Richard Kenner committed
1108 1109 1110 1111

/* For RISC machines.  These save memory when splitting insns.  */

/* HIGH are the high-order bits of a constant expression.  */
1112
DEF_RTL_EXPR(HIGH, "high", "e", RTX_CONST_OBJ)
Richard Kenner committed
1113 1114 1115

/* LO_SUM is the sum of a register and the low-order bits
   of a constant expression.  */
1116
DEF_RTL_EXPR(LO_SUM, "lo_sum", "ee", RTX_OBJ)
Richard Kenner committed
1117

1118
/* Header for range information.  Operand 0 is the NOTE_INSN_RANGE_BEG insn.
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
   Operand 1 is the NOTE_INSN_RANGE_END insn.  Operand 2 is a vector of all of
   the registers that can be substituted within this range.  Operand 3 is the
   number of calls in the range.  Operand 4 is the number of insns in the
   range.  Operand 5 is the unique range number for this range.  Operand 6 is
   the basic block # of the start of the live range.  Operand 7 is the basic
   block # of the end of the live range.  Operand 8 is the loop depth.  Operand
   9 is a bitmap of the registers live at the start of the range.  Operand 10
   is a bitmap of the registers live at the end of the range.  Operand 11 is
   marker number for the start of the range.  Operand 12 is the marker number
   for the end of the range.  */
1129
DEF_RTL_EXPR(RANGE_INFO, "range_info", "uuEiiiiiibbii", RTX_EXTRA)
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142

/* Registers that can be substituted within the range.  Operand 0 is the
   original pseudo register number.  Operand 1 will be filled in with the
   pseudo register the value is copied for the duration of the range.  Operand
   2 is the number of references within the range to the register.  Operand 3
   is the number of sets or clobbers of the register in the range.  Operand 4
   is the number of deaths the register has.  Operand 5 is the copy flags that
   give the status of whether a copy is needed from the original register to
   the new register at the beginning of the range, or whether a copy from the
   new register back to the original at the end of the range.  Operand 6 is the
   live length.  Operand 7 is the number of calls that this register is live
   across.  Operand 8 is the symbol node of the variable if the register is a
   user variable.  Operand 9 is the block node that the variable is declared
1143
   in if the register is a user variable.  */
1144
DEF_RTL_EXPR(RANGE_REG, "range_reg", "iiiiiiiitt", RTX_EXTRA)
1145 1146 1147 1148 1149

/* Information about a local variable's ranges.  Operand 0 is an EXPR_LIST of
   the different ranges a variable is in where it is copied to a different
   pseudo register.  Operand 1 is the block that the variable is declared in.
   Operand 2 is the number of distinct ranges.  */
1150
DEF_RTL_EXPR(RANGE_VAR, "range_var", "eti", RTX_EXTRA)
1151 1152 1153

/* Information about the registers that are live at the current point.  Operand
   0 is the live bitmap.  Operand 1 is the original block number.  */
1154
DEF_RTL_EXPR(RANGE_LIVE, "range_live", "bi", RTX_EXTRA)
1155

1156 1157 1158 1159 1160
/* Describes a merge operation between two vector values.
   Operands 0 and 1 are the vectors to be merged, operand 2 is a bitmask
   that specifies where the parts of the result are taken from.  Set bits
   indicate operand 0, clear bits indicate operand 1.  The parts are defined
   by the mode of the vectors.  */
1161
DEF_RTL_EXPR(VEC_MERGE, "vec_merge", "eee", RTX_TERNARY)
1162 1163 1164 1165 1166

/* Describes an operation that selects parts of a vector.
   Operands 0 is the source vector, operand 1 is a PARALLEL that contains
   a CONST_INT for each of the subparts of the result vector, giving the
   number of the source subpart that should be stored into it.  */
1167
DEF_RTL_EXPR(VEC_SELECT, "vec_select", "ee", RTX_BIN_ARITH)
1168 1169 1170 1171

/* Describes a vector concat operation.  Operands 0 and 1 are the source
   vectors, the result is a vector that is as long as operands 0 and 1
   combined and is the concatenation of the two source vectors.  */
1172
DEF_RTL_EXPR(VEC_CONCAT, "vec_concat", "ee", RTX_BIN_ARITH)
1173 1174 1175 1176 1177

/* Describes an operation that converts a small vector into a larger one by
   duplicating the input values.  The output vector mode must have the same
   submodes as the input vector mode, and the number of output parts must be
   an integer multiple of the number of input parts.  */
1178
DEF_RTL_EXPR(VEC_DUPLICATE, "vec_duplicate", "e", RTX_UNARY)
1179 1180
     
/* Addition with signed saturation */
1181
DEF_RTL_EXPR(SS_PLUS, "ss_plus", "ee", RTX_COMM_ARITH)
1182 1183

/* Addition with unsigned saturation */
1184
DEF_RTL_EXPR(US_PLUS, "us_plus", "ee", RTX_COMM_ARITH)
1185 1186

/* Operand 0 minus operand 1, with signed saturation.  */
1187
DEF_RTL_EXPR(SS_MINUS, "ss_minus", "ee", RTX_BIN_ARITH)
1188 1189

/* Operand 0 minus operand 1, with unsigned saturation.  */
1190
DEF_RTL_EXPR(US_MINUS, "us_minus", "ee", RTX_BIN_ARITH)
1191 1192

/* Signed saturating truncate.  */
1193
DEF_RTL_EXPR(SS_TRUNCATE, "ss_truncate", "e", RTX_UNARY)
1194 1195

/* Unsigned saturating truncate.  */
1196
DEF_RTL_EXPR(US_TRUNCATE, "us_truncate", "e", RTX_UNARY)
1197

1198 1199
/* Information about the variable and its location.  */
DEF_RTL_EXPR(VAR_LOCATION, "var_location", "te", 'x')
Alex Samuel committed
1200

Richard Kenner committed
1201 1202 1203 1204 1205
/*
Local variables:
mode:c
End:
*/