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 /* Convert float to integer in float fmt */
106 /* Arithmetic shift left */
108 /* Logical shift right */
110 /* Arithmetic shift right */
116 /* Signed and floating-point minimum value */
118 /* Signed and floating-point maximum value */
120 /* Unsigned minimum value */
122 /* Unsigned maximum value */
126 /* Arc tangent of y/x */
129 /* Move instruction. */
131 /* Move, preserving high part of register. */
134 /* Unary operations */
143 /* Bit scanning and counting */
157 /* Natural Logarithm */
159 /* Rounding functions */
167 /* Inverse tangent */
170 /* Compare insn; two operands. */
172 /* Used only for libcalls for unsigned comparisons. */
174 /* tst insn; compare one operand against 0 */
177 /* Floating point comparison optabs - used primarily for libfuncs */
189 /* Combined compare & jump/store flags/move operations. */
194 /* Push instruction. */
197 /* Conditional add instruction. */
200 /* Set specified field of vector operand. */
202 /* Extract specified field of vector operand. */
204 /* Initialize vector operand. */
210 extern GTY(()) optab optab_table
[OTI_MAX
];
212 #define add_optab (optab_table[OTI_add])
213 #define sub_optab (optab_table[OTI_sub])
214 #define smul_optab (optab_table[OTI_smul])
215 #define addv_optab (optab_table[OTI_addv])
216 #define subv_optab (optab_table[OTI_subv])
217 #define smul_highpart_optab (optab_table[OTI_smul_highpart])
218 #define umul_highpart_optab (optab_table[OTI_umul_highpart])
219 #define smul_widen_optab (optab_table[OTI_smul_widen])
220 #define umul_widen_optab (optab_table[OTI_umul_widen])
221 #define sdiv_optab (optab_table[OTI_sdiv])
222 #define smulv_optab (optab_table[OTI_smulv])
223 #define sdivv_optab (optab_table[OTI_sdivv])
224 #define sdivmod_optab (optab_table[OTI_sdivmod])
225 #define udiv_optab (optab_table[OTI_udiv])
226 #define udivmod_optab (optab_table[OTI_udivmod])
227 #define smod_optab (optab_table[OTI_smod])
228 #define umod_optab (optab_table[OTI_umod])
229 #define ftrunc_optab (optab_table[OTI_ftrunc])
230 #define and_optab (optab_table[OTI_and])
231 #define ior_optab (optab_table[OTI_ior])
232 #define xor_optab (optab_table[OTI_xor])
233 #define ashl_optab (optab_table[OTI_ashl])
234 #define lshr_optab (optab_table[OTI_lshr])
235 #define ashr_optab (optab_table[OTI_ashr])
236 #define rotl_optab (optab_table[OTI_rotl])
237 #define rotr_optab (optab_table[OTI_rotr])
238 #define smin_optab (optab_table[OTI_smin])
239 #define smax_optab (optab_table[OTI_smax])
240 #define umin_optab (optab_table[OTI_umin])
241 #define umax_optab (optab_table[OTI_umax])
242 #define pow_optab (optab_table[OTI_pow])
243 #define atan2_optab (optab_table[OTI_atan2])
245 #define mov_optab (optab_table[OTI_mov])
246 #define movstrict_optab (optab_table[OTI_movstrict])
248 #define neg_optab (optab_table[OTI_neg])
249 #define negv_optab (optab_table[OTI_negv])
250 #define abs_optab (optab_table[OTI_abs])
251 #define absv_optab (optab_table[OTI_absv])
252 #define one_cmpl_optab (optab_table[OTI_one_cmpl])
253 #define ffs_optab (optab_table[OTI_ffs])
254 #define clz_optab (optab_table[OTI_clz])
255 #define ctz_optab (optab_table[OTI_ctz])
256 #define popcount_optab (optab_table[OTI_popcount])
257 #define parity_optab (optab_table[OTI_parity])
258 #define sqrt_optab (optab_table[OTI_sqrt])
259 #define sin_optab (optab_table[OTI_sin])
260 #define cos_optab (optab_table[OTI_cos])
261 #define exp_optab (optab_table[OTI_exp])
262 #define log_optab (optab_table[OTI_log])
263 #define floor_optab (optab_table[OTI_floor])
264 #define ceil_optab (optab_table[OTI_ceil])
265 #define btrunc_optab (optab_table[OTI_trunc])
266 #define round_optab (optab_table[OTI_round])
267 #define nearbyint_optab (optab_table[OTI_nearbyint])
268 #define tan_optab (optab_table[OTI_tan])
269 #define atan_optab (optab_table[OTI_atan])
271 #define cmp_optab (optab_table[OTI_cmp])
272 #define ucmp_optab (optab_table[OTI_ucmp])
273 #define tst_optab (optab_table[OTI_tst])
275 #define eq_optab (optab_table[OTI_eq])
276 #define ne_optab (optab_table[OTI_ne])
277 #define gt_optab (optab_table[OTI_gt])
278 #define ge_optab (optab_table[OTI_ge])
279 #define lt_optab (optab_table[OTI_lt])
280 #define le_optab (optab_table[OTI_le])
281 #define unord_optab (optab_table[OTI_unord])
283 #define strlen_optab (optab_table[OTI_strlen])
285 #define cbranch_optab (optab_table[OTI_cbranch])
286 #define cmov_optab (optab_table[OTI_cmov])
287 #define cstore_optab (optab_table[OTI_cstore])
288 #define push_optab (optab_table[OTI_push])
289 #define addcc_optab (optab_table[OTI_addcc])
291 #define vec_set_optab (optab_table[OTI_vec_set])
292 #define vec_extract_optab (optab_table[OTI_vec_extract])
293 #define vec_init_optab (optab_table[OTI_vec_init])
295 /* Conversion optabs have their own table and indexes. */
296 enum convert_optab_index
314 extern GTY(()) convert_optab convert_optab_table
[CTI_MAX
];
316 #define sext_optab (convert_optab_table[CTI_sext])
317 #define zext_optab (convert_optab_table[CTI_zext])
318 #define trunc_optab (convert_optab_table[CTI_trunc])
319 #define sfix_optab (convert_optab_table[CTI_sfix])
320 #define ufix_optab (convert_optab_table[CTI_ufix])
321 #define sfixtrunc_optab (convert_optab_table[CTI_sfixtrunc])
322 #define ufixtrunc_optab (convert_optab_table[CTI_ufixtrunc])
323 #define sfloat_optab (convert_optab_table[CTI_sfloat])
324 #define ufloat_optab (convert_optab_table[CTI_ufloat])
326 /* These arrays record the insn_code of insns that may be needed to
327 perform input and output reloads of special objects. They provide a
328 place to pass a scratch register. */
329 extern enum insn_code reload_in_optab
[NUM_MACHINE_MODES
];
330 extern enum insn_code reload_out_optab
[NUM_MACHINE_MODES
];
332 /* Contains the optab used for each rtx code. */
333 extern GTY(()) optab code_to_optab
[NUM_RTX_CODE
+ 1];
336 typedef rtx (*rtxfun
) (rtx
);
338 /* Indexed by the rtx-code for a conditional (eg. EQ, LT,...)
339 gives the gen_function to make a branch to test that condition. */
341 extern rtxfun bcc_gen_fctn
[NUM_RTX_CODE
];
343 /* Indexed by the rtx-code for a conditional (eg. EQ, LT,...)
344 gives the insn code to make a store-condition insn
345 to test that condition. */
347 extern enum insn_code setcc_gen_code
[NUM_RTX_CODE
];
349 #ifdef HAVE_conditional_move
350 /* Indexed by the machine mode, gives the insn code to make a conditional
353 extern enum insn_code movcc_gen_code
[NUM_MACHINE_MODES
];
356 /* This array records the insn_code of insns to perform block moves. */
357 extern enum insn_code movstr_optab
[NUM_MACHINE_MODES
];
359 /* This array records the insn_code of insns to perform block clears. */
360 extern enum insn_code clrstr_optab
[NUM_MACHINE_MODES
];
362 /* These arrays record the insn_code of two different kinds of insns
363 to perform block compares. */
364 extern enum insn_code cmpstr_optab
[NUM_MACHINE_MODES
];
365 extern enum insn_code cmpmem_optab
[NUM_MACHINE_MODES
];
367 /* Define functions given in optabs.c. */
369 /* Expand a binary operation given optab and rtx operands. */
370 extern rtx
expand_binop (enum machine_mode
, optab
, rtx
, rtx
, rtx
, int,
373 /* Expand a binary operation with both signed and unsigned forms. */
374 extern rtx
sign_expand_binop (enum machine_mode
, optab
, optab
, rtx
, rtx
,
375 rtx
, int, enum optab_methods
);
377 /* Generate code to perform an operation on two operands with two results. */
378 extern int expand_twoval_binop (optab
, rtx
, rtx
, rtx
, rtx
, int);
380 /* Expand a unary arithmetic operation given optab rtx operand. */
381 extern rtx
expand_unop (enum machine_mode
, optab
, rtx
, rtx
, int);
383 /* Expand the absolute value operation. */
384 extern rtx
expand_abs_nojump (enum machine_mode
, rtx
, rtx
, int);
385 extern rtx
expand_abs (enum machine_mode
, rtx
, rtx
, int, int);
387 /* Expand the complex absolute value operation. */
388 extern rtx
expand_complex_abs (enum machine_mode
, rtx
, rtx
, int);
390 /* Generate an instruction with a given INSN_CODE with an output and
392 extern void emit_unop_insn (int, rtx
, rtx
, enum rtx_code
);
394 /* Emit code to perform a series of operations on a multi-word quantity, one
396 extern rtx
emit_no_conflict_block (rtx
, rtx
, rtx
, rtx
, rtx
);
398 /* Emit one rtl instruction to store zero in specified rtx. */
399 extern void emit_clr_insn (rtx
);
401 /* Emit one rtl insn to store 1 in specified rtx assuming it contains 0. */
402 extern void emit_0_to_1_insn (rtx
);
404 /* Emit one rtl insn to compare two rtx's. */
405 extern void emit_cmp_insn (rtx
, rtx
, enum rtx_code
, rtx
, enum machine_mode
,
408 /* The various uses that a comparison can have; used by can_compare_p:
409 jumps, conditional moves, store flag operations. */
410 enum can_compare_purpose
417 /* Nonzero if a compare of mode MODE can be done straightforwardly
418 (without splitting it into pieces). */
419 extern int can_compare_p (enum rtx_code
, enum machine_mode
,
420 enum can_compare_purpose
);
422 extern rtx
prepare_operand (int, rtx
, int, enum machine_mode
,
423 enum machine_mode
, int);
425 /* Return the INSN_CODE to use for an extend operation. */
426 extern enum insn_code
can_extend_p (enum machine_mode
, enum machine_mode
, int);
428 /* Generate the body of an insn to extend Y (with mode MFROM)
429 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
430 extern rtx
gen_extend_insn (rtx
, rtx
, enum machine_mode
,
431 enum machine_mode
, int);
433 /* Initialize the tables that control conversion between fixed and
435 extern void init_fixtab (void);
436 extern void init_floattab (void);
438 /* Call this to reset the function entry for one optab. */
439 extern void set_optab_libfunc (optab
, enum machine_mode
, const char *);
440 extern void set_conv_libfunc (convert_optab
, enum machine_mode
,
441 enum machine_mode
, const char *);
443 /* Generate code for a FLOAT_EXPR. */
444 extern void expand_float (rtx
, rtx
, int);
446 /* Generate code for a FIX_EXPR. */
447 extern void expand_fix (rtx
, rtx
, int);
449 #endif /* GCC_OPTABS_H */