1 /* Gimple simplify definitions.
3 Copyright (C) 2011-2019 Free Software Foundation, Inc.
4 Contributed by Richard Guenther <rguenther@suse.de>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_GIMPLE_MATCH_H
23 #define GCC_GIMPLE_MATCH_H
26 /* Helper to transparently allow tree codes and builtin function codes
27 exist in one storage entity. */
32 code_helper (tree_code code
) : rep ((int) code
) {}
33 code_helper (combined_fn fn
) : rep (-(int) fn
) {}
34 operator tree_code () const { return (tree_code
) rep
; }
35 operator combined_fn () const { return (combined_fn
) -rep
; }
36 bool is_tree_code () const { return rep
> 0; }
37 bool is_fn_code () const { return rep
< 0; }
38 int get_rep () const { return rep
; }
43 /* Represents the condition under which an operation should happen,
44 and the value to use otherwise. The condition applies elementwise
45 (as for VEC_COND_EXPR) if the values are vectors. */
46 class gimple_match_cond
49 enum uncond
{ UNCOND
};
51 /* Build an unconditional op. */
52 gimple_match_cond (uncond
) : cond (NULL_TREE
), else_value (NULL_TREE
) {}
53 gimple_match_cond (tree
, tree
);
55 gimple_match_cond
any_else () const;
57 /* The condition under which the operation occurs, or NULL_TREE
58 if the operation is unconditional. */
61 /* The value to use when the condition is false. This is NULL_TREE if
62 the operation is unconditional or if the value doesn't matter. */
67 gimple_match_cond::gimple_match_cond (tree cond_in
, tree else_value_in
)
68 : cond (cond_in
), else_value (else_value_in
)
72 /* Return a gimple_match_cond with the same condition but with an
73 arbitrary ELSE_VALUE. */
75 inline gimple_match_cond
76 gimple_match_cond::any_else () const
78 return gimple_match_cond (cond
, NULL_TREE
);
81 /* Represents an operation to be simplified, or the result of the
87 gimple_match_op (const gimple_match_cond
&, code_helper
, tree
, unsigned int);
88 gimple_match_op (const gimple_match_cond
&,
89 code_helper
, tree
, tree
);
90 gimple_match_op (const gimple_match_cond
&,
91 code_helper
, tree
, tree
, tree
);
92 gimple_match_op (const gimple_match_cond
&,
93 code_helper
, tree
, tree
, tree
, tree
);
94 gimple_match_op (const gimple_match_cond
&,
95 code_helper
, tree
, tree
, tree
, tree
, tree
);
96 gimple_match_op (const gimple_match_cond
&,
97 code_helper
, tree
, tree
, tree
, tree
, tree
, tree
);
99 void set_op (code_helper
, tree
, unsigned int);
100 void set_op (code_helper
, tree
, tree
);
101 void set_op (code_helper
, tree
, tree
, tree
);
102 void set_op (code_helper
, tree
, tree
, tree
, tree
);
103 void set_op (code_helper
, tree
, tree
, tree
, tree
, bool);
104 void set_op (code_helper
, tree
, tree
, tree
, tree
, tree
);
105 void set_op (code_helper
, tree
, tree
, tree
, tree
, tree
, tree
);
106 void set_value (tree
);
108 tree
op_or_null (unsigned int) const;
110 bool resimplify (gimple_seq
*, tree (*)(tree
));
112 /* The maximum value of NUM_OPS. */
113 static const unsigned int MAX_NUM_OPS
= 5;
115 /* The conditions under which the operation is performed, and the value to
116 use as a fallback. */
117 gimple_match_cond cond
;
119 /* The operation being performed. */
122 /* The type of the result. */
125 /* For a BIT_FIELD_REF, whether the group of bits is stored in reverse order
126 from the target order. */
129 /* The number of operands to CODE. */
130 unsigned int num_ops
;
132 /* The operands to CODE. Only the first NUM_OPS entries are meaningful. */
133 tree ops
[MAX_NUM_OPS
];
137 gimple_match_op::gimple_match_op ()
138 : cond (gimple_match_cond::UNCOND
), type (NULL_TREE
), reverse (false),
143 /* Constructor that takes the condition, code, type and number of
144 operands, but leaves the caller to fill in the operands. */
147 gimple_match_op::gimple_match_op (const gimple_match_cond
&cond_in
,
148 code_helper code_in
, tree type_in
,
149 unsigned int num_ops_in
)
150 : cond (cond_in
), code (code_in
), type (type_in
), reverse (false),
155 /* Constructors for various numbers of operands. */
158 gimple_match_op::gimple_match_op (const gimple_match_cond
&cond_in
,
159 code_helper code_in
, tree type_in
,
161 : cond (cond_in
), code (code_in
), type (type_in
), reverse (false),
168 gimple_match_op::gimple_match_op (const gimple_match_cond
&cond_in
,
169 code_helper code_in
, tree type_in
,
171 : cond (cond_in
), code (code_in
), type (type_in
), reverse (false),
179 gimple_match_op::gimple_match_op (const gimple_match_cond
&cond_in
,
180 code_helper code_in
, tree type_in
,
181 tree op0
, tree op1
, tree op2
)
182 : cond (cond_in
), code (code_in
), type (type_in
), reverse (false),
191 gimple_match_op::gimple_match_op (const gimple_match_cond
&cond_in
,
192 code_helper code_in
, tree type_in
,
193 tree op0
, tree op1
, tree op2
, tree op3
)
194 : cond (cond_in
), code (code_in
), type (type_in
), reverse (false),
204 gimple_match_op::gimple_match_op (const gimple_match_cond
&cond_in
,
205 code_helper code_in
, tree type_in
,
206 tree op0
, tree op1
, tree op2
, tree op3
,
208 : cond (cond_in
), code (code_in
), type (type_in
), reverse (false),
218 /* Change the operation performed to CODE_IN, the type of the result to
219 TYPE_IN, and the number of operands to NUM_OPS_IN. The caller needs
220 to set the operands itself. */
223 gimple_match_op::set_op (code_helper code_in
, tree type_in
,
224 unsigned int num_ops_in
)
228 num_ops
= num_ops_in
;
231 /* Functions for changing the operation performed, for various numbers
235 gimple_match_op::set_op (code_helper code_in
, tree type_in
, tree op0
)
244 gimple_match_op::set_op (code_helper code_in
, tree type_in
, tree op0
, tree op1
)
254 gimple_match_op::set_op (code_helper code_in
, tree type_in
,
255 tree op0
, tree op1
, tree op2
)
266 gimple_match_op::set_op (code_helper code_in
, tree type_in
,
267 tree op0
, tree op1
, tree op2
, bool reverse_in
)
271 reverse
= reverse_in
;
279 gimple_match_op::set_op (code_helper code_in
, tree type_in
,
280 tree op0
, tree op1
, tree op2
, tree op3
)
292 gimple_match_op::set_op (code_helper code_in
, tree type_in
,
293 tree op0
, tree op1
, tree op2
, tree op3
, tree op4
)
305 /* Set the "operation" to be the single value VALUE, such as a constant
309 gimple_match_op::set_value (tree value
)
311 set_op (TREE_CODE (value
), TREE_TYPE (value
), value
);
314 /* Return the value of operand I, or null if there aren't that many
318 gimple_match_op::op_or_null (unsigned int i
) const
320 return i
< num_ops
? ops
[i
] : NULL_TREE
;
323 /* Return whether OP is a non-expression result and a gimple value. */
326 gimple_simplified_result_is_gimple_val (const gimple_match_op
*op
)
328 return (op
->code
.is_tree_code ()
329 && (TREE_CODE_LENGTH ((tree_code
) op
->code
) == 0
330 || ((tree_code
) op
->code
) == ADDR_EXPR
)
331 && is_gimple_val (op
->ops
[0]));
334 extern tree (*mprts_hook
) (gimple_match_op
*);
336 bool gimple_simplify (gimple
*, gimple_match_op
*, gimple_seq
*,
337 tree (*)(tree
), tree (*)(tree
));
338 tree
maybe_push_res_to_seq (gimple_match_op
*, gimple_seq
*,
339 tree res
= NULL_TREE
);
340 void maybe_build_generic_op (gimple_match_op
*);
343 #endif /* GCC_GIMPLE_MATCH_H */