match.pd: Implement bitwise binary and unary simplifications from tree-ssa-forwprop.c.
[gcc.git] / gcc / genmatch.c
1 /* Generate pattern matching and transform code shared between
2 GENERIC and GIMPLE folding code from match-and-simplify description.
3
4 Copyright (C) 2014 Free Software Foundation, Inc.
5 Contributed by Richard Biener <rguenther@suse.de>
6 and Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
14
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
23
24 #include "bconfig.h"
25 #include <new>
26 #include "system.h"
27 #include "coretypes.h"
28 #include "ggc.h"
29 #include <cpplib.h>
30 #include "errors.h"
31 #include "hashtab.h"
32 #include "hash-table.h"
33 #include "hash-map.h"
34 #include "vec.h"
35 #include "is-a.h"
36
37
38 /* Stubs for GGC referenced through instantiations triggered by hash-map. */
39 void *ggc_internal_cleared_alloc (size_t, void (*)(void *),
40 size_t, size_t
41 CXX_MEM_STAT_INFO)
42 {
43 return NULL;
44 }
45 void ggc_free (void *)
46 {
47 }
48
49
50 /* libccp helpers. */
51
52 static struct line_maps *line_table;
53
54 static bool
55 #if GCC_VERSION >= 4001
56 __attribute__((format (printf, 6, 0)))
57 #endif
58 error_cb (cpp_reader *, int, int, source_location location,
59 unsigned int, const char *msg, va_list *ap)
60 {
61 const line_map *map;
62 linemap_resolve_location (line_table, location, LRK_SPELLING_LOCATION, &map);
63 expanded_location loc = linemap_expand_location (line_table, map, location);
64 fprintf (stderr, "%s:%d:%d error: ", loc.file, loc.line, loc.column);
65 vfprintf (stderr, msg, *ap);
66 fprintf (stderr, "\n");
67 FILE *f = fopen (loc.file, "r");
68 if (f)
69 {
70 char buf[128];
71 while (loc.line > 0)
72 {
73 if (!fgets (buf, 128, f))
74 goto notfound;
75 if (buf[strlen (buf) - 1] != '\n')
76 {
77 if (loc.line > 1)
78 loc.line++;
79 }
80 loc.line--;
81 }
82 fprintf (stderr, "%s", buf);
83 for (int i = 0; i < loc.column - 1; ++i)
84 fputc (' ', stderr);
85 fputc ('^', stderr);
86 fputc ('\n', stderr);
87 notfound:
88 fclose (f);
89 }
90 exit (1);
91 }
92
93 static void
94 #if GCC_VERSION >= 4001
95 __attribute__((format (printf, 2, 3)))
96 #endif
97 fatal_at (const cpp_token *tk, const char *msg, ...)
98 {
99 va_list ap;
100 va_start (ap, msg);
101 error_cb (NULL, CPP_DL_FATAL, 0, tk->src_loc, 0, msg, &ap);
102 va_end (ap);
103 }
104
105 static void
106 output_line_directive (FILE *f, source_location location,
107 bool dumpfile = false)
108 {
109 const line_map *map;
110 linemap_resolve_location (line_table, location, LRK_SPELLING_LOCATION, &map);
111 expanded_location loc = linemap_expand_location (line_table, map, location);
112 if (dumpfile)
113 {
114 /* When writing to a dumpfile only dump the filename. */
115 const char *file = strrchr (loc.file, DIR_SEPARATOR);
116 if (!file)
117 file = loc.file;
118 else
119 ++file;
120 fprintf (f, "%s:%d", file, loc.line);
121 }
122 else
123 /* Other gen programs really output line directives here, at least for
124 development it's right now more convenient to have line information
125 from the generated file. Still keep the directives as comment for now
126 to easily back-point to the meta-description. */
127 fprintf (f, "/* #line %d \"%s\" */\n", loc.line, loc.file);
128 }
129
130
131 /* Pull in tree codes and builtin function codes from their
132 definition files. */
133
134 #define DEFTREECODE(SYM, STRING, TYPE, NARGS) SYM,
135 enum tree_code {
136 #include "tree.def"
137 CONVERT0,
138 CONVERT1,
139 CONVERT2,
140 MAX_TREE_CODES
141 };
142 #undef DEFTREECODE
143
144 #define DEF_BUILTIN(ENUM, N, C, T, LT, B, F, NA, AT, IM, COND) ENUM,
145 enum built_in_function {
146 #include "builtins.def"
147 END_BUILTINS
148 };
149 #undef DEF_BUILTIN
150
151
152 /* Base class for all identifiers the parser knows. */
153
154 struct id_base : typed_noop_remove<id_base>
155 {
156 enum id_kind { CODE, FN, PREDICATE, USER } kind;
157
158 id_base (id_kind, const char *, int = -1);
159
160 hashval_t hashval;
161 int nargs;
162 const char *id;
163
164 /* hash_table support. */
165 typedef id_base value_type;
166 typedef id_base compare_type;
167 static inline hashval_t hash (const value_type *);
168 static inline int equal (const value_type *, const compare_type *);
169 };
170
171 inline hashval_t
172 id_base::hash (const value_type *op)
173 {
174 return op->hashval;
175 }
176
177 inline int
178 id_base::equal (const value_type *op1,
179 const compare_type *op2)
180 {
181 return (op1->hashval == op2->hashval
182 && strcmp (op1->id, op2->id) == 0);
183 }
184
185 /* Hashtable of known pattern operators. This is pre-seeded from
186 all known tree codes and all known builtin function ids. */
187 static hash_table<id_base> *operators;
188
189 id_base::id_base (id_kind kind_, const char *id_, int nargs_)
190 {
191 kind = kind_;
192 id = id_;
193 nargs = nargs_;
194 hashval = htab_hash_string (id);
195 }
196
197 /* Identifier that maps to a tree code. */
198
199 struct operator_id : public id_base
200 {
201 operator_id (enum tree_code code_, const char *id_, unsigned nargs_,
202 const char *tcc_)
203 : id_base (id_base::CODE, id_, nargs_), code (code_), tcc (tcc_) {}
204 enum tree_code code;
205 const char *tcc;
206 };
207
208 /* Identifier that maps to a builtin function code. */
209
210 struct fn_id : public id_base
211 {
212 fn_id (enum built_in_function fn_, const char *id_)
213 : id_base (id_base::FN, id_), fn (fn_) {}
214 enum built_in_function fn;
215 };
216
217 struct simplify;
218
219 /* Identifier that maps to a user-defined predicate. */
220
221 struct predicate_id : public id_base
222 {
223 predicate_id (const char *id_)
224 : id_base (id_base::PREDICATE, id_), matchers (vNULL) {}
225 vec<simplify *> matchers;
226 };
227
228 /* Identifier that maps to a operator defined by a 'for' directive. */
229
230 struct user_id : public id_base
231 {
232 user_id (const char *id_)
233 : id_base (id_base::USER, id_), substitutes (vNULL) {}
234 vec<id_base *> substitutes;
235 };
236
237 template<>
238 template<>
239 inline bool
240 is_a_helper <fn_id *>::test (id_base *id)
241 {
242 return id->kind == id_base::FN;
243 }
244
245 template<>
246 template<>
247 inline bool
248 is_a_helper <operator_id *>::test (id_base *id)
249 {
250 return id->kind == id_base::CODE;
251 }
252
253 template<>
254 template<>
255 inline bool
256 is_a_helper <predicate_id *>::test (id_base *id)
257 {
258 return id->kind == id_base::PREDICATE;
259 }
260
261 template<>
262 template<>
263 inline bool
264 is_a_helper <user_id *>::test (id_base *id)
265 {
266 return id->kind == id_base::USER;
267 }
268
269 /* Add a predicate identifier to the hash. */
270
271 static predicate_id *
272 add_predicate (const char *id)
273 {
274 predicate_id *p = new predicate_id (id);
275 id_base **slot = operators->find_slot_with_hash (p, p->hashval, INSERT);
276 if (*slot)
277 fatal ("duplicate id definition");
278 *slot = p;
279 return p;
280 }
281
282 /* Add a tree code identifier to the hash. */
283
284 static void
285 add_operator (enum tree_code code, const char *id,
286 const char *tcc, unsigned nargs)
287 {
288 if (strcmp (tcc, "tcc_unary") != 0
289 && strcmp (tcc, "tcc_binary") != 0
290 && strcmp (tcc, "tcc_comparison") != 0
291 && strcmp (tcc, "tcc_expression") != 0
292 /* For {REAL,IMAG}PART_EXPR and VIEW_CONVERT_EXPR. */
293 && strcmp (tcc, "tcc_reference") != 0
294 /* To have INTEGER_CST and friends as "predicate operators". */
295 && strcmp (tcc, "tcc_constant") != 0)
296 return;
297 operator_id *op = new operator_id (code, id, nargs, tcc);
298 id_base **slot = operators->find_slot_with_hash (op, op->hashval, INSERT);
299 if (*slot)
300 fatal ("duplicate id definition");
301 *slot = op;
302 }
303
304 /* Add a builtin identifier to the hash. */
305
306 static void
307 add_builtin (enum built_in_function code, const char *id)
308 {
309 fn_id *fn = new fn_id (code, id);
310 id_base **slot = operators->find_slot_with_hash (fn, fn->hashval, INSERT);
311 if (*slot)
312 fatal ("duplicate id definition");
313 *slot = fn;
314 }
315
316 /* Helper for easy comparing ID with tree code CODE. */
317
318 static bool
319 operator==(id_base &id, enum tree_code code)
320 {
321 if (operator_id *oid = dyn_cast <operator_id *> (&id))
322 return oid->code == code;
323 return false;
324 }
325
326 /* Lookup the identifier ID. */
327
328 id_base *
329 get_operator (const char *id)
330 {
331 id_base tem (id_base::CODE, id);
332
333 id_base *op = operators->find_with_hash (&tem, tem.hashval);
334 if (op)
335 return op;
336
337 /* Try all-uppercase. */
338 char *id2 = xstrdup (id);
339 for (unsigned i = 0; i < strlen (id2); ++i)
340 id2[i] = TOUPPER (id2[i]);
341 new (&tem) id_base (id_base::CODE, id2);
342 op = operators->find_with_hash (&tem, tem.hashval);
343 if (op)
344 {
345 free (id2);
346 return op;
347 }
348
349 /* Try _EXPR appended. */
350 id2 = (char *)xrealloc (id2, strlen (id2) + sizeof ("_EXPR") + 1);
351 strcat (id2, "_EXPR");
352 new (&tem) id_base (id_base::CODE, id2);
353 op = operators->find_with_hash (&tem, tem.hashval);
354 if (op)
355 {
356 free (id2);
357 return op;
358 }
359
360 return 0;
361 }
362
363
364 /* Helper for the capture-id map. */
365
366 struct capture_id_map_hasher : default_hashmap_traits
367 {
368 static inline hashval_t hash (const char *);
369 static inline bool equal_keys (const char *, const char *);
370 };
371
372 inline hashval_t
373 capture_id_map_hasher::hash (const char *id)
374 {
375 return htab_hash_string (id);
376 }
377
378 inline bool
379 capture_id_map_hasher::equal_keys (const char *id1, const char *id2)
380 {
381 return strcmp (id1, id2) == 0;
382 }
383
384 typedef hash_map<const char *, unsigned, capture_id_map_hasher> cid_map_t;
385
386
387 /* The AST produced by parsing of the pattern definitions. */
388
389 struct dt_operand;
390
391 /* The base class for operands. */
392
393 struct operand {
394 enum op_type { OP_PREDICATE, OP_EXPR, OP_CAPTURE, OP_C_EXPR };
395 operand (enum op_type type_) : type (type_) {}
396 enum op_type type;
397 virtual void gen_transform (FILE *, const char *, bool, int,
398 const char *, dt_operand ** = 0)
399 { gcc_unreachable (); }
400 };
401
402 /* A predicate operand. Predicates are leafs in the AST. */
403
404 struct predicate : public operand
405 {
406 predicate (predicate_id *p_) : operand (OP_PREDICATE), p (p_) {}
407 predicate_id *p;
408 };
409
410 /* An operand that constitutes an expression. Expressions include
411 function calls and user-defined predicate invocations. */
412
413 struct expr : public operand
414 {
415 expr (id_base *operation_, bool is_commutative_ = false)
416 : operand (OP_EXPR), operation (operation_),
417 ops (vNULL), expr_type (NULL), is_commutative (is_commutative_) {}
418 void append_op (operand *op) { ops.safe_push (op); }
419 /* The operator and its operands. */
420 id_base *operation;
421 vec<operand *> ops;
422 /* An explicitely specified type - used exclusively for conversions. */
423 const char *expr_type;
424 /* Whether the operation is to be applied commutatively. This is
425 later lowered to two separate patterns. */
426 bool is_commutative;
427 virtual void gen_transform (FILE *f, const char *, bool, int,
428 const char *, dt_operand ** = 0);
429 };
430
431 /* An operator that is represented by native C code. This is always
432 a leaf operand in the AST. This class is also used to represent
433 the code to be generated for 'if' and 'with' expressions. */
434
435 struct c_expr : public operand
436 {
437 /* A mapping of an identifier and its replacement. Used to apply
438 'for' lowering. */
439 struct id_tab {
440 const char *id;
441 const char *oper;
442 id_tab (const char *id_, const char *oper_): id (id_), oper (oper_) {}
443 };
444
445 c_expr (cpp_reader *r_, vec<cpp_token> code_, unsigned nr_stmts_,
446 vec<id_tab> ids_, cid_map_t *capture_ids_)
447 : operand (OP_C_EXPR), r (r_), code (code_), capture_ids (capture_ids_),
448 nr_stmts (nr_stmts_), ids (ids_) {}
449 /* cpplib tokens and state to transform this back to source. */
450 cpp_reader *r;
451 vec<cpp_token> code;
452 cid_map_t *capture_ids;
453 /* The number of statements parsed (well, the number of ';'s). */
454 unsigned nr_stmts;
455 /* The identifier replacement vector. */
456 vec<id_tab> ids;
457 virtual void gen_transform (FILE *f, const char *, bool, int,
458 const char *, dt_operand **);
459 };
460
461 /* A wrapper around another operand that captures its value. */
462
463 struct capture : public operand
464 {
465 capture (unsigned where_, operand *what_)
466 : operand (OP_CAPTURE), where (where_), what (what_) {}
467 /* Identifier index for the value. */
468 unsigned where;
469 /* The captured value. */
470 operand *what;
471 virtual void gen_transform (FILE *f, const char *, bool, int,
472 const char *, dt_operand ** = 0);
473 };
474
475 template<>
476 template<>
477 inline bool
478 is_a_helper <capture *>::test (operand *op)
479 {
480 return op->type == operand::OP_CAPTURE;
481 }
482
483 template<>
484 template<>
485 inline bool
486 is_a_helper <predicate *>::test (operand *op)
487 {
488 return op->type == operand::OP_PREDICATE;
489 }
490
491 template<>
492 template<>
493 inline bool
494 is_a_helper <c_expr *>::test (operand *op)
495 {
496 return op->type == operand::OP_C_EXPR;
497 }
498
499 template<>
500 template<>
501 inline bool
502 is_a_helper <expr *>::test (operand *op)
503 {
504 return op->type == operand::OP_EXPR;
505 }
506
507 /* Helper to distinguish 'if' from 'with' expressions. */
508
509 struct if_or_with
510 {
511 if_or_with (operand *cexpr_, source_location location_, bool is_with_)
512 : location (location_), cexpr (cexpr_), is_with (is_with_) {}
513 source_location location;
514 operand *cexpr;
515 bool is_with;
516 };
517
518 /* The main class of a pattern and its transform. This is used to
519 represent both (simplify ...) and (match ...) kinds. The AST
520 duplicates all outer 'if' and 'for' expressions here so each
521 simplify can exist in isolation. */
522
523 struct simplify
524 {
525 simplify (operand *match_, source_location match_location_,
526 struct operand *result_, source_location result_location_,
527 vec<if_or_with> ifexpr_vec_, vec<vec<user_id *> > for_vec_,
528 cid_map_t *capture_ids_)
529 : match (match_), match_location (match_location_),
530 result (result_), result_location (result_location_),
531 ifexpr_vec (ifexpr_vec_), for_vec (for_vec_),
532 capture_ids (capture_ids_), capture_max (capture_ids_->elements () - 1) {}
533
534 /* The expression that is matched against the GENERIC or GIMPLE IL. */
535 operand *match;
536 source_location match_location;
537 /* For a (simplify ...) the expression produced when the pattern applies.
538 For a (match ...) either NULL if it is a simple predicate or the
539 single expression specifying the matched operands. */
540 struct operand *result;
541 source_location result_location;
542 /* Collected 'if' expressions that need to evaluate to true to make
543 the pattern apply. */
544 vec<if_or_with> ifexpr_vec;
545 /* Collected 'for' expression operators that have to be replaced
546 in the lowering phase. */
547 vec<vec<user_id *> > for_vec;
548 /* A map of capture identifiers to indexes. */
549 cid_map_t *capture_ids;
550 int capture_max;
551 };
552
553 /* Debugging routines for dumping the AST. */
554
555 DEBUG_FUNCTION void
556 print_operand (operand *o, FILE *f = stderr, bool flattened = false)
557 {
558 if (capture *c = dyn_cast<capture *> (o))
559 {
560 fprintf (f, "@%u", c->where);
561 if (c->what && flattened == false)
562 {
563 putc (':', f);
564 print_operand (c->what, f, flattened);
565 putc (' ', f);
566 }
567 }
568
569 else if (predicate *p = dyn_cast<predicate *> (o))
570 fprintf (f, "%s", p->p->id);
571
572 else if (is_a<c_expr *> (o))
573 fprintf (f, "c_expr");
574
575 else if (expr *e = dyn_cast<expr *> (o))
576 {
577 fprintf (f, "(%s", e->operation->id);
578
579 if (flattened == false)
580 {
581 putc (' ', f);
582 for (unsigned i = 0; i < e->ops.length (); ++i)
583 {
584 print_operand (e->ops[i], f, flattened);
585 putc (' ', f);
586 }
587 }
588 putc (')', f);
589 }
590
591 else
592 gcc_unreachable ();
593 }
594
595 DEBUG_FUNCTION void
596 print_matches (struct simplify *s, FILE *f = stderr)
597 {
598 fprintf (f, "for expression: ");
599 print_operand (s->match, f);
600 putc ('\n', f);
601 }
602
603
604 /* AST lowering. */
605
606 /* Lowering of commutative operators. */
607
608 static void
609 cartesian_product (const vec< vec<operand *> >& ops_vector,
610 vec< vec<operand *> >& result, vec<operand *>& v, unsigned n)
611 {
612 if (n == ops_vector.length ())
613 {
614 vec<operand *> xv = v.copy ();
615 result.safe_push (xv);
616 return;
617 }
618
619 for (unsigned i = 0; i < ops_vector[n].length (); ++i)
620 {
621 v[n] = ops_vector[n][i];
622 cartesian_product (ops_vector, result, v, n + 1);
623 }
624 }
625
626 /* Lower OP to two operands in case it is marked as commutative. */
627
628 static vec<operand *>
629 commutate (operand *op)
630 {
631 vec<operand *> ret = vNULL;
632
633 if (capture *c = dyn_cast <capture *> (op))
634 {
635 if (!c->what)
636 {
637 ret.safe_push (op);
638 return ret;
639 }
640 vec<operand *> v = commutate (c->what);
641 for (unsigned i = 0; i < v.length (); ++i)
642 {
643 capture *nc = new capture (c->where, v[i]);
644 ret.safe_push (nc);
645 }
646 return ret;
647 }
648
649 expr *e = dyn_cast <expr *> (op);
650 if (!e || e->ops.length () == 0)
651 {
652 ret.safe_push (op);
653 return ret;
654 }
655
656 vec< vec<operand *> > ops_vector = vNULL;
657 for (unsigned i = 0; i < e->ops.length (); ++i)
658 ops_vector.safe_push (commutate (e->ops[i]));
659
660 auto_vec< vec<operand *> > result;
661 auto_vec<operand *> v (e->ops.length ());
662 v.quick_grow_cleared (e->ops.length ());
663 cartesian_product (ops_vector, result, v, 0);
664
665
666 for (unsigned i = 0; i < result.length (); ++i)
667 {
668 expr *ne = new expr (e->operation);
669 for (unsigned j = 0; j < result[i].length (); ++j)
670 ne->append_op (result[i][j]);
671 ret.safe_push (ne);
672 }
673
674 if (!e->is_commutative)
675 return ret;
676
677 for (unsigned i = 0; i < result.length (); ++i)
678 {
679 expr *ne = new expr (e->operation);
680 // result[i].length () is 2 since e->operation is binary
681 for (unsigned j = result[i].length (); j; --j)
682 ne->append_op (result[i][j-1]);
683 ret.safe_push (ne);
684 }
685
686 return ret;
687 }
688
689 /* Lower operations marked as commutative in the AST of S and push
690 the resulting patterns to SIMPLIFIERS. */
691
692 static void
693 lower_commutative (simplify *s, vec<simplify *>& simplifiers)
694 {
695 vec<operand *> matchers = commutate (s->match);
696 for (unsigned i = 0; i < matchers.length (); ++i)
697 {
698 simplify *ns = new simplify (matchers[i], s->match_location,
699 s->result, s->result_location, s->ifexpr_vec,
700 s->for_vec, s->capture_ids);
701 simplifiers.safe_push (ns);
702 }
703 }
704
705 /* Strip conditional conversios using operator OPER from O and its
706 children if STRIP, else replace them with an unconditional convert. */
707
708 operand *
709 lower_opt_convert (operand *o, enum tree_code oper, bool strip)
710 {
711 if (capture *c = dyn_cast<capture *> (o))
712 {
713 if (c->what)
714 return new capture (c->where, lower_opt_convert (c->what, oper, strip));
715 else
716 return c;
717 }
718
719 expr *e = dyn_cast<expr *> (o);
720 if (!e)
721 return o;
722
723 if (*e->operation == oper)
724 {
725 if (strip)
726 return lower_opt_convert (e->ops[0], oper, strip);
727
728 expr *ne = new expr (get_operator ("CONVERT_EXPR"));
729 ne->append_op (lower_opt_convert (e->ops[0], oper, strip));
730 return ne;
731 }
732
733 expr *ne = new expr (e->operation, e->is_commutative);
734 for (unsigned i = 0; i < e->ops.length (); ++i)
735 ne->append_op (lower_opt_convert (e->ops[i], oper, strip));
736
737 return ne;
738 }
739
740 /* Determine whether O or its children uses the conditional conversion
741 operator OPER. */
742
743 static bool
744 has_opt_convert (operand *o, enum tree_code oper)
745 {
746 if (capture *c = dyn_cast<capture *> (o))
747 {
748 if (c->what)
749 return has_opt_convert (c->what, oper);
750 else
751 return false;
752 }
753
754 expr *e = dyn_cast<expr *> (o);
755 if (!e)
756 return false;
757
758 if (*e->operation == oper)
759 return true;
760
761 for (unsigned i = 0; i < e->ops.length (); ++i)
762 if (has_opt_convert (e->ops[i], oper))
763 return true;
764
765 return false;
766 }
767
768 /* Lower conditional convert operators in O, expanding it to a vector
769 if required. */
770
771 static vec<operand *>
772 lower_opt_convert (operand *o)
773 {
774 vec<operand *> v1 = vNULL, v2;
775
776 v1.safe_push (o);
777
778 enum tree_code opers[] = { CONVERT0, CONVERT1, CONVERT2 };
779
780 /* Conditional converts are lowered to a pattern with the
781 conversion and one without. The three different conditional
782 convert codes are lowered separately. */
783
784 for (unsigned i = 0; i < 3; ++i)
785 {
786 v2 = vNULL;
787 for (unsigned j = 0; j < v1.length (); ++j)
788 if (has_opt_convert (v1[j], opers[i]))
789 {
790 v2.safe_push (lower_opt_convert (v1[j], opers[i], false));
791 v2.safe_push (lower_opt_convert (v1[j], opers[i], true));
792 }
793
794 if (v2 != vNULL)
795 {
796 v1 = vNULL;
797 for (unsigned j = 0; j < v2.length (); ++j)
798 v1.safe_push (v2[j]);
799 }
800 }
801
802 return v1;
803 }
804
805 /* Lower conditional convert operators in the AST of S and push
806 the resulting multiple patterns to SIMPLIFIERS. */
807
808 static void
809 lower_opt_convert (simplify *s, vec<simplify *>& simplifiers)
810 {
811 vec<operand *> matchers = lower_opt_convert (s->match);
812 for (unsigned i = 0; i < matchers.length (); ++i)
813 {
814 simplify *ns = new simplify (matchers[i], s->match_location,
815 s->result, s->result_location, s->ifexpr_vec,
816 s->for_vec, s->capture_ids);
817 simplifiers.safe_push (ns);
818 }
819 }
820
821 /* In AST operand O replace operator ID with operator WITH. */
822
823 operand *
824 replace_id (operand *o, user_id *id, id_base *with)
825 {
826 /* Deep-copy captures and expressions, replacing operations as
827 needed. */
828 if (capture *c = dyn_cast<capture *> (o))
829 {
830 if (!c->what)
831 return c;
832 return new capture (c->where, replace_id (c->what, id, with));
833 }
834 else if (expr *e = dyn_cast<expr *> (o))
835 {
836 expr *ne = new expr (e->operation == id ? with : e->operation,
837 e->is_commutative);
838 for (unsigned i = 0; i < e->ops.length (); ++i)
839 ne->append_op (replace_id (e->ops[i], id, with));
840 return ne;
841 }
842
843 /* For c_expr we simply record a string replacement table which is
844 applied at code-generation time. */
845 if (c_expr *ce = dyn_cast<c_expr *> (o))
846 {
847 vec<c_expr::id_tab> ids = ce->ids.copy ();
848 ids.safe_push (c_expr::id_tab (id->id, with->id));
849 return new c_expr (ce->r, ce->code, ce->nr_stmts, ids, ce->capture_ids);
850 }
851
852 return o;
853 }
854
855 /* Lower recorded fors for SIN and output to SIMPLIFIERS. */
856
857 static void
858 lower_for (simplify *sin, vec<simplify *>& simplifiers)
859 {
860 vec<vec<user_id *> >& for_vec = sin->for_vec;
861 unsigned worklist_start = 0;
862 auto_vec<simplify *> worklist;
863 worklist.safe_push (sin);
864
865 /* Lower each recorded for separately, operating on the
866 set of simplifiers created by the previous one.
867 Lower inner-to-outer so inner for substitutes can refer
868 to operators replaced by outer fors. */
869 for (int fi = for_vec.length () - 1; fi >= 0; --fi)
870 {
871 vec<user_id *>& ids = for_vec[fi];
872 unsigned n_ids = ids.length ();
873 unsigned max_n_opers = 0;
874 for (unsigned i = 0; i < n_ids; ++i)
875 if (ids[i]->substitutes.length () > max_n_opers)
876 max_n_opers = ids[i]->substitutes.length ();
877
878 unsigned worklist_end = worklist.length ();
879 for (unsigned si = worklist_start; si < worklist_end; ++si)
880 {
881 simplify *s = worklist[si];
882 for (unsigned j = 0; j < max_n_opers; ++j)
883 {
884 operand *match_op = s->match;
885 operand *result_op = s->result;
886 vec<if_or_with> ifexpr_vec = s->ifexpr_vec.copy ();
887
888 for (unsigned i = 0; i < n_ids; ++i)
889 {
890 user_id *id = ids[i];
891 id_base *oper = id->substitutes[j % id->substitutes.length ()];
892 match_op = replace_id (match_op, id, oper);
893 if (result_op)
894 result_op = replace_id (result_op, id, oper);
895 for (unsigned k = 0; k < s->ifexpr_vec.length (); ++k)
896 ifexpr_vec[k].cexpr = replace_id (ifexpr_vec[k].cexpr,
897 id, oper);
898 }
899 simplify *ns = new simplify (match_op, s->match_location,
900 result_op, s->result_location,
901 ifexpr_vec, vNULL, s->capture_ids);
902 worklist.safe_push (ns);
903 }
904 }
905 worklist_start = worklist_end;
906 }
907
908 /* Copy out the result from the last for lowering. */
909 for (unsigned i = worklist_start; i < worklist.length (); ++i)
910 simplifiers.safe_push (worklist[i]);
911 }
912
913 /* Lower the AST for everything in SIMPLIFIERS. */
914
915 static void
916 lower (vec<simplify *>& simplifiers)
917 {
918 auto_vec<simplify *> out_simplifiers0;
919 for (unsigned i = 0; i < simplifiers.length (); ++i)
920 lower_opt_convert (simplifiers[i], out_simplifiers0);
921
922 auto_vec<simplify *> out_simplifiers1;
923 for (unsigned i = 0; i < out_simplifiers0.length (); ++i)
924 lower_commutative (out_simplifiers0[i], out_simplifiers1);
925
926 simplifiers.truncate (0);
927 for (unsigned i = 0; i < out_simplifiers1.length (); ++i)
928 lower_for (out_simplifiers1[i], simplifiers);
929 }
930
931
932
933
934 /* The decision tree built for generating GIMPLE and GENERIC pattern
935 matching code. It represents the 'match' expression of all
936 simplifies and has those as its leafs. */
937
938 /* Decision tree base class, used for DT_TRUE and DT_NODE. */
939
940 struct dt_node
941 {
942 enum dt_type { DT_NODE, DT_OPERAND, DT_TRUE, DT_MATCH, DT_SIMPLIFY };
943
944 enum dt_type type;
945 unsigned level;
946 vec<dt_node *> kids;
947
948 dt_node (enum dt_type type_): type (type_), level (0), kids (vNULL) {}
949
950 dt_node *append_node (dt_node *);
951 dt_node *append_op (operand *, dt_node *parent = 0, unsigned pos = 0);
952 dt_node *append_true_op (dt_node *parent = 0, unsigned pos = 0);
953 dt_node *append_match_op (dt_operand *, dt_node *parent = 0, unsigned pos = 0);
954 dt_node *append_simplify (simplify *, unsigned, dt_operand **);
955
956 virtual void gen (FILE *, bool) {}
957
958 void gen_kids (FILE *, bool);
959 };
960
961 /* Generic decision tree node used for DT_OPERAND and DT_MATCH. */
962
963 struct dt_operand : public dt_node
964 {
965 operand *op;
966 dt_operand *match_dop;
967 dt_operand *parent;
968 unsigned pos;
969
970 dt_operand (enum dt_type type, operand *op_, dt_operand *match_dop_,
971 dt_operand *parent_ = 0, unsigned pos_ = 0)
972 : dt_node (type), op (op_), match_dop (match_dop_),
973 parent (parent_), pos (pos_) {}
974
975 void gen (FILE *, bool);
976 unsigned gen_predicate (FILE *, const char *, bool);
977 unsigned gen_match_op (FILE *, const char *);
978
979 unsigned gen_gimple_expr (FILE *);
980 unsigned gen_generic_expr (FILE *, const char *);
981
982 char *get_name (char *);
983 void gen_opname (char *, unsigned);
984 };
985
986 /* Leaf node of the decision tree, used for DT_SIMPLIFY. */
987
988 struct dt_simplify : public dt_node
989 {
990 simplify *s;
991 unsigned pattern_no;
992 dt_operand **indexes;
993
994 dt_simplify (simplify *s_, unsigned pattern_no_, dt_operand **indexes_)
995 : dt_node (DT_SIMPLIFY), s (s_), pattern_no (pattern_no_),
996 indexes (indexes_) {}
997
998 void gen (FILE *f, bool);
999 };
1000
1001 template<>
1002 template<>
1003 inline bool
1004 is_a_helper <dt_operand *>::test (dt_node *n)
1005 {
1006 return (n->type == dt_node::DT_OPERAND
1007 || n->type == dt_node::DT_MATCH);
1008 }
1009
1010 /* A container for the actual decision tree. */
1011
1012 struct decision_tree
1013 {
1014 dt_node *root;
1015
1016 void insert (struct simplify *, unsigned);
1017 void gen_gimple (FILE *f = stderr);
1018 void gen_generic (FILE *f = stderr);
1019 void print (FILE *f = stderr);
1020
1021 decision_tree () { root = new dt_node (dt_node::DT_NODE); }
1022
1023 static dt_node *insert_operand (dt_node *, operand *, dt_operand **indexes,
1024 unsigned pos = 0, dt_node *parent = 0);
1025 static dt_node *find_node (vec<dt_node *>&, dt_node *);
1026 static bool cmp_node (dt_node *, dt_node *);
1027 static void print_node (dt_node *, FILE *f = stderr, unsigned = 0);
1028 };
1029
1030 /* Compare two AST operands O1 and O2 and return true if they are equal. */
1031
1032 bool
1033 cmp_operand (operand *o1, operand *o2)
1034 {
1035 if (!o1 || !o2 || o1->type != o2->type)
1036 return false;
1037
1038 if (o1->type == operand::OP_PREDICATE)
1039 {
1040 predicate *p1 = as_a<predicate *>(o1);
1041 predicate *p2 = as_a<predicate *>(o2);
1042 return p1->p == p2->p;
1043 }
1044 else if (o1->type == operand::OP_EXPR)
1045 {
1046 expr *e1 = static_cast<expr *>(o1);
1047 expr *e2 = static_cast<expr *>(o2);
1048 return e1->operation == e2->operation;
1049 }
1050 else
1051 return false;
1052 }
1053
1054 /* Compare two decision tree nodes N1 and N2 and return true if they
1055 are equal. */
1056
1057 bool
1058 decision_tree::cmp_node (dt_node *n1, dt_node *n2)
1059 {
1060 if (!n1 || !n2 || n1->type != n2->type)
1061 return false;
1062
1063 if (n1 == n2 || n1->type == dt_node::DT_TRUE)
1064 return true;
1065
1066 if (n1->type == dt_node::DT_OPERAND)
1067 return cmp_operand ((as_a<dt_operand *> (n1))->op,
1068 (as_a<dt_operand *> (n2))->op);
1069 else if (n1->type == dt_node::DT_MATCH)
1070 return ((as_a<dt_operand *> (n1))->match_dop
1071 == (as_a<dt_operand *> (n2))->match_dop);
1072 return false;
1073 }
1074
1075 /* Search OPS for a decision tree node like P and return it if found. */
1076
1077 dt_node *
1078 decision_tree::find_node (vec<dt_node *>& ops, dt_node *p)
1079 {
1080 for (unsigned i = 0; i < ops.length (); ++i)
1081 if (decision_tree::cmp_node (ops[i], p))
1082 return ops[i];
1083
1084 return NULL;
1085 }
1086
1087 /* Append N to the decision tree if it there is not already an existing
1088 identical child. */
1089
1090 dt_node *
1091 dt_node::append_node (dt_node *n)
1092 {
1093 dt_node *kid;
1094
1095 kid = decision_tree::find_node (kids, n);
1096 if (kid)
1097 return kid;
1098
1099 kids.safe_push (n);
1100 n->level = this->level + 1;
1101
1102 unsigned len = kids.length ();
1103
1104 if (len > 1 && kids[len - 2]->type == dt_node::DT_TRUE)
1105 {
1106 dt_node *p = kids[len - 2];
1107 kids[len - 2] = kids[len - 1];
1108 kids[len - 1] = p;
1109 }
1110
1111 return n;
1112 }
1113
1114 /* Append OP to the decision tree. */
1115
1116 dt_node *
1117 dt_node::append_op (operand *op, dt_node *parent, unsigned pos)
1118 {
1119 dt_operand *parent_ = safe_as_a<dt_operand *> (parent);
1120 dt_operand *n = new dt_operand (DT_OPERAND, op, 0, parent_, pos);
1121 return append_node (n);
1122 }
1123
1124 /* Append a DT_TRUE decision tree node. */
1125
1126 dt_node *
1127 dt_node::append_true_op (dt_node *parent, unsigned pos)
1128 {
1129 dt_operand *parent_ = safe_as_a<dt_operand *> (parent);
1130 dt_operand *n = new dt_operand (DT_TRUE, 0, 0, parent_, pos);
1131 return append_node (n);
1132 }
1133
1134 /* Append a DT_MATCH decision tree node. */
1135
1136 dt_node *
1137 dt_node::append_match_op (dt_operand *match_dop, dt_node *parent, unsigned pos)
1138 {
1139 dt_operand *parent_ = as_a<dt_operand *> (parent);
1140 dt_operand *n = new dt_operand (DT_MATCH, 0, match_dop, parent_, pos);
1141 return append_node (n);
1142 }
1143
1144 /* Append S to the decision tree. */
1145
1146 dt_node *
1147 dt_node::append_simplify (simplify *s, unsigned pattern_no,
1148 dt_operand **indexes)
1149 {
1150 dt_simplify *n = new dt_simplify (s, pattern_no, indexes);
1151 return append_node (n);
1152 }
1153
1154 /* Insert O into the decision tree and return the decision tree node found
1155 or created. */
1156
1157 dt_node *
1158 decision_tree::insert_operand (dt_node *p, operand *o, dt_operand **indexes,
1159 unsigned pos, dt_node *parent)
1160 {
1161 dt_node *q, *elm = 0;
1162
1163 if (capture *c = dyn_cast<capture *> (o))
1164 {
1165 unsigned capt_index = c->where;
1166
1167 if (indexes[capt_index] == 0)
1168 {
1169 if (c->what)
1170 q = insert_operand (p, c->what, indexes, pos, parent);
1171 else
1172 {
1173 q = elm = p->append_true_op (parent, pos);
1174 goto at_assert_elm;
1175 }
1176 // get to the last capture
1177 for (operand *what = c->what;
1178 what && is_a<capture *> (what);
1179 c = as_a<capture *> (what), what = c->what)
1180 ;
1181
1182 if (!c->what)
1183 {
1184 unsigned cc_index = c->where;
1185 dt_operand *match_op = indexes[cc_index];
1186
1187 dt_operand temp (dt_node::DT_TRUE, 0, 0);
1188 elm = decision_tree::find_node (p->kids, &temp);
1189
1190 if (elm == 0)
1191 {
1192 dt_operand temp (dt_node::DT_MATCH, 0, match_op);
1193 elm = decision_tree::find_node (p->kids, &temp);
1194 }
1195 }
1196 else
1197 {
1198 dt_operand temp (dt_node::DT_OPERAND, c->what, 0);
1199 elm = decision_tree::find_node (p->kids, &temp);
1200 }
1201
1202 at_assert_elm:
1203 gcc_assert (elm->type == dt_node::DT_TRUE
1204 || elm->type == dt_node::DT_OPERAND
1205 || elm->type == dt_node::DT_MATCH);
1206 indexes[capt_index] = static_cast<dt_operand *> (elm);
1207 return q;
1208 }
1209 else
1210 {
1211 p = p->append_match_op (indexes[capt_index], parent, pos);
1212 if (c->what)
1213 return insert_operand (p, c->what, indexes, 0, p);
1214 else
1215 return p;
1216 }
1217 }
1218 p = p->append_op (o, parent, pos);
1219 q = p;
1220
1221 if (expr *e = dyn_cast <expr *>(o))
1222 {
1223 for (unsigned i = 0; i < e->ops.length (); ++i)
1224 q = decision_tree::insert_operand (q, e->ops[i], indexes, i, p);
1225 }
1226
1227 return q;
1228 }
1229
1230 /* Insert S into the decision tree. */
1231
1232 void
1233 decision_tree::insert (struct simplify *s, unsigned pattern_no)
1234 {
1235 dt_operand **indexes = XCNEWVEC (dt_operand *, s->capture_max + 1);
1236 dt_node *p = decision_tree::insert_operand (root, s->match, indexes);
1237 p->append_simplify (s, pattern_no, indexes);
1238 }
1239
1240 /* Debug functions to dump the decision tree. */
1241
1242 DEBUG_FUNCTION void
1243 decision_tree::print_node (dt_node *p, FILE *f, unsigned indent)
1244 {
1245 if (p->type == dt_node::DT_NODE)
1246 fprintf (f, "root");
1247 else
1248 {
1249 fprintf (f, "|");
1250 for (unsigned i = 0; i < indent; i++)
1251 fprintf (f, "-");
1252
1253 if (p->type == dt_node::DT_OPERAND)
1254 {
1255 dt_operand *dop = static_cast<dt_operand *>(p);
1256 print_operand (dop->op, f, true);
1257 }
1258 else if (p->type == dt_node::DT_TRUE)
1259 fprintf (f, "true");
1260 else if (p->type == dt_node::DT_MATCH)
1261 fprintf (f, "match (%p)", (void *)((as_a<dt_operand *>(p))->match_dop));
1262 else if (p->type == dt_node::DT_SIMPLIFY)
1263 {
1264 dt_simplify *s = static_cast<dt_simplify *> (p);
1265 fprintf (f, "simplify_%u { ", s->pattern_no);
1266 for (int i = 0; i <= s->s->capture_max; ++i)
1267 fprintf (f, "%p, ", (void *) s->indexes[i]);
1268 fprintf (f, " } ");
1269 }
1270 }
1271
1272 fprintf (stderr, " (%p), %u, %u\n", (void *) p, p->level, p->kids.length ());
1273
1274 for (unsigned i = 0; i < p->kids.length (); ++i)
1275 decision_tree::print_node (p->kids[i], f, indent + 2);
1276 }
1277
1278 DEBUG_FUNCTION void
1279 decision_tree::print (FILE *f)
1280 {
1281 return decision_tree::print_node (root, f);
1282 }
1283
1284
1285
1286 /* Code generation off the decision tree and the refered AST nodes. */
1287
1288 bool
1289 is_conversion (id_base *op)
1290 {
1291 return (*op == CONVERT_EXPR
1292 || *op == NOP_EXPR
1293 || *op == FLOAT_EXPR
1294 || *op == FIX_TRUNC_EXPR
1295 || *op == VIEW_CONVERT_EXPR);
1296 }
1297
1298 /* Get the type to be used for generating operands of OP from the
1299 various sources. */
1300
1301 static const char *
1302 get_operand_type (id_base *op, const char *in_type,
1303 const char *expr_type,
1304 const char *other_oprnd_type)
1305 {
1306 /* Generally operands whose type does not match the type of the
1307 expression generated need to know their types but match and
1308 thus can fall back to 'other_oprnd_type'. */
1309 if (is_conversion (op))
1310 return other_oprnd_type;
1311 else if (*op == REALPART_EXPR
1312 || *op == IMAGPART_EXPR)
1313 return other_oprnd_type;
1314 else if (is_a <operator_id *> (op)
1315 && strcmp (as_a <operator_id *> (op)->tcc, "tcc_comparison") == 0)
1316 return other_oprnd_type;
1317 else
1318 {
1319 /* Otherwise all types should match - choose one in order of
1320 preference. */
1321 if (expr_type)
1322 return expr_type;
1323 else if (in_type)
1324 return in_type;
1325 else
1326 return other_oprnd_type;
1327 }
1328 }
1329
1330 /* Generate transform code for an expression. */
1331
1332 void
1333 expr::gen_transform (FILE *f, const char *dest, bool gimple, int depth,
1334 const char *in_type, dt_operand **indexes)
1335 {
1336 bool conversion_p = is_conversion (operation);
1337 const char *type = expr_type;
1338 char optype[64];
1339 if (type)
1340 /* If there was a type specification in the pattern use it. */
1341 ;
1342 else if (conversion_p)
1343 /* For conversions we need to build the expression using the
1344 outer type passed in. */
1345 type = in_type;
1346 else if (*operation == REALPART_EXPR
1347 || *operation == IMAGPART_EXPR)
1348 {
1349 /* __real and __imag use the component type of its operand. */
1350 sprintf (optype, "TREE_TYPE (TREE_TYPE (ops%d[0]))", depth);
1351 type = optype;
1352 }
1353 else if (is_a <operator_id *> (operation)
1354 && !strcmp (as_a <operator_id *> (operation)->tcc, "tcc_comparison"))
1355 {
1356 /* comparisons use boolean_type_node (or what gets in), but
1357 their operands need to figure out the types themselves. */
1358 sprintf (optype, "boolean_type_node");
1359 type = optype;
1360 }
1361 else
1362 {
1363 /* Other operations are of the same type as their first operand. */
1364 sprintf (optype, "TREE_TYPE (ops%d[0])", depth);
1365 type = optype;
1366 }
1367 if (!type)
1368 fatal ("two conversions in a row");
1369
1370 fprintf (f, "{\n");
1371 fprintf (f, " tree ops%d[%u], res;\n", depth, ops.length ());
1372 char op0type[64];
1373 snprintf (op0type, 64, "TREE_TYPE (ops%d[0])", depth);
1374 for (unsigned i = 0; i < ops.length (); ++i)
1375 {
1376 char dest[32];
1377 snprintf (dest, 32, " ops%d[%u]", depth, i);
1378 const char *optype
1379 = get_operand_type (operation, in_type, expr_type,
1380 i == 0 ? NULL : op0type);
1381 ops[i]->gen_transform (f, dest, gimple, depth + 1, optype, indexes);
1382 }
1383
1384 const char *opr;
1385 if (*operation == CONVERT_EXPR)
1386 opr = "NOP_EXPR";
1387 else
1388 opr = operation->id;
1389
1390 if (gimple)
1391 {
1392 /* ??? Have another helper that is like gimple_build but may
1393 fail if seq == NULL. */
1394 fprintf (f, " if (!seq)\n"
1395 " {\n"
1396 " res = gimple_simplify (%s, %s", opr, type);
1397 for (unsigned i = 0; i < ops.length (); ++i)
1398 fprintf (f, ", ops%d[%u]", depth, i);
1399 fprintf (f, ", seq, valueize);\n");
1400 fprintf (f, " if (!res) return false;\n");
1401 fprintf (f, " }\n");
1402 fprintf (f, " else\n");
1403 fprintf (f, " res = gimple_build (seq, UNKNOWN_LOCATION, %s, %s",
1404 opr, type);
1405 for (unsigned i = 0; i < ops.length (); ++i)
1406 fprintf (f, ", ops%d[%u]", depth, i);
1407 fprintf (f, ", valueize);\n");
1408 }
1409 else
1410 {
1411 if (operation->kind == id_base::CODE)
1412 fprintf (f, " res = fold_build%d_loc (loc, %s, %s",
1413 ops.length(), opr, type);
1414 else
1415 fprintf (f, " res = build_call_expr_loc (loc, "
1416 "builtin_decl_implicit (%s), %d", opr, ops.length());
1417 for (unsigned i = 0; i < ops.length (); ++i)
1418 fprintf (f, ", ops%d[%u]", depth, i);
1419 fprintf (f, ");\n");
1420 }
1421 fprintf (f, " %s = res;\n", dest);
1422 fprintf (f, "}\n");
1423 }
1424
1425 /* Generate code for a c_expr which is either the expression inside
1426 an if statement or a sequence of statements which computes a
1427 result to be stored to DEST. */
1428
1429 void
1430 c_expr::gen_transform (FILE *f, const char *dest,
1431 bool, int, const char *, dt_operand **)
1432 {
1433 if (dest && nr_stmts == 1)
1434 fprintf (f, "%s = ", dest);
1435
1436 unsigned stmt_nr = 1;
1437 for (unsigned i = 0; i < code.length (); ++i)
1438 {
1439 const cpp_token *token = &code[i];
1440
1441 /* Replace captures for code-gen. */
1442 if (token->type == CPP_ATSIGN)
1443 {
1444 const cpp_token *n = &code[i+1];
1445 if ((n->type == CPP_NUMBER
1446 || n->type == CPP_NAME)
1447 && !(n->flags & PREV_WHITE))
1448 {
1449 if (token->flags & PREV_WHITE)
1450 fputc (' ', f);
1451 const char *id;
1452 if (n->type == CPP_NUMBER)
1453 id = (const char *)n->val.str.text;
1454 else
1455 id = (const char *)CPP_HASHNODE (n->val.node.node)->ident.str;
1456 fprintf (f, "captures[%u]", *capture_ids->get(id));
1457 ++i;
1458 continue;
1459 }
1460 }
1461
1462 if (token->flags & PREV_WHITE)
1463 fputc (' ', f);
1464
1465 if (token->type == CPP_NAME)
1466 {
1467 const char *id = (const char *) NODE_NAME (token->val.node.node);
1468 unsigned j;
1469 for (j = 0; j < ids.length (); ++j)
1470 {
1471 if (strcmp (id, ids[j].id) == 0)
1472 {
1473 fprintf (f, "%s", ids[j].oper);
1474 break;
1475 }
1476 }
1477 if (j < ids.length ())
1478 continue;
1479 }
1480
1481 /* Output the token as string. */
1482 char *tk = (char *)cpp_token_as_text (r, token);
1483 fputs (tk, f);
1484
1485 if (token->type == CPP_SEMICOLON)
1486 {
1487 stmt_nr++;
1488 if (dest && stmt_nr == nr_stmts)
1489 fprintf (f, "\n %s = ", dest);
1490 else
1491 fputc ('\n', f);
1492 }
1493 }
1494 }
1495
1496 /* Generate transform code for a capture. */
1497
1498 void
1499 capture::gen_transform (FILE *f, const char *dest, bool gimple, int depth,
1500 const char *in_type, dt_operand **indexes)
1501 {
1502 if (what && is_a<expr *> (what))
1503 {
1504 if (indexes[where] == 0)
1505 {
1506 char buf[20];
1507 sprintf (buf, "captures[%u]", where);
1508 what->gen_transform (f, buf, gimple, depth, in_type, NULL);
1509 }
1510 }
1511
1512 fprintf (f, "%s = captures[%u];\n", dest, where);
1513 }
1514
1515 /* Return the name of the operand representing the decision tree node.
1516 Use NAME as space to generate it. */
1517
1518 char *
1519 dt_operand::get_name (char *name)
1520 {
1521 if (!parent)
1522 sprintf (name, "t");
1523 else if (parent->level == 1)
1524 sprintf (name, "op%u", pos);
1525 else if (parent->type == dt_node::DT_MATCH)
1526 return parent->get_name (name);
1527 else
1528 sprintf (name, "o%u%u", parent->level, pos);
1529 return name;
1530 }
1531
1532 /* Fill NAME with the operand name at position POS. */
1533
1534 void
1535 dt_operand::gen_opname (char *name, unsigned pos)
1536 {
1537 if (!parent)
1538 sprintf (name, "op%u", pos);
1539 else
1540 sprintf (name, "o%u%u", level, pos);
1541 }
1542
1543 /* Generate matching code for the decision tree operand which is
1544 a predicate. */
1545
1546 unsigned
1547 dt_operand::gen_predicate (FILE *f, const char *opname, bool gimple)
1548 {
1549 predicate *p = as_a <predicate *> (op);
1550
1551 if (p->p->matchers.exists ())
1552 {
1553 /* If this is a predicate generated from a pattern mangle its
1554 name and pass on the valueize hook. */
1555 if (gimple)
1556 fprintf (f, "if (gimple_%s (%s, valueize))\n", p->p->id, opname);
1557 else
1558 fprintf (f, "if (tree_%s (%s))\n", p->p->id, opname);
1559 }
1560 else
1561 fprintf (f, "if (%s (%s))\n", p->p->id, opname);
1562 fprintf (f, "{\n");
1563 return 1;
1564 }
1565
1566 /* Generate matching code for the decision tree operand which is
1567 a capture-match. */
1568
1569 unsigned
1570 dt_operand::gen_match_op (FILE *f, const char *opname)
1571 {
1572 char match_opname[20];
1573 match_dop->get_name (match_opname);
1574 fprintf (f, "if (%s == %s || operand_equal_p (%s, %s, 0))\n",
1575 opname, match_opname, opname, match_opname);
1576 fprintf (f, "{\n");
1577 return 1;
1578 }
1579
1580 /* Generate GIMPLE matching code for the decision tree operand. */
1581
1582 unsigned
1583 dt_operand::gen_gimple_expr (FILE *f)
1584 {
1585 expr *e = static_cast<expr *> (op);
1586 id_base *id = e->operation;
1587 unsigned n_ops = e->ops.length ();
1588
1589 for (unsigned i = 0; i < n_ops; ++i)
1590 {
1591 char child_opname[20];
1592 gen_opname (child_opname, i);
1593
1594 if (id->kind == id_base::CODE)
1595 {
1596 if (*id == REALPART_EXPR || *id == IMAGPART_EXPR
1597 || *id == BIT_FIELD_REF || *id == VIEW_CONVERT_EXPR)
1598 {
1599 /* ??? If this is a memory operation we can't (and should not)
1600 match this. The only sensible operand types are
1601 SSA names and invariants. */
1602 fprintf (f, "tree %s = TREE_OPERAND (gimple_assign_rhs1 (def_stmt), %i);\n",
1603 child_opname, i);
1604 fprintf (f, "if ((TREE_CODE (%s) == SSA_NAME\n"
1605 "|| is_gimple_min_invariant (%s))\n"
1606 "&& (%s = do_valueize (valueize, %s)))\n"
1607 "{\n", child_opname, child_opname, child_opname,
1608 child_opname);
1609 continue;
1610 }
1611 else
1612 fprintf (f, "tree %s = gimple_assign_rhs%u (def_stmt);\n",
1613 child_opname, i + 1);
1614 }
1615 else
1616 fprintf (f, "tree %s = gimple_call_arg (def_stmt, %u);\n",
1617 child_opname, i);
1618 fprintf (f, "if ((%s = do_valueize (valueize, %s)) != 0)\n",
1619 child_opname, child_opname);
1620 fprintf (f, "{\n");
1621 }
1622
1623 return n_ops;
1624 }
1625
1626 /* Generate GENERIC matching code for the decision tree operand. */
1627
1628 unsigned
1629 dt_operand::gen_generic_expr (FILE *f, const char *opname)
1630 {
1631 expr *e = static_cast<expr *> (op);
1632 unsigned n_ops = e->ops.length ();
1633
1634 for (unsigned i = 0; i < n_ops; ++i)
1635 {
1636 char child_opname[20];
1637 gen_opname (child_opname, i);
1638
1639 if (e->operation->kind == id_base::CODE)
1640 fprintf (f, "tree %s = TREE_OPERAND (%s, %u);\n",
1641 child_opname, opname, i);
1642 else
1643 fprintf (f, "tree %s = CALL_EXPR_ARG (%s, %u);\n",
1644 child_opname, opname, i);
1645 }
1646
1647 return 0;
1648 }
1649
1650 /* Generate matching code for the children of the decision tree node. */
1651
1652 void
1653 dt_node::gen_kids (FILE *f, bool gimple)
1654 {
1655 auto_vec<dt_operand *> gimple_exprs;
1656 auto_vec<dt_operand *> generic_exprs;
1657 auto_vec<dt_operand *> fns;
1658 auto_vec<dt_operand *> generic_fns;
1659 auto_vec<dt_operand *> preds;
1660 auto_vec<dt_node *> others;
1661 dt_node *true_operand = NULL;
1662
1663 for (unsigned i = 0; i < kids.length (); ++i)
1664 {
1665 if (kids[i]->type == dt_node::DT_OPERAND)
1666 {
1667 dt_operand *op = as_a<dt_operand *> (kids[i]);
1668 if (expr *e = dyn_cast <expr *> (op->op))
1669 {
1670 if (e->ops.length () == 0)
1671 generic_exprs.safe_push (op);
1672 else if (e->operation->kind == id_base::FN)
1673 {
1674 if (gimple)
1675 fns.safe_push (op);
1676 else
1677 generic_fns.safe_push (op);
1678 }
1679 else if (e->operation->kind == id_base::PREDICATE)
1680 preds.safe_push (op);
1681 else
1682 {
1683 if (gimple)
1684 gimple_exprs.safe_push (op);
1685 else
1686 generic_exprs.safe_push (op);
1687 }
1688 }
1689 else if (op->op->type == operand::OP_PREDICATE)
1690 others.safe_push (kids[i]);
1691 else
1692 gcc_unreachable ();
1693 }
1694 else if (kids[i]->type == dt_node::DT_MATCH
1695 || kids[i]->type == dt_node::DT_SIMPLIFY)
1696 others.safe_push (kids[i]);
1697 else if (kids[i]->type == dt_node::DT_TRUE)
1698 true_operand = kids[i];
1699 else
1700 gcc_unreachable ();
1701 }
1702
1703 char buf[128];
1704 char *kid_opname = buf;
1705
1706 unsigned exprs_len = gimple_exprs.length ();
1707 unsigned gexprs_len = generic_exprs.length ();
1708 unsigned fns_len = fns.length ();
1709 unsigned gfns_len = generic_fns.length ();
1710
1711 if (exprs_len || fns_len || gexprs_len || gfns_len)
1712 {
1713 if (exprs_len)
1714 gimple_exprs[0]->get_name (kid_opname);
1715 else if (fns_len)
1716 fns[0]->get_name (kid_opname);
1717 else if (gfns_len)
1718 generic_fns[0]->get_name (kid_opname);
1719 else
1720 generic_exprs[0]->get_name (kid_opname);
1721
1722 fprintf (f, "switch (TREE_CODE (%s))\n"
1723 "{\n", kid_opname);
1724 }
1725
1726 if (exprs_len || fns_len)
1727 {
1728 fprintf (f, "case SSA_NAME:\n");
1729 fprintf (f, "{\n");
1730 fprintf (f, "gimple def_stmt = SSA_NAME_DEF_STMT (%s);\n", kid_opname);
1731
1732 if (exprs_len)
1733 {
1734 fprintf (f, "if (is_gimple_assign (def_stmt))\n");
1735 fprintf (f, "switch (gimple_assign_rhs_code (def_stmt))\n"
1736 "{\n");
1737 for (unsigned i = 0; i < exprs_len; ++i)
1738 {
1739 expr *e = as_a <expr *> (gimple_exprs[i]->op);
1740 id_base *op = e->operation;
1741 if (*op == CONVERT_EXPR || *op == NOP_EXPR)
1742 fprintf (f, "CASE_CONVERT:\n");
1743 else
1744 fprintf (f, "case %s:\n", op->id);
1745 fprintf (f, "{\n");
1746 gimple_exprs[i]->gen (f, true);
1747 fprintf (f, "break;\n"
1748 "}\n");
1749 }
1750 fprintf (f, "default:;\n"
1751 "}\n");
1752 }
1753
1754 if (fns_len)
1755 {
1756 if (exprs_len)
1757 fprintf (f, "else ");
1758
1759 fprintf (f, "if (gimple_call_builtin_p (def_stmt, BUILT_IN_NORMAL))\n"
1760 "{\n"
1761 "tree fndecl = gimple_call_fndecl (def_stmt);\n"
1762 "switch (DECL_FUNCTION_CODE (fndecl))\n"
1763 "{\n");
1764
1765 for (unsigned i = 0; i < fns_len; ++i)
1766 {
1767 expr *e = as_a <expr *>(fns[i]->op);
1768 fprintf (f, "case %s:\n"
1769 "{\n", e->operation->id);
1770 fns[i]->gen (f, true);
1771 fprintf (f, "break;\n"
1772 "}\n");
1773 }
1774
1775 fprintf (f, "default:;\n"
1776 "}\n"
1777 "}\n");
1778 }
1779
1780 fprintf (f, "break;\n"
1781 "}\n");
1782 }
1783
1784 for (unsigned i = 0; i < generic_exprs.length (); ++i)
1785 {
1786 expr *e = as_a <expr *>(generic_exprs[i]->op);
1787 id_base *op = e->operation;
1788 if (*op == CONVERT_EXPR || *op == NOP_EXPR)
1789 fprintf (f, "CASE_CONVERT:\n");
1790 else
1791 fprintf (f, "case %s:\n", op->id);
1792 fprintf (f, "{\n");
1793 generic_exprs[i]->gen (f, gimple);
1794 fprintf (f, "break;\n"
1795 "}\n");
1796 }
1797
1798 if (gfns_len)
1799 {
1800 fprintf (f, "case CALL_EXPR:\n"
1801 "{\n"
1802 "tree fndecl = get_callee_fndecl (%s);\n"
1803 "if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)\n"
1804 "switch (DECL_FUNCTION_CODE (fndecl))\n"
1805 "{\n", kid_opname);
1806
1807 for (unsigned j = 0; j < generic_fns.length (); ++j)
1808 {
1809 expr *e = as_a <expr *>(generic_fns[j]->op);
1810 gcc_assert (e->operation->kind == id_base::FN);
1811
1812 fprintf (f, "case %s:\n"
1813 "{\n", e->operation->id);
1814 generic_fns[j]->gen (f, false);
1815 fprintf (f, "break;\n"
1816 "}\n");
1817 }
1818
1819 fprintf (f, "default:;\n"
1820 "}\n"
1821 "break;\n"
1822 "}\n");
1823 }
1824
1825 /* Close switch (TREE_CODE ()). */
1826 if (exprs_len || fns_len || gexprs_len || gfns_len)
1827 fprintf (f, "default:;\n"
1828 "}\n");
1829
1830 for (unsigned i = 0; i < preds.length (); ++i)
1831 {
1832 expr *e = as_a <expr *> (preds[i]->op);
1833 predicate_id *p = as_a <predicate_id *> (e->operation);
1834 preds[i]->get_name (kid_opname);
1835 fprintf (f, "tree %s_pops[%d];\n", kid_opname, p->nargs);
1836 fprintf (f, "if (%s_%s (%s, %s_pops%s))\n",
1837 gimple ? "gimple" : "tree",
1838 p->id, kid_opname, kid_opname,
1839 gimple ? ", valueize" : "");
1840 fprintf (f, "{\n");
1841 for (int j = 0; j < p->nargs; ++j)
1842 {
1843 char child_opname[20];
1844 preds[i]->gen_opname (child_opname, j);
1845 fprintf (f, "tree %s = %s_pops[%d];\n", child_opname, kid_opname, j);
1846 }
1847 preds[i]->gen_kids (f, gimple);
1848 fprintf (f, "}\n");
1849 }
1850
1851 for (unsigned i = 0; i < others.length (); ++i)
1852 others[i]->gen (f, gimple);
1853
1854 if (true_operand)
1855 true_operand->gen (f, gimple);
1856 }
1857
1858 /* Generate matching code for the decision tree operand. */
1859
1860 void
1861 dt_operand::gen (FILE *f, bool gimple)
1862 {
1863 char opname[20];
1864 get_name (opname);
1865
1866 unsigned n_braces = 0;
1867
1868 if (type == DT_OPERAND)
1869 switch (op->type)
1870 {
1871 case operand::OP_PREDICATE:
1872 n_braces = gen_predicate (f, opname, gimple);
1873 break;
1874
1875 case operand::OP_EXPR:
1876 if (gimple)
1877 n_braces = gen_gimple_expr (f);
1878 else
1879 n_braces = gen_generic_expr (f, opname);
1880 break;
1881
1882 default:
1883 gcc_unreachable ();
1884 }
1885 else if (type == DT_TRUE)
1886 ;
1887 else if (type == DT_MATCH)
1888 n_braces = gen_match_op (f, opname);
1889 else
1890 gcc_unreachable ();
1891
1892 gen_kids (f, gimple);
1893
1894 for (unsigned i = 0; i < n_braces; ++i)
1895 fprintf (f, "}\n");
1896 }
1897
1898
1899 /* For GENERIC we have to take care of wrapping multiple-used
1900 expressions with side-effects in save_expr and preserve side-effects
1901 of expressions with omit_one_operand. Analyze captures in
1902 match, result and with expressions and perform early-outs
1903 on the outermost match expression operands for cases we cannot
1904 handle. */
1905
1906 struct capture_info
1907 {
1908 capture_info (simplify *s);
1909 void walk_match (operand *o, unsigned toplevel_arg, bool);
1910 void walk_result (operand *o, bool);
1911 void walk_c_expr (c_expr *);
1912
1913 struct cinfo
1914 {
1915 bool expr_p;
1916 bool cse_p;
1917 bool force_no_side_effects_p;
1918 unsigned long toplevel_msk;
1919 int result_use_count;
1920 };
1921
1922 auto_vec<cinfo> info;
1923 unsigned long force_no_side_effects;
1924 };
1925
1926 /* Analyze captures in S. */
1927
1928 capture_info::capture_info (simplify *s)
1929 {
1930 expr *e;
1931 if (!s->result
1932 || ((e = dyn_cast <expr *> (s->result))
1933 && is_a <predicate_id *> (e->operation)))
1934 {
1935 force_no_side_effects = -1;
1936 return;
1937 }
1938
1939 force_no_side_effects = 0;
1940 info.safe_grow_cleared (s->capture_max + 1);
1941 e = as_a <expr *> (s->match);
1942 for (unsigned i = 0; i < e->ops.length (); ++i)
1943 walk_match (e->ops[i], i, false);
1944
1945 walk_result (s->result, false);
1946
1947 for (unsigned i = 0; i < s->ifexpr_vec.length (); ++i)
1948 if (s->ifexpr_vec[i].is_with)
1949 walk_c_expr (as_a <c_expr *>(s->ifexpr_vec[i].cexpr));
1950 }
1951
1952 /* Analyze captures in the match expression piece O. */
1953
1954 void
1955 capture_info::walk_match (operand *o, unsigned toplevel_arg, bool conditional_p)
1956 {
1957 if (capture *c = dyn_cast <capture *> (o))
1958 {
1959 info[c->where].toplevel_msk |= 1 << toplevel_arg;
1960 info[c->where].force_no_side_effects_p |= conditional_p;
1961 /* Mark expr (non-leaf) captures and recurse. */
1962 if (c->what
1963 && is_a <expr *> (c->what))
1964 {
1965 info[c->where].expr_p = true;
1966 walk_match (c->what, toplevel_arg, conditional_p);
1967 }
1968 }
1969 else if (expr *e = dyn_cast <expr *> (o))
1970 {
1971 for (unsigned i = 0; i < e->ops.length (); ++i)
1972 {
1973 bool cond_p = conditional_p;
1974 if (i == 0
1975 && *e->operation == COND_EXPR)
1976 cond_p = true;
1977 else if (*e->operation == TRUTH_ANDIF_EXPR
1978 || *e->operation == TRUTH_ORIF_EXPR)
1979 cond_p = true;
1980 walk_match (e->ops[i], toplevel_arg, cond_p);
1981 }
1982 }
1983 else if (is_a <predicate *> (o))
1984 {
1985 /* Mark non-captured leafs toplevel arg for checking. */
1986 force_no_side_effects |= 1 << toplevel_arg;
1987 }
1988 else
1989 gcc_unreachable ();
1990 }
1991
1992 /* Analyze captures in the result expression piece O. */
1993
1994 void
1995 capture_info::walk_result (operand *o, bool conditional_p)
1996 {
1997 if (capture *c = dyn_cast <capture *> (o))
1998 {
1999 info[c->where].result_use_count++;
2000 /* If we substitute an expression capture we don't know
2001 which captures this will end up using (well, we don't
2002 compute that). Force the uses to be side-effect free
2003 which means forcing the toplevels that reach the
2004 expression side-effect free. */
2005 if (info[c->where].expr_p)
2006 force_no_side_effects |= info[c->where].toplevel_msk;
2007 /* Mark CSE capture capture uses as forced to have
2008 no side-effects. */
2009 if (c->what
2010 && is_a <expr *> (c->what))
2011 {
2012 info[c->where].cse_p = true;
2013 walk_result (c->what, true);
2014 }
2015 }
2016 else if (expr *e = dyn_cast <expr *> (o))
2017 {
2018 for (unsigned i = 0; i < e->ops.length (); ++i)
2019 {
2020 bool cond_p = conditional_p;
2021 if (i == 0
2022 && *e->operation == COND_EXPR)
2023 cond_p = true;
2024 else if (*e->operation == TRUTH_ANDIF_EXPR
2025 || *e->operation == TRUTH_ORIF_EXPR)
2026 cond_p = true;
2027 walk_result (e->ops[i], cond_p);
2028 }
2029 }
2030 else if (c_expr *e = dyn_cast <c_expr *> (o))
2031 walk_c_expr (e);
2032 else
2033 gcc_unreachable ();
2034 }
2035
2036 /* Look for captures in the C expr E. */
2037
2038 void
2039 capture_info::walk_c_expr (c_expr *e)
2040 {
2041 /* Give up for C exprs mentioning captures not inside TREE_TYPE (). */
2042 unsigned p_depth = 0;
2043 for (unsigned i = 0; i < e->code.length (); ++i)
2044 {
2045 const cpp_token *t = &e->code[i];
2046 const cpp_token *n = i < e->code.length () - 1 ? &e->code[i+1] : NULL;
2047 if (t->type == CPP_NAME
2048 && strcmp ((const char *)CPP_HASHNODE
2049 (t->val.node.node)->ident.str, "TREE_TYPE") == 0
2050 && n->type == CPP_OPEN_PAREN)
2051 p_depth++;
2052 else if (t->type == CPP_CLOSE_PAREN
2053 && p_depth > 0)
2054 p_depth--;
2055 else if (p_depth == 0
2056 && t->type == CPP_ATSIGN
2057 && (n->type == CPP_NUMBER
2058 || n->type == CPP_NAME)
2059 && !(n->flags & PREV_WHITE))
2060 {
2061 const char *id;
2062 if (n->type == CPP_NUMBER)
2063 id = (const char *)n->val.str.text;
2064 else
2065 id = (const char *)CPP_HASHNODE (n->val.node.node)->ident.str;
2066 info[*e->capture_ids->get(id)].force_no_side_effects_p = true;
2067 }
2068 }
2069 }
2070
2071
2072 /* Generate code for the '(if ...)', '(with ..)' and actual transform
2073 step of a '(simplify ...)' or '(match ...)'. This handles everything
2074 that is not part of the decision tree (simplify->match). */
2075
2076 void
2077 dt_simplify::gen (FILE *f, bool gimple)
2078 {
2079 fprintf (f, "{\n");
2080 output_line_directive (f, s->result_location);
2081 if (s->capture_max >= 0)
2082 fprintf (f, "tree captures[%u] ATTRIBUTE_UNUSED = {};\n",
2083 s->capture_max + 1);
2084
2085 for (int i = 0; i <= s->capture_max; ++i)
2086 if (indexes[i])
2087 {
2088 char opname[20];
2089 fprintf (f, "captures[%u] = %s;\n", i, indexes[i]->get_name (opname));
2090 }
2091
2092 unsigned n_braces = 0;
2093 if (s->ifexpr_vec != vNULL)
2094 {
2095 for (unsigned i = 0; i < s->ifexpr_vec.length (); ++i)
2096 {
2097 if_or_with &w = s->ifexpr_vec[i];
2098 if (w.is_with)
2099 {
2100 fprintf (f, "{\n");
2101 output_line_directive (f, w.location);
2102 w.cexpr->gen_transform (f, NULL, true, 1, "type");
2103 n_braces++;
2104 }
2105 else
2106 {
2107 output_line_directive (f, w.location);
2108 fprintf (f, "if (");
2109 if (i == s->ifexpr_vec.length () - 1
2110 || s->ifexpr_vec[i+1].is_with)
2111 w.cexpr->gen_transform (f, NULL, true, 1, "type");
2112 else
2113 {
2114 unsigned j = i;
2115 do
2116 {
2117 if (j != i)
2118 {
2119 fprintf (f, "\n");
2120 output_line_directive (f, s->ifexpr_vec[j].location);
2121 fprintf (f, "&& ");
2122 }
2123 fprintf (f, "(");
2124 s->ifexpr_vec[j].cexpr->gen_transform (f, NULL,
2125 true, 1, "type");
2126 fprintf (f, ")");
2127 ++j;
2128 }
2129 while (j < s->ifexpr_vec.length ()
2130 && !s->ifexpr_vec[j].is_with);
2131 i = j - 1;
2132 }
2133 fprintf (f, ")\n");
2134 }
2135 }
2136 fprintf (f, "{\n");
2137 n_braces++;
2138 }
2139
2140 /* Analyze captures and perform early-outs on the incoming arguments
2141 that cover cases we cannot handle. */
2142 capture_info cinfo (s);
2143 expr *e;
2144 if (!gimple
2145 && s->result
2146 && !((e = dyn_cast <expr *> (s->result))
2147 && is_a <predicate_id *> (e->operation)))
2148 {
2149 for (unsigned i = 0; i < as_a <expr *> (s->match)->ops.length (); ++i)
2150 if (cinfo.force_no_side_effects & (1 << i))
2151 fprintf (f, "if (TREE_SIDE_EFFECTS (op%d)) return NULL_TREE;\n", i);
2152 for (int i = 0; i <= s->capture_max; ++i)
2153 if (cinfo.info[i].cse_p)
2154 ;
2155 else if (cinfo.info[i].force_no_side_effects_p
2156 && (cinfo.info[i].toplevel_msk
2157 & cinfo.force_no_side_effects) == 0)
2158 fprintf (f, "if (TREE_SIDE_EFFECTS (captures[%d])) "
2159 "return NULL_TREE;\n", i);
2160 else if ((cinfo.info[i].toplevel_msk
2161 & cinfo.force_no_side_effects) != 0)
2162 /* Mark capture as having no side-effects if we had to verify
2163 that via forced toplevel operand checks. */
2164 cinfo.info[i].force_no_side_effects_p = true;
2165 }
2166
2167 fprintf (f, "if (dump_file && (dump_flags & TDF_DETAILS)) "
2168 "fprintf (dump_file, \"Applying pattern ");
2169 output_line_directive (f, s->result_location, true);
2170 fprintf (f, ", %%s:%%d\\n\", __FILE__, __LINE__);\n");
2171
2172 operand *result = s->result;
2173 if (!result)
2174 {
2175 /* If there is no result then this is a predicate implementation. */
2176 fprintf (f, "return true;\n");
2177 }
2178 else if (gimple)
2179 {
2180 /* For GIMPLE simply drop NON_LVALUE_EXPR (which only appears
2181 in outermost position). */
2182 if (result->type == operand::OP_EXPR
2183 && *as_a <expr *> (result)->operation == NON_LVALUE_EXPR)
2184 result = as_a <expr *> (result)->ops[0];
2185 if (result->type == operand::OP_EXPR)
2186 {
2187 expr *e = as_a <expr *> (result);
2188 bool is_predicate = is_a <predicate_id *> (e->operation);
2189 if (!is_predicate)
2190 fprintf (f, "*res_code = %s;\n",
2191 *e->operation == CONVERT_EXPR
2192 ? "NOP_EXPR" : e->operation->id);
2193 for (unsigned j = 0; j < e->ops.length (); ++j)
2194 {
2195 char dest[32];
2196 snprintf (dest, 32, " res_ops[%d]", j);
2197 const char *optype
2198 = get_operand_type (e->operation,
2199 "type", e->expr_type,
2200 j == 0
2201 ? NULL : "TREE_TYPE (res_ops[0])");
2202 e->ops[j]->gen_transform (f, dest, true, 1, optype, indexes);
2203 }
2204
2205 /* Re-fold the toplevel result. It's basically an embedded
2206 gimple_build w/o actually building the stmt. */
2207 if (!is_predicate)
2208 fprintf (f, "gimple_resimplify%d (seq, res_code, type, "
2209 "res_ops, valueize);\n", e->ops.length ());
2210 }
2211 else if (result->type == operand::OP_CAPTURE
2212 || result->type == operand::OP_C_EXPR)
2213 {
2214 result->gen_transform (f, "res_ops[0]", true, 1, "type", indexes);
2215 fprintf (f, "*res_code = TREE_CODE (res_ops[0]);\n");
2216 }
2217 else
2218 gcc_unreachable ();
2219 fprintf (f, "return true;\n");
2220 }
2221 else /* GENERIC */
2222 {
2223 bool is_predicate = false;
2224 if (result->type == operand::OP_EXPR)
2225 {
2226 expr *e = as_a <expr *> (result);
2227 is_predicate = is_a <predicate_id *> (e->operation);
2228 /* Search for captures used multiple times in the result expression
2229 and dependent on TREE_SIDE_EFFECTS emit a SAVE_EXPR. */
2230 if (!is_predicate)
2231 for (int i = 0; i < s->capture_max + 1; ++i)
2232 {
2233 if (!cinfo.info[i].force_no_side_effects_p
2234 && cinfo.info[i].result_use_count > 1)
2235 fprintf (f, " if (TREE_SIDE_EFFECTS (captures[%d]))\n"
2236 " captures[%d] = save_expr (captures[%d]);\n",
2237 i, i, i);
2238 }
2239 for (unsigned j = 0; j < e->ops.length (); ++j)
2240 {
2241 char dest[32];
2242 if (is_predicate)
2243 snprintf (dest, 32, "res_ops[%d]", j);
2244 else
2245 {
2246 fprintf (f, " tree res_op%d;\n", j);
2247 snprintf (dest, 32, " res_op%d", j);
2248 }
2249 const char *optype
2250 = get_operand_type (e->operation,
2251 "type", e->expr_type,
2252 j == 0
2253 ? NULL : "TREE_TYPE (res_op0)");
2254 e->ops[j]->gen_transform (f, dest, false, 1, optype, indexes);
2255 }
2256 if (is_predicate)
2257 fprintf (f, "return true;\n");
2258 else
2259 {
2260 fprintf (f, " tree res;\n");
2261 /* Re-fold the toplevel result. Use non_lvalue to
2262 build NON_LVALUE_EXPRs so they get properly
2263 ignored when in GIMPLE form. */
2264 if (*e->operation == NON_LVALUE_EXPR)
2265 fprintf (f, " res = non_lvalue_loc (loc, res_op0);\n");
2266 else
2267 {
2268 if (e->operation->kind == id_base::CODE)
2269 fprintf (f, " res = fold_build%d_loc (loc, %s, type",
2270 e->ops.length (),
2271 *e->operation == CONVERT_EXPR
2272 ? "NOP_EXPR" : e->operation->id);
2273 else
2274 fprintf (f, " res = build_call_expr_loc "
2275 "(loc, builtin_decl_implicit (%s), %d",
2276 e->operation->id, e->ops.length());
2277 for (unsigned j = 0; j < e->ops.length (); ++j)
2278 fprintf (f, ", res_op%d", j);
2279 fprintf (f, ");\n");
2280 }
2281 }
2282 }
2283 else if (result->type == operand::OP_CAPTURE
2284 || result->type == operand::OP_C_EXPR)
2285
2286 {
2287 fprintf (f, " tree res;\n");
2288 s->result->gen_transform (f, " res", false, 1, "type", indexes);
2289 }
2290 else
2291 gcc_unreachable ();
2292 if (!is_predicate)
2293 {
2294 /* Search for captures not used in the result expression and dependent
2295 on TREE_SIDE_EFFECTS emit omit_one_operand. */
2296 for (int i = 0; i < s->capture_max + 1; ++i)
2297 {
2298 if (!cinfo.info[i].force_no_side_effects_p
2299 && !cinfo.info[i].expr_p
2300 && cinfo.info[i].result_use_count == 0)
2301 fprintf (f, " if (TREE_SIDE_EFFECTS (captures[%d]))\n"
2302 " res = build2_loc (loc, COMPOUND_EXPR, type,"
2303 " fold_ignored_result (captures[%d]), res);\n",
2304 i, i);
2305 }
2306 fprintf (f, " return res;\n");
2307 }
2308 }
2309
2310 for (unsigned i = 0; i < n_braces; ++i)
2311 fprintf (f, "}\n");
2312
2313 fprintf (f, "}\n");
2314 }
2315
2316 /* Main entry to generate code for matching GIMPLE IL off the decision
2317 tree. */
2318
2319 void
2320 decision_tree::gen_gimple (FILE *f)
2321 {
2322 for (unsigned n = 1; n <= 3; ++n)
2323 {
2324 fprintf (f, "\nstatic bool\n"
2325 "gimple_simplify (code_helper *res_code, tree *res_ops,\n"
2326 " gimple_seq *seq, tree (*valueize)(tree),\n"
2327 " code_helper code, tree type");
2328 for (unsigned i = 0; i < n; ++i)
2329 fprintf (f, ", tree op%d", i);
2330 fprintf (f, ")\n");
2331 fprintf (f, "{\n");
2332
2333 fprintf (f, "switch (code.get_rep())\n"
2334 "{\n");
2335 for (unsigned i = 0; i < root->kids.length (); i++)
2336 {
2337 dt_operand *dop = static_cast<dt_operand *>(root->kids[i]);
2338 expr *e = static_cast<expr *>(dop->op);
2339 if (e->ops.length () != n)
2340 continue;
2341
2342 if (*e->operation == CONVERT_EXPR
2343 || *e->operation == NOP_EXPR)
2344 fprintf (f, "CASE_CONVERT:\n");
2345 else
2346 fprintf (f, "case %s%s:\n",
2347 is_a <fn_id *> (e->operation) ? "-" : "",
2348 e->operation->id);
2349 fprintf (f, "{\n");
2350 dop->gen_kids (f, true);
2351 fprintf (f, "break;\n");
2352 fprintf (f, "}\n");
2353 }
2354 fprintf (f, "default:;\n"
2355 "}\n");
2356
2357 fprintf (f, "return false;\n");
2358 fprintf (f, "}\n");
2359 }
2360 }
2361
2362 /* Main entry to generate code for matching GENERIC IL off the decision
2363 tree. */
2364
2365 void
2366 decision_tree::gen_generic (FILE *f)
2367 {
2368 for (unsigned n = 1; n <= 3; ++n)
2369 {
2370 fprintf (f, "\ntree\n"
2371 "generic_simplify (location_t loc, enum tree_code code, "
2372 "tree type ATTRIBUTE_UNUSED");
2373 for (unsigned i = 0; i < n; ++i)
2374 fprintf (f, ", tree op%d", i);
2375 fprintf (f, ")\n");
2376 fprintf (f, "{\n");
2377
2378 fprintf (f, "switch (code)\n"
2379 "{\n");
2380 for (unsigned i = 0; i < root->kids.length (); i++)
2381 {
2382 dt_operand *dop = static_cast<dt_operand *>(root->kids[i]);
2383 expr *e = static_cast<expr *>(dop->op);
2384 if (e->ops.length () != n
2385 /* Builtin simplifications are somewhat premature on
2386 GENERIC. The following drops patterns with outermost
2387 calls. It's easy to emit overloads for function code
2388 though if necessary. */
2389 || e->operation->kind != id_base::CODE)
2390 continue;
2391
2392 operator_id *op_id = static_cast <operator_id *> (e->operation);
2393 if (op_id->code == NOP_EXPR || op_id->code == CONVERT_EXPR)
2394 fprintf (f, "CASE_CONVERT:\n");
2395 else
2396 fprintf (f, "case %s:\n", e->operation->id);
2397 fprintf (f, "{\n");
2398 dop->gen_kids (f, false);
2399 fprintf (f, "break;\n"
2400 "}\n");
2401 }
2402 fprintf (f, "default:;\n"
2403 "}\n");
2404
2405 fprintf (f, "return NULL_TREE;\n");
2406 fprintf (f, "}\n");
2407 }
2408 }
2409
2410 /* Output code to implement the predicate P from the decision tree DT. */
2411
2412 void
2413 write_predicate (FILE *f, predicate_id *p, decision_tree &dt, bool gimple)
2414 {
2415 fprintf (f, "\nbool\n"
2416 "%s%s (tree t%s%s)\n"
2417 "{\n", gimple ? "gimple_" : "tree_", p->id,
2418 p->nargs > 0 ? ", tree *res_ops" : "",
2419 gimple ? ", tree (*valueize)(tree)" : "");
2420 /* Conveniently make 'type' available. */
2421 fprintf (f, "tree type = TREE_TYPE (t);\n");
2422
2423 if (!gimple)
2424 fprintf (f, "if (TREE_SIDE_EFFECTS (t)) return false;\n");
2425 dt.root->gen_kids (f, gimple);
2426
2427 fprintf (f, "return false;\n"
2428 "}\n");
2429 }
2430
2431 /* Write the common header for the GIMPLE/GENERIC IL matching routines. */
2432
2433 static void
2434 write_header (FILE *f, const char *head)
2435 {
2436 fprintf (f, "/* Generated automatically by the program `genmatch' from\n");
2437 fprintf (f, " a IL pattern matching and simplification description. */\n");
2438
2439 /* Include the header instead of writing it awkwardly quoted here. */
2440 fprintf (f, "\n#include \"%s\"\n", head);
2441 }
2442
2443
2444
2445 /* AST parsing. */
2446
2447 class parser
2448 {
2449 public:
2450 parser (cpp_reader *);
2451
2452 private:
2453 const cpp_token *next ();
2454 const cpp_token *peek ();
2455 const cpp_token *peek_ident (const char * = NULL);
2456 const cpp_token *expect (enum cpp_ttype);
2457 void eat_token (enum cpp_ttype);
2458 const char *get_string ();
2459 const char *get_ident ();
2460 void eat_ident (const char *);
2461 const char *get_number ();
2462
2463 id_base *parse_operation ();
2464 operand *parse_capture (operand *);
2465 operand *parse_expr ();
2466 c_expr *parse_c_expr (cpp_ttype);
2467 operand *parse_op ();
2468
2469 void parse_pattern ();
2470 void parse_simplify (source_location, vec<simplify *>&, predicate_id *,
2471 expr *);
2472 void parse_for (source_location);
2473 void parse_if (source_location);
2474 void parse_predicates (source_location);
2475
2476 cpp_reader *r;
2477 vec<if_or_with> active_ifs;
2478 vec<vec<user_id *> > active_fors;
2479
2480 cid_map_t *capture_ids;
2481
2482 public:
2483 vec<simplify *> simplifiers;
2484 vec<predicate_id *> user_predicates;
2485 };
2486
2487 /* Lexing helpers. */
2488
2489 /* Read the next non-whitespace token from R. */
2490
2491 const cpp_token *
2492 parser::next ()
2493 {
2494 const cpp_token *token;
2495 do
2496 {
2497 token = cpp_get_token (r);
2498 }
2499 while (token->type == CPP_PADDING
2500 && token->type != CPP_EOF);
2501 return token;
2502 }
2503
2504 /* Peek at the next non-whitespace token from R. */
2505
2506 const cpp_token *
2507 parser::peek ()
2508 {
2509 const cpp_token *token;
2510 unsigned i = 0;
2511 do
2512 {
2513 token = cpp_peek_token (r, i++);
2514 }
2515 while (token->type == CPP_PADDING
2516 && token->type != CPP_EOF);
2517 /* If we peek at EOF this is a fatal error as it leaves the
2518 cpp_reader in unusable state. Assume we really wanted a
2519 token and thus this EOF is unexpected. */
2520 if (token->type == CPP_EOF)
2521 fatal_at (token, "unexpected end of file");
2522 return token;
2523 }
2524
2525 /* Peek at the next identifier token (or return NULL if the next
2526 token is not an identifier or equal to ID if supplied). */
2527
2528 const cpp_token *
2529 parser::peek_ident (const char *id)
2530 {
2531 const cpp_token *token = peek ();
2532 if (token->type != CPP_NAME)
2533 return 0;
2534
2535 if (id == 0)
2536 return token;
2537
2538 const char *t = (const char *) CPP_HASHNODE (token->val.node.node)->ident.str;
2539 if (strcmp (id, t) == 0)
2540 return token;
2541
2542 return 0;
2543 }
2544
2545 /* Read the next token from R and assert it is of type TK. */
2546
2547 const cpp_token *
2548 parser::expect (enum cpp_ttype tk)
2549 {
2550 const cpp_token *token = next ();
2551 if (token->type != tk)
2552 fatal_at (token, "expected %s, got %s",
2553 cpp_type2name (tk, 0), cpp_type2name (token->type, 0));
2554
2555 return token;
2556 }
2557
2558 /* Consume the next token from R and assert it is of type TK. */
2559
2560 void
2561 parser::eat_token (enum cpp_ttype tk)
2562 {
2563 expect (tk);
2564 }
2565
2566 /* Read the next token from R and assert it is of type CPP_STRING and
2567 return its value. */
2568
2569 const char *
2570 parser::get_string ()
2571 {
2572 const cpp_token *token = expect (CPP_STRING);
2573 return (const char *)token->val.str.text;
2574 }
2575
2576 /* Read the next token from R and assert it is of type CPP_NAME and
2577 return its value. */
2578
2579 const char *
2580 parser::get_ident ()
2581 {
2582 const cpp_token *token = expect (CPP_NAME);
2583 return (const char *)CPP_HASHNODE (token->val.node.node)->ident.str;
2584 }
2585
2586 /* Eat an identifier token with value S from R. */
2587
2588 void
2589 parser::eat_ident (const char *s)
2590 {
2591 const cpp_token *token = peek ();
2592 const char *t = get_ident ();
2593 if (strcmp (s, t) != 0)
2594 fatal_at (token, "expected '%s' got '%s'\n", s, t);
2595 }
2596
2597 /* Read the next token from R and assert it is of type CPP_NUMBER and
2598 return its value. */
2599
2600 const char *
2601 parser::get_number ()
2602 {
2603 const cpp_token *token = expect (CPP_NUMBER);
2604 return (const char *)token->val.str.text;
2605 }
2606
2607
2608 /* Parse the operator ID, special-casing convert?, convert1? and
2609 convert2? */
2610
2611 id_base *
2612 parser::parse_operation ()
2613 {
2614 const cpp_token *id_tok = peek ();
2615 const char *id = get_ident ();
2616 const cpp_token *token = peek ();
2617 if (strcmp (id, "convert0") == 0)
2618 fatal_at (id_tok, "use 'convert?' here");
2619 if (token->type == CPP_QUERY
2620 && !(token->flags & PREV_WHITE))
2621 {
2622 if (strcmp (id, "convert") == 0)
2623 id = "convert0";
2624 else if (strcmp (id, "convert1") == 0)
2625 ;
2626 else if (strcmp (id, "convert2") == 0)
2627 ;
2628 else
2629 fatal_at (id_tok, "non-convert operator conditionalized");
2630 eat_token (CPP_QUERY);
2631 }
2632 else if (strcmp (id, "convert1") == 0
2633 || strcmp (id, "convert2") == 0)
2634 fatal_at (id_tok, "expected '?' after conditional operator");
2635 id_base *op = get_operator (id);
2636 if (!op)
2637 fatal_at (id_tok, "unknown operator %s", id);
2638 return op;
2639 }
2640
2641 /* Parse a capture.
2642 capture = '@'<number> */
2643
2644 struct operand *
2645 parser::parse_capture (operand *op)
2646 {
2647 eat_token (CPP_ATSIGN);
2648 const cpp_token *token = peek ();
2649 const char *id;
2650 if (token->type == CPP_NUMBER)
2651 id = get_number ();
2652 else if (token->type == CPP_NAME)
2653 id = get_ident ();
2654 else
2655 fatal_at (token, "expected number or identifier");
2656 unsigned next_id = capture_ids->elements ();
2657 bool existed;
2658 unsigned &num = capture_ids->get_or_insert (id, &existed);
2659 if (!existed)
2660 num = next_id;
2661 return new capture (num, op);
2662 }
2663
2664 /* Parse an expression
2665 expr = '(' <operation>[capture][flag][type] <operand>... ')' */
2666
2667 struct operand *
2668 parser::parse_expr ()
2669 {
2670 expr *e = new expr (parse_operation ());
2671 const cpp_token *token = peek ();
2672 operand *op;
2673 bool is_commutative = false;
2674 const char *expr_type = NULL;
2675
2676 if (token->type == CPP_COLON
2677 && !(token->flags & PREV_WHITE))
2678 {
2679 eat_token (CPP_COLON);
2680 token = peek ();
2681 if (token->type == CPP_NAME
2682 && !(token->flags & PREV_WHITE))
2683 {
2684 const char *s = get_ident ();
2685 if (s[0] == 'c' && !s[1])
2686 is_commutative = true;
2687 else if (s[1] != '\0')
2688 expr_type = s;
2689 else
2690 fatal_at (token, "flag %s not recognized", s);
2691 token = peek ();
2692 }
2693 else
2694 fatal_at (token, "expected flag or type specifying identifier");
2695 }
2696
2697 if (token->type == CPP_ATSIGN
2698 && !(token->flags & PREV_WHITE))
2699 op = parse_capture (e);
2700 else
2701 op = e;
2702 do
2703 {
2704 const cpp_token *token = peek ();
2705 if (token->type == CPP_CLOSE_PAREN)
2706 {
2707 if (e->operation->nargs != -1
2708 && e->operation->nargs != (int) e->ops.length ())
2709 fatal_at (token, "'%s' expects %u operands, not %u",
2710 e->operation->id, e->operation->nargs, e->ops.length ());
2711 if (is_commutative)
2712 {
2713 if (e->ops.length () == 2)
2714 e->is_commutative = true;
2715 else
2716 fatal_at (token, "only binary operators or function with "
2717 "two arguments can be marked commutative");
2718 }
2719 e->expr_type = expr_type;
2720 return op;
2721 }
2722 e->append_op (parse_op ());
2723 }
2724 while (1);
2725 }
2726
2727 /* Lex native C code delimited by START recording the preprocessing tokens
2728 for later processing.
2729 c_expr = ('{'|'(') <pp token>... ('}'|')') */
2730
2731 c_expr *
2732 parser::parse_c_expr (cpp_ttype start)
2733 {
2734 const cpp_token *token;
2735 cpp_ttype end;
2736 unsigned opencnt;
2737 vec<cpp_token> code = vNULL;
2738 unsigned nr_stmts = 0;
2739 eat_token (start);
2740 if (start == CPP_OPEN_PAREN)
2741 end = CPP_CLOSE_PAREN;
2742 else if (start == CPP_OPEN_BRACE)
2743 end = CPP_CLOSE_BRACE;
2744 else
2745 gcc_unreachable ();
2746 opencnt = 1;
2747 do
2748 {
2749 token = next ();
2750
2751 /* Count brace pairs to find the end of the expr to match. */
2752 if (token->type == start)
2753 opencnt++;
2754 else if (token->type == end
2755 && --opencnt == 0)
2756 break;
2757
2758 /* This is a lame way of counting the number of statements. */
2759 if (token->type == CPP_SEMICOLON)
2760 nr_stmts++;
2761
2762 /* Record the token. */
2763 code.safe_push (*token);
2764 }
2765 while (1);
2766 return new c_expr (r, code, nr_stmts, vNULL, capture_ids);
2767 }
2768
2769 /* Parse an operand which is either an expression, a predicate or
2770 a standalone capture.
2771 op = predicate | expr | c_expr | capture */
2772
2773 struct operand *
2774 parser::parse_op ()
2775 {
2776 const cpp_token *token = peek ();
2777 struct operand *op = NULL;
2778 if (token->type == CPP_OPEN_PAREN)
2779 {
2780 eat_token (CPP_OPEN_PAREN);
2781 op = parse_expr ();
2782 eat_token (CPP_CLOSE_PAREN);
2783 }
2784 else if (token->type == CPP_OPEN_BRACE)
2785 {
2786 op = parse_c_expr (CPP_OPEN_BRACE);
2787 }
2788 else
2789 {
2790 /* Remaining ops are either empty or predicates */
2791 if (token->type == CPP_NAME)
2792 {
2793 const char *id = get_ident ();
2794 id_base *opr = get_operator (id);
2795 if (!opr)
2796 fatal_at (token, "expected predicate name");
2797 if (operator_id *code = dyn_cast <operator_id *> (opr))
2798 {
2799 if (code->nargs != 0)
2800 fatal_at (token, "using an operator with operands as predicate");
2801 /* Parse the zero-operand operator "predicates" as
2802 expression. */
2803 op = new expr (opr);
2804 }
2805 else if (predicate_id *p = dyn_cast <predicate_id *> (opr))
2806 op = new predicate (p);
2807 else
2808 fatal_at (token, "using an unsupported operator as predicate");
2809 token = peek ();
2810 if (token->flags & PREV_WHITE)
2811 return op;
2812 }
2813 else if (token->type != CPP_COLON
2814 && token->type != CPP_ATSIGN)
2815 fatal_at (token, "expected expression or predicate");
2816 /* optionally followed by a capture and a predicate. */
2817 if (token->type == CPP_COLON)
2818 fatal_at (token, "not implemented: predicate on leaf operand");
2819 if (token->type == CPP_ATSIGN)
2820 op = parse_capture (op);
2821 }
2822
2823 return op;
2824 }
2825
2826 /* Parse
2827 simplify = 'simplify' <expr> <result-op>
2828 or
2829 match = 'match' <ident> <expr> [<result-op>]
2830 with
2831 <result-op> = <op> | <if> | <with>
2832 <if> = '(' 'if' '(' <c-expr> ')' <result-op> ')'
2833 <with> = '(' 'with' '{' <c-expr> '}' <result-op> ')'
2834 and fill SIMPLIFIERS with the results. */
2835
2836 void
2837 parser::parse_simplify (source_location match_location,
2838 vec<simplify *>& simplifiers, predicate_id *matcher,
2839 expr *result)
2840 {
2841 /* Reset the capture map. */
2842 capture_ids = new cid_map_t;
2843
2844 const cpp_token *loc = peek ();
2845 struct operand *match = parse_op ();
2846 if (match->type == operand::OP_CAPTURE && !matcher)
2847 fatal_at (loc, "outermost expression cannot be captured");
2848 if (match->type == operand::OP_EXPR
2849 && is_a <predicate_id *> (as_a <expr *> (match)->operation))
2850 fatal_at (loc, "outermost expression cannot be a predicate");
2851
2852 const cpp_token *token = peek ();
2853
2854 /* If this if is immediately closed then it is part of a predicate
2855 definition. Push it. */
2856 if (token->type == CPP_CLOSE_PAREN)
2857 {
2858 if (!matcher)
2859 fatal_at (token, "expected transform expression");
2860 simplifiers.safe_push
2861 (new simplify (match, match_location, result, token->src_loc,
2862 active_ifs.copy (), active_fors.copy (),
2863 capture_ids));
2864 return;
2865 }
2866
2867 unsigned active_ifs_len = active_ifs.length ();
2868 while (1)
2869 {
2870 if (token->type == CPP_OPEN_PAREN)
2871 {
2872 source_location paren_loc = token->src_loc;
2873 eat_token (CPP_OPEN_PAREN);
2874 if (peek_ident ("if"))
2875 {
2876 eat_ident ("if");
2877 active_ifs.safe_push (if_or_with (parse_c_expr (CPP_OPEN_PAREN),
2878 token->src_loc, false));
2879 /* If this if is immediately closed then it contains a
2880 manual matcher or is part of a predicate definition.
2881 Push it. */
2882 if (peek ()->type == CPP_CLOSE_PAREN)
2883 {
2884 if (!matcher)
2885 fatal_at (token, "manual transform not implemented");
2886 simplifiers.safe_push
2887 (new simplify (match, match_location, result,
2888 paren_loc, active_ifs.copy (),
2889 active_fors.copy (), capture_ids));
2890 }
2891 }
2892 else if (peek_ident ("with"))
2893 {
2894 eat_ident ("with");
2895 /* Parse (with c-expr expr) as (if-with (true) expr). */
2896 c_expr *e = parse_c_expr (CPP_OPEN_BRACE);
2897 e->nr_stmts = 0;
2898 active_ifs.safe_push (if_or_with (e, token->src_loc, true));
2899 }
2900 else
2901 {
2902 operand *op = result;
2903 if (!matcher)
2904 op = parse_expr ();
2905 simplifiers.safe_push
2906 (new simplify (match, match_location, op,
2907 token->src_loc, active_ifs.copy (),
2908 active_fors.copy (), capture_ids));
2909 eat_token (CPP_CLOSE_PAREN);
2910 /* A "default" result closes the enclosing scope. */
2911 if (active_ifs.length () > active_ifs_len)
2912 {
2913 eat_token (CPP_CLOSE_PAREN);
2914 active_ifs.pop ();
2915 }
2916 else
2917 return;
2918 }
2919 }
2920 else if (token->type == CPP_CLOSE_PAREN)
2921 {
2922 /* Close a scope if requested. */
2923 if (active_ifs.length () > active_ifs_len)
2924 {
2925 eat_token (CPP_CLOSE_PAREN);
2926 active_ifs.pop ();
2927 token = peek ();
2928 }
2929 else
2930 return;
2931 }
2932 else
2933 {
2934 if (matcher)
2935 fatal_at (token, "expected match operand expression");
2936 simplifiers.safe_push
2937 (new simplify (match, match_location,
2938 matcher ? result : parse_op (),
2939 token->src_loc, active_ifs.copy (),
2940 active_fors.copy (), capture_ids));
2941 /* A "default" result closes the enclosing scope. */
2942 if (active_ifs.length () > active_ifs_len)
2943 {
2944 eat_token (CPP_CLOSE_PAREN);
2945 active_ifs.pop ();
2946 }
2947 else
2948 return;
2949 }
2950 token = peek ();
2951 }
2952 }
2953
2954 /* Parsing of the outer control structures. */
2955
2956 /* Parse a for expression
2957 for = '(' 'for' <subst>... <pattern> ')'
2958 subst = <ident> '(' <ident>... ')' */
2959
2960 void
2961 parser::parse_for (source_location)
2962 {
2963 vec<user_id *> user_ids = vNULL;
2964 const cpp_token *token;
2965 unsigned min_n_opers = 0, max_n_opers = 0;
2966
2967 while (1)
2968 {
2969 token = peek_ident ();
2970 if (token == 0)
2971 break;
2972
2973 /* Insert the user defined operators into the operator hash. */
2974 const char *id = get_ident ();
2975 user_id *op = new user_id (id);
2976 id_base **slot = operators->find_slot_with_hash (op, op->hashval, INSERT);
2977 if (*slot)
2978 fatal_at (token, "operator already defined");
2979 *slot = op;
2980 user_ids.safe_push (op);
2981
2982 eat_token (CPP_OPEN_PAREN);
2983
2984 int arity = -1;
2985 while ((token = peek_ident ()) != 0)
2986 {
2987 const char *oper = get_ident ();
2988 id_base *idb = get_operator (oper);
2989 if (idb == NULL)
2990 fatal_at (token, "no such operator '%s'", oper);
2991 if (*idb == CONVERT0 || *idb == CONVERT1 || *idb == CONVERT2)
2992 fatal_at (token, "conditional operators cannot be used inside for");
2993
2994 if (arity == -1)
2995 arity = idb->nargs;
2996 else if (idb->nargs == -1)
2997 ;
2998 else if (idb->nargs != arity)
2999 fatal_at (token, "operator '%s' with arity %d does not match "
3000 "others with arity %d", oper, idb->nargs, arity);
3001
3002 op->substitutes.safe_push (idb);
3003 }
3004 op->nargs = arity;
3005 token = expect (CPP_CLOSE_PAREN);
3006
3007 unsigned nsubstitutes = op->substitutes.length ();
3008 if (nsubstitutes == 0)
3009 fatal_at (token, "A user-defined operator must have at least "
3010 "one substitution");
3011 if (max_n_opers == 0)
3012 {
3013 min_n_opers = nsubstitutes;
3014 max_n_opers = nsubstitutes;
3015 }
3016 else
3017 {
3018 if (nsubstitutes % min_n_opers != 0
3019 && min_n_opers % nsubstitutes != 0)
3020 fatal_at (token, "All user-defined identifiers must have a "
3021 "multiple number of operator substitutions of the "
3022 "smallest number of substitutions");
3023 if (nsubstitutes < min_n_opers)
3024 min_n_opers = nsubstitutes;
3025 else if (nsubstitutes > max_n_opers)
3026 max_n_opers = nsubstitutes;
3027 }
3028 }
3029
3030 unsigned n_ids = user_ids.length ();
3031 if (n_ids == 0)
3032 fatal_at (token, "for requires at least one user-defined identifier");
3033
3034 token = peek ();
3035 if (token->type == CPP_CLOSE_PAREN)
3036 fatal_at (token, "no pattern defined in for");
3037
3038 active_fors.safe_push (user_ids);
3039 while (1)
3040 {
3041 token = peek ();
3042 if (token->type == CPP_CLOSE_PAREN)
3043 break;
3044 parse_pattern ();
3045 }
3046 active_fors.pop ();
3047
3048 /* Remove user-defined operators from the hash again. */
3049 for (unsigned i = 0; i < user_ids.length (); ++i)
3050 operators->remove_elt (user_ids[i]);
3051 }
3052
3053 /* Parse an outer if expression.
3054 if = '(' 'if' '(' <c-expr> ')' <pattern> ')' */
3055
3056 void
3057 parser::parse_if (source_location loc)
3058 {
3059 operand *ifexpr = parse_c_expr (CPP_OPEN_PAREN);
3060
3061 const cpp_token *token = peek ();
3062 if (token->type == CPP_CLOSE_PAREN)
3063 fatal_at (token, "no pattern defined in if");
3064
3065 active_ifs.safe_push (if_or_with (ifexpr, loc, false));
3066 while (1)
3067 {
3068 const cpp_token *token = peek ();
3069 if (token->type == CPP_CLOSE_PAREN)
3070 break;
3071
3072 parse_pattern ();
3073 }
3074 active_ifs.pop ();
3075 }
3076
3077 /* Parse a list of predefined predicate identifiers.
3078 preds = '(' 'define_predicates' <ident>... ')' */
3079
3080 void
3081 parser::parse_predicates (source_location)
3082 {
3083 do
3084 {
3085 const cpp_token *token = peek ();
3086 if (token->type != CPP_NAME)
3087 break;
3088
3089 add_predicate (get_ident ());
3090 }
3091 while (1);
3092 }
3093
3094 /* Parse outer control structures.
3095 pattern = <preds>|<for>|<if>|<simplify>|<match> */
3096
3097 void
3098 parser::parse_pattern ()
3099 {
3100 /* All clauses start with '('. */
3101 eat_token (CPP_OPEN_PAREN);
3102 const cpp_token *token = peek ();
3103 const char *id = get_ident ();
3104 if (strcmp (id, "simplify") == 0)
3105 parse_simplify (token->src_loc, simplifiers, NULL, NULL);
3106 else if (strcmp (id, "match") == 0)
3107 {
3108 bool with_args = false;
3109 if (peek ()->type == CPP_OPEN_PAREN)
3110 {
3111 eat_token (CPP_OPEN_PAREN);
3112 with_args = true;
3113 }
3114 const char *name = get_ident ();
3115 id_base *id = get_operator (name);
3116 predicate_id *p;
3117 if (!id)
3118 {
3119 p = add_predicate (name);
3120 user_predicates.safe_push (p);
3121 }
3122 else if ((p = dyn_cast <predicate_id *> (id)))
3123 ;
3124 else
3125 fatal_at (token, "cannot add a match to a non-predicate ID");
3126 /* Parse (match <id> <arg>... (match-expr)) here. */
3127 expr *e = NULL;
3128 if (with_args)
3129 {
3130 e = new expr (p);
3131 while (peek ()->type == CPP_ATSIGN)
3132 e->append_op (parse_capture (NULL));
3133 eat_token (CPP_CLOSE_PAREN);
3134 }
3135 if (p->nargs != -1
3136 && ((e && e->ops.length () != (unsigned)p->nargs)
3137 || (!e && p->nargs != 0)))
3138 fatal_at (token, "non-matching number of match operands");
3139 p->nargs = e ? e->ops.length () : 0;
3140 parse_simplify (token->src_loc, p->matchers, p, e);
3141 }
3142 else if (strcmp (id, "for") == 0)
3143 parse_for (token->src_loc);
3144 else if (strcmp (id, "if") == 0)
3145 parse_if (token->src_loc);
3146 else if (strcmp (id, "define_predicates") == 0)
3147 {
3148 if (active_ifs.length () > 0
3149 || active_fors.length () > 0)
3150 fatal_at (token, "define_predicates inside if or for is not supported");
3151 parse_predicates (token->src_loc);
3152 }
3153 else
3154 fatal_at (token, "expected %s'simplify', 'match', 'for' or 'if'",
3155 active_ifs.length () == 0 && active_fors.length () == 0
3156 ? "'define_predicates', " : "");
3157
3158 eat_token (CPP_CLOSE_PAREN);
3159 }
3160
3161 /* Main entry of the parser. Repeatedly parse outer control structures. */
3162
3163 parser::parser (cpp_reader *r_)
3164 {
3165 r = r_;
3166 active_ifs = vNULL;
3167 active_fors = vNULL;
3168 simplifiers = vNULL;
3169 user_predicates = vNULL;
3170
3171 const cpp_token *token = next ();
3172 while (token->type != CPP_EOF)
3173 {
3174 _cpp_backup_tokens (r, 1);
3175 parse_pattern ();
3176 token = next ();
3177 }
3178 }
3179
3180
3181 /* Helper for the linemap code. */
3182
3183 static size_t
3184 round_alloc_size (size_t s)
3185 {
3186 return s;
3187 }
3188
3189
3190 /* The genmatch generator progam. It reads from a pattern description
3191 and outputs GIMPLE or GENERIC IL matching and simplification routines. */
3192
3193 int
3194 main (int argc, char **argv)
3195 {
3196 cpp_reader *r;
3197
3198 progname = "genmatch";
3199
3200 if (argc < 2)
3201 return 1;
3202
3203 bool gimple = true;
3204 bool verbose = false;
3205 char *input = argv[argc-1];
3206 for (int i = 1; i < argc - 1; ++i)
3207 {
3208 if (strcmp (argv[i], "--gimple") == 0)
3209 gimple = true;
3210 else if (strcmp (argv[i], "--generic") == 0)
3211 gimple = false;
3212 else if (strcmp (argv[i], "-v") == 0)
3213 verbose = true;
3214 else
3215 {
3216 fprintf (stderr, "Usage: genmatch "
3217 "[--gimple] [--generic] [-v] input\n");
3218 return 1;
3219 }
3220 }
3221
3222 line_table = XCNEW (struct line_maps);
3223 linemap_init (line_table, 0);
3224 line_table->reallocator = xrealloc;
3225 line_table->round_alloc_size = round_alloc_size;
3226
3227 r = cpp_create_reader (CLK_GNUC99, NULL, line_table);
3228 cpp_callbacks *cb = cpp_get_callbacks (r);
3229 cb->error = error_cb;
3230
3231 if (!cpp_read_main_file (r, input))
3232 return 1;
3233 cpp_define (r, gimple ? "GIMPLE=1": "GENERIC=1");
3234 cpp_define (r, gimple ? "GENERIC=0": "GIMPLE=0");
3235
3236 /* Pre-seed operators. */
3237 operators = new hash_table<id_base> (1024);
3238 #define DEFTREECODE(SYM, STRING, TYPE, NARGS) \
3239 add_operator (SYM, # SYM, # TYPE, NARGS);
3240 #define END_OF_BASE_TREE_CODES
3241 #include "tree.def"
3242 add_operator (CONVERT0, "CONVERT0", "tcc_unary", 1);
3243 add_operator (CONVERT1, "CONVERT1", "tcc_unary", 1);
3244 add_operator (CONVERT2, "CONVERT2", "tcc_unary", 1);
3245 #undef END_OF_BASE_TREE_CODES
3246 #undef DEFTREECODE
3247
3248 /* Pre-seed builtin functions.
3249 ??? Cannot use N (name) as that is targetm.emultls.get_address
3250 for BUILT_IN_EMUTLS_GET_ADDRESS ... */
3251 #define DEF_BUILTIN(ENUM, N, C, T, LT, B, F, NA, AT, IM, COND) \
3252 add_builtin (ENUM, # ENUM);
3253 #include "builtins.def"
3254 #undef DEF_BUILTIN
3255
3256 /* Parse ahead! */
3257 parser p (r);
3258
3259 if (gimple)
3260 write_header (stdout, "gimple-match-head.c");
3261 else
3262 write_header (stdout, "generic-match-head.c");
3263
3264 /* Go over all predicates defined with patterns and perform
3265 lowering and code generation. */
3266 for (unsigned i = 0; i < p.user_predicates.length (); ++i)
3267 {
3268 predicate_id *pred = p.user_predicates[i];
3269 lower (pred->matchers);
3270
3271 if (verbose)
3272 for (unsigned i = 0; i < pred->matchers.length (); ++i)
3273 print_matches (pred->matchers[i]);
3274
3275 decision_tree dt;
3276 for (unsigned i = 0; i < pred->matchers.length (); ++i)
3277 dt.insert (pred->matchers[i], i);
3278
3279 if (verbose)
3280 dt.print (stderr);
3281
3282 write_predicate (stdout, pred, dt, gimple);
3283 }
3284
3285 /* Lower the main simplifiers and generate code for them. */
3286 lower (p.simplifiers);
3287
3288 if (verbose)
3289 for (unsigned i = 0; i < p.simplifiers.length (); ++i)
3290 print_matches (p.simplifiers[i]);
3291
3292 decision_tree dt;
3293 for (unsigned i = 0; i < p.simplifiers.length (); ++i)
3294 dt.insert (p.simplifiers[i], i);
3295
3296 if (verbose)
3297 dt.print (stderr);
3298
3299 if (gimple)
3300 dt.gen_gimple (stdout);
3301 else
3302 dt.gen_generic (stdout);
3303
3304 /* Finalize. */
3305 cpp_finish (r, NULL);
3306 cpp_destroy (r);
3307
3308 delete operators;
3309
3310 return 0;
3311 }