]> gcc.gnu.org Git - gcc.git/blame - gcc/optabs.h
optabs.h (enum optab_index): Add new OTI_log1p.
[gcc.git] / gcc / optabs.h
CommitLineData
e78d8e51 1/* Definitions for code generation pass of GNU compiler.
d9221e01 2 Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
e78d8e51 3
40803cd5 4This file is part of GCC.
e78d8e51 5
40803cd5 6GCC is free software; you can redistribute it and/or modify
e78d8e51
ZW
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
40803cd5 11GCC is distributed in the hope that it will be useful,
e78d8e51
ZW
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
40803cd5 17along with GCC; see the file COPYING. If not, write to
e78d8e51
ZW
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21#ifndef GCC_OPTABS_H
22#define GCC_OPTABS_H
23
24#include "insn-codes.h"
25
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.
30
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.
34
35 The `lib_call' slot is the name of the library function that
36 can be used to perform the operation.
37
38 A few optabs, such as move_optab and cmp_optab, are used
39 by special code. */
40
85363ca0
ZW
41struct optab_handlers GTY(())
42{
43 enum insn_code insn_code;
44 rtx libfunc;
45};
46
e2500fed 47struct optab GTY(())
e78d8e51
ZW
48{
49 enum rtx_code code;
85363ca0 50 struct optab_handlers handlers[NUM_MACHINE_MODES];
e2500fed
GK
51};
52typedef struct optab * optab;
e78d8e51 53
85363ca0
ZW
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. */
57struct convert_optab GTY(())
58{
59 enum rtx_code code;
60 struct optab_handlers handlers[NUM_MACHINE_MODES][NUM_MACHINE_MODES];
61};
62typedef struct convert_optab *convert_optab;
63
e78d8e51
ZW
64/* Given an enum insn_code, access the function to construct
65 the body of that kind of insn. */
85363ca0 66#define GEN_FCN(CODE) (insn_data[CODE].genfun)
e78d8e51
ZW
67
68/* Enumeration of valid indexes into optab_table. */
69enum optab_index
70{
71 OTI_add,
72 OTI_addv,
73 OTI_sub,
74 OTI_subv,
75
76 /* Signed and fp multiply */
77 OTI_smul,
78 OTI_smulv,
79 /* Signed multiply, return high word */
80 OTI_smul_highpart,
81 OTI_umul_highpart,
82 /* Signed multiply with result one machine mode wider than args */
83 OTI_smul_widen,
84 OTI_umul_widen,
85
86 /* Signed divide */
87 OTI_sdiv,
88 OTI_sdivv,
89 /* Signed divide-and-remainder in one */
90 OTI_sdivmod,
91 OTI_udiv,
92 OTI_udivmod,
93 /* Signed remainder */
94 OTI_smod,
95 OTI_umod,
5ae27cfa
UB
96 /* Floating point remainder functions */
97 OTI_fmod,
98 OTI_drem,
e78d8e51
ZW
99 /* Convert float to integer in float fmt */
100 OTI_ftrunc,
101
102 /* Logical and */
103 OTI_and,
104 /* Logical or */
105 OTI_ior,
106 /* Logical xor */
107 OTI_xor,
108
109 /* Arithmetic shift left */
110 OTI_ashl,
111 /* Logical shift right */
0c20a65f 112 OTI_lshr,
e78d8e51
ZW
113 /* Arithmetic shift right */
114 OTI_ashr,
115 /* Rotate left */
116 OTI_rotl,
117 /* Rotate right */
118 OTI_rotr,
119 /* Signed and floating-point minimum value */
120 OTI_smin,
121 /* Signed and floating-point maximum value */
122 OTI_smax,
123 /* Unsigned minimum value */
124 OTI_umin,
125 /* Unsigned maximum value */
126 OTI_umax,
b5e01d4b
RS
127 /* Power */
128 OTI_pow,
129 /* Arc tangent of y/x */
130 OTI_atan2,
e78d8e51
ZW
131
132 /* Move instruction. */
133 OTI_mov,
134 /* Move, preserving high part of register. */
135 OTI_movstrict,
136
137 /* Unary operations */
138 /* Negation */
139 OTI_neg,
140 OTI_negv,
141 /* Abs value */
142 OTI_abs,
143 OTI_absv,
144 /* Bitwise not */
145 OTI_one_cmpl,
2928cd7a 146 /* Bit scanning and counting */
e78d8e51 147 OTI_ffs,
2928cd7a
RH
148 OTI_clz,
149 OTI_ctz,
150 OTI_popcount,
151 OTI_parity,
e78d8e51
ZW
152 /* Square root */
153 OTI_sqrt,
6c7cf1f0
UB
154 /* Sine-Cosine */
155 OTI_sincos,
e78d8e51
ZW
156 /* Sine */
157 OTI_sin,
c56122d8
UB
158 /* Inverse sine */
159 OTI_asin,
e78d8e51
ZW
160 /* Cosine */
161 OTI_cos,
c56122d8
UB
162 /* Inverse cosine */
163 OTI_acos,
e7b489c8
RS
164 /* Exponential */
165 OTI_exp,
a251102e
UB
166 /* Base-10 Exponential */
167 OTI_exp10,
168 /* Base-2 Exponential */
169 OTI_exp2,
7a8e07c7
UB
170 /* Exponential - 1*/
171 OTI_expm1,
88b28a31
UB
172 /* Radix-independent exponent */
173 OTI_logb,
174 OTI_ilogb,
e7b489c8
RS
175 /* Natural Logarithm */
176 OTI_log,
3b8e0c91
UB
177 /* Base-10 Logarithm */
178 OTI_log10,
179 /* Base-2 Logarithm */
180 OTI_log2,
c2fcfa4f
UB
181 /* logarithm of 1 plus argument */
182 OTI_log1p,
4977bab6
ZW
183 /* Rounding functions */
184 OTI_floor,
185 OTI_ceil,
186 OTI_trunc,
187 OTI_round,
188 OTI_nearbyint,
82d397c7
RS
189 /* Tangent */
190 OTI_tan,
191 /* Inverse tangent */
192 OTI_atan,
e78d8e51
ZW
193
194 /* Compare insn; two operands. */
195 OTI_cmp,
196 /* Used only for libcalls for unsigned comparisons. */
197 OTI_ucmp,
198 /* tst insn; compare one operand against 0 */
199 OTI_tst,
200
c9034561
ZW
201 /* Floating point comparison optabs - used primarily for libfuncs */
202 OTI_eq,
203 OTI_ne,
204 OTI_gt,
205 OTI_ge,
206 OTI_lt,
207 OTI_le,
208 OTI_unord,
209
e78d8e51
ZW
210 /* String length */
211 OTI_strlen,
212
213 /* Combined compare & jump/store flags/move operations. */
214 OTI_cbranch,
215 OTI_cmov,
216 OTI_cstore,
0c20a65f 217
e78d8e51
ZW
218 /* Push instruction. */
219 OTI_push,
220
068f5dea
JH
221 /* Conditional add instruction. */
222 OTI_addcc,
223
997404de
JH
224 /* Set specified field of vector operand. */
225 OTI_vec_set,
226 /* Extract specified field of vector operand. */
227 OTI_vec_extract,
228 /* Initialize vector operand. */
229 OTI_vec_init,
230
e78d8e51
ZW
231 OTI_MAX
232};
233
e2500fed 234extern GTY(()) optab optab_table[OTI_MAX];
e78d8e51
ZW
235
236#define add_optab (optab_table[OTI_add])
237#define sub_optab (optab_table[OTI_sub])
238#define smul_optab (optab_table[OTI_smul])
239#define addv_optab (optab_table[OTI_addv])
240#define subv_optab (optab_table[OTI_subv])
241#define smul_highpart_optab (optab_table[OTI_smul_highpart])
242#define umul_highpart_optab (optab_table[OTI_umul_highpart])
243#define smul_widen_optab (optab_table[OTI_smul_widen])
244#define umul_widen_optab (optab_table[OTI_umul_widen])
245#define sdiv_optab (optab_table[OTI_sdiv])
246#define smulv_optab (optab_table[OTI_smulv])
247#define sdivv_optab (optab_table[OTI_sdivv])
248#define sdivmod_optab (optab_table[OTI_sdivmod])
249#define udiv_optab (optab_table[OTI_udiv])
250#define udivmod_optab (optab_table[OTI_udivmod])
251#define smod_optab (optab_table[OTI_smod])
252#define umod_optab (optab_table[OTI_umod])
5ae27cfa
UB
253#define fmod_optab (optab_table[OTI_fmod])
254#define drem_optab (optab_table[OTI_drem])
e78d8e51
ZW
255#define ftrunc_optab (optab_table[OTI_ftrunc])
256#define and_optab (optab_table[OTI_and])
257#define ior_optab (optab_table[OTI_ior])
258#define xor_optab (optab_table[OTI_xor])
259#define ashl_optab (optab_table[OTI_ashl])
260#define lshr_optab (optab_table[OTI_lshr])
261#define ashr_optab (optab_table[OTI_ashr])
262#define rotl_optab (optab_table[OTI_rotl])
263#define rotr_optab (optab_table[OTI_rotr])
264#define smin_optab (optab_table[OTI_smin])
265#define smax_optab (optab_table[OTI_smax])
266#define umin_optab (optab_table[OTI_umin])
267#define umax_optab (optab_table[OTI_umax])
b5e01d4b
RS
268#define pow_optab (optab_table[OTI_pow])
269#define atan2_optab (optab_table[OTI_atan2])
e78d8e51
ZW
270
271#define mov_optab (optab_table[OTI_mov])
272#define movstrict_optab (optab_table[OTI_movstrict])
273
274#define neg_optab (optab_table[OTI_neg])
275#define negv_optab (optab_table[OTI_negv])
276#define abs_optab (optab_table[OTI_abs])
277#define absv_optab (optab_table[OTI_absv])
278#define one_cmpl_optab (optab_table[OTI_one_cmpl])
279#define ffs_optab (optab_table[OTI_ffs])
2928cd7a
RH
280#define clz_optab (optab_table[OTI_clz])
281#define ctz_optab (optab_table[OTI_ctz])
282#define popcount_optab (optab_table[OTI_popcount])
283#define parity_optab (optab_table[OTI_parity])
e78d8e51 284#define sqrt_optab (optab_table[OTI_sqrt])
6c7cf1f0 285#define sincos_optab (optab_table[OTI_sincos])
e78d8e51 286#define sin_optab (optab_table[OTI_sin])
c56122d8 287#define asin_optab (optab_table[OTI_asin])
e78d8e51 288#define cos_optab (optab_table[OTI_cos])
c56122d8 289#define acos_optab (optab_table[OTI_acos])
e7b489c8 290#define exp_optab (optab_table[OTI_exp])
a251102e
UB
291#define exp10_optab (optab_table[OTI_exp10])
292#define exp2_optab (optab_table[OTI_exp2])
7a8e07c7 293#define expm1_optab (optab_table[OTI_expm1])
88b28a31
UB
294#define logb_optab (optab_table[OTI_logb])
295#define ilogb_optab (optab_table[OTI_ilogb])
e7b489c8 296#define log_optab (optab_table[OTI_log])
3b8e0c91
UB
297#define log10_optab (optab_table[OTI_log10])
298#define log2_optab (optab_table[OTI_log2])
c2fcfa4f 299#define log1p_optab (optab_table[OTI_log1p])
4977bab6
ZW
300#define floor_optab (optab_table[OTI_floor])
301#define ceil_optab (optab_table[OTI_ceil])
85363ca0 302#define btrunc_optab (optab_table[OTI_trunc])
4977bab6
ZW
303#define round_optab (optab_table[OTI_round])
304#define nearbyint_optab (optab_table[OTI_nearbyint])
82d397c7
RS
305#define tan_optab (optab_table[OTI_tan])
306#define atan_optab (optab_table[OTI_atan])
e78d8e51
ZW
307
308#define cmp_optab (optab_table[OTI_cmp])
309#define ucmp_optab (optab_table[OTI_ucmp])
310#define tst_optab (optab_table[OTI_tst])
311
c9034561
ZW
312#define eq_optab (optab_table[OTI_eq])
313#define ne_optab (optab_table[OTI_ne])
314#define gt_optab (optab_table[OTI_gt])
315#define ge_optab (optab_table[OTI_ge])
316#define lt_optab (optab_table[OTI_lt])
317#define le_optab (optab_table[OTI_le])
318#define unord_optab (optab_table[OTI_unord])
319
e78d8e51
ZW
320#define strlen_optab (optab_table[OTI_strlen])
321
322#define cbranch_optab (optab_table[OTI_cbranch])
323#define cmov_optab (optab_table[OTI_cmov])
324#define cstore_optab (optab_table[OTI_cstore])
325#define push_optab (optab_table[OTI_push])
068f5dea 326#define addcc_optab (optab_table[OTI_addcc])
e78d8e51 327
997404de
JH
328#define vec_set_optab (optab_table[OTI_vec_set])
329#define vec_extract_optab (optab_table[OTI_vec_extract])
330#define vec_init_optab (optab_table[OTI_vec_init])
331
85363ca0
ZW
332/* Conversion optabs have their own table and indexes. */
333enum convert_optab_index
334{
335 CTI_sext,
336 CTI_zext,
337 CTI_trunc,
338
339 CTI_sfix,
340 CTI_ufix,
341
342 CTI_sfixtrunc,
343 CTI_ufixtrunc,
344
345 CTI_sfloat,
346 CTI_ufloat,
347
348 CTI_MAX
349};
350
351extern GTY(()) convert_optab convert_optab_table[CTI_MAX];
e78d8e51 352
85363ca0
ZW
353#define sext_optab (convert_optab_table[CTI_sext])
354#define zext_optab (convert_optab_table[CTI_zext])
355#define trunc_optab (convert_optab_table[CTI_trunc])
356#define sfix_optab (convert_optab_table[CTI_sfix])
357#define ufix_optab (convert_optab_table[CTI_ufix])
358#define sfixtrunc_optab (convert_optab_table[CTI_sfixtrunc])
359#define ufixtrunc_optab (convert_optab_table[CTI_ufixtrunc])
360#define sfloat_optab (convert_optab_table[CTI_sfloat])
361#define ufloat_optab (convert_optab_table[CTI_ufloat])
e78d8e51
ZW
362
363/* These arrays record the insn_code of insns that may be needed to
364 perform input and output reloads of special objects. They provide a
365 place to pass a scratch register. */
366extern enum insn_code reload_in_optab[NUM_MACHINE_MODES];
367extern enum insn_code reload_out_optab[NUM_MACHINE_MODES];
368
369/* Contains the optab used for each rtx code. */
17211ab5 370extern GTY(()) optab code_to_optab[NUM_RTX_CODE + 1];
e78d8e51 371
e78d8e51 372\f
0c20a65f 373typedef rtx (*rtxfun) (rtx);
e78d8e51
ZW
374
375/* Indexed by the rtx-code for a conditional (eg. EQ, LT,...)
376 gives the gen_function to make a branch to test that condition. */
377
378extern rtxfun bcc_gen_fctn[NUM_RTX_CODE];
379
380/* Indexed by the rtx-code for a conditional (eg. EQ, LT,...)
381 gives the insn code to make a store-condition insn
382 to test that condition. */
383
384extern enum insn_code setcc_gen_code[NUM_RTX_CODE];
385
386#ifdef HAVE_conditional_move
387/* Indexed by the machine mode, gives the insn code to make a conditional
388 move insn. */
389
390extern enum insn_code movcc_gen_code[NUM_MACHINE_MODES];
391#endif
392
393/* This array records the insn_code of insns to perform block moves. */
394extern enum insn_code movstr_optab[NUM_MACHINE_MODES];
395
396/* This array records the insn_code of insns to perform block clears. */
397extern enum insn_code clrstr_optab[NUM_MACHINE_MODES];
118355a0
ZW
398
399/* These arrays record the insn_code of two different kinds of insns
400 to perform block compares. */
401extern enum insn_code cmpstr_optab[NUM_MACHINE_MODES];
402extern enum insn_code cmpmem_optab[NUM_MACHINE_MODES];
e78d8e51
ZW
403
404/* Define functions given in optabs.c. */
405
406/* Expand a binary operation given optab and rtx operands. */
0c20a65f
AJ
407extern rtx expand_binop (enum machine_mode, optab, rtx, rtx, rtx, int,
408 enum optab_methods);
e78d8e51
ZW
409
410/* Expand a binary operation with both signed and unsigned forms. */
0c20a65f
AJ
411extern rtx sign_expand_binop (enum machine_mode, optab, optab, rtx, rtx,
412 rtx, int, enum optab_methods);
e78d8e51 413
6c7cf1f0
UB
414/* Generate code to perform an operation on one operand with two results. */
415extern int expand_twoval_unop (optab, rtx, rtx, rtx, int);
416
e78d8e51 417/* Generate code to perform an operation on two operands with two results. */
0c20a65f 418extern int expand_twoval_binop (optab, rtx, rtx, rtx, rtx, int);
e78d8e51
ZW
419
420/* Expand a unary arithmetic operation given optab rtx operand. */
0c20a65f 421extern rtx expand_unop (enum machine_mode, optab, rtx, rtx, int);
e78d8e51
ZW
422
423/* Expand the absolute value operation. */
0c20a65f
AJ
424extern rtx expand_abs_nojump (enum machine_mode, rtx, rtx, int);
425extern rtx expand_abs (enum machine_mode, rtx, rtx, int, int);
e78d8e51
ZW
426
427/* Expand the complex absolute value operation. */
0c20a65f 428extern rtx expand_complex_abs (enum machine_mode, rtx, rtx, int);
e78d8e51
ZW
429
430/* Generate an instruction with a given INSN_CODE with an output and
431 an input. */
0c20a65f 432extern void emit_unop_insn (int, rtx, rtx, enum rtx_code);
e78d8e51
ZW
433
434/* Emit code to perform a series of operations on a multi-word quantity, one
435 word at a time. */
0c20a65f 436extern rtx emit_no_conflict_block (rtx, rtx, rtx, rtx, rtx);
e78d8e51
ZW
437
438/* Emit one rtl instruction to store zero in specified rtx. */
0c20a65f 439extern void emit_clr_insn (rtx);
e78d8e51
ZW
440
441/* Emit one rtl insn to store 1 in specified rtx assuming it contains 0. */
0c20a65f 442extern void emit_0_to_1_insn (rtx);
e78d8e51
ZW
443
444/* Emit one rtl insn to compare two rtx's. */
0c20a65f
AJ
445extern void emit_cmp_insn (rtx, rtx, enum rtx_code, rtx, enum machine_mode,
446 int);
e78d8e51
ZW
447
448/* The various uses that a comparison can have; used by can_compare_p:
449 jumps, conditional moves, store flag operations. */
450enum can_compare_purpose
451{
452 ccp_jump,
453 ccp_cmov,
454 ccp_store_flag
455};
456
457/* Nonzero if a compare of mode MODE can be done straightforwardly
458 (without splitting it into pieces). */
0c20a65f
AJ
459extern int can_compare_p (enum rtx_code, enum machine_mode,
460 enum can_compare_purpose);
e78d8e51 461
0c20a65f
AJ
462extern rtx prepare_operand (int, rtx, int, enum machine_mode,
463 enum machine_mode, int);
e78d8e51
ZW
464
465/* Return the INSN_CODE to use for an extend operation. */
0c20a65f 466extern enum insn_code can_extend_p (enum machine_mode, enum machine_mode, int);
e78d8e51
ZW
467
468/* Generate the body of an insn to extend Y (with mode MFROM)
469 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
0c20a65f
AJ
470extern rtx gen_extend_insn (rtx, rtx, enum machine_mode,
471 enum machine_mode, int);
e78d8e51
ZW
472
473/* Initialize the tables that control conversion between fixed and
474 floating values. */
0c20a65f
AJ
475extern void init_fixtab (void);
476extern void init_floattab (void);
e78d8e51 477
c15c90bb
ZW
478/* Call this to reset the function entry for one optab. */
479extern void set_optab_libfunc (optab, enum machine_mode, const char *);
85363ca0
ZW
480extern void set_conv_libfunc (convert_optab, enum machine_mode,
481 enum machine_mode, const char *);
c15c90bb 482
e78d8e51 483/* Generate code for a FLOAT_EXPR. */
0c20a65f 484extern void expand_float (rtx, rtx, int);
e78d8e51
ZW
485
486/* Generate code for a FIX_EXPR. */
0c20a65f 487extern void expand_fix (rtx, rtx, int);
e78d8e51
ZW
488
489#endif /* GCC_OPTABS_H */
This page took 1.030065 seconds and 5 git commands to generate.