GCC Middle and Back End API Reference
optabs-query.h
Go to the documentation of this file.
1/* IR-agnostic target query functions relating to optabs
2 Copyright (C) 2001-2024 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 3, or (at your option)
9any later version.
10
11GCC is distributed in the hope that it will be useful,
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
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef GCC_OPTABS_QUERY_H
21#define GCC_OPTABS_QUERY_H
22
23#include "insn-opinit.h"
24#include "target.h"
25
26/* Return true if OP is a conversion optab. */
27
28inline bool
30{
31 return op > unknown_optab && op <= LAST_CONV_OPTAB;
32}
33
34/* Return the insn used to implement mode MODE of OP, or CODE_FOR_nothing
35 if the target does not have such an insn. */
36
37inline enum insn_code
38optab_handler (optab op, machine_mode mode)
39{
40 unsigned scode = (op << 20) | mode;
41 gcc_assert (op > LAST_CONV_OPTAB);
42 return raw_optab_handler (scode);
43}
44
45/* Return the insn used to perform conversion OP from mode FROM_MODE
46 to mode TO_MODE; return CODE_FOR_nothing if the target does not have
47 such an insn. */
48
49inline enum insn_code
50convert_optab_handler (convert_optab op, machine_mode to_mode,
51 machine_mode from_mode)
52{
53 unsigned scode = (op << 20) | (from_mode << 10) | to_mode;
55 return raw_optab_handler (scode);
56}
57
58enum insn_code convert_optab_handler (convert_optab, machine_mode,
59 machine_mode, optimization_type);
60
61/* Return the insn used to implement mode MODE of OP, or CODE_FOR_nothing
62 if the target does not have such an insn. */
63
64inline enum insn_code
65direct_optab_handler (direct_optab op, machine_mode mode)
66{
67 return optab_handler (op, mode);
68}
69
70enum insn_code direct_optab_handler (convert_optab, machine_mode,
72
73/* Return true if UNOPTAB is for a trapping-on-overflow operation. */
74
75inline bool
77{
78 return (unoptab == negv_optab
79 || unoptab == absv_optab);
80}
81
82/* Return true if BINOPTAB is for a trapping-on-overflow operation. */
83
84inline bool
86{
87 return (binoptab == addv_optab
88 || binoptab == subv_optab
89 || binoptab == smulv_optab);
90}
91
92/* Return insn code for a comparison operator with VMODE
93 resultin MASK_MODE, unsigned if UNS is true. */
94
95inline enum insn_code
96get_vec_cmp_icode (machine_mode vmode, machine_mode mask_mode, bool uns)
97{
98 optab tab = uns ? vec_cmpu_optab : vec_cmp_optab;
99 return convert_optab_handler (tab, vmode, mask_mode);
100}
101
102/* Return insn code for a comparison operator with VMODE
103 resultin MASK_MODE (only for EQ/NE). */
104
105inline enum insn_code
106get_vec_cmp_eq_icode (machine_mode vmode, machine_mode mask_mode)
107{
108 return convert_optab_handler (vec_cmpeq_optab, vmode, mask_mode);
109}
110
111/* Return insn code for a conditional operator with a mask mode
112 MMODE resulting in a value of mode VMODE. */
113
114inline enum insn_code
115get_vcond_mask_icode (machine_mode vmode, machine_mode mmode)
116{
117 return convert_optab_handler (vcond_mask_optab, vmode, mmode);
118}
119
120/* Enumerates the possible extraction_insn operations. */
122
123/* Describes an instruction that inserts or extracts a bitfield. */
125{
126public:
127 /* The code of the instruction. */
128 enum insn_code icode;
129
130 /* The mode that the structure operand should have. This is byte_mode
131 when using the legacy insv, extv and extzv patterns to access memory.
132 If no mode is given, the structure is a BLKmode memory. */
134
135 /* The mode of the field to be inserted or extracted, and by extension
136 the mode of the insertion or extraction itself. */
138
139 /* The mode of the field's bit position. This is only important
140 when the position is variable rather than constant. */
142};
143
146 unsigned HOST_WIDE_INT, machine_mode);
149 HOST_WIDE_INT, HOST_WIDE_INT, machine_mode);
150
151enum insn_code can_extend_p (machine_mode, machine_mode, int);
152enum insn_code can_float_p (machine_mode, machine_mode, int);
153enum insn_code can_fix_p (machine_mode, machine_mode, int, bool *);
154bool can_conditionally_move_p (machine_mode mode);
156bool selector_fits_mode_p (machine_mode, const vec_perm_indices &);
157bool can_vec_perm_var_p (machine_mode);
158bool can_vec_perm_const_p (machine_mode, machine_mode,
159 const vec_perm_indices &, bool = true);
160/* Find a widening optab even if it doesn't widen as much as we want. */
161#define find_widening_optab_handler(A, B, C) \
162 find_widening_optab_handler_and_mode (A, B, C, NULL)
163enum insn_code find_widening_optab_handler_and_mode (optab, machine_mode,
164 machine_mode,
165 machine_mode *);
166int can_mult_highpart_p (machine_mode, bool);
167bool can_compare_and_swap_p (machine_mode, bool);
168bool can_atomic_exchange_p (machine_mode, bool);
169bool can_atomic_load_p (machine_mode);
170bool lshift_cheap_p (bool);
171bool supports_vec_gather_load_p (machine_mode = E_VOIDmode,
172 vec<int> * = nullptr);
173bool supports_vec_scatter_store_p (machine_mode = E_VOIDmode);
175 scalar_float_mode, int *);
176bool can_vec_extract (machine_mode, machine_mode);
177bool can_open_code_p (optab, machine_mode);
178bool can_implement_p (optab, machine_mode);
179
180/* Version of find_widening_optab_handler_and_mode that operates on
181 specific mode types. */
182
183template<typename T>
184inline enum insn_code
186 const T &from_mode, T *found_mode)
187{
188 machine_mode tmp;
189 enum insn_code icode = find_widening_optab_handler_and_mode
190 (op, machine_mode (to_mode), machine_mode (from_mode), &tmp);
191 if (icode != CODE_FOR_nothing && found_mode)
192 *found_mode = as_a <T> (tmp);
193 return icode;
194}
195
196#endif
Definition optabs-query.h:125
enum insn_code icode
Definition optabs-query.h:128
opt_scalar_int_mode struct_mode
Definition optabs-query.h:133
scalar_int_mode field_mode
Definition optabs-query.h:137
scalar_int_mode pos_mode
Definition optabs-query.h:141
Definition machmode.h:465
Definition machmode.h:437
Definition vec-perm-indices.h:51
optimization_type
Definition coretypes.h:282
enum optab_tag optab
@ unknown_optab
Definition gensupport.h:58
T as_a(U *p)
Definition is-a.h:253
bool trapv_binoptab_p(optab binoptab)
Definition optabs-query.h:85
bool can_implement_p(optab, machine_mode)
Definition optabs-query.cc:852
bool get_best_mem_extraction_insn(extraction_insn *, enum extraction_pattern, HOST_WIDE_INT, HOST_WIDE_INT, machine_mode)
Definition optabs-query.cc:262
enum insn_code find_widening_optab_handler_and_mode(optab, machine_mode, machine_mode, machine_mode *)
Definition optabs-query.cc:474
bool can_open_code_p(optab, machine_mode)
Definition optabs-query.cc:825
bool can_vec_perm_const_p(machine_mode, machine_mode, const vec_perm_indices &, bool=true)
Definition optabs-query.cc:424
bool lshift_cheap_p(bool)
Definition optabs-query.cc:650
enum insn_code get_vec_cmp_icode(machine_mode vmode, machine_mode mask_mode, bool uns)
Definition optabs-query.h:96
enum insn_code can_float_p(machine_mode, machine_mode, int)
Definition optabs-query.cc:295
bool can_vec_extract(machine_mode, machine_mode)
Definition optabs-query.cc:760
enum insn_code get_vec_cmp_eq_icode(machine_mode vmode, machine_mode mask_mode)
Definition optabs-query.h:106
enum insn_code can_extend_p(machine_mode, machine_mode, int)
Definition optabs-query.cc:280
bool can_vec_perm_var_p(machine_mode)
Definition optabs-query.cc:382
bool can_conditionally_move_p(machine_mode mode)
Definition optabs-query.cc:348
opt_machine_mode get_absneg_bit_mode(optab, machine_mode, scalar_float_mode, int *)
Definition optabs-query.cc:793
bool can_compare_and_swap_p(machine_mode, bool)
Definition optabs-query.cc:589
opt_machine_mode qimode_for_vec_perm(machine_mode)
Definition optabs-query.cc:359
enum insn_code can_fix_p(machine_mode, machine_mode, int, bool *)
Definition optabs-query.cc:310
enum insn_code convert_optab_handler(convert_optab op, machine_mode to_mode, machine_mode from_mode)
Definition optabs-query.h:50
enum insn_code optab_handler(optab op, machine_mode mode)
Definition optabs-query.h:38
bool convert_optab_p(optab op)
Definition optabs-query.h:29
int can_mult_highpart_p(machine_mode, bool)
Definition optabs-query.cc:520
extraction_pattern
Definition optabs-query.h:121
@ EP_extzv
Definition optabs-query.h:121
@ EP_insv
Definition optabs-query.h:121
@ EP_extv
Definition optabs-query.h:121
enum insn_code get_vcond_mask_icode(machine_mode vmode, machine_mode mmode)
Definition optabs-query.h:115
bool can_atomic_load_p(machine_mode)
Definition optabs-query.cc:632
bool trapv_unoptab_p(optab unoptab)
Definition optabs-query.h:76
enum insn_code direct_optab_handler(direct_optab op, machine_mode mode)
Definition optabs-query.h:65
bool get_best_reg_extraction_insn(extraction_insn *, enum extraction_pattern, unsigned HOST_WIDE_INT, machine_mode)
Definition optabs-query.cc:243
bool supports_vec_gather_load_p(machine_mode=E_VOIDmode, vec< int > *=nullptr)
Definition optabs-query.cc:704
bool supports_vec_scatter_store_p(machine_mode=E_VOIDmode)
Definition optabs-query.cc:738
bool selector_fits_mode_p(machine_mode, const vec_perm_indices &)
Definition optabs-query.cc:370
bool can_atomic_exchange_p(machine_mode, bool)
Definition optabs-query.cc:612
Definition vec.h:450
#define gcc_assert(EXPR)
Definition system.h:814