1 /* Definitions for code generation pass of GNU compiler.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
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 3, 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 COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
24 #include "insn-codes.h"
26 /* Optabs are tables saying how to generate insn bodies
27 for various machine modes and numbers of operands.
28 Each optab applies to one operation.
30 For example, add_optab applies to addition.
32 The `lib_call' slot is the name of the library function that
33 can be used to perform the operation.
35 A few optabs, such as move_optab, are used by special code. */
39 /* I - CODE_FOR_nothing, where I is either the insn code of the
40 associated insn generator or CODE_FOR_nothing if there is no such
41 insn on the target machine. */
49 const char *libcall_basename
;
50 void (*libcall_gen
)(struct optab_d
*, const char *name
, char suffix
,
52 struct optab_handlers handlers
[NUM_MACHINE_MODES
];
54 typedef struct optab_d
* 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_d
62 const char *libcall_basename
;
63 void (*libcall_gen
)(struct convert_optab_d
*, const char *name
,
66 struct optab_handlers handlers
[NUM_MACHINE_MODES
][NUM_MACHINE_MODES
];
68 typedef struct convert_optab_d
*convert_optab
;
70 /* Given an enum insn_code, access the function to construct
71 the body of that kind of insn. */
72 #define GEN_FCN(CODE) (insn_data[CODE].genfun)
74 /* Enumeration of valid indexes into optab_table. */
77 /* Fixed-point operators with signed/unsigned saturation */
96 /* Signed and fp multiply */
99 /* Signed multiply, return high word */
102 /* Signed multiply with result one machine mode wider than args */
105 /* Widening multiply of one unsigned and one signed operand. */
107 /* Signed multiply and add with the result and addend one machine mode
108 wider than the multiplicand and multiplier. */
110 /* Unsigned multiply and add with the result and addend one machine mode
111 wider than the multiplicand and multiplier. */
113 /* Signed multiply and add with the result and addend one machine mode
114 wider than the multiplicand and multiplier.
115 All involved operations are saturating. */
117 /* Unsigned multiply and add with the result and addend one machine mode
118 wider than the multiplicand and multiplier.
119 All involved operations are saturating. */
121 /* Signed multiply and subtract the result and minuend one machine mode
122 wider than the multiplicand and multiplier. */
124 /* Unsigned multiply and subtract the result and minuend one machine mode
125 wider than the multiplicand and multiplier. */
127 /* Signed multiply and subtract the result and minuend one machine mode
128 wider than the multiplicand and multiplier.
129 All involved operations are saturating. */
131 /* Unsigned multiply and subtract the result and minuend one machine mode
132 wider than the multiplicand and multiplier.
133 All involved operations are saturating. */
139 /* Signed divide-and-remainder in one */
143 /* Signed remainder */
146 /* Floating point remainder functions */
149 /* Convert float to integer in float fmt */
159 /* Arithmetic shift left */
161 /* Logical shift right */
163 /* Arithmetic shift right */
170 /* Arithmetic shift left of vector by vector */
172 /* Logical shift right of vector by vector */
174 /* Arithmetic shift right of vector by vector */
176 /* Rotate left of vector by vector */
178 /* Rotate right of vector by vector */
181 /* Signed and floating-point minimum value */
183 /* Signed and floating-point maximum value */
185 /* Unsigned minimum value */
187 /* Unsigned maximum value */
191 /* Arc tangent of y/x */
193 /* Floating multiply/add */
199 /* Move instruction. */
201 /* Move, preserving high part of register. */
203 /* Move, with a misaligned memory. */
205 /* Nontemporal store. */
208 /* Unary operations */
219 /* Bit scanning and counting */
239 /* Base-10 Exponential */
241 /* Base-2 Exponential */
245 /* Load exponent of a floating point number */
247 /* Multiply floating-point number by integral power of radix */
249 /* Mantissa of a floating-point number */
251 /* Radix-independent exponent */
254 /* Natural Logarithm */
256 /* Base-10 Logarithm */
258 /* Base-2 Logarithm */
260 /* logarithm of 1 plus argument */
262 /* Rounding functions */
271 /* Inverse tangent */
277 /* Test for infinite value */
280 /* Compare insn; two operands. Used only for libcalls. */
284 /* Floating point comparison optabs - used primarily for libfuncs */
296 /* Combined compare & jump/move/store flags/trap operations. */
302 /* Push instruction. */
305 /* Conditional add instruction. */
308 /* Reduction operations on a vector operand. */
316 /* Summation, with result machine mode one or more wider than args. */
320 /* Dot product, with result machine mode one or more wider than args. */
324 /* Set specified field of vector operand. */
326 /* Extract specified field of vector operand. */
328 /* Extract even/odd fields of vector operands. */
329 OTI_vec_extract_even
,
331 /* Interleave fields of vector operands. */
332 OTI_vec_interleave_high
,
333 OTI_vec_interleave_low
,
334 /* Initialize vector operand. */
336 /* Whole vector shift. The shift amount is in bits. */
339 /* Extract specified elements from vectors, for vector load. */
340 OTI_vec_realign_load
,
341 /* Widening multiplication.
342 The high/low part of the resulting vector of products is returned. */
343 OTI_vec_widen_umult_hi
,
344 OTI_vec_widen_umult_lo
,
345 OTI_vec_widen_smult_hi
,
346 OTI_vec_widen_smult_lo
,
347 /* Extract and widen the high/low part of a vector of signed or
348 floating point elements. */
351 /* Extract and widen the high/low part of a vector of unsigned
356 /* Extract, convert to floating point and widen the high/low part of
357 a vector of signed or unsigned integer elements. */
358 OTI_vec_unpacks_float_hi
,
359 OTI_vec_unpacks_float_lo
,
360 OTI_vec_unpacku_float_hi
,
361 OTI_vec_unpacku_float_lo
,
363 /* Narrow (demote) and merge the elements of two vectors. */
368 /* Convert to signed/unsigned integer, narrow and merge elements
369 of two vectors of floating point elements. */
370 OTI_vec_pack_sfix_trunc
,
371 OTI_vec_pack_ufix_trunc
,
373 /* Perform a raise to the power of integer. */
379 #define ssadd_optab (&optab_table[OTI_ssadd])
380 #define usadd_optab (&optab_table[OTI_usadd])
381 #define sssub_optab (&optab_table[OTI_sssub])
382 #define ussub_optab (&optab_table[OTI_ussub])
383 #define ssmul_optab (&optab_table[OTI_ssmul])
384 #define usmul_optab (&optab_table[OTI_usmul])
385 #define ssdiv_optab (&optab_table[OTI_ssdiv])
386 #define usdiv_optab (&optab_table[OTI_usdiv])
387 #define ssneg_optab (&optab_table[OTI_ssneg])
388 #define usneg_optab (&optab_table[OTI_usneg])
389 #define ssashl_optab (&optab_table[OTI_ssashl])
390 #define usashl_optab (&optab_table[OTI_usashl])
392 #define add_optab (&optab_table[OTI_add])
393 #define sub_optab (&optab_table[OTI_sub])
394 #define smul_optab (&optab_table[OTI_smul])
395 #define addv_optab (&optab_table[OTI_addv])
396 #define subv_optab (&optab_table[OTI_subv])
397 #define smul_highpart_optab (&optab_table[OTI_smul_highpart])
398 #define umul_highpart_optab (&optab_table[OTI_umul_highpart])
399 #define smul_widen_optab (&optab_table[OTI_smul_widen])
400 #define umul_widen_optab (&optab_table[OTI_umul_widen])
401 #define usmul_widen_optab (&optab_table[OTI_usmul_widen])
402 #define smadd_widen_optab (&optab_table[OTI_smadd_widen])
403 #define umadd_widen_optab (&optab_table[OTI_umadd_widen])
404 #define ssmadd_widen_optab (&optab_table[OTI_ssmadd_widen])
405 #define usmadd_widen_optab (&optab_table[OTI_usmadd_widen])
406 #define smsub_widen_optab (&optab_table[OTI_smsub_widen])
407 #define umsub_widen_optab (&optab_table[OTI_umsub_widen])
408 #define ssmsub_widen_optab (&optab_table[OTI_ssmsub_widen])
409 #define usmsub_widen_optab (&optab_table[OTI_usmsub_widen])
410 #define sdiv_optab (&optab_table[OTI_sdiv])
411 #define smulv_optab (&optab_table[OTI_smulv])
412 #define sdivv_optab (&optab_table[OTI_sdivv])
413 #define sdivmod_optab (&optab_table[OTI_sdivmod])
414 #define udiv_optab (&optab_table[OTI_udiv])
415 #define udivmod_optab (&optab_table[OTI_udivmod])
416 #define smod_optab (&optab_table[OTI_smod])
417 #define umod_optab (&optab_table[OTI_umod])
418 #define fmod_optab (&optab_table[OTI_fmod])
419 #define remainder_optab (&optab_table[OTI_remainder])
420 #define ftrunc_optab (&optab_table[OTI_ftrunc])
421 #define and_optab (&optab_table[OTI_and])
422 #define ior_optab (&optab_table[OTI_ior])
423 #define xor_optab (&optab_table[OTI_xor])
424 #define ashl_optab (&optab_table[OTI_ashl])
425 #define lshr_optab (&optab_table[OTI_lshr])
426 #define ashr_optab (&optab_table[OTI_ashr])
427 #define rotl_optab (&optab_table[OTI_rotl])
428 #define rotr_optab (&optab_table[OTI_rotr])
429 #define vashl_optab (&optab_table[OTI_vashl])
430 #define vlshr_optab (&optab_table[OTI_vlshr])
431 #define vashr_optab (&optab_table[OTI_vashr])
432 #define vrotl_optab (&optab_table[OTI_vrotl])
433 #define vrotr_optab (&optab_table[OTI_vrotr])
434 #define smin_optab (&optab_table[OTI_smin])
435 #define smax_optab (&optab_table[OTI_smax])
436 #define umin_optab (&optab_table[OTI_umin])
437 #define umax_optab (&optab_table[OTI_umax])
438 #define pow_optab (&optab_table[OTI_pow])
439 #define atan2_optab (&optab_table[OTI_atan2])
440 #define fma_optab (&optab_table[OTI_fma])
441 #define fms_optab (&optab_table[OTI_fms])
442 #define fnma_optab (&optab_table[OTI_fnma])
443 #define fnms_optab (&optab_table[OTI_fnms])
445 #define mov_optab (&optab_table[OTI_mov])
446 #define movstrict_optab (&optab_table[OTI_movstrict])
447 #define movmisalign_optab (&optab_table[OTI_movmisalign])
448 #define storent_optab (&optab_table[OTI_storent])
450 #define neg_optab (&optab_table[OTI_neg])
451 #define negv_optab (&optab_table[OTI_negv])
452 #define abs_optab (&optab_table[OTI_abs])
453 #define absv_optab (&optab_table[OTI_absv])
454 #define one_cmpl_optab (&optab_table[OTI_one_cmpl])
455 #define bswap_optab (&optab_table[OTI_bswap])
456 #define ffs_optab (&optab_table[OTI_ffs])
457 #define clz_optab (&optab_table[OTI_clz])
458 #define ctz_optab (&optab_table[OTI_ctz])
459 #define popcount_optab (&optab_table[OTI_popcount])
460 #define parity_optab (&optab_table[OTI_parity])
461 #define sqrt_optab (&optab_table[OTI_sqrt])
462 #define sincos_optab (&optab_table[OTI_sincos])
463 #define sin_optab (&optab_table[OTI_sin])
464 #define asin_optab (&optab_table[OTI_asin])
465 #define cos_optab (&optab_table[OTI_cos])
466 #define acos_optab (&optab_table[OTI_acos])
467 #define exp_optab (&optab_table[OTI_exp])
468 #define exp10_optab (&optab_table[OTI_exp10])
469 #define exp2_optab (&optab_table[OTI_exp2])
470 #define expm1_optab (&optab_table[OTI_expm1])
471 #define ldexp_optab (&optab_table[OTI_ldexp])
472 #define scalb_optab (&optab_table[OTI_scalb])
473 #define significand_optab (&optab_table[OTI_significand])
474 #define logb_optab (&optab_table[OTI_logb])
475 #define ilogb_optab (&optab_table[OTI_ilogb])
476 #define log_optab (&optab_table[OTI_log])
477 #define log10_optab (&optab_table[OTI_log10])
478 #define log2_optab (&optab_table[OTI_log2])
479 #define log1p_optab (&optab_table[OTI_log1p])
480 #define floor_optab (&optab_table[OTI_floor])
481 #define ceil_optab (&optab_table[OTI_ceil])
482 #define btrunc_optab (&optab_table[OTI_btrunc])
483 #define round_optab (&optab_table[OTI_round])
484 #define nearbyint_optab (&optab_table[OTI_nearbyint])
485 #define rint_optab (&optab_table[OTI_rint])
486 #define tan_optab (&optab_table[OTI_tan])
487 #define atan_optab (&optab_table[OTI_atan])
488 #define copysign_optab (&optab_table[OTI_copysign])
489 #define signbit_optab (&optab_table[OTI_signbit])
490 #define isinf_optab (&optab_table[OTI_isinf])
492 #define cmp_optab (&optab_table[OTI_cmp])
493 #define ucmp_optab (&optab_table[OTI_ucmp])
495 #define eq_optab (&optab_table[OTI_eq])
496 #define ne_optab (&optab_table[OTI_ne])
497 #define gt_optab (&optab_table[OTI_gt])
498 #define ge_optab (&optab_table[OTI_ge])
499 #define lt_optab (&optab_table[OTI_lt])
500 #define le_optab (&optab_table[OTI_le])
501 #define unord_optab (&optab_table[OTI_unord])
503 #define strlen_optab (&optab_table[OTI_strlen])
505 #define cbranch_optab (&optab_table[OTI_cbranch])
506 #define cmov_optab (&optab_table[OTI_cmov])
507 #define cstore_optab (&optab_table[OTI_cstore])
508 #define ctrap_optab (&optab_table[OTI_ctrap])
510 #define push_optab (&optab_table[OTI_push])
511 #define addcc_optab (&optab_table[OTI_addcc])
513 #define reduc_smax_optab (&optab_table[OTI_reduc_smax])
514 #define reduc_umax_optab (&optab_table[OTI_reduc_umax])
515 #define reduc_smin_optab (&optab_table[OTI_reduc_smin])
516 #define reduc_umin_optab (&optab_table[OTI_reduc_umin])
517 #define reduc_splus_optab (&optab_table[OTI_reduc_splus])
518 #define reduc_uplus_optab (&optab_table[OTI_reduc_uplus])
520 #define ssum_widen_optab (&optab_table[OTI_ssum_widen])
521 #define usum_widen_optab (&optab_table[OTI_usum_widen])
522 #define sdot_prod_optab (&optab_table[OTI_sdot_prod])
523 #define udot_prod_optab (&optab_table[OTI_udot_prod])
525 #define vec_set_optab (&optab_table[OTI_vec_set])
526 #define vec_extract_optab (&optab_table[OTI_vec_extract])
527 #define vec_extract_even_optab (&optab_table[OTI_vec_extract_even])
528 #define vec_extract_odd_optab (&optab_table[OTI_vec_extract_odd])
529 #define vec_interleave_high_optab (&optab_table[OTI_vec_interleave_high])
530 #define vec_interleave_low_optab (&optab_table[OTI_vec_interleave_low])
531 #define vec_init_optab (&optab_table[OTI_vec_init])
532 #define vec_shl_optab (&optab_table[OTI_vec_shl])
533 #define vec_shr_optab (&optab_table[OTI_vec_shr])
534 #define vec_realign_load_optab (&optab_table[OTI_vec_realign_load])
535 #define vec_widen_umult_hi_optab (&optab_table[OTI_vec_widen_umult_hi])
536 #define vec_widen_umult_lo_optab (&optab_table[OTI_vec_widen_umult_lo])
537 #define vec_widen_smult_hi_optab (&optab_table[OTI_vec_widen_smult_hi])
538 #define vec_widen_smult_lo_optab (&optab_table[OTI_vec_widen_smult_lo])
539 #define vec_unpacks_hi_optab (&optab_table[OTI_vec_unpacks_hi])
540 #define vec_unpacks_lo_optab (&optab_table[OTI_vec_unpacks_lo])
541 #define vec_unpacku_hi_optab (&optab_table[OTI_vec_unpacku_hi])
542 #define vec_unpacku_lo_optab (&optab_table[OTI_vec_unpacku_lo])
543 #define vec_unpacks_float_hi_optab (&optab_table[OTI_vec_unpacks_float_hi])
544 #define vec_unpacks_float_lo_optab (&optab_table[OTI_vec_unpacks_float_lo])
545 #define vec_unpacku_float_hi_optab (&optab_table[OTI_vec_unpacku_float_hi])
546 #define vec_unpacku_float_lo_optab (&optab_table[OTI_vec_unpacku_float_lo])
547 #define vec_pack_trunc_optab (&optab_table[OTI_vec_pack_trunc])
548 #define vec_pack_ssat_optab (&optab_table[OTI_vec_pack_ssat])
549 #define vec_pack_usat_optab (&optab_table[OTI_vec_pack_usat])
550 #define vec_pack_sfix_trunc_optab (&optab_table[OTI_vec_pack_sfix_trunc])
551 #define vec_pack_ufix_trunc_optab (&optab_table[OTI_vec_pack_ufix_trunc])
553 #define powi_optab (&optab_table[OTI_powi])
555 /* Conversion optabs have their own table and indexes. */
556 enum convert_optab_index
587 #define sext_optab (&convert_optab_table[COI_sext])
588 #define zext_optab (&convert_optab_table[COI_zext])
589 #define trunc_optab (&convert_optab_table[COI_trunc])
590 #define sfix_optab (&convert_optab_table[COI_sfix])
591 #define ufix_optab (&convert_optab_table[COI_ufix])
592 #define sfixtrunc_optab (&convert_optab_table[COI_sfixtrunc])
593 #define ufixtrunc_optab (&convert_optab_table[COI_ufixtrunc])
594 #define sfloat_optab (&convert_optab_table[COI_sfloat])
595 #define ufloat_optab (&convert_optab_table[COI_ufloat])
596 #define lrint_optab (&convert_optab_table[COI_lrint])
597 #define lround_optab (&convert_optab_table[COI_lround])
598 #define lfloor_optab (&convert_optab_table[COI_lfloor])
599 #define lceil_optab (&convert_optab_table[COI_lceil])
600 #define fract_optab (&convert_optab_table[COI_fract])
601 #define fractuns_optab (&convert_optab_table[COI_fractuns])
602 #define satfract_optab (&convert_optab_table[COI_satfract])
603 #define satfractuns_optab (&convert_optab_table[COI_satfractuns])
604 #define vec_load_lanes_optab (&convert_optab_table[COI_vec_load_lanes])
605 #define vec_store_lanes_optab (&convert_optab_table[COI_vec_store_lanes])
607 /* Contains the optab used for each rtx code. */
608 extern optab code_to_optab
[NUM_RTX_CODE
+ 1];
611 typedef rtx (*rtxfun
) (rtx
);
613 /* Enumerates operations that have a named .md pattern associated
614 with them, but which are not implemented as library functions. */
615 enum direct_optab_index
617 #ifdef HAVE_conditional_move
618 /* Conditional move operations. */
622 /* Operations that use a scratch register to perform input and output
623 reloads of special objects. */
627 /* Vector conditional operations. */
631 /* Block move operation. */
634 /* Block set operation. */
637 /* Various types of block compare operation. */
642 /* Synchronization primitives. This first set is atomic operation for
643 which we don't care about the resulting value. */
651 /* This second set is atomic operations in which we return the value
652 that existed in memory before the operation. */
660 /* This third set is atomic operations in which we return the value
661 that resulted after performing the operation. */
669 /* Atomic compare and swap. */
670 DOI_sync_compare_and_swap
,
672 /* Atomic exchange with acquire semantics. */
673 DOI_sync_lock_test_and_set
,
675 /* Atomic clear with release semantics. */
676 DOI_sync_lock_release
,
681 /* A structure that says which insn should be used to perform an operation
682 in a particular mode. */
683 struct direct_optab_d
685 struct optab_handlers handlers
[NUM_MACHINE_MODES
];
687 typedef struct direct_optab_d
*direct_optab
;
689 #ifdef HAVE_conditional_move
690 #define movcc_optab (&direct_optab_table[(int) DOI_movcc])
692 #define reload_in_optab (&direct_optab_table[(int) DOI_reload_in])
693 #define reload_out_optab (&direct_optab_table[(int) DOI_reload_out])
694 #define vcond_optab (&direct_optab_table[(int) DOI_vcond])
695 #define vcondu_optab (&direct_optab_table[(int) DOI_vcondu])
696 #define movmem_optab (&direct_optab_table[(int) DOI_movmem])
697 #define setmem_optab (&direct_optab_table[(int) DOI_setmem])
698 #define cmpstr_optab (&direct_optab_table[(int) DOI_cmpstr])
699 #define cmpstrn_optab (&direct_optab_table[(int) DOI_cmpstrn])
700 #define cmpmem_optab (&direct_optab_table[(int) DOI_cmpmem])
701 #define sync_add_optab (&direct_optab_table[(int) DOI_sync_add])
702 #define sync_sub_optab (&direct_optab_table[(int) DOI_sync_sub])
703 #define sync_ior_optab (&direct_optab_table[(int) DOI_sync_ior])
704 #define sync_and_optab (&direct_optab_table[(int) DOI_sync_and])
705 #define sync_xor_optab (&direct_optab_table[(int) DOI_sync_xor])
706 #define sync_nand_optab (&direct_optab_table[(int) DOI_sync_nand])
707 #define sync_old_add_optab (&direct_optab_table[(int) DOI_sync_old_add])
708 #define sync_old_sub_optab (&direct_optab_table[(int) DOI_sync_old_sub])
709 #define sync_old_ior_optab (&direct_optab_table[(int) DOI_sync_old_ior])
710 #define sync_old_and_optab (&direct_optab_table[(int) DOI_sync_old_and])
711 #define sync_old_xor_optab (&direct_optab_table[(int) DOI_sync_old_xor])
712 #define sync_old_nand_optab (&direct_optab_table[(int) DOI_sync_old_nand])
713 #define sync_new_add_optab (&direct_optab_table[(int) DOI_sync_new_add])
714 #define sync_new_sub_optab (&direct_optab_table[(int) DOI_sync_new_sub])
715 #define sync_new_ior_optab (&direct_optab_table[(int) DOI_sync_new_ior])
716 #define sync_new_and_optab (&direct_optab_table[(int) DOI_sync_new_and])
717 #define sync_new_xor_optab (&direct_optab_table[(int) DOI_sync_new_xor])
718 #define sync_new_nand_optab (&direct_optab_table[(int) DOI_sync_new_nand])
719 #define sync_compare_and_swap_optab \
720 (&direct_optab_table[(int) DOI_sync_compare_and_swap])
721 #define sync_lock_test_and_set_optab \
722 (&direct_optab_table[(int) DOI_sync_lock_test_and_set])
723 #define sync_lock_release_optab \
724 (&direct_optab_table[(int) DOI_sync_lock_release])
726 /* Target-dependent globals. */
727 struct target_optabs
{
728 /* Tables of patterns that may have an associated libcall. */
729 struct optab_d x_optab_table
[(int) OTI_MAX
];
731 /* Tables of patterns for converting one mode to another. */
732 struct convert_optab_d x_convert_optab_table
[(int) COI_MAX
];
734 /* Tables of patterns for direct optabs (i.e. those which cannot be
735 implemented using a libcall). */
736 struct direct_optab_d x_direct_optab_table
[(int) DOI_MAX
];
739 extern struct target_optabs default_target_optabs
;
740 #if SWITCHABLE_TARGET
741 extern struct target_optabs
*this_target_optabs
;
743 #define this_target_optabs (&default_target_optabs)
746 #define optab_table \
747 (this_target_optabs->x_optab_table)
748 #define convert_optab_table \
749 (this_target_optabs->x_convert_optab_table)
750 #define direct_optab_table \
751 (this_target_optabs->x_direct_optab_table)
753 /* Define functions given in optabs.c. */
755 extern rtx
expand_widen_pattern_expr (sepops ops
, rtx op0
, rtx op1
, rtx wide_op
,
756 rtx target
, int unsignedp
);
758 extern rtx
expand_ternary_op (enum machine_mode mode
, optab ternary_optab
,
759 rtx op0
, rtx op1
, rtx op2
, rtx target
,
762 /* Expand a binary operation given optab and rtx operands. */
763 extern rtx
expand_binop (enum machine_mode
, optab
, rtx
, rtx
, rtx
, int,
766 extern bool force_expand_binop (enum machine_mode
, optab
, rtx
, rtx
, rtx
, int,
769 /* Expand a binary operation with both signed and unsigned forms. */
770 extern rtx
sign_expand_binop (enum machine_mode
, optab
, optab
, rtx
, rtx
,
771 rtx
, int, enum optab_methods
);
773 /* Generate code to perform an operation on one operand with two results. */
774 extern int expand_twoval_unop (optab
, rtx
, rtx
, rtx
, int);
776 /* Generate code to perform an operation on two operands with two results. */
777 extern int expand_twoval_binop (optab
, rtx
, rtx
, rtx
, rtx
, int);
779 /* Generate code to perform an operation on two operands with two
780 results, using a library function. */
781 extern bool expand_twoval_binop_libfunc (optab
, rtx
, rtx
, rtx
, rtx
,
784 /* Expand a unary arithmetic operation given optab rtx operand. */
785 extern rtx
expand_unop (enum machine_mode
, optab
, rtx
, rtx
, int);
787 /* Expand the absolute value operation. */
788 extern rtx
expand_abs_nojump (enum machine_mode
, rtx
, rtx
, int);
789 extern rtx
expand_abs (enum machine_mode
, rtx
, rtx
, int, int);
791 /* Expand the one's complement absolute value operation. */
792 extern rtx
expand_one_cmpl_abs_nojump (enum machine_mode
, rtx
, rtx
);
794 /* Expand the copysign operation. */
795 extern rtx
expand_copysign (rtx
, rtx
, rtx
);
797 /* Generate an instruction with a given INSN_CODE with an output and
799 extern void emit_unop_insn (enum insn_code
, rtx
, rtx
, enum rtx_code
);
800 extern bool maybe_emit_unop_insn (enum insn_code
, rtx
, rtx
, enum rtx_code
);
802 /* An extra flag to control optab_for_tree_code's behavior. This is needed to
803 distinguish between machines with a vector shift that takes a scalar for the
804 shift amount vs. machines that take a vector for the shift amount. */
812 /* Return the optab used for computing the given operation on the type given by
813 the second argument. The third argument distinguishes between the types of
814 vector shifts and rotates */
815 extern optab
optab_for_tree_code (enum tree_code
, const_tree
, enum optab_subtype
);
817 /* The various uses that a comparison can have; used by can_compare_p:
818 jumps, conditional moves, store flag operations. */
819 enum can_compare_purpose
826 /* Nonzero if a compare of mode MODE can be done straightforwardly
827 (without splitting it into pieces). */
828 extern int can_compare_p (enum rtx_code
, enum machine_mode
,
829 enum can_compare_purpose
);
831 /* Return the INSN_CODE to use for an extend operation. */
832 extern enum insn_code
can_extend_p (enum machine_mode
, enum machine_mode
, int);
834 /* Generate the body of an insn to extend Y (with mode MFROM)
835 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
836 extern rtx
gen_extend_insn (rtx
, rtx
, enum machine_mode
,
837 enum machine_mode
, int);
839 /* Call this to reset the function entry for one optab. */
840 extern void set_optab_libfunc (optab
, enum machine_mode
, const char *);
841 extern void set_conv_libfunc (convert_optab
, enum machine_mode
,
842 enum machine_mode
, const char *);
844 /* Generate code for a FIXED_CONVERT_EXPR. */
845 extern void expand_fixed_convert (rtx
, rtx
, int, int);
847 /* Generate code for a FLOAT_EXPR. */
848 extern void expand_float (rtx
, rtx
, int);
850 /* Generate code for a FIX_EXPR. */
851 extern void expand_fix (rtx
, rtx
, int);
853 /* Generate code for float to integral conversion. */
854 extern bool expand_sfix_optab (rtx
, rtx
, convert_optab
);
856 /* Generate code for a widening multiply. */
857 extern rtx
expand_widening_mult (enum machine_mode
, rtx
, rtx
, rtx
, int, optab
);
859 /* Return tree if target supports vector operations for COND_EXPR. */
860 bool expand_vec_cond_expr_p (tree
, enum machine_mode
);
862 /* Generate code for VEC_COND_EXPR. */
863 extern rtx
expand_vec_cond_expr (tree
, tree
, tree
, tree
, rtx
);
864 /* Generate code for VEC_LSHIFT_EXPR and VEC_RSHIFT_EXPR. */
865 extern rtx
expand_vec_shift_expr (sepops
, rtx
);
867 /* Return the insn used to implement mode MODE of OP, or CODE_FOR_nothing
868 if the target does not have such an insn. */
870 static inline enum insn_code
871 optab_handler (optab op
, enum machine_mode mode
)
873 return (enum insn_code
) (op
->handlers
[(int) mode
].insn_code
874 + (int) CODE_FOR_nothing
);
877 /* Record that insn CODE should be used to implement mode MODE of OP. */
880 set_optab_handler (optab op
, enum machine_mode mode
, enum insn_code code
)
882 op
->handlers
[(int) mode
].insn_code
= (int) code
- (int) CODE_FOR_nothing
;
885 /* Return the insn used to perform conversion OP from mode FROM_MODE
886 to mode TO_MODE; return CODE_FOR_nothing if the target does not have
889 static inline enum insn_code
890 convert_optab_handler (convert_optab op
, enum machine_mode to_mode
,
891 enum machine_mode from_mode
)
893 return ((enum insn_code
)
894 (op
->handlers
[(int) to_mode
][(int) from_mode
].insn_code
895 + (int) CODE_FOR_nothing
));
898 /* Record that insn CODE should be used to perform conversion OP
899 from mode FROM_MODE to mode TO_MODE. */
902 set_convert_optab_handler (convert_optab op
, enum machine_mode to_mode
,
903 enum machine_mode from_mode
, enum insn_code code
)
905 op
->handlers
[(int) to_mode
][(int) from_mode
].insn_code
906 = (int) code
- (int) CODE_FOR_nothing
;
909 /* Return the insn used to implement mode MODE of OP, or CODE_FOR_nothing
910 if the target does not have such an insn. */
912 static inline enum insn_code
913 direct_optab_handler (direct_optab op
, enum machine_mode mode
)
915 return (enum insn_code
) (op
->handlers
[(int) mode
].insn_code
916 + (int) CODE_FOR_nothing
);
919 /* Record that insn CODE should be used to implement mode MODE of OP. */
922 set_direct_optab_handler (direct_optab op
, enum machine_mode mode
,
925 op
->handlers
[(int) mode
].insn_code
= (int) code
- (int) CODE_FOR_nothing
;
928 extern rtx
optab_libfunc (optab optab
, enum machine_mode mode
);
929 extern rtx
convert_optab_libfunc (convert_optab optab
, enum machine_mode mode1
,
930 enum machine_mode mode2
);
932 extern bool insn_operand_matches (enum insn_code icode
, unsigned int opno
,
935 /* Describes the type of an expand_operand. Each value is associated
936 with a create_*_operand function; see the comments above those
937 functions for details. */
938 enum expand_operand_type
{
948 /* Information about an operand for instruction expansion. */
949 struct expand_operand
{
950 /* The type of operand. */
951 ENUM_BITFIELD (expand_operand_type
) type
: 8;
953 /* True if any conversion should treat VALUE as being unsigned
954 rather than signed. Only meaningful for certain types. */
955 unsigned int unsigned_p
: 1;
957 /* Unused; available for future use. */
958 unsigned int unused
: 7;
960 /* The mode passed to the convert_*_operand function. It has a
961 type-dependent meaning. */
962 ENUM_BITFIELD (machine_mode
) mode
: 16;
964 /* The value of the operand. */
968 /* Initialize OP with the given fields. Initialise the other fields
969 to their default values. */
972 create_expand_operand (struct expand_operand
*op
,
973 enum expand_operand_type type
,
974 rtx value
, enum machine_mode mode
,
978 op
->unsigned_p
= unsigned_p
;
984 /* Make OP describe an operand that must use rtx X, even if X is volatile. */
987 create_fixed_operand (struct expand_operand
*op
, rtx x
)
989 create_expand_operand (op
, EXPAND_FIXED
, x
, VOIDmode
, false);
992 /* Make OP describe an output operand that must have mode MODE.
993 X, if nonnull, is a suggestion for where the output should be stored.
994 It is OK for VALUE to be inconsistent with MODE, although it will just
995 be ignored in that case. */
998 create_output_operand (struct expand_operand
*op
, rtx x
,
999 enum machine_mode mode
)
1001 create_expand_operand (op
, EXPAND_OUTPUT
, x
, mode
, false);
1004 /* Make OP describe an input operand that must have mode MODE and
1005 value VALUE; MODE cannot be VOIDmode. The backend may request that
1006 VALUE be copied into a different kind of rtx before being passed
1010 create_input_operand (struct expand_operand
*op
, rtx value
,
1011 enum machine_mode mode
)
1013 create_expand_operand (op
, EXPAND_INPUT
, value
, mode
, false);
1016 /* Like create_input_operand, except that VALUE must first be converted
1017 to mode MODE. UNSIGNED_P says whether VALUE is unsigned. */
1020 create_convert_operand_to (struct expand_operand
*op
, rtx value
,
1021 enum machine_mode mode
, bool unsigned_p
)
1023 create_expand_operand (op
, EXPAND_CONVERT_TO
, value
, mode
, unsigned_p
);
1026 /* Make OP describe an input operand that should have the same value
1027 as VALUE, after any mode conversion that the backend might request.
1028 If VALUE is a CONST_INT, it should be treated as having mode MODE.
1029 UNSIGNED_P says whether VALUE is unsigned. */
1032 create_convert_operand_from (struct expand_operand
*op
, rtx value
,
1033 enum machine_mode mode
, bool unsigned_p
)
1035 create_expand_operand (op
, EXPAND_CONVERT_FROM
, value
, mode
, unsigned_p
);
1038 extern void create_convert_operand_from_type (struct expand_operand
*op
,
1039 rtx value
, tree type
);
1041 /* Make OP describe an input Pmode address operand. VALUE is the value
1042 of the address, but it may need to be converted to Pmode first. */
1045 create_address_operand (struct expand_operand
*op
, rtx value
)
1047 create_expand_operand (op
, EXPAND_ADDRESS
, value
, Pmode
, false);
1050 /* Make OP describe an input operand that has value INTVAL and that has
1051 no inherent mode. This function should only be used for operands that
1052 are always expand-time constants. The backend may request that INTVAL
1053 be copied into a different kind of rtx, but it must specify the mode
1054 of that rtx if so. */
1057 create_integer_operand (struct expand_operand
*op
, HOST_WIDE_INT intval
)
1059 create_expand_operand (op
, EXPAND_INTEGER
, GEN_INT (intval
), VOIDmode
, false);
1062 extern bool valid_multiword_target_p (rtx
);
1064 extern bool maybe_legitimize_operands (enum insn_code icode
,
1065 unsigned int opno
, unsigned int nops
,
1066 struct expand_operand
*ops
);
1067 extern rtx
maybe_gen_insn (enum insn_code icode
, unsigned int nops
,
1068 struct expand_operand
*ops
);
1069 extern bool maybe_expand_insn (enum insn_code icode
, unsigned int nops
,
1070 struct expand_operand
*ops
);
1071 extern bool maybe_expand_jump_insn (enum insn_code icode
, unsigned int nops
,
1072 struct expand_operand
*ops
);
1073 extern void expand_insn (enum insn_code icode
, unsigned int nops
,
1074 struct expand_operand
*ops
);
1075 extern void expand_jump_insn (enum insn_code icode
, unsigned int nops
,
1076 struct expand_operand
*ops
);
1078 extern rtx
prepare_operand (enum insn_code
, rtx
, int, enum machine_mode
,
1079 enum machine_mode
, int);
1081 #endif /* GCC_OPTABS_H */