1 /* Definitions for code generation pass of GNU compiler.
2 Copyright (C) 2001, 2002, 2003, 2004 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. */
137 /* Unary operations */
146 /* Bit scanning and counting */
166 /* Base-10 Exponential */
168 /* Base-2 Exponential */
172 /* Radix-independent exponent */
175 /* Natural Logarithm */
177 /* Base-10 Logarithm */
179 /* Base-2 Logarithm */
181 /* logarithm of 1 plus argument */
183 /* Rounding functions */
192 /* Inverse tangent */
195 /* Compare insn; two operands. */
197 /* Used only for libcalls for unsigned comparisons. */
199 /* tst insn; compare one operand against 0 */
202 /* Floating point comparison optabs - used primarily for libfuncs */
214 /* Combined compare & jump/store flags/move operations. */
219 /* Push instruction. */
222 /* Conditional add instruction. */
225 /* Set specified field of vector operand. */
227 /* Extract specified field of vector operand. */
229 /* Initialize vector operand. */
235 extern GTY(()) optab optab_table
[OTI_MAX
];
237 #define add_optab (optab_table[OTI_add])
238 #define sub_optab (optab_table[OTI_sub])
239 #define smul_optab (optab_table[OTI_smul])
240 #define addv_optab (optab_table[OTI_addv])
241 #define subv_optab (optab_table[OTI_subv])
242 #define smul_highpart_optab (optab_table[OTI_smul_highpart])
243 #define umul_highpart_optab (optab_table[OTI_umul_highpart])
244 #define smul_widen_optab (optab_table[OTI_smul_widen])
245 #define umul_widen_optab (optab_table[OTI_umul_widen])
246 #define sdiv_optab (optab_table[OTI_sdiv])
247 #define smulv_optab (optab_table[OTI_smulv])
248 #define sdivv_optab (optab_table[OTI_sdivv])
249 #define sdivmod_optab (optab_table[OTI_sdivmod])
250 #define udiv_optab (optab_table[OTI_udiv])
251 #define udivmod_optab (optab_table[OTI_udivmod])
252 #define smod_optab (optab_table[OTI_smod])
253 #define umod_optab (optab_table[OTI_umod])
254 #define fmod_optab (optab_table[OTI_fmod])
255 #define drem_optab (optab_table[OTI_drem])
256 #define ftrunc_optab (optab_table[OTI_ftrunc])
257 #define and_optab (optab_table[OTI_and])
258 #define ior_optab (optab_table[OTI_ior])
259 #define xor_optab (optab_table[OTI_xor])
260 #define ashl_optab (optab_table[OTI_ashl])
261 #define lshr_optab (optab_table[OTI_lshr])
262 #define ashr_optab (optab_table[OTI_ashr])
263 #define rotl_optab (optab_table[OTI_rotl])
264 #define rotr_optab (optab_table[OTI_rotr])
265 #define smin_optab (optab_table[OTI_smin])
266 #define smax_optab (optab_table[OTI_smax])
267 #define umin_optab (optab_table[OTI_umin])
268 #define umax_optab (optab_table[OTI_umax])
269 #define pow_optab (optab_table[OTI_pow])
270 #define atan2_optab (optab_table[OTI_atan2])
272 #define mov_optab (optab_table[OTI_mov])
273 #define movstrict_optab (optab_table[OTI_movstrict])
275 #define neg_optab (optab_table[OTI_neg])
276 #define negv_optab (optab_table[OTI_negv])
277 #define abs_optab (optab_table[OTI_abs])
278 #define absv_optab (optab_table[OTI_absv])
279 #define one_cmpl_optab (optab_table[OTI_one_cmpl])
280 #define ffs_optab (optab_table[OTI_ffs])
281 #define clz_optab (optab_table[OTI_clz])
282 #define ctz_optab (optab_table[OTI_ctz])
283 #define popcount_optab (optab_table[OTI_popcount])
284 #define parity_optab (optab_table[OTI_parity])
285 #define sqrt_optab (optab_table[OTI_sqrt])
286 #define sincos_optab (optab_table[OTI_sincos])
287 #define sin_optab (optab_table[OTI_sin])
288 #define asin_optab (optab_table[OTI_asin])
289 #define cos_optab (optab_table[OTI_cos])
290 #define acos_optab (optab_table[OTI_acos])
291 #define exp_optab (optab_table[OTI_exp])
292 #define exp10_optab (optab_table[OTI_exp10])
293 #define exp2_optab (optab_table[OTI_exp2])
294 #define expm1_optab (optab_table[OTI_expm1])
295 #define logb_optab (optab_table[OTI_logb])
296 #define ilogb_optab (optab_table[OTI_ilogb])
297 #define log_optab (optab_table[OTI_log])
298 #define log10_optab (optab_table[OTI_log10])
299 #define log2_optab (optab_table[OTI_log2])
300 #define log1p_optab (optab_table[OTI_log1p])
301 #define floor_optab (optab_table[OTI_floor])
302 #define ceil_optab (optab_table[OTI_ceil])
303 #define btrunc_optab (optab_table[OTI_btrunc])
304 #define round_optab (optab_table[OTI_round])
305 #define nearbyint_optab (optab_table[OTI_nearbyint])
306 #define rint_optab (optab_table[OTI_rint])
307 #define tan_optab (optab_table[OTI_tan])
308 #define atan_optab (optab_table[OTI_atan])
310 #define cmp_optab (optab_table[OTI_cmp])
311 #define ucmp_optab (optab_table[OTI_ucmp])
312 #define tst_optab (optab_table[OTI_tst])
314 #define eq_optab (optab_table[OTI_eq])
315 #define ne_optab (optab_table[OTI_ne])
316 #define gt_optab (optab_table[OTI_gt])
317 #define ge_optab (optab_table[OTI_ge])
318 #define lt_optab (optab_table[OTI_lt])
319 #define le_optab (optab_table[OTI_le])
320 #define unord_optab (optab_table[OTI_unord])
322 #define strlen_optab (optab_table[OTI_strlen])
324 #define cbranch_optab (optab_table[OTI_cbranch])
325 #define cmov_optab (optab_table[OTI_cmov])
326 #define cstore_optab (optab_table[OTI_cstore])
327 #define push_optab (optab_table[OTI_push])
328 #define addcc_optab (optab_table[OTI_addcc])
330 #define vec_set_optab (optab_table[OTI_vec_set])
331 #define vec_extract_optab (optab_table[OTI_vec_extract])
332 #define vec_init_optab (optab_table[OTI_vec_init])
334 /* Conversion optabs have their own table and indexes. */
335 enum convert_optab_index
353 extern GTY(()) convert_optab convert_optab_table
[CTI_MAX
];
355 #define sext_optab (convert_optab_table[CTI_sext])
356 #define zext_optab (convert_optab_table[CTI_zext])
357 #define trunc_optab (convert_optab_table[CTI_trunc])
358 #define sfix_optab (convert_optab_table[CTI_sfix])
359 #define ufix_optab (convert_optab_table[CTI_ufix])
360 #define sfixtrunc_optab (convert_optab_table[CTI_sfixtrunc])
361 #define ufixtrunc_optab (convert_optab_table[CTI_ufixtrunc])
362 #define sfloat_optab (convert_optab_table[CTI_sfloat])
363 #define ufloat_optab (convert_optab_table[CTI_ufloat])
365 /* These arrays record the insn_code of insns that may be needed to
366 perform input and output reloads of special objects. They provide a
367 place to pass a scratch register. */
368 extern enum insn_code reload_in_optab
[NUM_MACHINE_MODES
];
369 extern enum insn_code reload_out_optab
[NUM_MACHINE_MODES
];
371 /* Contains the optab used for each rtx code. */
372 extern GTY(()) optab code_to_optab
[NUM_RTX_CODE
+ 1];
375 typedef rtx (*rtxfun
) (rtx
);
377 /* Indexed by the rtx-code for a conditional (e.g. EQ, LT,...)
378 gives the gen_function to make a branch to test that condition. */
380 extern rtxfun bcc_gen_fctn
[NUM_RTX_CODE
];
382 /* Indexed by the rtx-code for a conditional (e.g. EQ, LT,...)
383 gives the insn code to make a store-condition insn
384 to test that condition. */
386 extern enum insn_code setcc_gen_code
[NUM_RTX_CODE
];
388 #ifdef HAVE_conditional_move
389 /* Indexed by the machine mode, gives the insn code to make a conditional
392 extern enum insn_code movcc_gen_code
[NUM_MACHINE_MODES
];
395 /* This array records the insn_code of insns to perform block moves. */
396 extern enum insn_code movmem_optab
[NUM_MACHINE_MODES
];
398 /* This array records the insn_code of insns to perform block clears. */
399 extern enum insn_code clrmem_optab
[NUM_MACHINE_MODES
];
401 /* These arrays record the insn_code of two different kinds of insns
402 to perform block compares. */
403 extern enum insn_code cmpstr_optab
[NUM_MACHINE_MODES
];
404 extern enum insn_code cmpmem_optab
[NUM_MACHINE_MODES
];
406 /* Define functions given in optabs.c. */
408 /* Expand a binary operation given optab and rtx operands. */
409 extern rtx
expand_binop (enum machine_mode
, optab
, rtx
, rtx
, rtx
, int,
412 /* Expand a binary operation with both signed and unsigned forms. */
413 extern rtx
sign_expand_binop (enum machine_mode
, optab
, optab
, rtx
, rtx
,
414 rtx
, int, enum optab_methods
);
416 /* Generate code to perform an operation on one operand with two results. */
417 extern int expand_twoval_unop (optab
, rtx
, rtx
, rtx
, int);
419 /* Generate code to perform an operation on two operands with two results. */
420 extern int expand_twoval_binop (optab
, rtx
, rtx
, rtx
, rtx
, int);
422 /* Generate code to perform an operation on two operands with two
423 results, using a library function. */
424 extern bool expand_twoval_binop_libfunc (optab
, rtx
, rtx
, rtx
, rtx
,
427 /* Expand a unary arithmetic operation given optab rtx operand. */
428 extern rtx
expand_unop (enum machine_mode
, optab
, rtx
, rtx
, int);
430 /* Expand the absolute value operation. */
431 extern rtx
expand_abs_nojump (enum machine_mode
, rtx
, rtx
, int);
432 extern rtx
expand_abs (enum machine_mode
, rtx
, rtx
, int, int);
434 /* Generate an instruction with a given INSN_CODE with an output and
436 extern void emit_unop_insn (int, rtx
, rtx
, enum rtx_code
);
438 /* Emit code to perform a series of operations on a multi-word quantity, one
440 extern rtx
emit_no_conflict_block (rtx
, rtx
, rtx
, rtx
, rtx
);
442 /* Emit one rtl insn to compare two rtx's. */
443 extern void emit_cmp_insn (rtx
, rtx
, enum rtx_code
, rtx
, enum machine_mode
,
446 /* The various uses that a comparison can have; used by can_compare_p:
447 jumps, conditional moves, store flag operations. */
448 enum can_compare_purpose
455 /* Return the optab used for computing the given operation on the type
456 given by the second argument. */
457 extern optab
optab_for_tree_code (enum tree_code
, tree
);
459 /* Nonzero if a compare of mode MODE can be done straightforwardly
460 (without splitting it into pieces). */
461 extern int can_compare_p (enum rtx_code
, enum machine_mode
,
462 enum can_compare_purpose
);
464 extern rtx
prepare_operand (int, rtx
, int, enum machine_mode
,
465 enum machine_mode
, int);
467 /* Return the INSN_CODE to use for an extend operation. */
468 extern enum insn_code
can_extend_p (enum machine_mode
, enum machine_mode
, int);
470 /* Generate the body of an insn to extend Y (with mode MFROM)
471 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
472 extern rtx
gen_extend_insn (rtx
, rtx
, enum machine_mode
,
473 enum machine_mode
, int);
475 /* Initialize the tables that control conversion between fixed and
477 extern void init_fixtab (void);
478 extern void init_floattab (void);
480 /* Call this to reset the function entry for one optab. */
481 extern void set_optab_libfunc (optab
, enum machine_mode
, const char *);
482 extern void set_conv_libfunc (convert_optab
, enum machine_mode
,
483 enum machine_mode
, const char *);
485 /* Generate code for a FLOAT_EXPR. */
486 extern void expand_float (rtx
, rtx
, int);
488 /* Generate code for a FIX_EXPR. */
489 extern void expand_fix (rtx
, rtx
, int);
491 #endif /* GCC_OPTABS_H */