gimple-match.h 9.13 KB
Newer Older
1 2
/* Gimple simplify definitions.

3
   Copyright (C) 2011-2019 Free Software Foundation, Inc.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
   Contributed by Richard Guenther <rguenther@suse.de>

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */

#ifndef GCC_GIMPLE_MATCH_H
#define GCC_GIMPLE_MATCH_H


/* Helper to transparently allow tree codes and builtin function codes
   exist in one storage entity.  */
class code_helper
{
public:
  code_helper () {}
  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 37 38 39 40 41 42
  bool is_tree_code () const { return rep > 0; }
  bool is_fn_code () const { return rep < 0; }
  int get_rep () const { return rep; }
private:
  int rep;
};

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
/* Represents the condition under which an operation should happen,
   and the value to use otherwise.  The condition applies elementwise
   (as for VEC_COND_EXPR) if the values are vectors.  */
struct gimple_match_cond
{
  enum uncond { UNCOND };

  /* Build an unconditional op.  */
  gimple_match_cond (uncond) : cond (NULL_TREE), else_value (NULL_TREE) {}
  gimple_match_cond (tree, tree);

  gimple_match_cond any_else () const;

  /* The condition under which the operation occurs, or NULL_TREE
     if the operation is unconditional.  */
  tree cond;

  /* The value to use when the condition is false.  This is NULL_TREE if
     the operation is unconditional or if the value doesn't matter.  */
  tree else_value;
};

inline
gimple_match_cond::gimple_match_cond (tree cond_in, tree else_value_in)
  : cond (cond_in), else_value (else_value_in)
{
}

/* Return a gimple_match_cond with the same condition but with an
   arbitrary ELSE_VALUE.  */

inline gimple_match_cond
gimple_match_cond::any_else () const
{
  return gimple_match_cond (cond, NULL_TREE);
}

80 81 82 83
/* Represents an operation to be simplified, or the result of the
   simplification.  */
struct gimple_match_op
{
84 85 86 87 88 89 90 91 92 93
  gimple_match_op ();
  gimple_match_op (const gimple_match_cond &, code_helper, tree, unsigned int);
  gimple_match_op (const gimple_match_cond &,
		   code_helper, tree, tree);
  gimple_match_op (const gimple_match_cond &,
		   code_helper, tree, tree, tree);
  gimple_match_op (const gimple_match_cond &,
		   code_helper, tree, tree, tree, tree);
  gimple_match_op (const gimple_match_cond &,
		   code_helper, tree, tree, tree, tree, tree);
94 95
  gimple_match_op (const gimple_match_cond &,
		   code_helper, tree, tree, tree, tree, tree, tree);
96 97 98 99 100

  void set_op (code_helper, tree, unsigned int);
  void set_op (code_helper, tree, tree);
  void set_op (code_helper, tree, tree, tree);
  void set_op (code_helper, tree, tree, tree, tree);
101
  void set_op (code_helper, tree, tree, tree, tree, bool);
102
  void set_op (code_helper, tree, tree, tree, tree, tree);
103
  void set_op (code_helper, tree, tree, tree, tree, tree, tree);
104 105 106 107 108
  void set_value (tree);

  tree op_or_null (unsigned int) const;

  /* The maximum value of NUM_OPS.  */
109
  static const unsigned int MAX_NUM_OPS = 5;
110

111 112 113 114
  /* The conditions under which the operation is performed, and the value to
     use as a fallback.  */
  gimple_match_cond cond;

115 116 117 118 119 120
  /* The operation being performed.  */
  code_helper code;

  /* The type of the result.  */
  tree type;

121 122 123 124
  /* For a BIT_FIELD_REF, whether the group of bits is stored in reverse order
     from the target order.  */
  bool reverse;

125 126 127 128 129 130 131
  /* The number of operands to CODE.  */
  unsigned int num_ops;

  /* The operands to CODE.  Only the first NUM_OPS entries are meaningful.  */
  tree ops[MAX_NUM_OPS];
};

132 133
inline
gimple_match_op::gimple_match_op ()
134 135
  : cond (gimple_match_cond::UNCOND), type (NULL_TREE), reverse (false),
    num_ops (0)
136 137 138 139 140
{
}

/* Constructor that takes the condition, code, type and number of
   operands, but leaves the caller to fill in the operands.  */
141 142

inline
143 144
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
				  code_helper code_in, tree type_in,
145
				  unsigned int num_ops_in)
146 147
  : cond (cond_in), code (code_in), type (type_in), reverse (false),
    num_ops (num_ops_in)
148 149 150 151 152 153
{
}

/* Constructors for various numbers of operands.  */

inline
154 155
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
				  code_helper code_in, tree type_in,
156
				  tree op0)
157 158
  : cond (cond_in), code (code_in), type (type_in), reverse (false),
    num_ops (1)
159 160 161 162 163
{
  ops[0] = op0;
}

inline
164 165
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
				  code_helper code_in, tree type_in,
166
				  tree op0, tree op1)
167 168
  : cond (cond_in), code (code_in), type (type_in), reverse (false), 
    num_ops (2)
169 170 171 172 173 174
{
  ops[0] = op0;
  ops[1] = op1;
}

inline
175 176
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
				  code_helper code_in, tree type_in,
177
				  tree op0, tree op1, tree op2)
178 179
  : cond (cond_in), code (code_in), type (type_in), reverse (false),
    num_ops (3)
180 181 182 183 184 185
{
  ops[0] = op0;
  ops[1] = op1;
  ops[2] = op2;
}

186
inline
187 188
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
				  code_helper code_in, tree type_in,
189
				  tree op0, tree op1, tree op2, tree op3)
190 191
  : cond (cond_in), code (code_in), type (type_in), reverse (false),
    num_ops (4)
192 193 194 195 196 197 198
{
  ops[0] = op0;
  ops[1] = op1;
  ops[2] = op2;
  ops[3] = op3;
}

199 200 201 202 203
inline
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
				  code_helper code_in, tree type_in,
				  tree op0, tree op1, tree op2, tree op3,
				  tree op4)
204 205
  : cond (cond_in), code (code_in), type (type_in), reverse (false),
    num_ops (5)
206 207 208 209 210 211 212 213
{
  ops[0] = op0;
  ops[1] = op1;
  ops[2] = op2;
  ops[3] = op3;
  ops[4] = op4;
}

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
/* Change the operation performed to CODE_IN, the type of the result to
   TYPE_IN, and the number of operands to NUM_OPS_IN.  The caller needs
   to set the operands itself.  */

inline void
gimple_match_op::set_op (code_helper code_in, tree type_in,
			 unsigned int num_ops_in)
{
  code = code_in;
  type = type_in;
  num_ops = num_ops_in;
}

/* Functions for changing the operation performed, for various numbers
   of operands.  */

inline void
gimple_match_op::set_op (code_helper code_in, tree type_in, tree op0)
{
  code = code_in;
  type = type_in;
  num_ops = 1;
  ops[0] = op0;
}

inline void
gimple_match_op::set_op (code_helper code_in, tree type_in, tree op0, tree op1)
{
  code = code_in;
  type = type_in;
  num_ops = 2;
  ops[0] = op0;
  ops[1] = op1;
}

inline void
gimple_match_op::set_op (code_helper code_in, tree type_in,
			 tree op0, tree op1, tree op2)
{
  code = code_in;
  type = type_in;
  num_ops = 3;
  ops[0] = op0;
  ops[1] = op1;
  ops[2] = op2;
}

261 262
inline void
gimple_match_op::set_op (code_helper code_in, tree type_in,
263 264 265 266 267 268 269 270 271 272 273 274 275
			 tree op0, tree op1, tree op2, bool reverse_in)
{
  code = code_in;
  type = type_in;
  reverse = reverse_in;
  num_ops = 3;
  ops[0] = op0;
  ops[1] = op1;
  ops[2] = op2;
}

inline void
gimple_match_op::set_op (code_helper code_in, tree type_in,
276 277 278 279 280 281 282 283 284 285 286
			 tree op0, tree op1, tree op2, tree op3)
{
  code = code_in;
  type = type_in;
  num_ops = 4;
  ops[0] = op0;
  ops[1] = op1;
  ops[2] = op2;
  ops[3] = op3;
}

287 288 289 290 291 292 293 294 295 296 297 298 299 300
inline void
gimple_match_op::set_op (code_helper code_in, tree type_in,
			 tree op0, tree op1, tree op2, tree op3, tree op4)
{
  code = code_in;
  type = type_in;
  num_ops = 5;
  ops[0] = op0;
  ops[1] = op1;
  ops[2] = op2;
  ops[3] = op3;
  ops[4] = op4;
}

301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
/* Set the "operation" to be the single value VALUE, such as a constant
   or SSA_NAME.  */

inline void
gimple_match_op::set_value (tree value)
{
  set_op (TREE_CODE (value), TREE_TYPE (value), value);
}

/* Return the value of operand I, or null if there aren't that many
   operands.  */

inline tree
gimple_match_op::op_or_null (unsigned int i) const
{
  return i < num_ops ? ops[i] : NULL_TREE;
}

/* Return whether OP is a non-expression result and a gimple value.  */
320 321

inline bool
322
gimple_simplified_result_is_gimple_val (const gimple_match_op *op)
323
{
324 325 326 327
  return (op->code.is_tree_code ()
	  && (TREE_CODE_LENGTH ((tree_code) op->code) == 0
	      || ((tree_code) op->code) == ADDR_EXPR)
	  && is_gimple_val (op->ops[0]));
328 329
}

330
extern tree (*mprts_hook) (gimple_match_op *);
331

332
bool gimple_simplify (gimple *, gimple_match_op *, gimple_seq *,
333
		      tree (*)(tree), tree (*)(tree));
334 335 336
bool gimple_resimplify1 (gimple_seq *, gimple_match_op *, tree (*)(tree));
bool gimple_resimplify2 (gimple_seq *, gimple_match_op *, tree (*)(tree));
bool gimple_resimplify3 (gimple_seq *, gimple_match_op *, tree (*)(tree));
337
bool gimple_resimplify4 (gimple_seq *, gimple_match_op *, tree (*)(tree));
338
bool gimple_resimplify5 (gimple_seq *, gimple_match_op *, tree (*)(tree));
339 340 341
tree maybe_push_res_to_seq (gimple_match_op *, gimple_seq *,
			    tree res = NULL_TREE);
void maybe_build_generic_op (gimple_match_op *);
342 343 344


#endif  /* GCC_GIMPLE_MATCH_H */