1 /* Definitions for code generation pass of GNU compiler.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
25 #include "insn-codes.h"
27 /* Optabs are tables saying how to generate insn bodies
28 for various machine modes and numbers of operands.
29 Each optab applies to one operation.
31 For example, add_optab applies to addition.
33 The insn_code slot is the enum insn_code that says how to
34 generate an insn for this operation on a particular machine mode.
35 It is CODE_FOR_nothing if there is no such insn on the target machine.
37 The `lib_call' slot is the name of the library function that
38 can be used to perform the operation.
40 A few optabs, such as move_optab and cmp_optab, are used
43 struct optab_handlers
GTY(())
45 enum insn_code insn_code
;
52 struct optab_handlers handlers
[NUM_MACHINE_MODES
];
54 typedef struct optab
* optab
;
56 /* A convert_optab is for some sort of conversion operation between
57 modes. The first array index is the destination mode, the second
58 is the source mode. */
59 struct convert_optab
GTY(())
62 struct optab_handlers handlers
[NUM_MACHINE_MODES
][NUM_MACHINE_MODES
];
64 typedef struct convert_optab
*convert_optab
;
66 /* Given an enum insn_code, access the function to construct
67 the body of that kind of insn. */
68 #define GEN_FCN(CODE) (insn_data[CODE].genfun)
70 /* Enumeration of valid indexes into optab_table. */
78 /* Signed and fp multiply */
81 /* Signed multiply, return high word */
84 /* Signed multiply with result one machine mode wider than args */
87 /* Widening multiply of one unsigned and one signed operand. */
93 /* Signed divide-and-remainder in one */
97 /* Signed remainder */
100 /* Floating point remainder functions */
103 /* Convert float to integer in float fmt */
113 /* Arithmetic shift left */
115 /* Logical shift right */
117 /* Arithmetic shift right */
123 /* Signed and floating-point minimum value */
125 /* Signed and floating-point maximum value */
127 /* Unsigned minimum value */
129 /* Unsigned maximum value */
133 /* Arc tangent of y/x */
136 /* Move instruction. */
138 /* Move, preserving high part of register. */
140 /* Move, with a misaligned memory. */
143 /* Unary operations */
154 /* Bit scanning and counting */
174 /* Base-10 Exponential */
176 /* Base-2 Exponential */
180 /* Load exponent of a floating point number */
182 /* Radix-independent exponent */
185 /* Natural Logarithm */
187 /* Base-10 Logarithm */
189 /* Base-2 Logarithm */
191 /* logarithm of 1 plus argument */
193 /* Rounding functions */
202 /* Inverse tangent */
207 /* Test for infinite value */
210 /* Compare insn; two operands. */
212 /* Used only for libcalls for unsigned comparisons. */
214 /* tst insn; compare one operand against 0 */
217 /* Floating point comparison optabs - used primarily for libfuncs */
229 /* Combined compare & jump/store flags/move operations. */
234 /* Push instruction. */
237 /* Conditional add instruction. */
240 /* Reduction operations on a vector operand. */
248 /* Summation, with result machine mode one or more wider than args. */
252 /* Dot product, with result machine mode one or more wider than args. */
256 /* Set specified field of vector operand. */
258 /* Extract specified field of vector operand. */
260 /* Extract even/odd fields of vector operands. */
261 OTI_vec_extract_even
,
263 /* Interleave fields of vector operands. */
264 OTI_vec_interleave_high
,
265 OTI_vec_interleave_low
,
266 /* Initialize vector operand. */
268 /* Whole vector shift. The shift amount is in bits. */
271 /* Extract specified elements from vectors, for vector load. */
272 OTI_vec_realign_load
,
273 /* Widening multiplication.
274 The high/low part of the resulting vector of products is returned. */
275 OTI_vec_widen_umult_hi
,
276 OTI_vec_widen_umult_lo
,
277 OTI_vec_widen_smult_hi
,
278 OTI_vec_widen_smult_lo
,
279 /* Extract and widen the high/low part of a vector of signed/unsigned
285 /* Narrow (demote) and merge the elements of two vectors. */
290 /* Perform a raise to the power of integer. */
296 extern GTY(()) optab optab_table
[OTI_MAX
];
298 #define add_optab (optab_table[OTI_add])
299 #define sub_optab (optab_table[OTI_sub])
300 #define smul_optab (optab_table[OTI_smul])
301 #define addv_optab (optab_table[OTI_addv])
302 #define subv_optab (optab_table[OTI_subv])
303 #define smul_highpart_optab (optab_table[OTI_smul_highpart])
304 #define umul_highpart_optab (optab_table[OTI_umul_highpart])
305 #define smul_widen_optab (optab_table[OTI_smul_widen])
306 #define umul_widen_optab (optab_table[OTI_umul_widen])
307 #define usmul_widen_optab (optab_table[OTI_usmul_widen])
308 #define sdiv_optab (optab_table[OTI_sdiv])
309 #define smulv_optab (optab_table[OTI_smulv])
310 #define sdivv_optab (optab_table[OTI_sdivv])
311 #define sdivmod_optab (optab_table[OTI_sdivmod])
312 #define udiv_optab (optab_table[OTI_udiv])
313 #define udivmod_optab (optab_table[OTI_udivmod])
314 #define smod_optab (optab_table[OTI_smod])
315 #define umod_optab (optab_table[OTI_umod])
316 #define fmod_optab (optab_table[OTI_fmod])
317 #define remainder_optab (optab_table[OTI_remainder])
318 #define ftrunc_optab (optab_table[OTI_ftrunc])
319 #define and_optab (optab_table[OTI_and])
320 #define ior_optab (optab_table[OTI_ior])
321 #define xor_optab (optab_table[OTI_xor])
322 #define ashl_optab (optab_table[OTI_ashl])
323 #define lshr_optab (optab_table[OTI_lshr])
324 #define ashr_optab (optab_table[OTI_ashr])
325 #define rotl_optab (optab_table[OTI_rotl])
326 #define rotr_optab (optab_table[OTI_rotr])
327 #define smin_optab (optab_table[OTI_smin])
328 #define smax_optab (optab_table[OTI_smax])
329 #define umin_optab (optab_table[OTI_umin])
330 #define umax_optab (optab_table[OTI_umax])
331 #define pow_optab (optab_table[OTI_pow])
332 #define atan2_optab (optab_table[OTI_atan2])
334 #define mov_optab (optab_table[OTI_mov])
335 #define movstrict_optab (optab_table[OTI_movstrict])
336 #define movmisalign_optab (optab_table[OTI_movmisalign])
338 #define neg_optab (optab_table[OTI_neg])
339 #define negv_optab (optab_table[OTI_negv])
340 #define abs_optab (optab_table[OTI_abs])
341 #define absv_optab (optab_table[OTI_absv])
342 #define one_cmpl_optab (optab_table[OTI_one_cmpl])
343 #define bswap_optab (optab_table[OTI_bswap])
344 #define ffs_optab (optab_table[OTI_ffs])
345 #define clz_optab (optab_table[OTI_clz])
346 #define ctz_optab (optab_table[OTI_ctz])
347 #define popcount_optab (optab_table[OTI_popcount])
348 #define parity_optab (optab_table[OTI_parity])
349 #define sqrt_optab (optab_table[OTI_sqrt])
350 #define sincos_optab (optab_table[OTI_sincos])
351 #define sin_optab (optab_table[OTI_sin])
352 #define asin_optab (optab_table[OTI_asin])
353 #define cos_optab (optab_table[OTI_cos])
354 #define acos_optab (optab_table[OTI_acos])
355 #define exp_optab (optab_table[OTI_exp])
356 #define exp10_optab (optab_table[OTI_exp10])
357 #define exp2_optab (optab_table[OTI_exp2])
358 #define expm1_optab (optab_table[OTI_expm1])
359 #define ldexp_optab (optab_table[OTI_ldexp])
360 #define logb_optab (optab_table[OTI_logb])
361 #define ilogb_optab (optab_table[OTI_ilogb])
362 #define log_optab (optab_table[OTI_log])
363 #define log10_optab (optab_table[OTI_log10])
364 #define log2_optab (optab_table[OTI_log2])
365 #define log1p_optab (optab_table[OTI_log1p])
366 #define floor_optab (optab_table[OTI_floor])
367 #define ceil_optab (optab_table[OTI_ceil])
368 #define btrunc_optab (optab_table[OTI_btrunc])
369 #define round_optab (optab_table[OTI_round])
370 #define nearbyint_optab (optab_table[OTI_nearbyint])
371 #define rint_optab (optab_table[OTI_rint])
372 #define tan_optab (optab_table[OTI_tan])
373 #define atan_optab (optab_table[OTI_atan])
374 #define copysign_optab (optab_table[OTI_copysign])
376 #define isinf_optab (optab_table[OTI_isinf])
378 #define cmp_optab (optab_table[OTI_cmp])
379 #define ucmp_optab (optab_table[OTI_ucmp])
380 #define tst_optab (optab_table[OTI_tst])
382 #define eq_optab (optab_table[OTI_eq])
383 #define ne_optab (optab_table[OTI_ne])
384 #define gt_optab (optab_table[OTI_gt])
385 #define ge_optab (optab_table[OTI_ge])
386 #define lt_optab (optab_table[OTI_lt])
387 #define le_optab (optab_table[OTI_le])
388 #define unord_optab (optab_table[OTI_unord])
390 #define strlen_optab (optab_table[OTI_strlen])
392 #define cbranch_optab (optab_table[OTI_cbranch])
393 #define cmov_optab (optab_table[OTI_cmov])
394 #define cstore_optab (optab_table[OTI_cstore])
395 #define push_optab (optab_table[OTI_push])
396 #define addcc_optab (optab_table[OTI_addcc])
398 #define reduc_smax_optab (optab_table[OTI_reduc_smax])
399 #define reduc_umax_optab (optab_table[OTI_reduc_umax])
400 #define reduc_smin_optab (optab_table[OTI_reduc_smin])
401 #define reduc_umin_optab (optab_table[OTI_reduc_umin])
402 #define reduc_splus_optab (optab_table[OTI_reduc_splus])
403 #define reduc_uplus_optab (optab_table[OTI_reduc_uplus])
405 #define ssum_widen_optab (optab_table[OTI_ssum_widen])
406 #define usum_widen_optab (optab_table[OTI_usum_widen])
407 #define sdot_prod_optab (optab_table[OTI_sdot_prod])
408 #define udot_prod_optab (optab_table[OTI_udot_prod])
410 #define vec_set_optab (optab_table[OTI_vec_set])
411 #define vec_extract_optab (optab_table[OTI_vec_extract])
412 #define vec_extract_even_optab (optab_table[OTI_vec_extract_even])
413 #define vec_extract_odd_optab (optab_table[OTI_vec_extract_odd])
414 #define vec_interleave_high_optab (optab_table[OTI_vec_interleave_high])
415 #define vec_interleave_low_optab (optab_table[OTI_vec_interleave_low])
416 #define vec_init_optab (optab_table[OTI_vec_init])
417 #define vec_shl_optab (optab_table[OTI_vec_shl])
418 #define vec_shr_optab (optab_table[OTI_vec_shr])
419 #define vec_realign_load_optab (optab_table[OTI_vec_realign_load])
420 #define vec_widen_umult_hi_optab (optab_table[OTI_vec_widen_umult_hi])
421 #define vec_widen_umult_lo_optab (optab_table[OTI_vec_widen_umult_lo])
422 #define vec_widen_smult_hi_optab (optab_table[OTI_vec_widen_smult_hi])
423 #define vec_widen_smult_lo_optab (optab_table[OTI_vec_widen_smult_lo])
424 #define vec_unpacks_hi_optab (optab_table[OTI_vec_unpacks_hi])
425 #define vec_unpacku_hi_optab (optab_table[OTI_vec_unpacku_hi])
426 #define vec_unpacks_lo_optab (optab_table[OTI_vec_unpacks_lo])
427 #define vec_unpacku_lo_optab (optab_table[OTI_vec_unpacku_lo])
428 #define vec_pack_mod_optab (optab_table[OTI_vec_pack_mod])
429 #define vec_pack_ssat_optab (optab_table[OTI_vec_pack_ssat])
430 #define vec_pack_usat_optab (optab_table[OTI_vec_pack_usat])
432 #define powi_optab (optab_table[OTI_powi])
434 /* Conversion optabs have their own table and indexes. */
435 enum convert_optab_index
458 extern GTY(()) convert_optab convert_optab_table
[COI_MAX
];
460 #define sext_optab (convert_optab_table[COI_sext])
461 #define zext_optab (convert_optab_table[COI_zext])
462 #define trunc_optab (convert_optab_table[COI_trunc])
463 #define sfix_optab (convert_optab_table[COI_sfix])
464 #define ufix_optab (convert_optab_table[COI_ufix])
465 #define sfixtrunc_optab (convert_optab_table[COI_sfixtrunc])
466 #define ufixtrunc_optab (convert_optab_table[COI_ufixtrunc])
467 #define sfloat_optab (convert_optab_table[COI_sfloat])
468 #define ufloat_optab (convert_optab_table[COI_ufloat])
469 #define lrint_optab (convert_optab_table[COI_lrint])
470 #define lround_optab (convert_optab_table[COI_lround])
471 #define lfloor_optab (convert_optab_table[COI_lfloor])
472 #define lceil_optab (convert_optab_table[COI_lceil])
474 /* These arrays record the insn_code of insns that may be needed to
475 perform input and output reloads of special objects. They provide a
476 place to pass a scratch register. */
477 extern enum insn_code reload_in_optab
[NUM_MACHINE_MODES
];
478 extern enum insn_code reload_out_optab
[NUM_MACHINE_MODES
];
480 /* Contains the optab used for each rtx code. */
481 extern GTY(()) optab code_to_optab
[NUM_RTX_CODE
+ 1];
484 typedef rtx (*rtxfun
) (rtx
);
486 /* Indexed by the rtx-code for a conditional (e.g. EQ, LT,...)
487 gives the gen_function to make a branch to test that condition. */
489 extern rtxfun bcc_gen_fctn
[NUM_RTX_CODE
];
491 /* Indexed by the rtx-code for a conditional (e.g. EQ, LT,...)
492 gives the insn code to make a store-condition insn
493 to test that condition. */
495 extern enum insn_code setcc_gen_code
[NUM_RTX_CODE
];
497 #ifdef HAVE_conditional_move
498 /* Indexed by the machine mode, gives the insn code to make a conditional
501 extern enum insn_code movcc_gen_code
[NUM_MACHINE_MODES
];
504 /* Indexed by the machine mode, gives the insn code for vector conditional
507 extern enum insn_code vcond_gen_code
[NUM_MACHINE_MODES
];
508 extern enum insn_code vcondu_gen_code
[NUM_MACHINE_MODES
];
510 /* This array records the insn_code of insns to perform block moves. */
511 extern enum insn_code movmem_optab
[NUM_MACHINE_MODES
];
513 /* This array records the insn_code of insns to perform block sets. */
514 extern enum insn_code setmem_optab
[NUM_MACHINE_MODES
];
516 /* These arrays record the insn_code of two different kinds of insns
517 to perform block compares. */
518 extern enum insn_code cmpstr_optab
[NUM_MACHINE_MODES
];
519 extern enum insn_code cmpstrn_optab
[NUM_MACHINE_MODES
];
520 extern enum insn_code cmpmem_optab
[NUM_MACHINE_MODES
];
522 /* Synchronization primitives. This first set is atomic operation for
523 which we don't care about the resulting value. */
524 extern enum insn_code sync_add_optab
[NUM_MACHINE_MODES
];
525 extern enum insn_code sync_sub_optab
[NUM_MACHINE_MODES
];
526 extern enum insn_code sync_ior_optab
[NUM_MACHINE_MODES
];
527 extern enum insn_code sync_and_optab
[NUM_MACHINE_MODES
];
528 extern enum insn_code sync_xor_optab
[NUM_MACHINE_MODES
];
529 extern enum insn_code sync_nand_optab
[NUM_MACHINE_MODES
];
531 /* This second set is atomic operations in which we return the value
532 that existed in memory before the operation. */
533 extern enum insn_code sync_old_add_optab
[NUM_MACHINE_MODES
];
534 extern enum insn_code sync_old_sub_optab
[NUM_MACHINE_MODES
];
535 extern enum insn_code sync_old_ior_optab
[NUM_MACHINE_MODES
];
536 extern enum insn_code sync_old_and_optab
[NUM_MACHINE_MODES
];
537 extern enum insn_code sync_old_xor_optab
[NUM_MACHINE_MODES
];
538 extern enum insn_code sync_old_nand_optab
[NUM_MACHINE_MODES
];
540 /* This third set is atomic operations in which we return the value
541 that resulted after performing the operation. */
542 extern enum insn_code sync_new_add_optab
[NUM_MACHINE_MODES
];
543 extern enum insn_code sync_new_sub_optab
[NUM_MACHINE_MODES
];
544 extern enum insn_code sync_new_ior_optab
[NUM_MACHINE_MODES
];
545 extern enum insn_code sync_new_and_optab
[NUM_MACHINE_MODES
];
546 extern enum insn_code sync_new_xor_optab
[NUM_MACHINE_MODES
];
547 extern enum insn_code sync_new_nand_optab
[NUM_MACHINE_MODES
];
549 /* Atomic compare and swap. */
550 extern enum insn_code sync_compare_and_swap
[NUM_MACHINE_MODES
];
551 extern enum insn_code sync_compare_and_swap_cc
[NUM_MACHINE_MODES
];
553 /* Atomic exchange with acquire semantics. */
554 extern enum insn_code sync_lock_test_and_set
[NUM_MACHINE_MODES
];
556 /* Atomic clear with release semantics. */
557 extern enum insn_code sync_lock_release
[NUM_MACHINE_MODES
];
559 /* Define functions given in optabs.c. */
561 extern rtx
expand_widen_pattern_expr (tree exp
, rtx op0
, rtx op1
, rtx wide_op
,
562 rtx target
, int unsignedp
);
564 extern rtx
expand_ternary_op (enum machine_mode mode
, optab ternary_optab
,
565 rtx op0
, rtx op1
, rtx op2
, rtx target
,
568 /* Expand a binary operation given optab and rtx operands. */
569 extern rtx
expand_binop (enum machine_mode
, optab
, rtx
, rtx
, rtx
, int,
572 extern bool force_expand_binop (enum machine_mode
, optab
, rtx
, rtx
, rtx
, int,
575 /* Expand a binary operation with both signed and unsigned forms. */
576 extern rtx
sign_expand_binop (enum machine_mode
, optab
, optab
, rtx
, rtx
,
577 rtx
, int, enum optab_methods
);
579 /* Generate code to perform an operation on one operand with two results. */
580 extern int expand_twoval_unop (optab
, rtx
, rtx
, rtx
, int);
582 /* Generate code to perform an operation on two operands with two results. */
583 extern int expand_twoval_binop (optab
, rtx
, rtx
, rtx
, rtx
, int);
585 /* Generate code to perform an operation on two operands with two
586 results, using a library function. */
587 extern bool expand_twoval_binop_libfunc (optab
, rtx
, rtx
, rtx
, rtx
,
590 /* Expand a unary arithmetic operation given optab rtx operand. */
591 extern rtx
expand_unop (enum machine_mode
, optab
, rtx
, rtx
, int);
593 /* Expand the absolute value operation. */
594 extern rtx
expand_abs_nojump (enum machine_mode
, rtx
, rtx
, int);
595 extern rtx
expand_abs (enum machine_mode
, rtx
, rtx
, int, int);
597 /* Expand the copysign operation. */
598 extern rtx
expand_copysign (rtx
, rtx
, rtx
);
600 /* Generate an instruction with a given INSN_CODE with an output and
602 extern void emit_unop_insn (int, rtx
, rtx
, enum rtx_code
);
604 /* Emit code to perform a series of operations on a multi-word quantity, one
606 extern rtx
emit_no_conflict_block (rtx
, rtx
, rtx
, rtx
, rtx
);
608 /* Emit one rtl insn to compare two rtx's. */
609 extern void emit_cmp_insn (rtx
, rtx
, enum rtx_code
, rtx
, enum machine_mode
,
612 /* The various uses that a comparison can have; used by can_compare_p:
613 jumps, conditional moves, store flag operations. */
614 enum can_compare_purpose
621 /* Return the optab used for computing the given operation on the type
622 given by the second argument. */
623 extern optab
optab_for_tree_code (enum tree_code
, tree
);
625 /* Nonzero if a compare of mode MODE can be done straightforwardly
626 (without splitting it into pieces). */
627 extern int can_compare_p (enum rtx_code
, enum machine_mode
,
628 enum can_compare_purpose
);
630 /* Return the INSN_CODE to use for an extend operation. */
631 extern enum insn_code
can_extend_p (enum machine_mode
, enum machine_mode
, int);
633 /* Generate the body of an insn to extend Y (with mode MFROM)
634 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
635 extern rtx
gen_extend_insn (rtx
, rtx
, enum machine_mode
,
636 enum machine_mode
, int);
638 /* Call this to reset the function entry for one optab. */
639 extern void set_optab_libfunc (optab
, enum machine_mode
, const char *);
640 extern void set_conv_libfunc (convert_optab
, enum machine_mode
,
641 enum machine_mode
, const char *);
643 /* Generate code for a FLOAT_EXPR. */
644 extern void expand_float (rtx
, rtx
, int);
646 /* Generate code for a FIX_EXPR. */
647 extern void expand_fix (rtx
, rtx
, int);
649 /* Generate code for float to integral conversion. */
650 extern bool expand_sfix_optab (rtx
, rtx
, convert_optab
);
652 /* Return tree if target supports vector operations for COND_EXPR. */
653 bool expand_vec_cond_expr_p (tree
, enum machine_mode
);
655 /* Generate code for VEC_COND_EXPR. */
656 extern rtx
expand_vec_cond_expr (tree
, rtx
);
658 /* Generate code for VEC_LSHIFT_EXPR and VEC_RSHIFT_EXPR. */
659 extern rtx
expand_vec_shift_expr (tree
, rtx
);
661 #endif /* GCC_OPTABS_H */