1 /* Definitions for code generation pass of GNU compiler.
2 Copyright (C) 2001, 2002 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
44 struct optab_handlers
{
45 enum insn_code insn_code
;
47 } handlers
[NUM_MACHINE_MODES
];
49 typedef struct optab
* optab
;
51 /* Given an enum insn_code, access the function to construct
52 the body of that kind of insn. */
53 #define GEN_FCN(CODE) (*insn_data[(int) (CODE)].genfun)
55 /* Enumeration of valid indexes into optab_table. */
63 /* Signed and fp multiply */
66 /* Signed multiply, return high word */
69 /* Signed multiply with result one machine mode wider than args */
76 /* Signed divide-and-remainder in one */
80 /* Signed remainder */
83 /* Convert float to integer in float fmt */
93 /* Arithmetic shift left */
95 /* Logical shift right */
97 /* Arithmetic shift right */
103 /* Signed and floating-point minimum value */
105 /* Signed and floating-point maximum value */
107 /* Unsigned minimum value */
109 /* Unsigned maximum value */
112 /* Move instruction. */
114 /* Move, preserving high part of register. */
117 /* Unary operations */
126 /* Bit scanning and counting */
140 /* Natural Logarithm */
142 /* Rounding functions */
149 /* Compare insn; two operands. */
151 /* Used only for libcalls for unsigned comparisons. */
153 /* tst insn; compare one operand against 0 */
159 /* Combined compare & jump/store flags/move operations. */
164 /* Push instruction. */
167 /* Conditional add instruction. */
173 extern GTY(()) optab optab_table
[OTI_MAX
];
175 #define add_optab (optab_table[OTI_add])
176 #define sub_optab (optab_table[OTI_sub])
177 #define smul_optab (optab_table[OTI_smul])
178 #define addv_optab (optab_table[OTI_addv])
179 #define subv_optab (optab_table[OTI_subv])
180 #define smul_highpart_optab (optab_table[OTI_smul_highpart])
181 #define umul_highpart_optab (optab_table[OTI_umul_highpart])
182 #define smul_widen_optab (optab_table[OTI_smul_widen])
183 #define umul_widen_optab (optab_table[OTI_umul_widen])
184 #define sdiv_optab (optab_table[OTI_sdiv])
185 #define smulv_optab (optab_table[OTI_smulv])
186 #define sdivv_optab (optab_table[OTI_sdivv])
187 #define sdivmod_optab (optab_table[OTI_sdivmod])
188 #define udiv_optab (optab_table[OTI_udiv])
189 #define udivmod_optab (optab_table[OTI_udivmod])
190 #define smod_optab (optab_table[OTI_smod])
191 #define umod_optab (optab_table[OTI_umod])
192 #define ftrunc_optab (optab_table[OTI_ftrunc])
193 #define and_optab (optab_table[OTI_and])
194 #define ior_optab (optab_table[OTI_ior])
195 #define xor_optab (optab_table[OTI_xor])
196 #define ashl_optab (optab_table[OTI_ashl])
197 #define lshr_optab (optab_table[OTI_lshr])
198 #define ashr_optab (optab_table[OTI_ashr])
199 #define rotl_optab (optab_table[OTI_rotl])
200 #define rotr_optab (optab_table[OTI_rotr])
201 #define smin_optab (optab_table[OTI_smin])
202 #define smax_optab (optab_table[OTI_smax])
203 #define umin_optab (optab_table[OTI_umin])
204 #define umax_optab (optab_table[OTI_umax])
206 #define mov_optab (optab_table[OTI_mov])
207 #define movstrict_optab (optab_table[OTI_movstrict])
209 #define neg_optab (optab_table[OTI_neg])
210 #define negv_optab (optab_table[OTI_negv])
211 #define abs_optab (optab_table[OTI_abs])
212 #define absv_optab (optab_table[OTI_absv])
213 #define one_cmpl_optab (optab_table[OTI_one_cmpl])
214 #define ffs_optab (optab_table[OTI_ffs])
215 #define clz_optab (optab_table[OTI_clz])
216 #define ctz_optab (optab_table[OTI_ctz])
217 #define popcount_optab (optab_table[OTI_popcount])
218 #define parity_optab (optab_table[OTI_parity])
219 #define sqrt_optab (optab_table[OTI_sqrt])
220 #define sin_optab (optab_table[OTI_sin])
221 #define cos_optab (optab_table[OTI_cos])
222 #define exp_optab (optab_table[OTI_exp])
223 #define log_optab (optab_table[OTI_log])
224 #define floor_optab (optab_table[OTI_floor])
225 #define ceil_optab (optab_table[OTI_ceil])
226 #define trunc_optab (optab_table[OTI_trunc])
227 #define round_optab (optab_table[OTI_round])
228 #define nearbyint_optab (optab_table[OTI_nearbyint])
230 #define cmp_optab (optab_table[OTI_cmp])
231 #define ucmp_optab (optab_table[OTI_ucmp])
232 #define tst_optab (optab_table[OTI_tst])
234 #define strlen_optab (optab_table[OTI_strlen])
236 #define cbranch_optab (optab_table[OTI_cbranch])
237 #define cmov_optab (optab_table[OTI_cmov])
238 #define cstore_optab (optab_table[OTI_cstore])
239 #define push_optab (optab_table[OTI_push])
240 #define addcc_optab (optab_table[OTI_addcc])
242 /* Tables of patterns for extending one integer mode to another. */
243 extern enum insn_code extendtab
[MAX_MACHINE_MODE
][MAX_MACHINE_MODE
][2];
245 /* Tables of patterns for converting between fixed and floating point. */
246 extern enum insn_code fixtab
[NUM_MACHINE_MODES
][NUM_MACHINE_MODES
][2];
247 extern enum insn_code fixtrunctab
[NUM_MACHINE_MODES
][NUM_MACHINE_MODES
][2];
248 extern enum insn_code floattab
[NUM_MACHINE_MODES
][NUM_MACHINE_MODES
][2];
250 /* These arrays record the insn_code of insns that may be needed to
251 perform input and output reloads of special objects. They provide a
252 place to pass a scratch register. */
253 extern enum insn_code reload_in_optab
[NUM_MACHINE_MODES
];
254 extern enum insn_code reload_out_optab
[NUM_MACHINE_MODES
];
256 /* Contains the optab used for each rtx code. */
257 extern GTY(()) optab code_to_optab
[NUM_RTX_CODE
+ 1];
260 typedef rtx (*rtxfun
) PARAMS ((rtx
));
262 /* Indexed by the rtx-code for a conditional (eg. EQ, LT,...)
263 gives the gen_function to make a branch to test that condition. */
265 extern rtxfun bcc_gen_fctn
[NUM_RTX_CODE
];
267 /* Indexed by the rtx-code for a conditional (eg. EQ, LT,...)
268 gives the insn code to make a store-condition insn
269 to test that condition. */
271 extern enum insn_code setcc_gen_code
[NUM_RTX_CODE
];
273 #ifdef HAVE_conditional_move
274 /* Indexed by the machine mode, gives the insn code to make a conditional
277 extern enum insn_code movcc_gen_code
[NUM_MACHINE_MODES
];
280 /* This array records the insn_code of insns to perform block moves. */
281 extern enum insn_code movstr_optab
[NUM_MACHINE_MODES
];
283 /* This array records the insn_code of insns to perform block clears. */
284 extern enum insn_code clrstr_optab
[NUM_MACHINE_MODES
];
286 /* Define functions given in optabs.c. */
288 /* Expand a binary operation given optab and rtx operands. */
289 extern rtx expand_binop
PARAMS ((enum machine_mode
, optab
, rtx
, rtx
, rtx
,
290 int, enum optab_methods
));
292 /* Expand a binary operation with both signed and unsigned forms. */
293 extern rtx sign_expand_binop
PARAMS ((enum machine_mode
, optab
, optab
, rtx
,
294 rtx
, rtx
, int, enum optab_methods
));
296 /* Generate code to perform an operation on two operands with two results. */
297 extern int expand_twoval_binop
PARAMS ((optab
, rtx
, rtx
, rtx
, rtx
, int));
299 /* Expand a unary arithmetic operation given optab rtx operand. */
300 extern rtx expand_unop
PARAMS ((enum machine_mode
, optab
, rtx
, rtx
, int));
302 /* Expand the absolute value operation. */
303 extern rtx expand_abs
PARAMS ((enum machine_mode
, rtx
, rtx
, int, int));
305 /* Expand the complex absolute value operation. */
306 extern rtx expand_complex_abs
PARAMS ((enum machine_mode
, rtx
, rtx
, int));
308 /* Generate an instruction with a given INSN_CODE with an output and
310 extern void emit_unop_insn
PARAMS ((int, rtx
, rtx
, enum rtx_code
));
312 /* Emit code to perform a series of operations on a multi-word quantity, one
314 extern rtx emit_no_conflict_block
PARAMS ((rtx
, rtx
, rtx
, rtx
, rtx
));
316 /* Emit one rtl instruction to store zero in specified rtx. */
317 extern void emit_clr_insn
PARAMS ((rtx
));
319 /* Emit one rtl insn to store 1 in specified rtx assuming it contains 0. */
320 extern void emit_0_to_1_insn
PARAMS ((rtx
));
322 /* Emit one rtl insn to compare two rtx's. */
323 extern void emit_cmp_insn
PARAMS ((rtx
, rtx
, enum rtx_code
, rtx
,
324 enum machine_mode
, int));
326 /* The various uses that a comparison can have; used by can_compare_p:
327 jumps, conditional moves, store flag operations. */
328 enum can_compare_purpose
335 /* Nonzero if a compare of mode MODE can be done straightforwardly
336 (without splitting it into pieces). */
337 extern int can_compare_p
PARAMS ((enum rtx_code
, enum machine_mode
,
338 enum can_compare_purpose
));
340 extern rtx prepare_operand
PARAMS ((int, rtx
, int, enum machine_mode
,
341 enum machine_mode
, int));
343 /* Return the INSN_CODE to use for an extend operation. */
344 extern enum insn_code can_extend_p
PARAMS ((enum machine_mode
,
345 enum machine_mode
, int));
347 /* Generate the body of an insn to extend Y (with mode MFROM)
348 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
349 extern rtx gen_extend_insn
PARAMS ((rtx
, rtx
, enum machine_mode
,
350 enum machine_mode
, int));
352 /* Initialize the tables that control conversion between fixed and
354 extern void init_fixtab
PARAMS ((void));
355 extern void init_floattab
PARAMS ((void));
357 /* Generate code for a FLOAT_EXPR. */
358 extern void expand_float
PARAMS ((rtx
, rtx
, int));
360 /* Generate code for a FIX_EXPR. */
361 extern void expand_fix
PARAMS ((rtx
, rtx
, int));
363 #endif /* GCC_OPTABS_H */