Lines Matching refs:optab_table

69 /* Enumeration of valid indexes into optab_table.  */
271 extern GTY(()) optab optab_table[OTI_MAX];
273 #define add_optab (optab_table[OTI_add])
274 #define sub_optab (optab_table[OTI_sub])
275 #define smul_optab (optab_table[OTI_smul])
276 #define addv_optab (optab_table[OTI_addv])
277 #define subv_optab (optab_table[OTI_subv])
278 #define smul_highpart_optab (optab_table[OTI_smul_highpart])
279 #define umul_highpart_optab (optab_table[OTI_umul_highpart])
280 #define smul_widen_optab (optab_table[OTI_smul_widen])
281 #define umul_widen_optab (optab_table[OTI_umul_widen])
282 #define usmul_widen_optab (optab_table[OTI_usmul_widen])
283 #define sdiv_optab (optab_table[OTI_sdiv])
284 #define smulv_optab (optab_table[OTI_smulv])
285 #define sdivv_optab (optab_table[OTI_sdivv])
286 #define sdivmod_optab (optab_table[OTI_sdivmod])
287 #define udiv_optab (optab_table[OTI_udiv])
288 #define udivmod_optab (optab_table[OTI_udivmod])
289 #define smod_optab (optab_table[OTI_smod])
290 #define umod_optab (optab_table[OTI_umod])
291 #define fmod_optab (optab_table[OTI_fmod])
292 #define drem_optab (optab_table[OTI_drem])
293 #define ftrunc_optab (optab_table[OTI_ftrunc])
294 #define and_optab (optab_table[OTI_and])
295 #define ior_optab (optab_table[OTI_ior])
296 #define xor_optab (optab_table[OTI_xor])
297 #define ashl_optab (optab_table[OTI_ashl])
298 #define lshr_optab (optab_table[OTI_lshr])
299 #define ashr_optab (optab_table[OTI_ashr])
300 #define rotl_optab (optab_table[OTI_rotl])
301 #define rotr_optab (optab_table[OTI_rotr])
302 #define smin_optab (optab_table[OTI_smin])
303 #define smax_optab (optab_table[OTI_smax])
304 #define umin_optab (optab_table[OTI_umin])
305 #define umax_optab (optab_table[OTI_umax])
306 #define pow_optab (optab_table[OTI_pow])
307 #define atan2_optab (optab_table[OTI_atan2])
309 #define mov_optab (optab_table[OTI_mov])
310 #define movstrict_optab (optab_table[OTI_movstrict])
311 #define movmisalign_optab (optab_table[OTI_movmisalign])
313 #define neg_optab (optab_table[OTI_neg])
314 #define negv_optab (optab_table[OTI_negv])
315 #define abs_optab (optab_table[OTI_abs])
316 #define absv_optab (optab_table[OTI_absv])
317 #define one_cmpl_optab (optab_table[OTI_one_cmpl])
318 #define ffs_optab (optab_table[OTI_ffs])
319 #define clz_optab (optab_table[OTI_clz])
320 #define ctz_optab (optab_table[OTI_ctz])
321 #define popcount_optab (optab_table[OTI_popcount])
322 #define parity_optab (optab_table[OTI_parity])
323 #define sqrt_optab (optab_table[OTI_sqrt])
324 #define sincos_optab (optab_table[OTI_sincos])
325 #define sin_optab (optab_table[OTI_sin])
326 #define asin_optab (optab_table[OTI_asin])
327 #define cos_optab (optab_table[OTI_cos])
328 #define acos_optab (optab_table[OTI_acos])
329 #define exp_optab (optab_table[OTI_exp])
330 #define exp10_optab (optab_table[OTI_exp10])
331 #define exp2_optab (optab_table[OTI_exp2])
332 #define expm1_optab (optab_table[OTI_expm1])
333 #define ldexp_optab (optab_table[OTI_ldexp])
334 #define logb_optab (optab_table[OTI_logb])
335 #define ilogb_optab (optab_table[OTI_ilogb])
336 #define log_optab (optab_table[OTI_log])
337 #define log10_optab (optab_table[OTI_log10])
338 #define log2_optab (optab_table[OTI_log2])
339 #define log1p_optab (optab_table[OTI_log1p])
340 #define floor_optab (optab_table[OTI_floor])
341 #define lfloor_optab (optab_table[OTI_lfloor])
342 #define ceil_optab (optab_table[OTI_ceil])
343 #define lceil_optab (optab_table[OTI_lceil])
344 #define btrunc_optab (optab_table[OTI_btrunc])
345 #define round_optab (optab_table[OTI_round])
346 #define nearbyint_optab (optab_table[OTI_nearbyint])
347 #define rint_optab (optab_table[OTI_rint])
348 #define lrint_optab (optab_table[OTI_lrint])
349 #define tan_optab (optab_table[OTI_tan])
350 #define atan_optab (optab_table[OTI_atan])
351 #define copysign_optab (optab_table[OTI_copysign])
353 #define cmp_optab (optab_table[OTI_cmp])
354 #define ucmp_optab (optab_table[OTI_ucmp])
355 #define tst_optab (optab_table[OTI_tst])
357 #define eq_optab (optab_table[OTI_eq])
358 #define ne_optab (optab_table[OTI_ne])
359 #define gt_optab (optab_table[OTI_gt])
360 #define ge_optab (optab_table[OTI_ge])
361 #define lt_optab (optab_table[OTI_lt])
362 #define le_optab (optab_table[OTI_le])
363 #define unord_optab (optab_table[OTI_unord])
365 #define strlen_optab (optab_table[OTI_strlen])
367 #define cbranch_optab (optab_table[OTI_cbranch])
368 #define cmov_optab (optab_table[OTI_cmov])
369 #define cstore_optab (optab_table[OTI_cstore])
370 #define push_optab (optab_table[OTI_push])
371 #define addcc_optab (optab_table[OTI_addcc])
373 #define reduc_smax_optab (optab_table[OTI_reduc_smax])
374 #define reduc_umax_optab (optab_table[OTI_reduc_umax])
375 #define reduc_smin_optab (optab_table[OTI_reduc_smin])
376 #define reduc_umin_optab (optab_table[OTI_reduc_umin])
377 #define reduc_splus_optab (optab_table[OTI_reduc_splus])
378 #define reduc_uplus_optab (optab_table[OTI_reduc_uplus])
380 #define ssum_widen_optab (optab_table[OTI_ssum_widen])
381 #define usum_widen_optab (optab_table[OTI_usum_widen])
382 #define sdot_prod_optab (optab_table[OTI_sdot_prod])
383 #define udot_prod_optab (optab_table[OTI_udot_prod])
385 #define vec_set_optab (optab_table[OTI_vec_set])
386 #define vec_extract_optab (optab_table[OTI_vec_extract])
387 #define vec_init_optab (optab_table[OTI_vec_init])
388 #define vec_shl_optab (optab_table[OTI_vec_shl])
389 #define vec_shr_optab (optab_table[OTI_vec_shr])
390 #define vec_realign_load_optab (optab_table[OTI_vec_realign_load])
392 #define powi_optab (optab_table[OTI_powi])