1 /* Definitions for code generation pass of GNU compiler.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
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.
29 For example, add_optab applies to addition.
31 The insn_code slot is the enum insn_code that says how to
32 generate an insn for this operation on a particular machine mode.
33 It is CODE_FOR_nothing if there is no such insn on the target machine.
35 The `lib_call' slot is the name of the library function that
36 can be used to perform the operation.
38 A few optabs, such as move_optab and cmp_optab, are used
41 struct optab_handlers
GTY(())
43 enum insn_code insn_code
;
50 struct optab_handlers handlers
[NUM_MACHINE_MODES
];
52 typedef struct optab
* optab
;
54 /* A convert_optab is for some sort of conversion operation between
55 modes. The first array index is the destination mode, the second
56 is the source mode. */
57 struct convert_optab
GTY(())
60 struct optab_handlers handlers
[NUM_MACHINE_MODES
][NUM_MACHINE_MODES
];
62 typedef struct convert_optab
*convert_optab
;
64 /* Given an enum insn_code, access the function to construct
65 the body of that kind of insn. */
66 #define GEN_FCN(CODE) (insn_data[CODE].genfun)
68 /* Enumeration of valid indexes into optab_table. */
76 /* Signed and fp multiply */
79 /* Signed multiply, return high word */
82 /* Signed multiply with result one machine mode wider than args */
89 /* Signed divide-and-remainder in one */
93 /* Signed remainder */
96 /* Floating point remainder functions */
99 /* Convert float to integer in float fmt */
109 /* Arithmetic shift left */
111 /* Logical shift right */
113 /* Arithmetic shift right */
119 /* Signed and floating-point minimum value */
121 /* Signed and floating-point maximum value */
123 /* Unsigned minimum value */
125 /* Unsigned maximum value */
129 /* Arc tangent of y/x */
132 /* Move instruction. */
134 /* Move, preserving high part of register. */
136 /* Move, with a misaligned memory. */
139 /* Unary operations */
148 /* Bit scanning and counting */
168 /* Base-10 Exponential */
170 /* Base-2 Exponential */
174 /* Load exponent of a floating point number */
176 /* Radix-independent exponent */
179 /* Natural Logarithm */
181 /* Base-10 Logarithm */
183 /* Base-2 Logarithm */
185 /* logarithm of 1 plus argument */
187 /* Rounding functions */
199 /* Inverse tangent */
204 /* Compare insn; two operands. */
206 /* Used only for libcalls for unsigned comparisons. */
208 /* tst insn; compare one operand against 0 */
211 /* Floating point comparison optabs - used primarily for libfuncs */
223 /* Combined compare & jump/store flags/move operations. */
228 /* Push instruction. */
231 /* Conditional add instruction. */
234 /* Set specified field of vector operand. */
236 /* Extract specified field of vector operand. */
238 /* Initialize vector operand. */
240 /* Extract specified elements from vectors, for vector load. */
241 OTI_vec_realign_load
,
243 /* Perform a raise to the power of integer. */
249 extern GTY(()) optab optab_table
[OTI_MAX
];
251 #define add_optab (optab_table[OTI_add])
252 #define sub_optab (optab_table[OTI_sub])
253 #define smul_optab (optab_table[OTI_smul])
254 #define addv_optab (optab_table[OTI_addv])
255 #define subv_optab (optab_table[OTI_subv])
256 #define smul_highpart_optab (optab_table[OTI_smul_highpart])
257 #define umul_highpart_optab (optab_table[OTI_umul_highpart])
258 #define smul_widen_optab (optab_table[OTI_smul_widen])
259 #define umul_widen_optab (optab_table[OTI_umul_widen])
260 #define sdiv_optab (optab_table[OTI_sdiv])
261 #define smulv_optab (optab_table[OTI_smulv])
262 #define sdivv_optab (optab_table[OTI_sdivv])
263 #define sdivmod_optab (optab_table[OTI_sdivmod])
264 #define udiv_optab (optab_table[OTI_udiv])
265 #define udivmod_optab (optab_table[OTI_udivmod])
266 #define smod_optab (optab_table[OTI_smod])
267 #define umod_optab (optab_table[OTI_umod])
268 #define fmod_optab (optab_table[OTI_fmod])
269 #define drem_optab (optab_table[OTI_drem])
270 #define ftrunc_optab (optab_table[OTI_ftrunc])
271 #define and_optab (optab_table[OTI_and])
272 #define ior_optab (optab_table[OTI_ior])
273 #define xor_optab (optab_table[OTI_xor])
274 #define ashl_optab (optab_table[OTI_ashl])
275 #define lshr_optab (optab_table[OTI_lshr])
276 #define ashr_optab (optab_table[OTI_ashr])
277 #define rotl_optab (optab_table[OTI_rotl])
278 #define rotr_optab (optab_table[OTI_rotr])
279 #define smin_optab (optab_table[OTI_smin])
280 #define smax_optab (optab_table[OTI_smax])
281 #define umin_optab (optab_table[OTI_umin])
282 #define umax_optab (optab_table[OTI_umax])
283 #define pow_optab (optab_table[OTI_pow])
284 #define atan2_optab (optab_table[OTI_atan2])
286 #define mov_optab (optab_table[OTI_mov])
287 #define movstrict_optab (optab_table[OTI_movstrict])
288 #define movmisalign_optab (optab_table[OTI_movmisalign])
290 #define neg_optab (optab_table[OTI_neg])
291 #define negv_optab (optab_table[OTI_negv])
292 #define abs_optab (optab_table[OTI_abs])
293 #define absv_optab (optab_table[OTI_absv])
294 #define one_cmpl_optab (optab_table[OTI_one_cmpl])
295 #define ffs_optab (optab_table[OTI_ffs])
296 #define clz_optab (optab_table[OTI_clz])
297 #define ctz_optab (optab_table[OTI_ctz])
298 #define popcount_optab (optab_table[OTI_popcount])
299 #define parity_optab (optab_table[OTI_parity])
300 #define sqrt_optab (optab_table[OTI_sqrt])
301 #define sincos_optab (optab_table[OTI_sincos])
302 #define sin_optab (optab_table[OTI_sin])
303 #define asin_optab (optab_table[OTI_asin])
304 #define cos_optab (optab_table[OTI_cos])
305 #define acos_optab (optab_table[OTI_acos])
306 #define exp_optab (optab_table[OTI_exp])
307 #define exp10_optab (optab_table[OTI_exp10])
308 #define exp2_optab (optab_table[OTI_exp2])
309 #define expm1_optab (optab_table[OTI_expm1])
310 #define ldexp_optab (optab_table[OTI_ldexp])
311 #define logb_optab (optab_table[OTI_logb])
312 #define ilogb_optab (optab_table[OTI_ilogb])
313 #define log_optab (optab_table[OTI_log])
314 #define log10_optab (optab_table[OTI_log10])
315 #define log2_optab (optab_table[OTI_log2])
316 #define log1p_optab (optab_table[OTI_log1p])
317 #define floor_optab (optab_table[OTI_floor])
318 #define lfloor_optab (optab_table[OTI_lfloor])
319 #define ceil_optab (optab_table[OTI_ceil])
320 #define lceil_optab (optab_table[OTI_lceil])
321 #define btrunc_optab (optab_table[OTI_btrunc])
322 #define round_optab (optab_table[OTI_round])
323 #define nearbyint_optab (optab_table[OTI_nearbyint])
324 #define rint_optab (optab_table[OTI_rint])
325 #define lrint_optab (optab_table[OTI_lrint])
326 #define tan_optab (optab_table[OTI_tan])
327 #define atan_optab (optab_table[OTI_atan])
328 #define copysign_optab (optab_table[OTI_copysign])
330 #define cmp_optab (optab_table[OTI_cmp])
331 #define ucmp_optab (optab_table[OTI_ucmp])
332 #define tst_optab (optab_table[OTI_tst])
334 #define eq_optab (optab_table[OTI_eq])
335 #define ne_optab (optab_table[OTI_ne])
336 #define gt_optab (optab_table[OTI_gt])
337 #define ge_optab (optab_table[OTI_ge])
338 #define lt_optab (optab_table[OTI_lt])
339 #define le_optab (optab_table[OTI_le])
340 #define unord_optab (optab_table[OTI_unord])
342 #define strlen_optab (optab_table[OTI_strlen])
344 #define cbranch_optab (optab_table[OTI_cbranch])
345 #define cmov_optab (optab_table[OTI_cmov])
346 #define cstore_optab (optab_table[OTI_cstore])
347 #define push_optab (optab_table[OTI_push])
348 #define addcc_optab (optab_table[OTI_addcc])
350 #define vec_set_optab (optab_table[OTI_vec_set])
351 #define vec_extract_optab (optab_table[OTI_vec_extract])
352 #define vec_init_optab (optab_table[OTI_vec_init])
353 #define vec_realign_load_optab (optab_table[OTI_vec_realign_load])
355 #define powi_optab (optab_table[OTI_powi])
357 /* Conversion optabs have their own table and indexes. */
358 enum convert_optab_index
376 extern GTY(()) convert_optab convert_optab_table
[CTI_MAX
];
378 #define sext_optab (convert_optab_table[CTI_sext])
379 #define zext_optab (convert_optab_table[CTI_zext])
380 #define trunc_optab (convert_optab_table[CTI_trunc])
381 #define sfix_optab (convert_optab_table[CTI_sfix])
382 #define ufix_optab (convert_optab_table[CTI_ufix])
383 #define sfixtrunc_optab (convert_optab_table[CTI_sfixtrunc])
384 #define ufixtrunc_optab (convert_optab_table[CTI_ufixtrunc])
385 #define sfloat_optab (convert_optab_table[CTI_sfloat])
386 #define ufloat_optab (convert_optab_table[CTI_ufloat])
388 /* These arrays record the insn_code of insns that may be needed to
389 perform input and output reloads of special objects. They provide a
390 place to pass a scratch register. */
391 extern enum insn_code reload_in_optab
[NUM_MACHINE_MODES
];
392 extern enum insn_code reload_out_optab
[NUM_MACHINE_MODES
];
394 /* Contains the optab used for each rtx code. */
395 extern GTY(()) optab code_to_optab
[NUM_RTX_CODE
+ 1];
398 typedef rtx (*rtxfun
) (rtx
);
400 /* Indexed by the rtx-code for a conditional (e.g. EQ, LT,...)
401 gives the gen_function to make a branch to test that condition. */
403 extern rtxfun bcc_gen_fctn
[NUM_RTX_CODE
];
405 /* Indexed by the rtx-code for a conditional (e.g. EQ, LT,...)
406 gives the insn code to make a store-condition insn
407 to test that condition. */
409 extern enum insn_code setcc_gen_code
[NUM_RTX_CODE
];
411 #ifdef HAVE_conditional_move
412 /* Indexed by the machine mode, gives the insn code to make a conditional
415 extern enum insn_code movcc_gen_code
[NUM_MACHINE_MODES
];
418 /* Indexed by the machine mode, gives the insn code for vector conditional
421 extern enum insn_code vcond_gen_code
[NUM_MACHINE_MODES
];
422 extern enum insn_code vcondu_gen_code
[NUM_MACHINE_MODES
];
424 /* This array records the insn_code of insns to perform block moves. */
425 extern enum insn_code movmem_optab
[NUM_MACHINE_MODES
];
427 /* This array records the insn_code of insns to perform block clears. */
428 extern enum insn_code clrmem_optab
[NUM_MACHINE_MODES
];
430 /* These arrays record the insn_code of two different kinds of insns
431 to perform block compares. */
432 extern enum insn_code cmpstr_optab
[NUM_MACHINE_MODES
];
433 extern enum insn_code cmpmem_optab
[NUM_MACHINE_MODES
];
435 /* Synchronization primitives. This first set is atomic operation for
436 which we don't care about the resulting value. */
437 extern enum insn_code sync_add_optab
[NUM_MACHINE_MODES
];
438 extern enum insn_code sync_sub_optab
[NUM_MACHINE_MODES
];
439 extern enum insn_code sync_ior_optab
[NUM_MACHINE_MODES
];
440 extern enum insn_code sync_and_optab
[NUM_MACHINE_MODES
];
441 extern enum insn_code sync_xor_optab
[NUM_MACHINE_MODES
];
442 extern enum insn_code sync_nand_optab
[NUM_MACHINE_MODES
];
444 /* This second set is atomic operations in which we return the value
445 that existed in memory before the operation. */
446 extern enum insn_code sync_old_add_optab
[NUM_MACHINE_MODES
];
447 extern enum insn_code sync_old_sub_optab
[NUM_MACHINE_MODES
];
448 extern enum insn_code sync_old_ior_optab
[NUM_MACHINE_MODES
];
449 extern enum insn_code sync_old_and_optab
[NUM_MACHINE_MODES
];
450 extern enum insn_code sync_old_xor_optab
[NUM_MACHINE_MODES
];
451 extern enum insn_code sync_old_nand_optab
[NUM_MACHINE_MODES
];
453 /* This third set is atomic operations in which we return the value
454 that resulted after performing the operation. */
455 extern enum insn_code sync_new_add_optab
[NUM_MACHINE_MODES
];
456 extern enum insn_code sync_new_sub_optab
[NUM_MACHINE_MODES
];
457 extern enum insn_code sync_new_ior_optab
[NUM_MACHINE_MODES
];
458 extern enum insn_code sync_new_and_optab
[NUM_MACHINE_MODES
];
459 extern enum insn_code sync_new_xor_optab
[NUM_MACHINE_MODES
];
460 extern enum insn_code sync_new_nand_optab
[NUM_MACHINE_MODES
];
462 /* Atomic compare and swap. */
463 extern enum insn_code sync_compare_and_swap
[NUM_MACHINE_MODES
];
464 extern enum insn_code sync_compare_and_swap_cc
[NUM_MACHINE_MODES
];
466 /* Atomic exchange with acquire semantics. */
467 extern enum insn_code sync_lock_test_and_set
[NUM_MACHINE_MODES
];
469 /* Atomic clear with release semantics. */
470 extern enum insn_code sync_lock_release
[NUM_MACHINE_MODES
];
472 /* Define functions given in optabs.c. */
474 extern rtx
expand_ternary_op (enum machine_mode mode
, optab ternary_optab
,
475 rtx op0
, rtx op1
, rtx op2
, rtx target
,
478 /* Expand a binary operation given optab and rtx operands. */
479 extern rtx
expand_binop (enum machine_mode
, optab
, rtx
, rtx
, rtx
, int,
482 extern bool force_expand_binop (enum machine_mode
, optab
, rtx
, rtx
, rtx
, int,
485 /* Expand a binary operation with both signed and unsigned forms. */
486 extern rtx
sign_expand_binop (enum machine_mode
, optab
, optab
, rtx
, rtx
,
487 rtx
, int, enum optab_methods
);
489 /* Generate code to perform an operation on one operand with two results. */
490 extern int expand_twoval_unop (optab
, rtx
, rtx
, rtx
, int);
492 /* Generate code to perform an operation on two operands with two results. */
493 extern int expand_twoval_binop (optab
, rtx
, rtx
, rtx
, rtx
, int);
495 /* Generate code to perform an operation on two operands with two
496 results, using a library function. */
497 extern bool expand_twoval_binop_libfunc (optab
, rtx
, rtx
, rtx
, rtx
,
500 /* Expand a unary arithmetic operation given optab rtx operand. */
501 extern rtx
expand_unop (enum machine_mode
, optab
, rtx
, rtx
, int);
503 /* Expand the absolute value operation. */
504 extern rtx
expand_abs_nojump (enum machine_mode
, rtx
, rtx
, int);
505 extern rtx
expand_abs (enum machine_mode
, rtx
, rtx
, int, int);
507 /* Expand the copysign operation. */
508 extern rtx
expand_copysign (rtx
, rtx
, rtx
);
510 /* Generate an instruction with a given INSN_CODE with an output and
512 extern void emit_unop_insn (int, rtx
, rtx
, enum rtx_code
);
514 /* Emit code to perform a series of operations on a multi-word quantity, one
516 extern rtx
emit_no_conflict_block (rtx
, rtx
, rtx
, rtx
, rtx
);
518 /* Emit one rtl insn to compare two rtx's. */
519 extern void emit_cmp_insn (rtx
, rtx
, enum rtx_code
, rtx
, enum machine_mode
,
522 /* The various uses that a comparison can have; used by can_compare_p:
523 jumps, conditional moves, store flag operations. */
524 enum can_compare_purpose
531 /* Return the optab used for computing the given operation on the type
532 given by the second argument. */
533 extern optab
optab_for_tree_code (enum tree_code
, tree
);
535 /* Nonzero if a compare of mode MODE can be done straightforwardly
536 (without splitting it into pieces). */
537 extern int can_compare_p (enum rtx_code
, enum machine_mode
,
538 enum can_compare_purpose
);
540 /* Return the INSN_CODE to use for an extend operation. */
541 extern enum insn_code
can_extend_p (enum machine_mode
, enum machine_mode
, int);
543 /* Generate the body of an insn to extend Y (with mode MFROM)
544 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
545 extern rtx
gen_extend_insn (rtx
, rtx
, enum machine_mode
,
546 enum machine_mode
, int);
548 /* Call this to reset the function entry for one optab. */
549 extern void set_optab_libfunc (optab
, enum machine_mode
, const char *);
550 extern void set_conv_libfunc (convert_optab
, enum machine_mode
,
551 enum machine_mode
, const char *);
553 /* Generate code for a FLOAT_EXPR. */
554 extern void expand_float (rtx
, rtx
, int);
556 /* Generate code for a FIX_EXPR. */
557 extern void expand_fix (rtx
, rtx
, int);
559 /* Return tree if target supports vector operations for COND_EXPR. */
560 bool expand_vec_cond_expr_p (tree
, enum machine_mode
);
562 /* Generate code for VEC_COND_EXPR. */
563 extern rtx
expand_vec_cond_expr (tree
, rtx
);
565 #endif /* GCC_OPTABS_H */