]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/gimple-pretty-print.c
generalized IPA predicate on parameter
[thirdparty/gcc.git] / gcc / gimple-pretty-print.c
1 /* Pretty formatting of GIMPLE statements and expressions.
2 Copyright (C) 2001-2019 Free Software Foundation, Inc.
3 Contributed by Aldy Hernandez <aldyh@redhat.com> and
4 Diego Novillo <dnovillo@google.com>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "dumpfile.h"
26 #include "backend.h"
27 #include "tree.h"
28 #include "gimple.h"
29 #include "gimple-predict.h"
30 #include "ssa.h"
31 #include "cgraph.h"
32 #include "gimple-pretty-print.h"
33 #include "internal-fn.h"
34 #include "tree-eh.h"
35 #include "gimple-iterator.h"
36 #include "tree-cfg.h"
37 #include "dumpfile.h" /* for dump_flags */
38 #include "value-prof.h"
39 #include "trans-mem.h"
40 #include "cfganal.h"
41 #include "stringpool.h"
42 #include "attribs.h"
43 #include "asan.h"
44 #include "cfgloop.h"
45
46 /* Disable warnings about quoting issues in the pp_xxx calls below
47 that (intentionally) don't follow GCC diagnostic conventions. */
48 #if __GNUC__ >= 10
49 # pragma GCC diagnostic push
50 # pragma GCC diagnostic ignored "-Wformat-diag"
51 #endif
52
53 #define INDENT(SPACE) \
54 do { int i; for (i = 0; i < SPACE; i++) pp_space (buffer); } while (0)
55
56 #define GIMPLE_NIY do_niy (buffer,gs)
57
58 /* Try to print on BUFFER a default message for the unrecognized
59 gimple statement GS. */
60
61 static void
62 do_niy (pretty_printer *buffer, gimple *gs)
63 {
64 pp_printf (buffer, "<<< Unknown GIMPLE statement: %s >>>\n",
65 gimple_code_name[(int) gimple_code (gs)]);
66 }
67
68
69 /* Emit a newline and SPC indentation spaces to BUFFER. */
70
71 static void
72 newline_and_indent (pretty_printer *buffer, int spc)
73 {
74 pp_newline (buffer);
75 INDENT (spc);
76 }
77
78
79 /* Print the GIMPLE statement GS on stderr. */
80
81 DEBUG_FUNCTION void
82 debug_gimple_stmt (gimple *gs)
83 {
84 print_gimple_stmt (stderr, gs, 0, TDF_VOPS|TDF_MEMSYMS);
85 }
86
87
88 /* Return formatted string of a VALUE probability
89 (biased by REG_BR_PROB_BASE). Returned string is allocated
90 by xstrdup_for_dump. */
91
92 static const char *
93 dump_profile (profile_count &count)
94 {
95 char *buf = NULL;
96 if (!count.initialized_p ())
97 return "";
98 if (count.ipa_p ())
99 buf = xasprintf ("[count: %" PRId64 "]",
100 count.to_gcov_type ());
101 else if (count.initialized_p ())
102 buf = xasprintf ("[local count: %" PRId64 "]",
103 count.to_gcov_type ());
104
105 const char *ret = xstrdup_for_dump (buf);
106 free (buf);
107
108 return ret;
109 }
110
111 /* Return formatted string of a VALUE probability
112 (biased by REG_BR_PROB_BASE). Returned string is allocated
113 by xstrdup_for_dump. */
114
115 static const char *
116 dump_probability (profile_probability probability)
117 {
118 float minimum = 0.01f;
119 float fvalue = -1;
120
121 if (probability.initialized_p ())
122 {
123 fvalue = probability.to_reg_br_prob_base () * 100.0f / REG_BR_PROB_BASE;
124 if (fvalue < minimum && probability.to_reg_br_prob_base ())
125 fvalue = minimum;
126 }
127
128 char *buf;
129 if (probability.initialized_p ())
130 buf = xasprintf ("[%.2f%%]", fvalue);
131 else
132 buf = xasprintf ("[INV]");
133
134 const char *ret = xstrdup_for_dump (buf);
135 free (buf);
136
137 return ret;
138 }
139
140 /* Dump E probability to BUFFER. */
141
142 static void
143 dump_edge_probability (pretty_printer *buffer, edge e)
144 {
145 pp_scalar (buffer, " %s", dump_probability (e->probability));
146 }
147
148 /* Print GIMPLE statement G to FILE using SPC indentation spaces and
149 FLAGS as in pp_gimple_stmt_1. */
150
151 void
152 print_gimple_stmt (FILE *file, gimple *g, int spc, dump_flags_t flags)
153 {
154 pretty_printer buffer;
155 pp_needs_newline (&buffer) = true;
156 buffer.buffer->stream = file;
157 pp_gimple_stmt_1 (&buffer, g, spc, flags);
158 pp_newline_and_flush (&buffer);
159 }
160
161 DEBUG_FUNCTION void
162 debug (gimple &ref)
163 {
164 print_gimple_stmt (stderr, &ref, 0, TDF_NONE);
165 }
166
167 DEBUG_FUNCTION void
168 debug (gimple *ptr)
169 {
170 if (ptr)
171 debug (*ptr);
172 else
173 fprintf (stderr, "<nil>\n");
174 }
175
176
177 /* Print GIMPLE statement G to FILE using SPC indentation spaces and
178 FLAGS as in pp_gimple_stmt_1. Print only the right-hand side
179 of the statement. */
180
181 void
182 print_gimple_expr (FILE *file, gimple *g, int spc, dump_flags_t flags)
183 {
184 flags |= TDF_RHS_ONLY;
185 pretty_printer buffer;
186 pp_needs_newline (&buffer) = true;
187 buffer.buffer->stream = file;
188 pp_gimple_stmt_1 (&buffer, g, spc, flags);
189 pp_flush (&buffer);
190 }
191
192
193 /* Print the GIMPLE sequence SEQ on BUFFER using SPC indentation
194 spaces and FLAGS as in pp_gimple_stmt_1.
195 The caller is responsible for calling pp_flush on BUFFER to finalize
196 the pretty printer. */
197
198 static void
199 dump_gimple_seq (pretty_printer *buffer, gimple_seq seq, int spc,
200 dump_flags_t flags)
201 {
202 gimple_stmt_iterator i;
203
204 for (i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
205 {
206 gimple *gs = gsi_stmt (i);
207 INDENT (spc);
208 pp_gimple_stmt_1 (buffer, gs, spc, flags);
209 if (!gsi_one_before_end_p (i))
210 pp_newline (buffer);
211 }
212 }
213
214
215 /* Print GIMPLE sequence SEQ to FILE using SPC indentation spaces and
216 FLAGS as in pp_gimple_stmt_1. */
217
218 void
219 print_gimple_seq (FILE *file, gimple_seq seq, int spc, dump_flags_t flags)
220 {
221 pretty_printer buffer;
222 pp_needs_newline (&buffer) = true;
223 buffer.buffer->stream = file;
224 dump_gimple_seq (&buffer, seq, spc, flags);
225 pp_newline_and_flush (&buffer);
226 }
227
228
229 /* Print the GIMPLE sequence SEQ on stderr. */
230
231 DEBUG_FUNCTION void
232 debug_gimple_seq (gimple_seq seq)
233 {
234 print_gimple_seq (stderr, seq, 0, TDF_VOPS|TDF_MEMSYMS);
235 }
236
237
238 /* A simple helper to pretty-print some of the gimple tuples in the printf
239 style. The format modifiers are preceded by '%' and are:
240 'G' - outputs a string corresponding to the code of the given gimple,
241 'S' - outputs a gimple_seq with indent of spc + 2,
242 'T' - outputs the tree t,
243 'd' - outputs an int as a decimal,
244 's' - outputs a string,
245 'n' - outputs a newline,
246 'x' - outputs an int as hexadecimal,
247 '+' - increases indent by 2 then outputs a newline,
248 '-' - decreases indent by 2 then outputs a newline. */
249
250 static void
251 dump_gimple_fmt (pretty_printer *buffer, int spc, dump_flags_t flags,
252 const char *fmt, ...)
253 {
254 va_list args;
255 const char *c;
256 const char *tmp;
257
258 va_start (args, fmt);
259 for (c = fmt; *c; c++)
260 {
261 if (*c == '%')
262 {
263 gimple_seq seq;
264 tree t;
265 gimple *g;
266 switch (*++c)
267 {
268 case 'G':
269 g = va_arg (args, gimple *);
270 tmp = gimple_code_name[gimple_code (g)];
271 pp_string (buffer, tmp);
272 break;
273
274 case 'S':
275 seq = va_arg (args, gimple_seq);
276 pp_newline (buffer);
277 dump_gimple_seq (buffer, seq, spc + 2, flags);
278 newline_and_indent (buffer, spc);
279 break;
280
281 case 'T':
282 t = va_arg (args, tree);
283 if (t == NULL_TREE)
284 pp_string (buffer, "NULL");
285 else
286 dump_generic_node (buffer, t, spc, flags, false);
287 break;
288
289 case 'd':
290 pp_decimal_int (buffer, va_arg (args, int));
291 break;
292
293 case 's':
294 pp_string (buffer, va_arg (args, char *));
295 break;
296
297 case 'n':
298 newline_and_indent (buffer, spc);
299 break;
300
301 case 'x':
302 pp_scalar (buffer, "%x", va_arg (args, int));
303 break;
304
305 case '+':
306 spc += 2;
307 newline_and_indent (buffer, spc);
308 break;
309
310 case '-':
311 spc -= 2;
312 newline_and_indent (buffer, spc);
313 break;
314
315 default:
316 gcc_unreachable ();
317 }
318 }
319 else
320 pp_character (buffer, *c);
321 }
322 va_end (args);
323 }
324
325
326 /* Helper for dump_gimple_assign. Print the unary RHS of the
327 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
328
329 static void
330 dump_unary_rhs (pretty_printer *buffer, gassign *gs, int spc,
331 dump_flags_t flags)
332 {
333 enum tree_code rhs_code = gimple_assign_rhs_code (gs);
334 tree lhs = gimple_assign_lhs (gs);
335 tree rhs = gimple_assign_rhs1 (gs);
336
337 switch (rhs_code)
338 {
339 case VIEW_CONVERT_EXPR:
340 case ASSERT_EXPR:
341 dump_generic_node (buffer, rhs, spc, flags, false);
342 break;
343
344 case FIXED_CONVERT_EXPR:
345 case ADDR_SPACE_CONVERT_EXPR:
346 case FIX_TRUNC_EXPR:
347 case FLOAT_EXPR:
348 CASE_CONVERT:
349 pp_left_paren (buffer);
350 dump_generic_node (buffer, TREE_TYPE (lhs), spc, flags, false);
351 pp_string (buffer, ") ");
352 if (op_prio (rhs) < op_code_prio (rhs_code))
353 {
354 pp_left_paren (buffer);
355 dump_generic_node (buffer, rhs, spc, flags, false);
356 pp_right_paren (buffer);
357 }
358 else
359 dump_generic_node (buffer, rhs, spc, flags, false);
360 break;
361
362 case PAREN_EXPR:
363 pp_string (buffer, "((");
364 dump_generic_node (buffer, rhs, spc, flags, false);
365 pp_string (buffer, "))");
366 break;
367
368 case ABS_EXPR:
369 case ABSU_EXPR:
370 if (flags & TDF_GIMPLE)
371 {
372 pp_string (buffer,
373 rhs_code == ABS_EXPR ? "__ABS " : "__ABSU ");
374 dump_generic_node (buffer, rhs, spc, flags, false);
375 }
376 else
377 {
378 pp_string (buffer,
379 rhs_code == ABS_EXPR ? "ABS_EXPR <" : "ABSU_EXPR <");
380 dump_generic_node (buffer, rhs, spc, flags, false);
381 pp_greater (buffer);
382 }
383 break;
384
385 default:
386 if (TREE_CODE_CLASS (rhs_code) == tcc_declaration
387 || TREE_CODE_CLASS (rhs_code) == tcc_constant
388 || TREE_CODE_CLASS (rhs_code) == tcc_reference
389 || rhs_code == SSA_NAME
390 || rhs_code == ADDR_EXPR
391 || rhs_code == CONSTRUCTOR)
392 {
393 dump_generic_node (buffer, rhs, spc, flags, false);
394 break;
395 }
396 else if (rhs_code == BIT_NOT_EXPR)
397 pp_complement (buffer);
398 else if (rhs_code == TRUTH_NOT_EXPR)
399 pp_exclamation (buffer);
400 else if (rhs_code == NEGATE_EXPR)
401 pp_minus (buffer);
402 else
403 {
404 pp_left_bracket (buffer);
405 pp_string (buffer, get_tree_code_name (rhs_code));
406 pp_string (buffer, "] ");
407 }
408
409 if (op_prio (rhs) < op_code_prio (rhs_code))
410 {
411 pp_left_paren (buffer);
412 dump_generic_node (buffer, rhs, spc, flags, false);
413 pp_right_paren (buffer);
414 }
415 else
416 dump_generic_node (buffer, rhs, spc, flags, false);
417 break;
418 }
419 }
420
421
422 /* Helper for dump_gimple_assign. Print the binary RHS of the
423 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
424
425 static void
426 dump_binary_rhs (pretty_printer *buffer, gassign *gs, int spc,
427 dump_flags_t flags)
428 {
429 const char *p;
430 enum tree_code code = gimple_assign_rhs_code (gs);
431 switch (code)
432 {
433 case MIN_EXPR:
434 case MAX_EXPR:
435 if (flags & TDF_GIMPLE)
436 {
437 pp_string (buffer, code == MIN_EXPR ? "__MIN (" : "__MAX (");
438 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags,
439 false);
440 pp_string (buffer, ", ");
441 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags,
442 false);
443 pp_string (buffer, ")");
444 break;
445 }
446 else
447 gcc_fallthrough ();
448 case COMPLEX_EXPR:
449 case VEC_WIDEN_MULT_HI_EXPR:
450 case VEC_WIDEN_MULT_LO_EXPR:
451 case VEC_WIDEN_MULT_EVEN_EXPR:
452 case VEC_WIDEN_MULT_ODD_EXPR:
453 case VEC_PACK_TRUNC_EXPR:
454 case VEC_PACK_SAT_EXPR:
455 case VEC_PACK_FIX_TRUNC_EXPR:
456 case VEC_PACK_FLOAT_EXPR:
457 case VEC_WIDEN_LSHIFT_HI_EXPR:
458 case VEC_WIDEN_LSHIFT_LO_EXPR:
459 case VEC_SERIES_EXPR:
460 for (p = get_tree_code_name (code); *p; p++)
461 pp_character (buffer, TOUPPER (*p));
462 pp_string (buffer, " <");
463 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
464 pp_string (buffer, ", ");
465 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
466 pp_greater (buffer);
467 break;
468
469 default:
470 if (op_prio (gimple_assign_rhs1 (gs)) <= op_code_prio (code))
471 {
472 pp_left_paren (buffer);
473 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags,
474 false);
475 pp_right_paren (buffer);
476 }
477 else
478 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
479 pp_space (buffer);
480 pp_string (buffer, op_symbol_code (gimple_assign_rhs_code (gs)));
481 pp_space (buffer);
482 if (op_prio (gimple_assign_rhs2 (gs)) <= op_code_prio (code))
483 {
484 pp_left_paren (buffer);
485 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags,
486 false);
487 pp_right_paren (buffer);
488 }
489 else
490 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
491 }
492 }
493
494 /* Helper for dump_gimple_assign. Print the ternary RHS of the
495 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
496
497 static void
498 dump_ternary_rhs (pretty_printer *buffer, gassign *gs, int spc,
499 dump_flags_t flags)
500 {
501 const char *p;
502 enum tree_code code = gimple_assign_rhs_code (gs);
503 switch (code)
504 {
505 case WIDEN_MULT_PLUS_EXPR:
506 case WIDEN_MULT_MINUS_EXPR:
507 for (p = get_tree_code_name (code); *p; p++)
508 pp_character (buffer, TOUPPER (*p));
509 pp_string (buffer, " <");
510 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
511 pp_string (buffer, ", ");
512 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
513 pp_string (buffer, ", ");
514 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
515 pp_greater (buffer);
516 break;
517
518 case DOT_PROD_EXPR:
519 pp_string (buffer, "DOT_PROD_EXPR <");
520 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
521 pp_string (buffer, ", ");
522 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
523 pp_string (buffer, ", ");
524 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
525 pp_greater (buffer);
526 break;
527
528 case SAD_EXPR:
529 pp_string (buffer, "SAD_EXPR <");
530 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
531 pp_string (buffer, ", ");
532 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
533 pp_string (buffer, ", ");
534 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
535 pp_greater (buffer);
536 break;
537
538 case VEC_PERM_EXPR:
539 if (flags & TDF_GIMPLE)
540 pp_string (buffer, "__VEC_PERM (");
541 else
542 pp_string (buffer, "VEC_PERM_EXPR <");
543 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
544 pp_string (buffer, ", ");
545 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
546 pp_string (buffer, ", ");
547 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
548 if (flags & TDF_GIMPLE)
549 pp_right_paren (buffer);
550 else
551 pp_greater (buffer);
552 break;
553
554 case REALIGN_LOAD_EXPR:
555 pp_string (buffer, "REALIGN_LOAD <");
556 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
557 pp_string (buffer, ", ");
558 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
559 pp_string (buffer, ", ");
560 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
561 pp_greater (buffer);
562 break;
563
564 case COND_EXPR:
565 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
566 pp_string (buffer, " ? ");
567 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
568 pp_string (buffer, " : ");
569 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
570 break;
571
572 case VEC_COND_EXPR:
573 pp_string (buffer, "VEC_COND_EXPR <");
574 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
575 pp_string (buffer, ", ");
576 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
577 pp_string (buffer, ", ");
578 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
579 pp_greater (buffer);
580 break;
581
582 case BIT_INSERT_EXPR:
583 if (flags & TDF_GIMPLE)
584 {
585 pp_string (buffer, "__BIT_INSERT (");
586 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc,
587 flags | TDF_SLIM, false);
588 pp_string (buffer, ", ");
589 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc,
590 flags | TDF_SLIM, false);
591 pp_string (buffer, ", ");
592 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc,
593 flags | TDF_SLIM, false);
594 pp_right_paren (buffer);
595 }
596 else
597 {
598 pp_string (buffer, "BIT_INSERT_EXPR <");
599 dump_generic_node (buffer, gimple_assign_rhs1 (gs),
600 spc, flags, false);
601 pp_string (buffer, ", ");
602 dump_generic_node (buffer, gimple_assign_rhs2 (gs),
603 spc, flags, false);
604 pp_string (buffer, ", ");
605 dump_generic_node (buffer, gimple_assign_rhs3 (gs),
606 spc, flags, false);
607 if (INTEGRAL_TYPE_P (TREE_TYPE (gimple_assign_rhs2 (gs))))
608 {
609 pp_string (buffer, " (");
610 pp_decimal_int (buffer, TYPE_PRECISION
611 (TREE_TYPE (gimple_assign_rhs2 (gs))));
612 pp_string (buffer, " bits)");
613 }
614 pp_greater (buffer);
615 }
616 break;
617
618 default:
619 gcc_unreachable ();
620 }
621 }
622
623
624 /* Dump the gimple assignment GS. BUFFER, SPC and FLAGS are as in
625 pp_gimple_stmt_1. */
626
627 static void
628 dump_gimple_assign (pretty_printer *buffer, gassign *gs, int spc,
629 dump_flags_t flags)
630 {
631 if (flags & TDF_RAW)
632 {
633 tree arg1 = NULL;
634 tree arg2 = NULL;
635 tree arg3 = NULL;
636 switch (gimple_num_ops (gs))
637 {
638 case 4:
639 arg3 = gimple_assign_rhs3 (gs);
640 /* FALLTHRU */
641 case 3:
642 arg2 = gimple_assign_rhs2 (gs);
643 /* FALLTHRU */
644 case 2:
645 arg1 = gimple_assign_rhs1 (gs);
646 break;
647 default:
648 gcc_unreachable ();
649 }
650
651 dump_gimple_fmt (buffer, spc, flags, "%G <%s, %T, %T, %T, %T>", gs,
652 get_tree_code_name (gimple_assign_rhs_code (gs)),
653 gimple_assign_lhs (gs), arg1, arg2, arg3);
654 }
655 else
656 {
657 if (!(flags & TDF_RHS_ONLY))
658 {
659 dump_generic_node (buffer, gimple_assign_lhs (gs), spc, flags, false);
660 pp_space (buffer);
661 pp_equal (buffer);
662
663 if (gimple_assign_nontemporal_move_p (gs))
664 pp_string (buffer, "{nt}");
665
666 if (gimple_has_volatile_ops (gs))
667 pp_string (buffer, "{v}");
668
669 pp_space (buffer);
670 }
671
672 if (gimple_num_ops (gs) == 2)
673 dump_unary_rhs (buffer, gs, spc, flags);
674 else if (gimple_num_ops (gs) == 3)
675 dump_binary_rhs (buffer, gs, spc, flags);
676 else if (gimple_num_ops (gs) == 4)
677 dump_ternary_rhs (buffer, gs, spc, flags);
678 else
679 gcc_unreachable ();
680 if (!(flags & TDF_RHS_ONLY))
681 pp_semicolon (buffer);
682 }
683 }
684
685
686 /* Dump the return statement GS. BUFFER, SPC and FLAGS are as in
687 pp_gimple_stmt_1. */
688
689 static void
690 dump_gimple_return (pretty_printer *buffer, greturn *gs, int spc,
691 dump_flags_t flags)
692 {
693 tree t;
694
695 t = gimple_return_retval (gs);
696 if (flags & TDF_RAW)
697 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs, t);
698 else
699 {
700 pp_string (buffer, "return");
701 if (t)
702 {
703 pp_space (buffer);
704 dump_generic_node (buffer, t, spc, flags, false);
705 }
706 pp_semicolon (buffer);
707 }
708 }
709
710
711 /* Dump the call arguments for a gimple call. BUFFER, FLAGS are as in
712 dump_gimple_call. */
713
714 static void
715 dump_gimple_call_args (pretty_printer *buffer, gcall *gs, dump_flags_t flags)
716 {
717 size_t i = 0;
718
719 /* Pretty print first arg to certain internal fns. */
720 if (gimple_call_internal_p (gs))
721 {
722 const char *const *enums = NULL;
723 unsigned limit = 0;
724
725 switch (gimple_call_internal_fn (gs))
726 {
727 case IFN_UNIQUE:
728 #define DEF(X) #X
729 static const char *const unique_args[] = {IFN_UNIQUE_CODES};
730 #undef DEF
731 enums = unique_args;
732
733 limit = ARRAY_SIZE (unique_args);
734 break;
735
736 case IFN_GOACC_LOOP:
737 #define DEF(X) #X
738 static const char *const loop_args[] = {IFN_GOACC_LOOP_CODES};
739 #undef DEF
740 enums = loop_args;
741 limit = ARRAY_SIZE (loop_args);
742 break;
743
744 case IFN_GOACC_REDUCTION:
745 #define DEF(X) #X
746 static const char *const reduction_args[]
747 = {IFN_GOACC_REDUCTION_CODES};
748 #undef DEF
749 enums = reduction_args;
750 limit = ARRAY_SIZE (reduction_args);
751 break;
752
753 case IFN_ASAN_MARK:
754 #define DEF(X) #X
755 static const char *const asan_mark_args[] = {IFN_ASAN_MARK_FLAGS};
756 #undef DEF
757 enums = asan_mark_args;
758 limit = ARRAY_SIZE (asan_mark_args);
759 break;
760
761 default:
762 break;
763 }
764 if (limit)
765 {
766 tree arg0 = gimple_call_arg (gs, 0);
767 HOST_WIDE_INT v;
768
769 if (TREE_CODE (arg0) == INTEGER_CST
770 && tree_fits_shwi_p (arg0)
771 && (v = tree_to_shwi (arg0)) >= 0 && v < limit)
772 {
773 i++;
774 pp_string (buffer, enums[v]);
775 }
776 }
777 }
778
779 for (; i < gimple_call_num_args (gs); i++)
780 {
781 if (i)
782 pp_string (buffer, ", ");
783 dump_generic_node (buffer, gimple_call_arg (gs, i), 0, flags, false);
784 }
785
786 if (gimple_call_va_arg_pack_p (gs))
787 {
788 if (i)
789 pp_string (buffer, ", ");
790
791 pp_string (buffer, "__builtin_va_arg_pack ()");
792 }
793 }
794
795 /* Dump the points-to solution *PT to BUFFER. */
796
797 static void
798 pp_points_to_solution (pretty_printer *buffer, struct pt_solution *pt)
799 {
800 if (pt->anything)
801 {
802 pp_string (buffer, "anything ");
803 return;
804 }
805 if (pt->nonlocal)
806 pp_string (buffer, "nonlocal ");
807 if (pt->escaped)
808 pp_string (buffer, "escaped ");
809 if (pt->ipa_escaped)
810 pp_string (buffer, "unit-escaped ");
811 if (pt->null)
812 pp_string (buffer, "null ");
813 if (pt->vars
814 && !bitmap_empty_p (pt->vars))
815 {
816 bitmap_iterator bi;
817 unsigned i;
818 pp_string (buffer, "{ ");
819 EXECUTE_IF_SET_IN_BITMAP (pt->vars, 0, i, bi)
820 {
821 pp_string (buffer, "D.");
822 pp_decimal_int (buffer, i);
823 pp_space (buffer);
824 }
825 pp_right_brace (buffer);
826 if (pt->vars_contains_nonlocal
827 || pt->vars_contains_escaped
828 || pt->vars_contains_escaped_heap
829 || pt->vars_contains_restrict)
830 {
831 const char *comma = "";
832 pp_string (buffer, " (");
833 if (pt->vars_contains_nonlocal)
834 {
835 pp_string (buffer, "nonlocal");
836 comma = ", ";
837 }
838 if (pt->vars_contains_escaped)
839 {
840 pp_string (buffer, comma);
841 pp_string (buffer, "escaped");
842 comma = ", ";
843 }
844 if (pt->vars_contains_escaped_heap)
845 {
846 pp_string (buffer, comma);
847 pp_string (buffer, "escaped heap");
848 comma = ", ";
849 }
850 if (pt->vars_contains_restrict)
851 {
852 pp_string (buffer, comma);
853 pp_string (buffer, "restrict");
854 comma = ", ";
855 }
856 if (pt->vars_contains_interposable)
857 {
858 pp_string (buffer, comma);
859 pp_string (buffer, "interposable");
860 }
861 pp_string (buffer, ")");
862 }
863
864 }
865 }
866
867 /* Dump the call statement GS. BUFFER, SPC and FLAGS are as in
868 pp_gimple_stmt_1. */
869
870 static void
871 dump_gimple_call (pretty_printer *buffer, gcall *gs, int spc,
872 dump_flags_t flags)
873 {
874 tree lhs = gimple_call_lhs (gs);
875 tree fn = gimple_call_fn (gs);
876
877 if (flags & TDF_ALIAS)
878 {
879 struct pt_solution *pt;
880 pt = gimple_call_use_set (gs);
881 if (!pt_solution_empty_p (pt))
882 {
883 pp_string (buffer, "# USE = ");
884 pp_points_to_solution (buffer, pt);
885 newline_and_indent (buffer, spc);
886 }
887 pt = gimple_call_clobber_set (gs);
888 if (!pt_solution_empty_p (pt))
889 {
890 pp_string (buffer, "# CLB = ");
891 pp_points_to_solution (buffer, pt);
892 newline_and_indent (buffer, spc);
893 }
894 }
895
896 if (flags & TDF_RAW)
897 {
898 if (gimple_call_internal_p (gs))
899 dump_gimple_fmt (buffer, spc, flags, "%G <.%s, %T", gs,
900 internal_fn_name (gimple_call_internal_fn (gs)), lhs);
901 else
902 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %T", gs, fn, lhs);
903 if (gimple_call_num_args (gs) > 0)
904 {
905 pp_string (buffer, ", ");
906 dump_gimple_call_args (buffer, gs, flags);
907 }
908 pp_greater (buffer);
909 }
910 else
911 {
912 if (lhs && !(flags & TDF_RHS_ONLY))
913 {
914 dump_generic_node (buffer, lhs, spc, flags, false);
915 pp_string (buffer, " =");
916
917 if (gimple_has_volatile_ops (gs))
918 pp_string (buffer, "{v}");
919
920 pp_space (buffer);
921 }
922 if (gimple_call_internal_p (gs))
923 {
924 pp_dot (buffer);
925 pp_string (buffer, internal_fn_name (gimple_call_internal_fn (gs)));
926 }
927 else
928 print_call_name (buffer, fn, flags);
929 pp_string (buffer, " (");
930 dump_gimple_call_args (buffer, gs, flags);
931 pp_right_paren (buffer);
932 if (!(flags & TDF_RHS_ONLY))
933 pp_semicolon (buffer);
934 }
935
936 if (gimple_call_chain (gs))
937 {
938 pp_string (buffer, " [static-chain: ");
939 dump_generic_node (buffer, gimple_call_chain (gs), spc, flags, false);
940 pp_right_bracket (buffer);
941 }
942
943 if (gimple_call_return_slot_opt_p (gs))
944 pp_string (buffer, " [return slot optimization]");
945 if (gimple_call_tail_p (gs))
946 pp_string (buffer, " [tail call]");
947 if (gimple_call_must_tail_p (gs))
948 pp_string (buffer, " [must tail call]");
949
950 if (fn == NULL)
951 return;
952
953 /* Dump the arguments of _ITM_beginTransaction sanely. */
954 if (TREE_CODE (fn) == ADDR_EXPR)
955 fn = TREE_OPERAND (fn, 0);
956 if (TREE_CODE (fn) == FUNCTION_DECL && decl_is_tm_clone (fn))
957 pp_string (buffer, " [tm-clone]");
958 if (TREE_CODE (fn) == FUNCTION_DECL
959 && fndecl_built_in_p (fn, BUILT_IN_TM_START)
960 && gimple_call_num_args (gs) > 0)
961 {
962 tree t = gimple_call_arg (gs, 0);
963 unsigned HOST_WIDE_INT props;
964 gcc_assert (TREE_CODE (t) == INTEGER_CST);
965
966 pp_string (buffer, " [ ");
967
968 /* Get the transaction code properties. */
969 props = TREE_INT_CST_LOW (t);
970
971 if (props & PR_INSTRUMENTEDCODE)
972 pp_string (buffer, "instrumentedCode ");
973 if (props & PR_UNINSTRUMENTEDCODE)
974 pp_string (buffer, "uninstrumentedCode ");
975 if (props & PR_HASNOXMMUPDATE)
976 pp_string (buffer, "hasNoXMMUpdate ");
977 if (props & PR_HASNOABORT)
978 pp_string (buffer, "hasNoAbort ");
979 if (props & PR_HASNOIRREVOCABLE)
980 pp_string (buffer, "hasNoIrrevocable ");
981 if (props & PR_DOESGOIRREVOCABLE)
982 pp_string (buffer, "doesGoIrrevocable ");
983 if (props & PR_HASNOSIMPLEREADS)
984 pp_string (buffer, "hasNoSimpleReads ");
985 if (props & PR_AWBARRIERSOMITTED)
986 pp_string (buffer, "awBarriersOmitted ");
987 if (props & PR_RARBARRIERSOMITTED)
988 pp_string (buffer, "RaRBarriersOmitted ");
989 if (props & PR_UNDOLOGCODE)
990 pp_string (buffer, "undoLogCode ");
991 if (props & PR_PREFERUNINSTRUMENTED)
992 pp_string (buffer, "preferUninstrumented ");
993 if (props & PR_EXCEPTIONBLOCK)
994 pp_string (buffer, "exceptionBlock ");
995 if (props & PR_HASELSE)
996 pp_string (buffer, "hasElse ");
997 if (props & PR_READONLY)
998 pp_string (buffer, "readOnly ");
999
1000 pp_right_bracket (buffer);
1001 }
1002 }
1003
1004
1005 /* Dump the switch statement GS. BUFFER, SPC and FLAGS are as in
1006 pp_gimple_stmt_1. */
1007
1008 static void
1009 dump_gimple_switch (pretty_printer *buffer, gswitch *gs, int spc,
1010 dump_flags_t flags)
1011 {
1012 unsigned int i;
1013
1014 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
1015 if (flags & TDF_RAW)
1016 dump_gimple_fmt (buffer, spc, flags, "%G <%T, ", gs,
1017 gimple_switch_index (gs));
1018 else
1019 {
1020 pp_string (buffer, "switch (");
1021 dump_generic_node (buffer, gimple_switch_index (gs), spc, flags, true);
1022 if (flags & TDF_GIMPLE)
1023 pp_string (buffer, ") {");
1024 else
1025 pp_string (buffer, ") <");
1026 }
1027
1028 for (i = 0; i < gimple_switch_num_labels (gs); i++)
1029 {
1030 tree case_label = gimple_switch_label (gs, i);
1031 gcc_checking_assert (case_label != NULL_TREE);
1032 dump_generic_node (buffer, case_label, spc, flags, false);
1033 pp_space (buffer);
1034 tree label = CASE_LABEL (case_label);
1035 dump_generic_node (buffer, label, spc, flags, false);
1036
1037 if (cfun && cfun->cfg)
1038 {
1039 basic_block dest = label_to_block (cfun, label);
1040 if (dest)
1041 {
1042 edge label_edge = find_edge (gimple_bb (gs), dest);
1043 if (label_edge && !(flags & TDF_GIMPLE))
1044 dump_edge_probability (buffer, label_edge);
1045 }
1046 }
1047
1048 if (i < gimple_switch_num_labels (gs) - 1)
1049 {
1050 if (flags & TDF_GIMPLE)
1051 pp_string (buffer, "; ");
1052 else
1053 pp_string (buffer, ", ");
1054 }
1055 }
1056 if (flags & TDF_GIMPLE)
1057 pp_string (buffer, "; }");
1058 else
1059 pp_greater (buffer);
1060 }
1061
1062
1063 /* Dump the gimple conditional GS. BUFFER, SPC and FLAGS are as in
1064 pp_gimple_stmt_1. */
1065
1066 static void
1067 dump_gimple_cond (pretty_printer *buffer, gcond *gs, int spc,
1068 dump_flags_t flags)
1069 {
1070 if (flags & TDF_RAW)
1071 dump_gimple_fmt (buffer, spc, flags, "%G <%s, %T, %T, %T, %T>", gs,
1072 get_tree_code_name (gimple_cond_code (gs)),
1073 gimple_cond_lhs (gs), gimple_cond_rhs (gs),
1074 gimple_cond_true_label (gs), gimple_cond_false_label (gs));
1075 else
1076 {
1077 if (!(flags & TDF_RHS_ONLY))
1078 pp_string (buffer, "if (");
1079 dump_generic_node (buffer, gimple_cond_lhs (gs), spc, flags, false);
1080 pp_space (buffer);
1081 pp_string (buffer, op_symbol_code (gimple_cond_code (gs)));
1082 pp_space (buffer);
1083 dump_generic_node (buffer, gimple_cond_rhs (gs), spc, flags, false);
1084 if (!(flags & TDF_RHS_ONLY))
1085 {
1086 edge_iterator ei;
1087 edge e, true_edge = NULL, false_edge = NULL;
1088 basic_block bb = gimple_bb (gs);
1089
1090 if (bb)
1091 {
1092 FOR_EACH_EDGE (e, ei, bb->succs)
1093 {
1094 if (e->flags & EDGE_TRUE_VALUE)
1095 true_edge = e;
1096 else if (e->flags & EDGE_FALSE_VALUE)
1097 false_edge = e;
1098 }
1099 }
1100
1101 bool has_edge_info = true_edge != NULL && false_edge != NULL;
1102
1103 pp_right_paren (buffer);
1104
1105 if (gimple_cond_true_label (gs))
1106 {
1107 pp_string (buffer, " goto ");
1108 dump_generic_node (buffer, gimple_cond_true_label (gs),
1109 spc, flags, false);
1110 if (has_edge_info && !(flags & TDF_GIMPLE))
1111 dump_edge_probability (buffer, true_edge);
1112 pp_semicolon (buffer);
1113 }
1114 if (gimple_cond_false_label (gs))
1115 {
1116 pp_string (buffer, " else goto ");
1117 dump_generic_node (buffer, gimple_cond_false_label (gs),
1118 spc, flags, false);
1119 if (has_edge_info && !(flags & TDF_GIMPLE))
1120 dump_edge_probability (buffer, false_edge);
1121
1122 pp_semicolon (buffer);
1123 }
1124 }
1125 }
1126 }
1127
1128
1129 /* Dump a GIMPLE_LABEL tuple on the pretty_printer BUFFER, SPC
1130 spaces of indent. FLAGS specifies details to show in the dump (see
1131 TDF_* in dumpfils.h). */
1132
1133 static void
1134 dump_gimple_label (pretty_printer *buffer, glabel *gs, int spc,
1135 dump_flags_t flags)
1136 {
1137 tree label = gimple_label_label (gs);
1138 if (flags & TDF_RAW)
1139 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs, label);
1140 else
1141 {
1142 dump_generic_node (buffer, label, spc, flags, false);
1143 pp_colon (buffer);
1144 }
1145 if (flags & TDF_GIMPLE)
1146 return;
1147 if (DECL_NONLOCAL (label))
1148 pp_string (buffer, " [non-local]");
1149 if ((flags & TDF_EH) && EH_LANDING_PAD_NR (label))
1150 pp_printf (buffer, " [LP %d]", EH_LANDING_PAD_NR (label));
1151 }
1152
1153 /* Dump a GIMPLE_GOTO tuple on the pretty_printer BUFFER, SPC
1154 spaces of indent. FLAGS specifies details to show in the dump (see
1155 TDF_* in dumpfile.h). */
1156
1157 static void
1158 dump_gimple_goto (pretty_printer *buffer, ggoto *gs, int spc,
1159 dump_flags_t flags)
1160 {
1161 tree label = gimple_goto_dest (gs);
1162 if (flags & TDF_RAW)
1163 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs, label);
1164 else
1165 dump_gimple_fmt (buffer, spc, flags, "goto %T;", label);
1166 }
1167
1168
1169 /* Dump a GIMPLE_BIND tuple on the pretty_printer BUFFER, SPC
1170 spaces of indent. FLAGS specifies details to show in the dump (see
1171 TDF_* in dumpfile.h). */
1172
1173 static void
1174 dump_gimple_bind (pretty_printer *buffer, gbind *gs, int spc,
1175 dump_flags_t flags)
1176 {
1177 if (flags & TDF_RAW)
1178 dump_gimple_fmt (buffer, spc, flags, "%G <", gs);
1179 else
1180 pp_left_brace (buffer);
1181 if (!(flags & TDF_SLIM))
1182 {
1183 tree var;
1184
1185 for (var = gimple_bind_vars (gs); var; var = DECL_CHAIN (var))
1186 {
1187 newline_and_indent (buffer, 2);
1188 print_declaration (buffer, var, spc, flags);
1189 }
1190 if (gimple_bind_vars (gs))
1191 pp_newline (buffer);
1192 }
1193 pp_newline (buffer);
1194 dump_gimple_seq (buffer, gimple_bind_body (gs), spc + 2, flags);
1195 newline_and_indent (buffer, spc);
1196 if (flags & TDF_RAW)
1197 pp_greater (buffer);
1198 else
1199 pp_right_brace (buffer);
1200 }
1201
1202
1203 /* Dump a GIMPLE_TRY tuple on the pretty_printer BUFFER, SPC spaces of
1204 indent. FLAGS specifies details to show in the dump (see TDF_* in
1205 dumpfile.h). */
1206
1207 static void
1208 dump_gimple_try (pretty_printer *buffer, gtry *gs, int spc,
1209 dump_flags_t flags)
1210 {
1211 if (flags & TDF_RAW)
1212 {
1213 const char *type;
1214 if (gimple_try_kind (gs) == GIMPLE_TRY_CATCH)
1215 type = "GIMPLE_TRY_CATCH";
1216 else if (gimple_try_kind (gs) == GIMPLE_TRY_FINALLY)
1217 type = "GIMPLE_TRY_FINALLY";
1218 else
1219 type = "UNKNOWN GIMPLE_TRY";
1220 dump_gimple_fmt (buffer, spc, flags,
1221 "%G <%s,%+EVAL <%S>%nCLEANUP <%S>%->", gs, type,
1222 gimple_try_eval (gs), gimple_try_cleanup (gs));
1223 }
1224 else
1225 {
1226 pp_string (buffer, "try");
1227 newline_and_indent (buffer, spc + 2);
1228 pp_left_brace (buffer);
1229 pp_newline (buffer);
1230
1231 dump_gimple_seq (buffer, gimple_try_eval (gs), spc + 4, flags);
1232 newline_and_indent (buffer, spc + 2);
1233 pp_right_brace (buffer);
1234
1235 gimple_seq seq = gimple_try_cleanup (gs);
1236
1237 if (gimple_try_kind (gs) == GIMPLE_TRY_CATCH)
1238 {
1239 newline_and_indent (buffer, spc);
1240 pp_string (buffer, "catch");
1241 newline_and_indent (buffer, spc + 2);
1242 pp_left_brace (buffer);
1243 }
1244 else if (gimple_try_kind (gs) == GIMPLE_TRY_FINALLY)
1245 {
1246 newline_and_indent (buffer, spc);
1247 pp_string (buffer, "finally");
1248 newline_and_indent (buffer, spc + 2);
1249 pp_left_brace (buffer);
1250
1251 if (seq && is_a <geh_else *> (gimple_seq_first_stmt (seq))
1252 && gimple_seq_nondebug_singleton_p (seq))
1253 {
1254 geh_else *stmt = as_a <geh_else *> (gimple_seq_first_stmt (seq));
1255 seq = gimple_eh_else_n_body (stmt);
1256 pp_newline (buffer);
1257 dump_gimple_seq (buffer, seq, spc + 4, flags);
1258 newline_and_indent (buffer, spc + 2);
1259 pp_right_brace (buffer);
1260 seq = gimple_eh_else_e_body (stmt);
1261 newline_and_indent (buffer, spc);
1262 pp_string (buffer, "else");
1263 newline_and_indent (buffer, spc + 2);
1264 pp_left_brace (buffer);
1265 }
1266 }
1267 else
1268 pp_string (buffer, " <UNKNOWN GIMPLE_TRY> {");
1269
1270 pp_newline (buffer);
1271 dump_gimple_seq (buffer, seq, spc + 4, flags);
1272 newline_and_indent (buffer, spc + 2);
1273 pp_right_brace (buffer);
1274 }
1275 }
1276
1277
1278 /* Dump a GIMPLE_CATCH tuple on the pretty_printer BUFFER, SPC spaces of
1279 indent. FLAGS specifies details to show in the dump (see TDF_* in
1280 dumpfile.h). */
1281
1282 static void
1283 dump_gimple_catch (pretty_printer *buffer, gcatch *gs, int spc,
1284 dump_flags_t flags)
1285 {
1286 if (flags & TDF_RAW)
1287 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %+CATCH <%S>%->", gs,
1288 gimple_catch_types (gs), gimple_catch_handler (gs));
1289 else
1290 dump_gimple_fmt (buffer, spc, flags, "catch (%T)%+{%S}",
1291 gimple_catch_types (gs), gimple_catch_handler (gs));
1292 }
1293
1294
1295 /* Dump a GIMPLE_EH_FILTER tuple on the pretty_printer BUFFER, SPC spaces of
1296 indent. FLAGS specifies details to show in the dump (see TDF_* in
1297 dumpfile.h). */
1298
1299 static void
1300 dump_gimple_eh_filter (pretty_printer *buffer, geh_filter *gs, int spc,
1301 dump_flags_t flags)
1302 {
1303 if (flags & TDF_RAW)
1304 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %+FAILURE <%S>%->", gs,
1305 gimple_eh_filter_types (gs),
1306 gimple_eh_filter_failure (gs));
1307 else
1308 dump_gimple_fmt (buffer, spc, flags, "<<<eh_filter (%T)>>>%+{%+%S%-}",
1309 gimple_eh_filter_types (gs),
1310 gimple_eh_filter_failure (gs));
1311 }
1312
1313
1314 /* Dump a GIMPLE_EH_MUST_NOT_THROW tuple. */
1315
1316 static void
1317 dump_gimple_eh_must_not_throw (pretty_printer *buffer,
1318 geh_mnt *gs, int spc, dump_flags_t flags)
1319 {
1320 if (flags & TDF_RAW)
1321 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs,
1322 gimple_eh_must_not_throw_fndecl (gs));
1323 else
1324 dump_gimple_fmt (buffer, spc, flags, "<<<eh_must_not_throw (%T)>>>",
1325 gimple_eh_must_not_throw_fndecl (gs));
1326 }
1327
1328
1329 /* Dump a GIMPLE_EH_ELSE tuple on the pretty_printer BUFFER, SPC spaces of
1330 indent. FLAGS specifies details to show in the dump (see TDF_* in
1331 dumpfile.h). */
1332
1333 static void
1334 dump_gimple_eh_else (pretty_printer *buffer, geh_else *gs, int spc,
1335 dump_flags_t flags)
1336 {
1337 if (flags & TDF_RAW)
1338 dump_gimple_fmt (buffer, spc, flags,
1339 "%G <%+N_BODY <%S>%nE_BODY <%S>%->", gs,
1340 gimple_eh_else_n_body (gs), gimple_eh_else_e_body (gs));
1341 else
1342 dump_gimple_fmt (buffer, spc, flags,
1343 "<<<if_normal_exit>>>%+{%S}%-<<<else_eh_exit>>>%+{%S}",
1344 gimple_eh_else_n_body (gs), gimple_eh_else_e_body (gs));
1345 }
1346
1347
1348 /* Dump a GIMPLE_RESX tuple on the pretty_printer BUFFER, SPC spaces of
1349 indent. FLAGS specifies details to show in the dump (see TDF_* in
1350 dumpfile.h). */
1351
1352 static void
1353 dump_gimple_resx (pretty_printer *buffer, gresx *gs, int spc,
1354 dump_flags_t flags)
1355 {
1356 if (flags & TDF_RAW)
1357 dump_gimple_fmt (buffer, spc, flags, "%G <%d>", gs,
1358 gimple_resx_region (gs));
1359 else
1360 dump_gimple_fmt (buffer, spc, flags, "resx %d", gimple_resx_region (gs));
1361 }
1362
1363 /* Dump a GIMPLE_EH_DISPATCH tuple on the pretty_printer BUFFER. */
1364
1365 static void
1366 dump_gimple_eh_dispatch (pretty_printer *buffer, geh_dispatch *gs, int spc,
1367 dump_flags_t flags)
1368 {
1369 if (flags & TDF_RAW)
1370 dump_gimple_fmt (buffer, spc, flags, "%G <%d>", gs,
1371 gimple_eh_dispatch_region (gs));
1372 else
1373 dump_gimple_fmt (buffer, spc, flags, "eh_dispatch %d",
1374 gimple_eh_dispatch_region (gs));
1375 }
1376
1377 /* Dump a GIMPLE_DEBUG tuple on the pretty_printer BUFFER, SPC spaces
1378 of indent. FLAGS specifies details to show in the dump (see TDF_*
1379 in dumpfile.h). */
1380
1381 static void
1382 dump_gimple_debug (pretty_printer *buffer, gdebug *gs, int spc,
1383 dump_flags_t flags)
1384 {
1385 switch (gs->subcode)
1386 {
1387 case GIMPLE_DEBUG_BIND:
1388 if (flags & TDF_RAW)
1389 dump_gimple_fmt (buffer, spc, flags, "%G BIND <%T, %T>", gs,
1390 gimple_debug_bind_get_var (gs),
1391 gimple_debug_bind_get_value (gs));
1392 else
1393 dump_gimple_fmt (buffer, spc, flags, "# DEBUG %T => %T",
1394 gimple_debug_bind_get_var (gs),
1395 gimple_debug_bind_get_value (gs));
1396 break;
1397
1398 case GIMPLE_DEBUG_SOURCE_BIND:
1399 if (flags & TDF_RAW)
1400 dump_gimple_fmt (buffer, spc, flags, "%G SRCBIND <%T, %T>", gs,
1401 gimple_debug_source_bind_get_var (gs),
1402 gimple_debug_source_bind_get_value (gs));
1403 else
1404 dump_gimple_fmt (buffer, spc, flags, "# DEBUG %T s=> %T",
1405 gimple_debug_source_bind_get_var (gs),
1406 gimple_debug_source_bind_get_value (gs));
1407 break;
1408
1409 case GIMPLE_DEBUG_BEGIN_STMT:
1410 if (flags & TDF_RAW)
1411 dump_gimple_fmt (buffer, spc, flags, "%G BEGIN_STMT", gs);
1412 else
1413 dump_gimple_fmt (buffer, spc, flags, "# DEBUG BEGIN_STMT");
1414 break;
1415
1416 case GIMPLE_DEBUG_INLINE_ENTRY:
1417 if (flags & TDF_RAW)
1418 dump_gimple_fmt (buffer, spc, flags, "%G INLINE_ENTRY %T", gs,
1419 gimple_block (gs)
1420 ? block_ultimate_origin (gimple_block (gs))
1421 : NULL_TREE);
1422 else
1423 dump_gimple_fmt (buffer, spc, flags, "# DEBUG INLINE_ENTRY %T",
1424 gimple_block (gs)
1425 ? block_ultimate_origin (gimple_block (gs))
1426 : NULL_TREE);
1427 break;
1428
1429 default:
1430 gcc_unreachable ();
1431 }
1432 }
1433
1434 /* Dump a GIMPLE_OMP_FOR tuple on the pretty_printer BUFFER. */
1435 static void
1436 dump_gimple_omp_for (pretty_printer *buffer, gomp_for *gs, int spc,
1437 dump_flags_t flags)
1438 {
1439 size_t i;
1440
1441 if (flags & TDF_RAW)
1442 {
1443 const char *kind;
1444 switch (gimple_omp_for_kind (gs))
1445 {
1446 case GF_OMP_FOR_KIND_FOR:
1447 kind = "";
1448 break;
1449 case GF_OMP_FOR_KIND_DISTRIBUTE:
1450 kind = " distribute";
1451 break;
1452 case GF_OMP_FOR_KIND_TASKLOOP:
1453 kind = " taskloop";
1454 break;
1455 case GF_OMP_FOR_KIND_OACC_LOOP:
1456 kind = " oacc_loop";
1457 break;
1458 case GF_OMP_FOR_KIND_SIMD:
1459 kind = " simd";
1460 break;
1461 default:
1462 gcc_unreachable ();
1463 }
1464 dump_gimple_fmt (buffer, spc, flags, "%G%s <%+BODY <%S>%nCLAUSES <", gs,
1465 kind, gimple_omp_body (gs));
1466 dump_omp_clauses (buffer, gimple_omp_for_clauses (gs), spc, flags);
1467 dump_gimple_fmt (buffer, spc, flags, " >,");
1468 for (i = 0; i < gimple_omp_for_collapse (gs); i++)
1469 dump_gimple_fmt (buffer, spc, flags,
1470 "%+%T, %T, %T, %s, %T,%n",
1471 gimple_omp_for_index (gs, i),
1472 gimple_omp_for_initial (gs, i),
1473 gimple_omp_for_final (gs, i),
1474 get_tree_code_name (gimple_omp_for_cond (gs, i)),
1475 gimple_omp_for_incr (gs, i));
1476 dump_gimple_fmt (buffer, spc, flags, "PRE_BODY <%S>%->",
1477 gimple_omp_for_pre_body (gs));
1478 }
1479 else
1480 {
1481 switch (gimple_omp_for_kind (gs))
1482 {
1483 case GF_OMP_FOR_KIND_FOR:
1484 pp_string (buffer, "#pragma omp for");
1485 break;
1486 case GF_OMP_FOR_KIND_DISTRIBUTE:
1487 pp_string (buffer, "#pragma omp distribute");
1488 break;
1489 case GF_OMP_FOR_KIND_TASKLOOP:
1490 pp_string (buffer, "#pragma omp taskloop");
1491 break;
1492 case GF_OMP_FOR_KIND_OACC_LOOP:
1493 pp_string (buffer, "#pragma acc loop");
1494 break;
1495 case GF_OMP_FOR_KIND_SIMD:
1496 pp_string (buffer, "#pragma omp simd");
1497 break;
1498 case GF_OMP_FOR_KIND_GRID_LOOP:
1499 pp_string (buffer, "#pragma omp for grid_loop");
1500 break;
1501 default:
1502 gcc_unreachable ();
1503 }
1504 dump_omp_clauses (buffer, gimple_omp_for_clauses (gs), spc, flags);
1505 for (i = 0; i < gimple_omp_for_collapse (gs); i++)
1506 {
1507 if (i)
1508 spc += 2;
1509 newline_and_indent (buffer, spc);
1510 pp_string (buffer, "for (");
1511 dump_generic_node (buffer, gimple_omp_for_index (gs, i), spc,
1512 flags, false);
1513 pp_string (buffer, " = ");
1514 dump_generic_node (buffer, gimple_omp_for_initial (gs, i), spc,
1515 flags, false);
1516 pp_string (buffer, "; ");
1517
1518 dump_generic_node (buffer, gimple_omp_for_index (gs, i), spc,
1519 flags, false);
1520 pp_space (buffer);
1521 switch (gimple_omp_for_cond (gs, i))
1522 {
1523 case LT_EXPR:
1524 pp_less (buffer);
1525 break;
1526 case GT_EXPR:
1527 pp_greater (buffer);
1528 break;
1529 case LE_EXPR:
1530 pp_less_equal (buffer);
1531 break;
1532 case GE_EXPR:
1533 pp_greater_equal (buffer);
1534 break;
1535 case NE_EXPR:
1536 pp_string (buffer, "!=");
1537 break;
1538 default:
1539 gcc_unreachable ();
1540 }
1541 pp_space (buffer);
1542 dump_generic_node (buffer, gimple_omp_for_final (gs, i), spc,
1543 flags, false);
1544 pp_string (buffer, "; ");
1545
1546 dump_generic_node (buffer, gimple_omp_for_index (gs, i), spc,
1547 flags, false);
1548 pp_string (buffer, " = ");
1549 dump_generic_node (buffer, gimple_omp_for_incr (gs, i), spc,
1550 flags, false);
1551 pp_right_paren (buffer);
1552 }
1553
1554 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1555 {
1556 newline_and_indent (buffer, spc + 2);
1557 pp_left_brace (buffer);
1558 pp_newline (buffer);
1559 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1560 newline_and_indent (buffer, spc + 2);
1561 pp_right_brace (buffer);
1562 }
1563 }
1564 }
1565
1566 /* Dump a GIMPLE_OMP_CONTINUE tuple on the pretty_printer BUFFER. */
1567
1568 static void
1569 dump_gimple_omp_continue (pretty_printer *buffer, gomp_continue *gs,
1570 int spc, dump_flags_t flags)
1571 {
1572 if (flags & TDF_RAW)
1573 {
1574 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %T>", gs,
1575 gimple_omp_continue_control_def (gs),
1576 gimple_omp_continue_control_use (gs));
1577 }
1578 else
1579 {
1580 pp_string (buffer, "#pragma omp continue (");
1581 dump_generic_node (buffer, gimple_omp_continue_control_def (gs),
1582 spc, flags, false);
1583 pp_comma (buffer);
1584 pp_space (buffer);
1585 dump_generic_node (buffer, gimple_omp_continue_control_use (gs),
1586 spc, flags, false);
1587 pp_right_paren (buffer);
1588 }
1589 }
1590
1591 /* Dump a GIMPLE_OMP_SINGLE tuple on the pretty_printer BUFFER. */
1592
1593 static void
1594 dump_gimple_omp_single (pretty_printer *buffer, gomp_single *gs,
1595 int spc, dump_flags_t flags)
1596 {
1597 if (flags & TDF_RAW)
1598 {
1599 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
1600 gimple_omp_body (gs));
1601 dump_omp_clauses (buffer, gimple_omp_single_clauses (gs), spc, flags);
1602 dump_gimple_fmt (buffer, spc, flags, " >");
1603 }
1604 else
1605 {
1606 pp_string (buffer, "#pragma omp single");
1607 dump_omp_clauses (buffer, gimple_omp_single_clauses (gs), spc, flags);
1608 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1609 {
1610 newline_and_indent (buffer, spc + 2);
1611 pp_left_brace (buffer);
1612 pp_newline (buffer);
1613 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1614 newline_and_indent (buffer, spc + 2);
1615 pp_right_brace (buffer);
1616 }
1617 }
1618 }
1619
1620 /* Dump a GIMPLE_OMP_TASKGROUP tuple on the pretty_printer BUFFER. */
1621
1622 static void
1623 dump_gimple_omp_taskgroup (pretty_printer *buffer, gimple *gs,
1624 int spc, dump_flags_t flags)
1625 {
1626 if (flags & TDF_RAW)
1627 {
1628 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
1629 gimple_omp_body (gs));
1630 dump_omp_clauses (buffer, gimple_omp_taskgroup_clauses (gs), spc, flags);
1631 dump_gimple_fmt (buffer, spc, flags, " >");
1632 }
1633 else
1634 {
1635 pp_string (buffer, "#pragma omp taskgroup");
1636 dump_omp_clauses (buffer, gimple_omp_taskgroup_clauses (gs), spc, flags);
1637 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1638 {
1639 newline_and_indent (buffer, spc + 2);
1640 pp_left_brace (buffer);
1641 pp_newline (buffer);
1642 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1643 newline_and_indent (buffer, spc + 2);
1644 pp_right_brace (buffer);
1645 }
1646 }
1647 }
1648
1649 /* Dump a GIMPLE_OMP_TARGET tuple on the pretty_printer BUFFER. */
1650
1651 static void
1652 dump_gimple_omp_target (pretty_printer *buffer, gomp_target *gs,
1653 int spc, dump_flags_t flags)
1654 {
1655 const char *kind;
1656 switch (gimple_omp_target_kind (gs))
1657 {
1658 case GF_OMP_TARGET_KIND_REGION:
1659 kind = "";
1660 break;
1661 case GF_OMP_TARGET_KIND_DATA:
1662 kind = " data";
1663 break;
1664 case GF_OMP_TARGET_KIND_UPDATE:
1665 kind = " update";
1666 break;
1667 case GF_OMP_TARGET_KIND_ENTER_DATA:
1668 kind = " enter data";
1669 break;
1670 case GF_OMP_TARGET_KIND_EXIT_DATA:
1671 kind = " exit data";
1672 break;
1673 case GF_OMP_TARGET_KIND_OACC_KERNELS:
1674 kind = " oacc_kernels";
1675 break;
1676 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
1677 kind = " oacc_parallel";
1678 break;
1679 case GF_OMP_TARGET_KIND_OACC_DATA:
1680 kind = " oacc_data";
1681 break;
1682 case GF_OMP_TARGET_KIND_OACC_UPDATE:
1683 kind = " oacc_update";
1684 break;
1685 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
1686 kind = " oacc_enter_exit_data";
1687 break;
1688 case GF_OMP_TARGET_KIND_OACC_DECLARE:
1689 kind = " oacc_declare";
1690 break;
1691 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
1692 kind = " oacc_host_data";
1693 break;
1694 default:
1695 gcc_unreachable ();
1696 }
1697 if (flags & TDF_RAW)
1698 {
1699 dump_gimple_fmt (buffer, spc, flags, "%G%s <%+BODY <%S>%nCLAUSES <", gs,
1700 kind, gimple_omp_body (gs));
1701 dump_omp_clauses (buffer, gimple_omp_target_clauses (gs), spc, flags);
1702 dump_gimple_fmt (buffer, spc, flags, " >, %T, %T%n>",
1703 gimple_omp_target_child_fn (gs),
1704 gimple_omp_target_data_arg (gs));
1705 }
1706 else
1707 {
1708 pp_string (buffer, "#pragma omp target");
1709 pp_string (buffer, kind);
1710 dump_omp_clauses (buffer, gimple_omp_target_clauses (gs), spc, flags);
1711 if (gimple_omp_target_child_fn (gs))
1712 {
1713 pp_string (buffer, " [child fn: ");
1714 dump_generic_node (buffer, gimple_omp_target_child_fn (gs),
1715 spc, flags, false);
1716 pp_string (buffer, " (");
1717 if (gimple_omp_target_data_arg (gs))
1718 dump_generic_node (buffer, gimple_omp_target_data_arg (gs),
1719 spc, flags, false);
1720 else
1721 pp_string (buffer, "???");
1722 pp_string (buffer, ")]");
1723 }
1724 gimple_seq body = gimple_omp_body (gs);
1725 if (body && gimple_code (gimple_seq_first_stmt (body)) != GIMPLE_BIND)
1726 {
1727 newline_and_indent (buffer, spc + 2);
1728 pp_left_brace (buffer);
1729 pp_newline (buffer);
1730 dump_gimple_seq (buffer, body, spc + 4, flags);
1731 newline_and_indent (buffer, spc + 2);
1732 pp_right_brace (buffer);
1733 }
1734 else if (body)
1735 {
1736 pp_newline (buffer);
1737 dump_gimple_seq (buffer, body, spc + 2, flags);
1738 }
1739 }
1740 }
1741
1742 /* Dump a GIMPLE_OMP_TEAMS tuple on the pretty_printer BUFFER. */
1743
1744 static void
1745 dump_gimple_omp_teams (pretty_printer *buffer, gomp_teams *gs, int spc,
1746 dump_flags_t flags)
1747 {
1748 if (flags & TDF_RAW)
1749 {
1750 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
1751 gimple_omp_body (gs));
1752 dump_omp_clauses (buffer, gimple_omp_teams_clauses (gs), spc, flags);
1753 dump_gimple_fmt (buffer, spc, flags, " >");
1754 }
1755 else
1756 {
1757 pp_string (buffer, "#pragma omp teams");
1758 dump_omp_clauses (buffer, gimple_omp_teams_clauses (gs), spc, flags);
1759 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1760 {
1761 newline_and_indent (buffer, spc + 2);
1762 pp_character (buffer, '{');
1763 pp_newline (buffer);
1764 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1765 newline_and_indent (buffer, spc + 2);
1766 pp_character (buffer, '}');
1767 }
1768 }
1769 }
1770
1771 /* Dump a GIMPLE_OMP_SECTIONS tuple on the pretty_printer BUFFER. */
1772
1773 static void
1774 dump_gimple_omp_sections (pretty_printer *buffer, gomp_sections *gs,
1775 int spc, dump_flags_t flags)
1776 {
1777 if (flags & TDF_RAW)
1778 {
1779 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
1780 gimple_omp_body (gs));
1781 dump_omp_clauses (buffer, gimple_omp_sections_clauses (gs), spc, flags);
1782 dump_gimple_fmt (buffer, spc, flags, " >");
1783 }
1784 else
1785 {
1786 pp_string (buffer, "#pragma omp sections");
1787 if (gimple_omp_sections_control (gs))
1788 {
1789 pp_string (buffer, " <");
1790 dump_generic_node (buffer, gimple_omp_sections_control (gs), spc,
1791 flags, false);
1792 pp_greater (buffer);
1793 }
1794 dump_omp_clauses (buffer, gimple_omp_sections_clauses (gs), spc, flags);
1795 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1796 {
1797 newline_and_indent (buffer, spc + 2);
1798 pp_left_brace (buffer);
1799 pp_newline (buffer);
1800 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1801 newline_and_indent (buffer, spc + 2);
1802 pp_right_brace (buffer);
1803 }
1804 }
1805 }
1806
1807 /* Dump a GIMPLE_OMP_{MASTER,ORDERED,SECTION} tuple on the
1808 pretty_printer BUFFER. */
1809
1810 static void
1811 dump_gimple_omp_block (pretty_printer *buffer, gimple *gs, int spc,
1812 dump_flags_t flags)
1813 {
1814 if (flags & TDF_RAW)
1815 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S> >", gs,
1816 gimple_omp_body (gs));
1817 else
1818 {
1819 switch (gimple_code (gs))
1820 {
1821 case GIMPLE_OMP_MASTER:
1822 pp_string (buffer, "#pragma omp master");
1823 break;
1824 case GIMPLE_OMP_SECTION:
1825 pp_string (buffer, "#pragma omp section");
1826 break;
1827 case GIMPLE_OMP_GRID_BODY:
1828 pp_string (buffer, "#pragma omp gridified body");
1829 break;
1830 default:
1831 gcc_unreachable ();
1832 }
1833 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1834 {
1835 newline_and_indent (buffer, spc + 2);
1836 pp_left_brace (buffer);
1837 pp_newline (buffer);
1838 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1839 newline_and_indent (buffer, spc + 2);
1840 pp_right_brace (buffer);
1841 }
1842 }
1843 }
1844
1845 /* Dump a GIMPLE_OMP_CRITICAL tuple on the pretty_printer BUFFER. */
1846
1847 static void
1848 dump_gimple_omp_critical (pretty_printer *buffer, gomp_critical *gs,
1849 int spc, dump_flags_t flags)
1850 {
1851 if (flags & TDF_RAW)
1852 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S> >", gs,
1853 gimple_omp_body (gs));
1854 else
1855 {
1856 pp_string (buffer, "#pragma omp critical");
1857 if (gimple_omp_critical_name (gs))
1858 {
1859 pp_string (buffer, " (");
1860 dump_generic_node (buffer, gimple_omp_critical_name (gs), spc,
1861 flags, false);
1862 pp_right_paren (buffer);
1863 }
1864 dump_omp_clauses (buffer, gimple_omp_critical_clauses (gs), spc, flags);
1865 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1866 {
1867 newline_and_indent (buffer, spc + 2);
1868 pp_left_brace (buffer);
1869 pp_newline (buffer);
1870 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1871 newline_and_indent (buffer, spc + 2);
1872 pp_right_brace (buffer);
1873 }
1874 }
1875 }
1876
1877 /* Dump a GIMPLE_OMP_ORDERED tuple on the pretty_printer BUFFER. */
1878
1879 static void
1880 dump_gimple_omp_ordered (pretty_printer *buffer, gomp_ordered *gs,
1881 int spc, dump_flags_t flags)
1882 {
1883 if (flags & TDF_RAW)
1884 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S> >", gs,
1885 gimple_omp_body (gs));
1886 else
1887 {
1888 pp_string (buffer, "#pragma omp ordered");
1889 dump_omp_clauses (buffer, gimple_omp_ordered_clauses (gs), spc, flags);
1890 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1891 {
1892 newline_and_indent (buffer, spc + 2);
1893 pp_left_brace (buffer);
1894 pp_newline (buffer);
1895 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1896 newline_and_indent (buffer, spc + 2);
1897 pp_right_brace (buffer);
1898 }
1899 }
1900 }
1901
1902 /* Dump a GIMPLE_OMP_SCAN tuple on the pretty_printer BUFFER. */
1903
1904 static void
1905 dump_gimple_omp_scan (pretty_printer *buffer, gomp_scan *gs,
1906 int spc, dump_flags_t flags)
1907 {
1908 if (flags & TDF_RAW)
1909 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S> >", gs,
1910 gimple_omp_body (gs));
1911 else
1912 {
1913 if (gimple_omp_scan_clauses (gs))
1914 {
1915 pp_string (buffer, "#pragma omp scan");
1916 dump_omp_clauses (buffer, gimple_omp_scan_clauses (gs), spc, flags);
1917 }
1918 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1919 {
1920 newline_and_indent (buffer, spc + 2);
1921 pp_left_brace (buffer);
1922 pp_newline (buffer);
1923 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1924 newline_and_indent (buffer, spc + 2);
1925 pp_right_brace (buffer);
1926 }
1927 }
1928 }
1929
1930 /* Dump a GIMPLE_OMP_RETURN tuple on the pretty_printer BUFFER. */
1931
1932 static void
1933 dump_gimple_omp_return (pretty_printer *buffer, gimple *gs, int spc,
1934 dump_flags_t flags)
1935 {
1936 if (flags & TDF_RAW)
1937 {
1938 dump_gimple_fmt (buffer, spc, flags, "%G <nowait=%d", gs,
1939 (int) gimple_omp_return_nowait_p (gs));
1940 if (gimple_omp_return_lhs (gs))
1941 dump_gimple_fmt (buffer, spc, flags, ", lhs=%T>",
1942 gimple_omp_return_lhs (gs));
1943 else
1944 dump_gimple_fmt (buffer, spc, flags, ">");
1945 }
1946 else
1947 {
1948 pp_string (buffer, "#pragma omp return");
1949 if (gimple_omp_return_nowait_p (gs))
1950 pp_string (buffer, "(nowait)");
1951 if (gimple_omp_return_lhs (gs))
1952 {
1953 pp_string (buffer, " (set ");
1954 dump_generic_node (buffer, gimple_omp_return_lhs (gs),
1955 spc, flags, false);
1956 pp_character (buffer, ')');
1957 }
1958 }
1959 }
1960
1961 /* Dump a GIMPLE_TRANSACTION tuple on the pretty_printer BUFFER. */
1962
1963 static void
1964 dump_gimple_transaction (pretty_printer *buffer, gtransaction *gs,
1965 int spc, dump_flags_t flags)
1966 {
1967 unsigned subcode = gimple_transaction_subcode (gs);
1968
1969 if (flags & TDF_RAW)
1970 {
1971 dump_gimple_fmt (buffer, spc, flags,
1972 "%G [SUBCODE=%x,NORM=%T,UNINST=%T,OVER=%T] "
1973 "<%+BODY <%S> >",
1974 gs, subcode, gimple_transaction_label_norm (gs),
1975 gimple_transaction_label_uninst (gs),
1976 gimple_transaction_label_over (gs),
1977 gimple_transaction_body (gs));
1978 }
1979 else
1980 {
1981 if (subcode & GTMA_IS_OUTER)
1982 pp_string (buffer, "__transaction_atomic [[outer]]");
1983 else if (subcode & GTMA_IS_RELAXED)
1984 pp_string (buffer, "__transaction_relaxed");
1985 else
1986 pp_string (buffer, "__transaction_atomic");
1987 subcode &= ~GTMA_DECLARATION_MASK;
1988
1989 if (gimple_transaction_body (gs))
1990 {
1991 newline_and_indent (buffer, spc + 2);
1992 pp_left_brace (buffer);
1993 pp_newline (buffer);
1994 dump_gimple_seq (buffer, gimple_transaction_body (gs),
1995 spc + 4, flags);
1996 newline_and_indent (buffer, spc + 2);
1997 pp_right_brace (buffer);
1998 }
1999 else
2000 {
2001 pp_string (buffer, " //");
2002 if (gimple_transaction_label_norm (gs))
2003 {
2004 pp_string (buffer, " NORM=");
2005 dump_generic_node (buffer, gimple_transaction_label_norm (gs),
2006 spc, flags, false);
2007 }
2008 if (gimple_transaction_label_uninst (gs))
2009 {
2010 pp_string (buffer, " UNINST=");
2011 dump_generic_node (buffer, gimple_transaction_label_uninst (gs),
2012 spc, flags, false);
2013 }
2014 if (gimple_transaction_label_over (gs))
2015 {
2016 pp_string (buffer, " OVER=");
2017 dump_generic_node (buffer, gimple_transaction_label_over (gs),
2018 spc, flags, false);
2019 }
2020 if (subcode)
2021 {
2022 pp_string (buffer, " SUBCODE=[ ");
2023 if (subcode & GTMA_HAVE_ABORT)
2024 {
2025 pp_string (buffer, "GTMA_HAVE_ABORT ");
2026 subcode &= ~GTMA_HAVE_ABORT;
2027 }
2028 if (subcode & GTMA_HAVE_LOAD)
2029 {
2030 pp_string (buffer, "GTMA_HAVE_LOAD ");
2031 subcode &= ~GTMA_HAVE_LOAD;
2032 }
2033 if (subcode & GTMA_HAVE_STORE)
2034 {
2035 pp_string (buffer, "GTMA_HAVE_STORE ");
2036 subcode &= ~GTMA_HAVE_STORE;
2037 }
2038 if (subcode & GTMA_MAY_ENTER_IRREVOCABLE)
2039 {
2040 pp_string (buffer, "GTMA_MAY_ENTER_IRREVOCABLE ");
2041 subcode &= ~GTMA_MAY_ENTER_IRREVOCABLE;
2042 }
2043 if (subcode & GTMA_DOES_GO_IRREVOCABLE)
2044 {
2045 pp_string (buffer, "GTMA_DOES_GO_IRREVOCABLE ");
2046 subcode &= ~GTMA_DOES_GO_IRREVOCABLE;
2047 }
2048 if (subcode & GTMA_HAS_NO_INSTRUMENTATION)
2049 {
2050 pp_string (buffer, "GTMA_HAS_NO_INSTRUMENTATION ");
2051 subcode &= ~GTMA_HAS_NO_INSTRUMENTATION;
2052 }
2053 if (subcode)
2054 pp_printf (buffer, "0x%x ", subcode);
2055 pp_right_bracket (buffer);
2056 }
2057 }
2058 }
2059 }
2060
2061 /* Dump a GIMPLE_ASM tuple on the pretty_printer BUFFER, SPC spaces of
2062 indent. FLAGS specifies details to show in the dump (see TDF_* in
2063 dumpfile.h). */
2064
2065 static void
2066 dump_gimple_asm (pretty_printer *buffer, gasm *gs, int spc, dump_flags_t flags)
2067 {
2068 unsigned int i, n, f, fields;
2069
2070 if (flags & TDF_RAW)
2071 {
2072 dump_gimple_fmt (buffer, spc, flags, "%G <%+STRING <%n%s%n>", gs,
2073 gimple_asm_string (gs));
2074
2075 n = gimple_asm_noutputs (gs);
2076 if (n)
2077 {
2078 newline_and_indent (buffer, spc + 2);
2079 pp_string (buffer, "OUTPUT: ");
2080 for (i = 0; i < n; i++)
2081 {
2082 dump_generic_node (buffer, gimple_asm_output_op (gs, i),
2083 spc, flags, false);
2084 if (i < n - 1)
2085 pp_string (buffer, ", ");
2086 }
2087 }
2088
2089 n = gimple_asm_ninputs (gs);
2090 if (n)
2091 {
2092 newline_and_indent (buffer, spc + 2);
2093 pp_string (buffer, "INPUT: ");
2094 for (i = 0; i < n; i++)
2095 {
2096 dump_generic_node (buffer, gimple_asm_input_op (gs, i),
2097 spc, flags, false);
2098 if (i < n - 1)
2099 pp_string (buffer, ", ");
2100 }
2101 }
2102
2103 n = gimple_asm_nclobbers (gs);
2104 if (n)
2105 {
2106 newline_and_indent (buffer, spc + 2);
2107 pp_string (buffer, "CLOBBER: ");
2108 for (i = 0; i < n; i++)
2109 {
2110 dump_generic_node (buffer, gimple_asm_clobber_op (gs, i),
2111 spc, flags, false);
2112 if (i < n - 1)
2113 pp_string (buffer, ", ");
2114 }
2115 }
2116
2117 n = gimple_asm_nlabels (gs);
2118 if (n)
2119 {
2120 newline_and_indent (buffer, spc + 2);
2121 pp_string (buffer, "LABEL: ");
2122 for (i = 0; i < n; i++)
2123 {
2124 dump_generic_node (buffer, gimple_asm_label_op (gs, i),
2125 spc, flags, false);
2126 if (i < n - 1)
2127 pp_string (buffer, ", ");
2128 }
2129 }
2130
2131 newline_and_indent (buffer, spc);
2132 pp_greater (buffer);
2133 }
2134 else
2135 {
2136 pp_string (buffer, "__asm__");
2137 if (gimple_asm_volatile_p (gs))
2138 pp_string (buffer, " __volatile__");
2139 if (gimple_asm_inline_p (gs))
2140 pp_string (buffer, " __inline__");
2141 if (gimple_asm_nlabels (gs))
2142 pp_string (buffer, " goto");
2143 pp_string (buffer, "(\"");
2144 pp_string (buffer, gimple_asm_string (gs));
2145 pp_string (buffer, "\"");
2146
2147 if (gimple_asm_nlabels (gs))
2148 fields = 4;
2149 else if (gimple_asm_nclobbers (gs))
2150 fields = 3;
2151 else if (gimple_asm_ninputs (gs))
2152 fields = 2;
2153 else if (gimple_asm_noutputs (gs))
2154 fields = 1;
2155 else
2156 fields = 0;
2157
2158 for (f = 0; f < fields; ++f)
2159 {
2160 pp_string (buffer, " : ");
2161
2162 switch (f)
2163 {
2164 case 0:
2165 n = gimple_asm_noutputs (gs);
2166 for (i = 0; i < n; i++)
2167 {
2168 dump_generic_node (buffer, gimple_asm_output_op (gs, i),
2169 spc, flags, false);
2170 if (i < n - 1)
2171 pp_string (buffer, ", ");
2172 }
2173 break;
2174
2175 case 1:
2176 n = gimple_asm_ninputs (gs);
2177 for (i = 0; i < n; i++)
2178 {
2179 dump_generic_node (buffer, gimple_asm_input_op (gs, i),
2180 spc, flags, false);
2181 if (i < n - 1)
2182 pp_string (buffer, ", ");
2183 }
2184 break;
2185
2186 case 2:
2187 n = gimple_asm_nclobbers (gs);
2188 for (i = 0; i < n; i++)
2189 {
2190 dump_generic_node (buffer, gimple_asm_clobber_op (gs, i),
2191 spc, flags, false);
2192 if (i < n - 1)
2193 pp_string (buffer, ", ");
2194 }
2195 break;
2196
2197 case 3:
2198 n = gimple_asm_nlabels (gs);
2199 for (i = 0; i < n; i++)
2200 {
2201 dump_generic_node (buffer, gimple_asm_label_op (gs, i),
2202 spc, flags, false);
2203 if (i < n - 1)
2204 pp_string (buffer, ", ");
2205 }
2206 break;
2207
2208 default:
2209 gcc_unreachable ();
2210 }
2211 }
2212
2213 pp_string (buffer, ");");
2214 }
2215 }
2216
2217 /* Dump ptr_info and range_info for NODE on pretty_printer BUFFER with
2218 SPC spaces of indent. */
2219
2220 static void
2221 dump_ssaname_info (pretty_printer *buffer, tree node, int spc)
2222 {
2223 if (TREE_CODE (node) != SSA_NAME)
2224 return;
2225
2226 if (POINTER_TYPE_P (TREE_TYPE (node))
2227 && SSA_NAME_PTR_INFO (node))
2228 {
2229 unsigned int align, misalign;
2230 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (node);
2231 pp_string (buffer, "# PT = ");
2232 pp_points_to_solution (buffer, &pi->pt);
2233 newline_and_indent (buffer, spc);
2234 if (get_ptr_info_alignment (pi, &align, &misalign))
2235 {
2236 pp_printf (buffer, "# ALIGN = %u, MISALIGN = %u", align, misalign);
2237 newline_and_indent (buffer, spc);
2238 }
2239 }
2240
2241 if (!POINTER_TYPE_P (TREE_TYPE (node))
2242 && SSA_NAME_RANGE_INFO (node))
2243 {
2244 wide_int min, max, nonzero_bits;
2245 value_range_kind range_type = get_range_info (node, &min, &max);
2246
2247 if (range_type == VR_VARYING)
2248 pp_printf (buffer, "# RANGE VR_VARYING");
2249 else if (range_type == VR_RANGE || range_type == VR_ANTI_RANGE)
2250 {
2251 pp_printf (buffer, "# RANGE ");
2252 pp_printf (buffer, "%s[", range_type == VR_RANGE ? "" : "~");
2253 pp_wide_int (buffer, min, TYPE_SIGN (TREE_TYPE (node)));
2254 pp_printf (buffer, ", ");
2255 pp_wide_int (buffer, max, TYPE_SIGN (TREE_TYPE (node)));
2256 pp_printf (buffer, "]");
2257 }
2258 nonzero_bits = get_nonzero_bits (node);
2259 if (nonzero_bits != -1)
2260 {
2261 pp_string (buffer, " NONZERO ");
2262 pp_wide_int (buffer, nonzero_bits, UNSIGNED);
2263 }
2264 newline_and_indent (buffer, spc);
2265 }
2266 }
2267
2268 /* As dump_ssaname_info, but dump to FILE. */
2269
2270 void
2271 dump_ssaname_info_to_file (FILE *file, tree node, int spc)
2272 {
2273 pretty_printer buffer;
2274 pp_needs_newline (&buffer) = true;
2275 buffer.buffer->stream = file;
2276 dump_ssaname_info (&buffer, node, spc);
2277 pp_flush (&buffer);
2278 }
2279
2280 /* Dump a PHI node PHI. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1.
2281 The caller is responsible for calling pp_flush on BUFFER to finalize
2282 pretty printer. If COMMENT is true, print this after #. */
2283
2284 static void
2285 dump_gimple_phi (pretty_printer *buffer, gphi *phi, int spc, bool comment,
2286 dump_flags_t flags)
2287 {
2288 size_t i;
2289 tree lhs = gimple_phi_result (phi);
2290
2291 if (flags & TDF_ALIAS)
2292 dump_ssaname_info (buffer, lhs, spc);
2293
2294 if (comment)
2295 pp_string (buffer, "# ");
2296
2297 if (flags & TDF_RAW)
2298 dump_gimple_fmt (buffer, spc, flags, "%G <%T, ", phi,
2299 gimple_phi_result (phi));
2300 else
2301 {
2302 dump_generic_node (buffer, lhs, spc, flags, false);
2303 if (flags & TDF_GIMPLE)
2304 pp_string (buffer, " = __PHI (");
2305 else
2306 pp_string (buffer, " = PHI <");
2307 }
2308 for (i = 0; i < gimple_phi_num_args (phi); i++)
2309 {
2310 if ((flags & TDF_LINENO) && gimple_phi_arg_has_location (phi, i))
2311 dump_location (buffer, gimple_phi_arg_location (phi, i));
2312 basic_block src = gimple_phi_arg_edge (phi, i)->src;
2313 if (flags & TDF_GIMPLE)
2314 {
2315 pp_string (buffer, "__BB");
2316 pp_decimal_int (buffer, src->index);
2317 pp_string (buffer, ": ");
2318 }
2319 dump_generic_node (buffer, gimple_phi_arg_def (phi, i), spc, flags,
2320 false);
2321 if (! (flags & TDF_GIMPLE))
2322 {
2323 pp_left_paren (buffer);
2324 pp_decimal_int (buffer, src->index);
2325 pp_right_paren (buffer);
2326 }
2327 if (i < gimple_phi_num_args (phi) - 1)
2328 pp_string (buffer, ", ");
2329 }
2330 if (flags & TDF_GIMPLE)
2331 pp_string (buffer, ");");
2332 else
2333 pp_greater (buffer);
2334 }
2335
2336
2337 /* Dump a GIMPLE_OMP_PARALLEL tuple on the pretty_printer BUFFER, SPC spaces
2338 of indent. FLAGS specifies details to show in the dump (see TDF_* in
2339 dumpfile.h). */
2340
2341 static void
2342 dump_gimple_omp_parallel (pretty_printer *buffer, gomp_parallel *gs,
2343 int spc, dump_flags_t flags)
2344 {
2345 if (flags & TDF_RAW)
2346 {
2347 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
2348 gimple_omp_body (gs));
2349 dump_omp_clauses (buffer, gimple_omp_parallel_clauses (gs), spc, flags);
2350 dump_gimple_fmt (buffer, spc, flags, " >, %T, %T%n>",
2351 gimple_omp_parallel_child_fn (gs),
2352 gimple_omp_parallel_data_arg (gs));
2353 }
2354 else
2355 {
2356 gimple_seq body;
2357 pp_string (buffer, "#pragma omp parallel");
2358 dump_omp_clauses (buffer, gimple_omp_parallel_clauses (gs), spc, flags);
2359 if (gimple_omp_parallel_child_fn (gs))
2360 {
2361 pp_string (buffer, " [child fn: ");
2362 dump_generic_node (buffer, gimple_omp_parallel_child_fn (gs),
2363 spc, flags, false);
2364 pp_string (buffer, " (");
2365 if (gimple_omp_parallel_data_arg (gs))
2366 dump_generic_node (buffer, gimple_omp_parallel_data_arg (gs),
2367 spc, flags, false);
2368 else
2369 pp_string (buffer, "???");
2370 pp_string (buffer, ")]");
2371 }
2372 body = gimple_omp_body (gs);
2373 if (body && gimple_code (gimple_seq_first_stmt (body)) != GIMPLE_BIND)
2374 {
2375 newline_and_indent (buffer, spc + 2);
2376 pp_left_brace (buffer);
2377 pp_newline (buffer);
2378 dump_gimple_seq (buffer, body, spc + 4, flags);
2379 newline_and_indent (buffer, spc + 2);
2380 pp_right_brace (buffer);
2381 }
2382 else if (body)
2383 {
2384 pp_newline (buffer);
2385 dump_gimple_seq (buffer, body, spc + 2, flags);
2386 }
2387 }
2388 }
2389
2390
2391 /* Dump a GIMPLE_OMP_TASK tuple on the pretty_printer BUFFER, SPC spaces
2392 of indent. FLAGS specifies details to show in the dump (see TDF_* in
2393 dumpfile.h). */
2394
2395 static void
2396 dump_gimple_omp_task (pretty_printer *buffer, gomp_task *gs, int spc,
2397 dump_flags_t flags)
2398 {
2399 if (flags & TDF_RAW)
2400 {
2401 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
2402 gimple_omp_body (gs));
2403 dump_omp_clauses (buffer, gimple_omp_task_clauses (gs), spc, flags);
2404 dump_gimple_fmt (buffer, spc, flags, " >, %T, %T, %T, %T, %T%n>",
2405 gimple_omp_task_child_fn (gs),
2406 gimple_omp_task_data_arg (gs),
2407 gimple_omp_task_copy_fn (gs),
2408 gimple_omp_task_arg_size (gs),
2409 gimple_omp_task_arg_size (gs));
2410 }
2411 else
2412 {
2413 gimple_seq body;
2414 if (gimple_omp_task_taskloop_p (gs))
2415 pp_string (buffer, "#pragma omp taskloop");
2416 else if (gimple_omp_task_taskwait_p (gs))
2417 pp_string (buffer, "#pragma omp taskwait");
2418 else
2419 pp_string (buffer, "#pragma omp task");
2420 dump_omp_clauses (buffer, gimple_omp_task_clauses (gs), spc, flags);
2421 if (gimple_omp_task_child_fn (gs))
2422 {
2423 pp_string (buffer, " [child fn: ");
2424 dump_generic_node (buffer, gimple_omp_task_child_fn (gs),
2425 spc, flags, false);
2426 pp_string (buffer, " (");
2427 if (gimple_omp_task_data_arg (gs))
2428 dump_generic_node (buffer, gimple_omp_task_data_arg (gs),
2429 spc, flags, false);
2430 else
2431 pp_string (buffer, "???");
2432 pp_string (buffer, ")]");
2433 }
2434 body = gimple_omp_body (gs);
2435 if (body && gimple_code (gimple_seq_first_stmt (body)) != GIMPLE_BIND)
2436 {
2437 newline_and_indent (buffer, spc + 2);
2438 pp_left_brace (buffer);
2439 pp_newline (buffer);
2440 dump_gimple_seq (buffer, body, spc + 4, flags);
2441 newline_and_indent (buffer, spc + 2);
2442 pp_right_brace (buffer);
2443 }
2444 else if (body)
2445 {
2446 pp_newline (buffer);
2447 dump_gimple_seq (buffer, body, spc + 2, flags);
2448 }
2449 }
2450 }
2451
2452
2453 /* Dump a GIMPLE_OMP_ATOMIC_LOAD tuple on the pretty_printer BUFFER, SPC
2454 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
2455 in dumpfile.h). */
2456
2457 static void
2458 dump_gimple_omp_atomic_load (pretty_printer *buffer, gomp_atomic_load *gs,
2459 int spc, dump_flags_t flags)
2460 {
2461 if (flags & TDF_RAW)
2462 {
2463 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %T>", gs,
2464 gimple_omp_atomic_load_lhs (gs),
2465 gimple_omp_atomic_load_rhs (gs));
2466 }
2467 else
2468 {
2469 pp_string (buffer, "#pragma omp atomic_load");
2470 dump_omp_atomic_memory_order (buffer,
2471 gimple_omp_atomic_memory_order (gs));
2472 if (gimple_omp_atomic_need_value_p (gs))
2473 pp_string (buffer, " [needed]");
2474 newline_and_indent (buffer, spc + 2);
2475 dump_generic_node (buffer, gimple_omp_atomic_load_lhs (gs),
2476 spc, flags, false);
2477 pp_space (buffer);
2478 pp_equal (buffer);
2479 pp_space (buffer);
2480 pp_star (buffer);
2481 dump_generic_node (buffer, gimple_omp_atomic_load_rhs (gs),
2482 spc, flags, false);
2483 }
2484 }
2485
2486 /* Dump a GIMPLE_OMP_ATOMIC_STORE tuple on the pretty_printer BUFFER, SPC
2487 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
2488 in dumpfile.h). */
2489
2490 static void
2491 dump_gimple_omp_atomic_store (pretty_printer *buffer,
2492 gomp_atomic_store *gs, int spc,
2493 dump_flags_t flags)
2494 {
2495 if (flags & TDF_RAW)
2496 {
2497 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs,
2498 gimple_omp_atomic_store_val (gs));
2499 }
2500 else
2501 {
2502 pp_string (buffer, "#pragma omp atomic_store");
2503 dump_omp_atomic_memory_order (buffer,
2504 gimple_omp_atomic_memory_order (gs));
2505 pp_space (buffer);
2506 if (gimple_omp_atomic_need_value_p (gs))
2507 pp_string (buffer, "[needed] ");
2508 pp_left_paren (buffer);
2509 dump_generic_node (buffer, gimple_omp_atomic_store_val (gs),
2510 spc, flags, false);
2511 pp_right_paren (buffer);
2512 }
2513 }
2514
2515
2516 /* Dump all the memory operands for statement GS. BUFFER, SPC and
2517 FLAGS are as in pp_gimple_stmt_1. */
2518
2519 static void
2520 dump_gimple_mem_ops (pretty_printer *buffer, gimple *gs, int spc,
2521 dump_flags_t flags)
2522 {
2523 tree vdef = gimple_vdef (gs);
2524 tree vuse = gimple_vuse (gs);
2525
2526 if (vdef != NULL_TREE)
2527 {
2528 pp_string (buffer, "# ");
2529 dump_generic_node (buffer, vdef, spc + 2, flags, false);
2530 pp_string (buffer, " = VDEF <");
2531 dump_generic_node (buffer, vuse, spc + 2, flags, false);
2532 pp_greater (buffer);
2533 newline_and_indent (buffer, spc);
2534 }
2535 else if (vuse != NULL_TREE)
2536 {
2537 pp_string (buffer, "# VUSE <");
2538 dump_generic_node (buffer, vuse, spc + 2, flags, false);
2539 pp_greater (buffer);
2540 newline_and_indent (buffer, spc);
2541 }
2542 }
2543
2544
2545 /* Print the gimple statement GS on the pretty printer BUFFER, SPC
2546 spaces of indent. FLAGS specifies details to show in the dump (see
2547 TDF_* in dumpfile.h). The caller is responsible for calling
2548 pp_flush on BUFFER to finalize the pretty printer. */
2549
2550 void
2551 pp_gimple_stmt_1 (pretty_printer *buffer, gimple *gs, int spc,
2552 dump_flags_t flags)
2553 {
2554 if (!gs)
2555 return;
2556
2557 if (flags & TDF_STMTADDR)
2558 pp_printf (buffer, "<&%p> ", (void *) gs);
2559
2560 if ((flags & TDF_LINENO) && gimple_has_location (gs))
2561 dump_location (buffer, gimple_location (gs));
2562
2563 if (flags & TDF_EH)
2564 {
2565 int lp_nr = lookup_stmt_eh_lp (gs);
2566 if (lp_nr > 0)
2567 pp_printf (buffer, "[LP %d] ", lp_nr);
2568 else if (lp_nr < 0)
2569 pp_printf (buffer, "[MNT %d] ", -lp_nr);
2570 }
2571
2572 if ((flags & (TDF_VOPS|TDF_MEMSYMS))
2573 && gimple_has_mem_ops (gs))
2574 dump_gimple_mem_ops (buffer, gs, spc, flags);
2575
2576 if (gimple_has_lhs (gs)
2577 && (flags & TDF_ALIAS))
2578 dump_ssaname_info (buffer, gimple_get_lhs (gs), spc);
2579
2580 switch (gimple_code (gs))
2581 {
2582 case GIMPLE_ASM:
2583 dump_gimple_asm (buffer, as_a <gasm *> (gs), spc, flags);
2584 break;
2585
2586 case GIMPLE_ASSIGN:
2587 dump_gimple_assign (buffer, as_a <gassign *> (gs), spc, flags);
2588 break;
2589
2590 case GIMPLE_BIND:
2591 dump_gimple_bind (buffer, as_a <gbind *> (gs), spc, flags);
2592 break;
2593
2594 case GIMPLE_CALL:
2595 dump_gimple_call (buffer, as_a <gcall *> (gs), spc, flags);
2596 break;
2597
2598 case GIMPLE_COND:
2599 dump_gimple_cond (buffer, as_a <gcond *> (gs), spc, flags);
2600 break;
2601
2602 case GIMPLE_LABEL:
2603 dump_gimple_label (buffer, as_a <glabel *> (gs), spc, flags);
2604 break;
2605
2606 case GIMPLE_GOTO:
2607 dump_gimple_goto (buffer, as_a <ggoto *> (gs), spc, flags);
2608 break;
2609
2610 case GIMPLE_NOP:
2611 pp_string (buffer, "GIMPLE_NOP");
2612 break;
2613
2614 case GIMPLE_RETURN:
2615 dump_gimple_return (buffer, as_a <greturn *> (gs), spc, flags);
2616 break;
2617
2618 case GIMPLE_SWITCH:
2619 dump_gimple_switch (buffer, as_a <gswitch *> (gs), spc, flags);
2620 break;
2621
2622 case GIMPLE_TRY:
2623 dump_gimple_try (buffer, as_a <gtry *> (gs), spc, flags);
2624 break;
2625
2626 case GIMPLE_PHI:
2627 dump_gimple_phi (buffer, as_a <gphi *> (gs), spc, false, flags);
2628 break;
2629
2630 case GIMPLE_OMP_PARALLEL:
2631 dump_gimple_omp_parallel (buffer, as_a <gomp_parallel *> (gs), spc,
2632 flags);
2633 break;
2634
2635 case GIMPLE_OMP_TASK:
2636 dump_gimple_omp_task (buffer, as_a <gomp_task *> (gs), spc, flags);
2637 break;
2638
2639 case GIMPLE_OMP_ATOMIC_LOAD:
2640 dump_gimple_omp_atomic_load (buffer, as_a <gomp_atomic_load *> (gs),
2641 spc, flags);
2642 break;
2643
2644 case GIMPLE_OMP_ATOMIC_STORE:
2645 dump_gimple_omp_atomic_store (buffer,
2646 as_a <gomp_atomic_store *> (gs),
2647 spc, flags);
2648 break;
2649
2650 case GIMPLE_OMP_FOR:
2651 dump_gimple_omp_for (buffer, as_a <gomp_for *> (gs), spc, flags);
2652 break;
2653
2654 case GIMPLE_OMP_CONTINUE:
2655 dump_gimple_omp_continue (buffer, as_a <gomp_continue *> (gs), spc,
2656 flags);
2657 break;
2658
2659 case GIMPLE_OMP_SINGLE:
2660 dump_gimple_omp_single (buffer, as_a <gomp_single *> (gs), spc,
2661 flags);
2662 break;
2663
2664 case GIMPLE_OMP_TARGET:
2665 dump_gimple_omp_target (buffer, as_a <gomp_target *> (gs), spc,
2666 flags);
2667 break;
2668
2669 case GIMPLE_OMP_TEAMS:
2670 dump_gimple_omp_teams (buffer, as_a <gomp_teams *> (gs), spc,
2671 flags);
2672 break;
2673
2674 case GIMPLE_OMP_RETURN:
2675 dump_gimple_omp_return (buffer, gs, spc, flags);
2676 break;
2677
2678 case GIMPLE_OMP_SECTIONS:
2679 dump_gimple_omp_sections (buffer, as_a <gomp_sections *> (gs),
2680 spc, flags);
2681 break;
2682
2683 case GIMPLE_OMP_SECTIONS_SWITCH:
2684 pp_string (buffer, "GIMPLE_SECTIONS_SWITCH");
2685 break;
2686
2687 case GIMPLE_OMP_TASKGROUP:
2688 dump_gimple_omp_taskgroup (buffer, gs, spc, flags);
2689 break;
2690
2691 case GIMPLE_OMP_MASTER:
2692 case GIMPLE_OMP_SECTION:
2693 case GIMPLE_OMP_GRID_BODY:
2694 dump_gimple_omp_block (buffer, gs, spc, flags);
2695 break;
2696
2697 case GIMPLE_OMP_ORDERED:
2698 dump_gimple_omp_ordered (buffer, as_a <gomp_ordered *> (gs), spc,
2699 flags);
2700 break;
2701
2702 case GIMPLE_OMP_SCAN:
2703 dump_gimple_omp_scan (buffer, as_a <gomp_scan *> (gs), spc,
2704 flags);
2705 break;
2706
2707 case GIMPLE_OMP_CRITICAL:
2708 dump_gimple_omp_critical (buffer, as_a <gomp_critical *> (gs), spc,
2709 flags);
2710 break;
2711
2712 case GIMPLE_CATCH:
2713 dump_gimple_catch (buffer, as_a <gcatch *> (gs), spc, flags);
2714 break;
2715
2716 case GIMPLE_EH_FILTER:
2717 dump_gimple_eh_filter (buffer, as_a <geh_filter *> (gs), spc, flags);
2718 break;
2719
2720 case GIMPLE_EH_MUST_NOT_THROW:
2721 dump_gimple_eh_must_not_throw (buffer,
2722 as_a <geh_mnt *> (gs),
2723 spc, flags);
2724 break;
2725
2726 case GIMPLE_EH_ELSE:
2727 dump_gimple_eh_else (buffer, as_a <geh_else *> (gs), spc, flags);
2728 break;
2729
2730 case GIMPLE_RESX:
2731 dump_gimple_resx (buffer, as_a <gresx *> (gs), spc, flags);
2732 break;
2733
2734 case GIMPLE_EH_DISPATCH:
2735 dump_gimple_eh_dispatch (buffer, as_a <geh_dispatch *> (gs), spc,
2736 flags);
2737 break;
2738
2739 case GIMPLE_DEBUG:
2740 dump_gimple_debug (buffer, as_a <gdebug *> (gs), spc, flags);
2741 break;
2742
2743 case GIMPLE_PREDICT:
2744 pp_string (buffer, "// predicted ");
2745 if (gimple_predict_outcome (gs))
2746 pp_string (buffer, "likely by ");
2747 else
2748 pp_string (buffer, "unlikely by ");
2749 pp_string (buffer, predictor_name (gimple_predict_predictor (gs)));
2750 pp_string (buffer, " predictor.");
2751 break;
2752
2753 case GIMPLE_TRANSACTION:
2754 dump_gimple_transaction (buffer, as_a <gtransaction *> (gs), spc,
2755 flags);
2756 break;
2757
2758 default:
2759 GIMPLE_NIY;
2760 }
2761 }
2762
2763
2764 /* Dumps header of basic block BB to OUTF indented by INDENT
2765 spaces and details described by flags. */
2766
2767 static void
2768 dump_gimple_bb_header (FILE *outf, basic_block bb, int indent,
2769 dump_flags_t flags)
2770 {
2771 if (flags & TDF_BLOCKS)
2772 {
2773 if (flags & TDF_LINENO)
2774 {
2775 gimple_stmt_iterator gsi;
2776
2777 fputs (";; ", outf);
2778
2779 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2780 if (!is_gimple_debug (gsi_stmt (gsi))
2781 && get_lineno (gsi_stmt (gsi)) != UNKNOWN_LOCATION)
2782 {
2783 fprintf (outf, "%*sstarting at line %d",
2784 indent, "", get_lineno (gsi_stmt (gsi)));
2785 break;
2786 }
2787 if (bb->discriminator)
2788 fprintf (outf, ", discriminator %i", bb->discriminator);
2789 fputc ('\n', outf);
2790 }
2791 }
2792 else
2793 {
2794 if (flags & TDF_GIMPLE)
2795 {
2796 fprintf (outf, "%*s__BB(%d", indent, "", bb->index);
2797 if (bb->loop_father->header == bb)
2798 fprintf (outf, ",loop_header(%d)", bb->loop_father->num);
2799 if (bb->count.initialized_p ())
2800 fprintf (outf, ",%s(%d)",
2801 profile_quality_as_string (bb->count.quality ()),
2802 bb->count.value ());
2803 fprintf (outf, "):\n");
2804 }
2805 else
2806 fprintf (outf, "%*s<bb %d> %s:\n",
2807 indent, "", bb->index, dump_profile (bb->count));
2808 }
2809 }
2810
2811
2812 /* Dumps end of basic block BB to buffer BUFFER indented by INDENT
2813 spaces. */
2814
2815 static void
2816 dump_gimple_bb_footer (FILE *outf ATTRIBUTE_UNUSED,
2817 basic_block bb ATTRIBUTE_UNUSED,
2818 int indent ATTRIBUTE_UNUSED,
2819 dump_flags_t flags ATTRIBUTE_UNUSED)
2820 {
2821 /* There is currently no GIMPLE-specific basic block info to dump. */
2822 return;
2823 }
2824
2825
2826 /* Dump PHI nodes of basic block BB to BUFFER with details described
2827 by FLAGS and indented by INDENT spaces. */
2828
2829 static void
2830 dump_phi_nodes (pretty_printer *buffer, basic_block bb, int indent,
2831 dump_flags_t flags)
2832 {
2833 gphi_iterator i;
2834
2835 for (i = gsi_start_phis (bb); !gsi_end_p (i); gsi_next (&i))
2836 {
2837 gphi *phi = i.phi ();
2838 if (!virtual_operand_p (gimple_phi_result (phi)) || (flags & TDF_VOPS))
2839 {
2840 INDENT (indent);
2841 dump_gimple_phi (buffer, phi, indent,
2842 (flags & TDF_GIMPLE) ? false : true, flags);
2843 pp_newline (buffer);
2844 }
2845 }
2846 }
2847
2848
2849 /* Dump jump to basic block BB that is represented implicitly in the cfg
2850 to BUFFER. */
2851
2852 static void
2853 pp_cfg_jump (pretty_printer *buffer, edge e, dump_flags_t flags)
2854 {
2855 if (flags & TDF_GIMPLE)
2856 {
2857 pp_string (buffer, "goto __BB");
2858 pp_decimal_int (buffer, e->dest->index);
2859 if (e->probability.initialized_p ())
2860 {
2861 pp_string (buffer, "(");
2862 pp_string (buffer,
2863 profile_quality_as_string (e->probability.quality ()));
2864 pp_string (buffer, "(");
2865 pp_decimal_int (buffer, e->probability.value ());
2866 pp_string (buffer, "))");
2867 }
2868 pp_semicolon (buffer);
2869 }
2870 else
2871 {
2872 pp_string (buffer, "goto <bb ");
2873 pp_decimal_int (buffer, e->dest->index);
2874 pp_greater (buffer);
2875 pp_semicolon (buffer);
2876
2877 dump_edge_probability (buffer, e);
2878 }
2879 }
2880
2881
2882 /* Dump edges represented implicitly in basic block BB to BUFFER, indented
2883 by INDENT spaces, with details given by FLAGS. */
2884
2885 static void
2886 dump_implicit_edges (pretty_printer *buffer, basic_block bb, int indent,
2887 dump_flags_t flags)
2888 {
2889 edge e;
2890 gimple *stmt;
2891
2892 stmt = last_stmt (bb);
2893
2894 if (stmt && gimple_code (stmt) == GIMPLE_COND)
2895 {
2896 edge true_edge, false_edge;
2897
2898 /* When we are emitting the code or changing CFG, it is possible that
2899 the edges are not yet created. When we are using debug_bb in such
2900 a situation, we do not want it to crash. */
2901 if (EDGE_COUNT (bb->succs) != 2)
2902 return;
2903 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2904
2905 INDENT (indent + 2);
2906 pp_cfg_jump (buffer, true_edge, flags);
2907 newline_and_indent (buffer, indent);
2908 pp_string (buffer, "else");
2909 newline_and_indent (buffer, indent + 2);
2910 pp_cfg_jump (buffer, false_edge, flags);
2911 pp_newline (buffer);
2912 return;
2913 }
2914
2915 /* If there is a fallthru edge, we may need to add an artificial
2916 goto to the dump. */
2917 e = find_fallthru_edge (bb->succs);
2918
2919 if (e && (e->dest != bb->next_bb || (flags & TDF_GIMPLE)))
2920 {
2921 INDENT (indent);
2922
2923 if ((flags & TDF_LINENO)
2924 && e->goto_locus != UNKNOWN_LOCATION)
2925 dump_location (buffer, e->goto_locus);
2926
2927 pp_cfg_jump (buffer, e, flags);
2928 pp_newline (buffer);
2929 }
2930 }
2931
2932
2933 /* Dumps basic block BB to buffer BUFFER with details described by FLAGS and
2934 indented by INDENT spaces. */
2935
2936 static void
2937 gimple_dump_bb_buff (pretty_printer *buffer, basic_block bb, int indent,
2938 dump_flags_t flags)
2939 {
2940 gimple_stmt_iterator gsi;
2941 gimple *stmt;
2942 int label_indent = indent - 2;
2943
2944 if (label_indent < 0)
2945 label_indent = 0;
2946
2947 dump_phi_nodes (buffer, bb, indent, flags);
2948
2949 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2950 {
2951 int curr_indent;
2952
2953 stmt = gsi_stmt (gsi);
2954
2955 curr_indent = gimple_code (stmt) == GIMPLE_LABEL ? label_indent : indent;
2956
2957 INDENT (curr_indent);
2958 pp_gimple_stmt_1 (buffer, stmt, curr_indent, flags);
2959 pp_newline_and_flush (buffer);
2960 gcc_checking_assert (DECL_STRUCT_FUNCTION (current_function_decl));
2961 dump_histograms_for_stmt (DECL_STRUCT_FUNCTION (current_function_decl),
2962 pp_buffer (buffer)->stream, stmt);
2963 }
2964
2965 dump_implicit_edges (buffer, bb, indent, flags);
2966 pp_flush (buffer);
2967 }
2968
2969
2970 /* Dumps basic block BB to FILE with details described by FLAGS and
2971 indented by INDENT spaces. */
2972
2973 void
2974 gimple_dump_bb (FILE *file, basic_block bb, int indent, dump_flags_t flags)
2975 {
2976 dump_gimple_bb_header (file, bb, indent, flags);
2977 if (bb->index >= NUM_FIXED_BLOCKS)
2978 {
2979 pretty_printer buffer;
2980 pp_needs_newline (&buffer) = true;
2981 buffer.buffer->stream = file;
2982 gimple_dump_bb_buff (&buffer, bb, indent, flags);
2983 }
2984 dump_gimple_bb_footer (file, bb, indent, flags);
2985 }
2986
2987 /* Dumps basic block BB to pretty-printer PP with default dump flags and
2988 no indentation, for use as a label of a DOT graph record-node.
2989 ??? Should just use gimple_dump_bb_buff here, except that value profiling
2990 histogram dumping doesn't know about pretty-printers. */
2991
2992 void
2993 gimple_dump_bb_for_graph (pretty_printer *pp, basic_block bb)
2994 {
2995 pp_printf (pp, "<bb %d>:\n", bb->index);
2996 pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);
2997
2998 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
2999 gsi_next (&gsi))
3000 {
3001 gphi *phi = gsi.phi ();
3002 if (!virtual_operand_p (gimple_phi_result (phi))
3003 || (dump_flags & TDF_VOPS))
3004 {
3005 pp_bar (pp);
3006 pp_write_text_to_stream (pp);
3007 pp_string (pp, "# ");
3008 pp_gimple_stmt_1 (pp, phi, 0, dump_flags);
3009 pp_newline (pp);
3010 pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);
3011 }
3012 }
3013
3014 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
3015 gsi_next (&gsi))
3016 {
3017 gimple *stmt = gsi_stmt (gsi);
3018 pp_bar (pp);
3019 pp_write_text_to_stream (pp);
3020 pp_gimple_stmt_1 (pp, stmt, 0, dump_flags);
3021 pp_newline (pp);
3022 pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);
3023 }
3024 dump_implicit_edges (pp, bb, 0, dump_flags);
3025 pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);
3026 }
3027
3028
3029 /* Handle the %G format for TEXT. Same as %K in handle_K_format in
3030 tree-pretty-print.c but with a Gimple statement as an argument. */
3031
3032 void
3033 percent_G_format (text_info *text)
3034 {
3035 gimple *stmt = va_arg (*text->args_ptr, gimple*);
3036
3037 /* Fall back on the rich location if the statement doesn't have one. */
3038 location_t loc = gimple_location (stmt);
3039 if (loc == UNKNOWN_LOCATION)
3040 loc = text->m_richloc->get_loc ();
3041 tree block = gimple_block (stmt);
3042 percent_K_format (text, loc, block);
3043 }
3044
3045 #if __GNUC__ >= 10
3046 # pragma GCC diagnostic pop
3047 #endif